Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 10, 2008, 3:35:50 PM (16 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/objects
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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.