Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 10, 2008, 3:35:50 PM (17 years ago)
Author:
landauf
Message:

moved Debug.h, OutputHandler and OutputBuffer to util, to make COUT(x) available everywhere

Location:
code/branches/core3/src/orxonox
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/orxonox/GraphicsEngine.cc

    r1564 r1586  
    4747#include "core/CoreIncludes.h"
    4848#include "core/ConfigValueIncludes.h"
    49 #include "core/Debug.h"
    5049#include "core/CommandExecutor.h"
    5150#include "core/ConsoleCommand.h"
    5251#include "core/input/InputManager.h"
     52#include "util/Debug.h"
    5353
    5454#include "console/InGameConsole.h"
  • code/branches/core3/src/orxonox/Orxonox.cc

    r1574 r1586  
    5555#include "core/ConfigFileManager.h"
    5656#include "core/ConsoleCommand.h"
    57 #include "core/Debug.h"
    5857#include "core/Loader.h"
    5958#include "core/input/InputManager.h"
    6059#include "core/TclBind.h"
    6160#include "core/Core.h"
     61#include "util/Debug.h"
    6262
    6363// audio
  • code/branches/core3/src/orxonox/OrxonoxStableHeaders.h

    r1543 r1586  
    9292
    9393#include "util/Convert.h"
     94#include "util/Debug.h"
    9495#include "util/Math.h"
    9596#include "util/Multitype.h"
    9697#include "util/MultiTypeMath.h"
     98#include "util/OutputBuffer.h"
     99#include "util/OutputHandler.h"
    97100#include "util/Sleep.h"
    98101#include "util/String.h"
     
    104107#include "core/CoreIncludes.h"
    105108#include "core/ConfigValueIncludes.h"
    106 #include "core/Debug.h"
    107 #include "core/OutputBuffer.h"
    108 #include "core/OutputHandler.h"
    109109#include "core/Executor.h"
    110110#include "core/XMLPort.h"
  • code/branches/core3/src/orxonox/console/InGameConsole.cc

    r1571 r1586  
    3838#include <OgreStringConverter.h>
    3939
    40 #include "core/Debug.h"
    4140#include "core/CoreIncludes.h"
    4241#include "core/ConfigValueIncludes.h"
    4342#include "core/ConsoleCommand.h"
    4443#include "core/input/InputManager.h"
     44#include "util/Debug.h"
    4545#include "util/Math.h"
    4646#include "GraphicsEngine.h"
     
    457457            this->consoleOverlayTextAreas_[index]->setColourTop   (ColourValue(0.40, 0.20, 0.40, 1.00));
    458458            this->consoleOverlayTextAreas_[index]->setColourBottom(ColourValue(0.80, 0.60, 0.80, 1.00));
     459        }
     460        else if (colourcode == 6)
     461        {
     462            this->consoleOverlayTextAreas_[index]->setColourTop   (ColourValue(0.30, 0.20, 0.30, 1.00));
     463            this->consoleOverlayTextAreas_[index]->setColourBottom(ColourValue(0.50, 0.40, 0.50, 1.00));
    459464        }
    460465        else
  • code/branches/core3/src/orxonox/hud/HUD.cc

    r1568 r1586  
    3737#include <OgreStringConverter.h>
    3838
    39 #include "core/Debug.h"
     39#include "util/Debug.h"
    4040#include "core/ConsoleCommand.h"
    4141#include "objects/SpaceShip.h"
  • code/branches/core3/src/orxonox/hud/Navigation.cc

    r1568 r1586  
    4141#include "RadarOverlayElement.h"
    4242#include "HUD.h"
    43 #include "core/Debug.h"
     43#include "util/Debug.h"
    4444#include "util/Math.h"
    4545
  • code/branches/core3/src/orxonox/objects/Ambient.cc

    r1505 r1586  
    3939#include "util/Convert.h"
    4040#include "util/Math.h"
    41 #include "core/Debug.h"
     41#include "util/Debug.h"
    4242#include "core/CoreIncludes.h"
    43 #include "GraphicsEngine.h"
    4443#include "core/XMLPort.h"
    4544#include "core/ConsoleCommand.h"
     45#include "GraphicsEngine.h"
    4646
    4747namespace orxonox
     
    6868      return Synchronisable::create();
    6969    }
    70    
     70
    7171    void Ambient::registerAllVariables(){
    7272      registerVar(&ambientLight_, sizeof(ColourValue), network::DATA);
    73      
     73
    7474    }
    75    
     75
    7676    void Ambient::loadParams(TiXmlElement* xmlElem)
    7777    {
     
    9494   {
    9595        GraphicsEngine::getSingleton().getSceneManager()->setAmbientLight(colour);
    96       ambientLight_=colour;     
     96      ambientLight_=colour;
    9797   }
    9898
  • code/branches/core3/src/orxonox/objects/Camera.cc

    r1505 r1586  
    4242#include "util/Convert.h"
    4343#include "util/Math.h"
    44 #include "core/Debug.h"
     44#include "util/Debug.h"
    4545#include "core/CoreIncludes.h"
    4646#include "GraphicsEngine.h"
  • code/branches/core3/src/orxonox/objects/Skybox.cc

    r1558 r1586  
    3737#include "GraphicsEngine.h"
    3838#include "core/CoreIncludes.h"
    39 #include "core/Debug.h"
    4039#include "core/XMLPort.h"
     40#include "util/Debug.h"
    4141
    4242namespace orxonox
  • code/branches/core3/src/orxonox/objects/SpaceShip.cc

    r1574 r1586  
    3838#include "util/Convert.h"
    3939#include "util/Math.h"
     40#include "util/Debug.h"
    4041#include "core/CoreIncludes.h"
    4142#include "core/ConfigValueIncludes.h"
    42 #include "core/Debug.h"
    43 #include "GraphicsEngine.h"
    4443#include "core/input/InputManager.h"
     44#include "core/XMLPort.h"
     45#include "core/ConsoleCommand.h"
    4546#include "tools/ParticleInterface.h"
     47#include "network/Client.h"
     48#include "hud/HUD.h"
    4649#include "RotatingProjectile.h"
    4750#include "ParticleProjectile.h"
    48 #include "core/XMLPort.h"
    49 #include "core/ConsoleCommand.h"
    50 #include "network/Client.h"
    51 #include "hud/HUD.h"
     51#include "GraphicsEngine.h"
    5252
    5353namespace orxonox
Note: See TracChangeset for help on using the changeset viewer.