Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 23, 2010, 1:08:14 AM (14 years ago)
Author:
landauf
Message:

adjusted includes in all other files

Location:
code/branches/consolecommands3/src/orxonox
Files:
24 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/orxonox/ChatInputHandler.cc

    r7163 r7204  
    2929#include "ChatInputHandler.h"
    3030#include <core/ScopedSingletonManager.h>
    31 #include "core/ConsoleCommand.h"
    3231#include "core/CoreIncludes.h"
    3332#include "core/GUIManager.h"
    3433#include "core/CorePrereqs.h"
     34#include "core/command/ConsoleCommand.h"
    3535#include <CEGUIWindow.h>
    3636#include <elements/CEGUIListbox.h>
  • code/branches/consolecommands3/src/orxonox/OrxonoxPrecompiledHeaders.h

    r5781 r7204  
    8989#include "network/synchronisable/Synchronisable.h" // 70
    9090#include "util/MultiType.h"    // 65
    91 #include "core/Executor.h"     // 55
     91#include "core/command/Executor.h"     // 55
    9292//#include "core/XMLPort.h"     // 41
    9393
  • code/branches/consolecommands3/src/orxonox/Radar.cc

    r7163 r7204  
    3737
    3838//#include "util/Math.h"
    39 #include "core/ConsoleCommand.h"
    4039#include "core/ObjectList.h"
     40#include "core/command/ConsoleCommand.h"
    4141#include "interfaces/RadarListener.h"
    4242#include "controllers/HumanController.h"
  • code/branches/consolecommands3/src/orxonox/Test.cc

    r7163 r7204  
    2929#include "core/CoreIncludes.h"
    3030#include "core/ConfigValueIncludes.h"
    31 #include "core/ConsoleCommand.h"
     31#include "core/command/ConsoleCommand.h"
    3232#include "network/NetworkFunction.h"
    3333#include "Test.h"
     
    3737{
    3838    CreateFactory ( Test );
    39  
     39
    4040    SetConsoleCommand(Test, printV1, true).accessLevel(AccessLevel::User);
    4141    SetConsoleCommand(Test, printV2, true).accessLevel(AccessLevel::User);
     
    4444    SetConsoleCommand(Test, call, true).accessLevel(AccessLevel::User);
    4545    SetConsoleCommand(Test, call2, true).accessLevel(AccessLevel::User);
    46  
    47  
     46
     47
    4848  //void=* aaaaa = copyPtr<sizeof(&Test::printV1)>( &NETWORK_FUNCTION_POINTER, &Test::printV1 );
    4949  //void* NETWORK_FUNCTION_TEST_B = memcpy(&NETWORK_FUNCTION_POINTER, &a, sizeof(a));
    5050//   NetworkFunctionBase* NETWORK_FUNCTION_TEST_C = new NetworkFunctionStatic( createFunctor(&Test::printV1), "bla", NETWORK_FUNCTION_POINTER );
    51  
     51
    5252    registerStaticNetworkFunction( &Test::printV1 );
    5353    registerMemberNetworkFunction( Test, checkU1 );
    5454    registerMemberNetworkFunction( Test, printBlaBla );
    55  
     55
    5656    Test* Test::instance_ = 0;
    5757
     
    7878        SetConfigValue ( u3, 3 )/*.callback ( this, &Test::checkV3 )*/;
    7979        SetConfigValue ( u4, 4 )/*.callback ( this, &Test::checkV4 )*/;
    80    
     80
    8181        SetConfigValue ( s1, 1 )/*.callback ( this, &Test::checkV1 )*/;
    8282        SetConfigValue ( s2, 2 )/*.callback ( this, &Test::checkV2 )*/;
     
    8989    {
    9090        registerVariable ( this->mySet_, VariableDirection::ToClient );
    91      
     91
    9292//         registerVariable ( u1, VariableDirection::ToClient, new NetworkCallback<Test> ( this, &Test::checkU1 ));
    9393//         registerVariable ( u2, VariableDirection::ToServer, new NetworkCallback<Test> ( this, &Test::checkU2 ));
    9494//         registerVariable ( u3, Bidirectionality::ServerMaster, new NetworkCallback<Test> ( this, &Test::checkU3 ), true );
    9595//         registerVariable ( u4, Bidirectionality::ClientMaster, new NetworkCallback<Test> ( this, &Test::checkU4 ), true );
    96    
     96
    9797//         registerVariable ( s1, VariableDirection::ToClient, new NetworkCallback<Test> ( this, &Test::checkS1 ));
    9898//         registerVariable ( s2, VariableDirection::ToServer, new NetworkCallback<Test> ( this, &Test::checkS2 ));
    9999//         registerVariable ( s3, Bidirectionality::ServerMaster, new NetworkCallback<Test> ( this, &Test::checkS3 ), true );
    100100//         registerVariable ( s4, Bidirectionality::ClientMaster, new NetworkCallback<Test> ( this, &Test::checkS4 ), true );
    101    
     101
    102102//         registerVariable ( pointer_, VariableDirection::ToClient, new NetworkCallback<Test> ( this, &Test::printPointer ) );
    103103    }
    104  
     104
    105105  void Test::call(unsigned int clientID)
    106106    {
     
    108108        callStaticNetworkFunction( &Test::printV1, clientID );
    109109    }
    110  
     110
    111111    void Test::call2(unsigned int clientID, std::string s1, std::string s2, std::string s3, std::string s4)
    112112    {
    113113        callMemberNetworkFunction( Test, printBlaBla, this->getObjectID(), clientID, s1, s2, s3, s4, s4 );
    114114    }
    115  
     115
    116116    void Test::tick(float dt)
    117117    {
     
    132132    //       callMemberNetworkFunction( Test, checkU1, this->getObjectID(), 0 );
    133133    }
    134    
     134
    135135    void Test::printBlaBla(std::string s1, std::string s2, std::string s3, std::string s4, std::string s5)
    136136    {
    137137        COUT(0) << s1 << s2 << s3 << s4 << s5 << endl;
    138138    }
    139    
     139
    140140    void Test::checkU1(){ COUT(1) << "U1 changed: " << u1 << std::endl; }
    141141    void Test::checkU2(){ COUT(1) << "U2 changed: " << u2 << std::endl; }
     
    147147    void Test::checkS3(){ COUT(1) << "S3 changed: " << s3 << std::endl; }
    148148    void Test::checkS4(){ COUT(1) << "S4 changed: " << s4 << std::endl; }
    149    
     149
    150150    void Test::printPointer(){ CCOUT(1) << "pointer: " << this->pointer_ << endl; }
    151151
  • code/branches/consolecommands3/src/orxonox/controllers/AIController.cc

    r7168 r7204  
    3131#include "util/Math.h"
    3232#include "core/CoreIncludes.h"
    33 #include "core/Executor.h"
     33#include "core/command/Executor.h"
    3434#include "worldentities/ControllableEntity.h"
    3535#include "worldentities/pawns/Pawn.h"
  • code/branches/consolecommands3/src/orxonox/controllers/ArtificialController.cc

    r7163 r7204  
    3333
    3434#include "util/Math.h"
    35 #include "core/ConsoleCommand.h"
    3635#include "core/CoreIncludes.h"
    3736#include "core/XMLPort.h"
     37#include "core/command/ConsoleCommand.h"
    3838#include "worldentities/ControllableEntity.h"
    3939#include "worldentities/pawns/Pawn.h"
  • code/branches/consolecommands3/src/orxonox/controllers/DroneController.cc

    r7163 r7204  
    3232
    3333#include "core/CoreIncludes.h"
    34 #include "core/Executor.h"
     34#include "core/command/Executor.h"
    3535#include "worldentities/ControllableEntity.h"
    3636
  • code/branches/consolecommands3/src/orxonox/controllers/HumanController.cc

    r7163 r7204  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "core/ConsoleCommand.h"
     32#include "core/command/ConsoleCommand.h"
    3333#include "worldentities/ControllableEntity.h"
    3434#include "worldentities/pawns/Pawn.h"
  • code/branches/consolecommands3/src/orxonox/controllers/NewHumanController.cc

    r7163 r7204  
    3737
    3838#include "core/CoreIncludes.h"
    39 #include "core/ConsoleCommand.h"
     39#include "core/command/ConsoleCommand.h"
    4040#include "worldentities/ControllableEntity.h"
    4141#include "worldentities/pawns/Pawn.h"
  • code/branches/consolecommands3/src/orxonox/gamestates/GSGraphics.cc

    r7163 r7204  
    3535#include "GSGraphics.h"
    3636
    37 #include "core/CommandExecutor.h"
    38 #include "core/ConsoleCommand.h"
    3937#include "core/Game.h"
    4038#include "core/GUIManager.h"
     39#include "core/command/ConsoleCommand.h"
     40#include "core/command/CommandExecutor.h"
    4141
    4242namespace orxonox
  • code/branches/consolecommands3/src/orxonox/gamestates/GSLevel.cc

    r6746 r7204  
    3636#include "core/input/InputState.h"
    3737#include "core/input/KeyBinderManager.h"
    38 #include "core/ConsoleCommand.h"
    3938#include "core/Game.h"
    4039#include "core/GameMode.h"
     
    4241#include "core/Loader.h"
    4342#include "core/XMLFile.h"
     43#include "core/command/ConsoleCommand.h"
    4444
    4545#include "LevelManager.h"
  • code/branches/consolecommands3/src/orxonox/gamestates/GSMainMenu.cc

    r6746 r7204  
    3333#include "core/input/KeyBinderManager.h"
    3434#include "core/Game.h"
    35 #include "core/ConsoleCommand.h"
    3635#include "core/ConfigValueIncludes.h"
    3736#include "core/CoreIncludes.h"
    3837#include "core/GraphicsManager.h"
    3938#include "core/GUIManager.h"
     39#include "core/command/ConsoleCommand.h"
    4040#include "Scene.h"
    4141#include "sound/AmbientSound.h"
  • code/branches/consolecommands3/src/orxonox/gamestates/GSRoot.cc

    r7172 r7204  
    3131#include "util/Clock.h"
    3232#include "core/BaseObject.h"
    33 #include "core/ConsoleCommand.h"
    3433#include "core/Game.h"
    3534#include "core/GameMode.h"
     35#include "core/command/ConsoleCommand.h"
    3636#include "network/NetworkFunction.h"
    3737#include "tools/Timer.h"
  • code/branches/consolecommands3/src/orxonox/gametypes/Gametype.cc

    r7163 r7204  
    3333#include "core/ConfigValueIncludes.h"
    3434#include "core/GameMode.h"
    35 #include "core/ConsoleCommand.h"
     35#include "core/command/ConsoleCommand.h"
    3636
    3737#include "infos/PlayerInfo.h"
  • code/branches/consolecommands3/src/orxonox/gametypes/TeamBaseMatch.cc

    r5929 r7204  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "core/Executor.h"
     32#include "core/command/Executor.h"
    3333#include "worldentities/pawns/TeamBaseMatchBase.h"
    3434#include "infos/PlayerInfo.h"
  • code/branches/consolecommands3/src/orxonox/graphics/ParticleSpawner.cc

    r5929 r7204  
    3131#include "core/CoreIncludes.h"
    3232#include "core/EventIncludes.h"
    33 #include "core/Executor.h"
    3433#include "core/XMLPort.h"
     34#include "core/command/Executor.h"
    3535#include "tools/ParticleInterface.h"
    3636
  • code/branches/consolecommands3/src/orxonox/overlays/InGameConsole.cc

    r6502 r7204  
    4747#include "core/CoreIncludes.h"
    4848#include "core/ConfigValueIncludes.h"
    49 #include "core/ConsoleCommand.h"
    5049#include "core/ScopedSingletonManager.h"
     50#include "core/command/ConsoleCommand.h"
    5151#include "core/input/InputManager.h"
    5252#include "core/input/InputState.h"
  • code/branches/consolecommands3/src/orxonox/overlays/InGameConsole.h

    r6417 r7204  
    3737#include "util/OgreForwardRefs.h"
    3838#include "util/Singleton.h"
    39 #include "core/Shell.h"
    4039#include "core/WindowEventListener.h"
     40#include "core/command/Shell.h"
    4141
    4242namespace orxonox
  • code/branches/consolecommands3/src/orxonox/overlays/OrxonoxOverlay.cc

    r6799 r7204  
    4848#include "core/CoreIncludes.h"
    4949#include "core/XMLPort.h"
    50 #include "core/ConsoleCommand.h"
     50#include "core/command/ConsoleCommand.h"
    5151
    5252#include "OverlayGroup.h"
  • code/branches/consolecommands3/src/orxonox/overlays/OverlayGroup.cc

    r6417 r7204  
    3434#include "OverlayGroup.h"
    3535
    36 #include "core/ConsoleCommand.h"
    3736#include "core/CoreIncludes.h"
    3837#include "core/XMLPort.h"
     38#include "core/command/ConsoleCommand.h"
    3939#include "OrxonoxOverlay.h"
    4040
  • code/branches/consolecommands3/src/orxonox/sound/WorldSound.cc

    r7163 r7204  
    3737#include "Scene.h"
    3838#include "SoundManager.h"
    39 #include <core/ConsoleCommandCompilation.h>
    4039
    4140namespace orxonox
  • code/branches/consolecommands3/src/orxonox/worldentities/BigExplosion.cc

    r7176 r7204  
    3131#include "util/Exception.h"
    3232#include "core/CoreIncludes.h"
    33 #include "core/Executor.h"
    3433#include "core/GameMode.h"
     34#include "core/command/Executor.h"
    3535#include "tools/ParticleInterface.h"
    3636#include "Scene.h"
  • code/branches/consolecommands3/src/orxonox/worldentities/ExplosionChunk.cc

    r7174 r7204  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "core/Executor.h"
    3332#include "core/GameMode.h"
     33#include "core/command/Executor.h"
    3434#include "util/Exception.h"
    3535#include "Scene.h"
  • code/branches/consolecommands3/src/orxonox/worldentities/MovableEntity.cc

    r6417 r7204  
    3131
    3232#include "core/CoreIncludes.h"
    33 #include "core/Executor.h"
    3433#include "core/GameMode.h"
    3534#include "core/XMLPort.h"
     35#include "core/command/Executor.h"
    3636#include "worldentities/pawns/Pawn.h"
    3737
Note: See TracChangeset for help on using the changeset viewer.