Changeset 10380 for code/branches/core7/src/orxonox
- Timestamp:
- Apr 22, 2015, 10:30:42 PM (10 years ago)
- Location:
- code/branches/core7/src/orxonox
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/orxonox/LevelManager.cc
r10345 r10380 53 53 ManageScopedSingleton(LevelManager, ScopeID::Root, false); 54 54 55 RegisterAbstractClass(LevelManager).inheritsFrom<Configurable>(); 56 55 57 /** 56 58 @brief -
code/branches/core7/src/orxonox/MoodManager.cc
r9667 r10380 40 40 // Note: I'm (Kevin Young) not entirely sure whether that's good code style: 41 41 const std::string MoodManager::defaultMood_ = "default"; 42 43 RegisterAbstractClass(MoodListener).inheritsFrom<OrxonoxInterface>(); 44 RegisterAbstractClass(MoodManager).inheritsFrom<Configurable>(); 42 45 43 46 MoodManager::MoodManager() -
code/branches/core7/src/orxonox/PawnManager.cc
r9667 r10380 37 37 ManageScopedSingleton(PawnManager, ScopeID::Root, false); 38 38 39 RegisterAbstractClass(PawnManager).inheritsFrom<Tickable>(); 40 39 41 PawnManager::PawnManager() 40 42 { -
code/branches/core7/src/orxonox/PlayerManager.cc
r9667 r10380 40 40 { 41 41 ManageScopedSingleton(PlayerManager, ScopeID::Root, false); 42 43 RegisterAbstractClass(PlayerManager).inheritsFrom<ClientConnectionListener>(); 42 44 43 45 PlayerManager::PlayerManager() -
code/branches/core7/src/orxonox/ShipPartManager.cc
r10262 r10380 37 37 ManageScopedSingleton(ShipPartManager, ScopeID::Root, false); 38 38 39 RegisterAbstractClass(ShipPartManager).inheritsFrom<Tickable>(); 40 39 41 ShipPartManager::ShipPartManager() 40 42 { -
code/branches/core7/src/orxonox/chat/ChatHistory.cc
r9667 r10380 35 35 /* singleton */ 36 36 ManageScopedSingleton( ChatHistory, ScopeID::Root, false ); 37 38 RegisterAbstractClass(ChatHistory).inheritsFrom<ChatListener>(); 39 37 40 #endif 38 41 -
code/branches/core7/src/orxonox/chat/ChatInputHandler.cc
r10347 r10380 68 68 SetConsoleCommand( "startchat_small", &ChatInputHandler::activate_small_static ); 69 69 70 RegisterAbstractClass(ChatInputHandler).inheritsFrom<ChatListener>(); 71 70 72 /* constructor */ 71 73 ChatInputHandler::ChatInputHandler() -
code/branches/core7/src/orxonox/chat/ChatManager.cc
r10362 r10380 43 43 44 44 SetConsoleCommand("chat", &ChatManager::chat).defaultValue(1, NETWORK_PEER_ID_BROADCAST); 45 46 RegisterAbstractClass(ChatManager).inheritsFrom<NetworkChatListener>(); 45 47 46 48 ChatManager::ChatManager() -
code/branches/core7/src/orxonox/collisionshapes/WorldEntityCollisionShape.cc
r9667 r10380 37 37 namespace orxonox 38 38 { 39 RegisterClass(WorldEntityCollisionShape); 40 39 41 WorldEntityCollisionShape::WorldEntityCollisionShape(Context* context) : CompoundCollisionShape(context) 40 42 { -
code/branches/core7/src/orxonox/gamestates/GSMainMenu.cc
r10347 r10380 63 63 SetConsoleCommand(__CC_setMainMenuSoundPath_name, &GSMainMenu::setMainMenuSoundPath).hide(); 64 64 65 RegisterAbstractClass(GSMainMenu).inheritsFrom<Configurable>(); 66 65 67 GSMainMenu::GSMainMenu(const GameStateInfo& info) 66 68 : GameState(info) -
code/branches/core7/src/orxonox/interfaces/NotificationListener.cc
r9667 r10380 51 51 registerStaticNetworkFunction(NotificationListener::sendHelper); 52 52 53 RegisterAbstractClass(NotificationListener).inheritsFrom<OrxonoxInterface>(); 54 53 55 NotificationListener::NotificationListener() 54 56 { -
code/branches/core7/src/orxonox/interfaces/PickupListener.cc
r9667 r10380 40 40 namespace orxonox 41 41 { 42 RegisterAbstractClass(PickupListener).inheritsFrom<OrxonoxInterface>(); 42 43 43 44 /** -
code/branches/core7/src/orxonox/overlays/InGameConsole.cc
r10347 r10380 67 67 ManageScopedSingleton(InGameConsole, ScopeID::Graphics, false); 68 68 69 RegisterAbstractClass(InGameConsole).inheritsFrom<WindowEventListener>(); 70 69 71 /** 70 72 @brief Constructor: Creates and initializes the InGameConsole. -
code/branches/core7/src/orxonox/sound/AmbientSound.cc
r9939 r10380 36 36 namespace orxonox 37 37 { 38 RegisterAbstractClass(AmbientSound).inheritsFrom<BaseSound>().inheritsFrom<MoodListener>(); 39 38 40 AmbientSound::AmbientSound() 39 41 : bPlayOnLoad_(false) -
code/branches/core7/src/orxonox/sound/SoundManager.cc
r9939 r10380 66 66 } 67 67 68 RegisterAbstractClass(SoundManager).inheritsFrom<Configurable>(); 69 68 70 SoundManager::SoundManager() 69 71 : effectsPoolSize_(0)
Note: See TracChangeset
for help on using the changeset viewer.