Changeset 10464 for code/branches/core7/src/orxonox
- Timestamp:
- May 25, 2015, 12:13:34 AM (10 years ago)
- Location:
- code/branches/core7/src/orxonox
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/orxonox/CameraManager.cc
r10459 r10464 44 44 namespace orxonox 45 45 { 46 ManageScopedSingleton(CameraManager, ScopeID::G raphics, false);46 ManageScopedSingleton(CameraManager, ScopeID::GRAPHICS, false); 47 47 48 48 CameraManager::CameraManager() -
code/branches/core7/src/orxonox/LevelManager.cc
r10459 r10464 51 51 SetCommandLineArgument(level, "").shortcut("l").information("Default level file (overrides LevelManager::defaultLevelName_ configValue)"); 52 52 53 ManageScopedSingleton(LevelManager, ScopeID::R oot, false);53 ManageScopedSingleton(LevelManager, ScopeID::ROOT, false); 54 54 55 55 RegisterAbstractClass(LevelManager).inheritsFrom<Configurable>(); -
code/branches/core7/src/orxonox/MoodManager.cc
r10459 r10464 36 36 namespace orxonox 37 37 { 38 ManageScopedSingleton(MoodManager, ScopeID::R oot, false);38 ManageScopedSingleton(MoodManager, ScopeID::ROOT, false); 39 39 40 40 // Note: I'm (Kevin Young) not entirely sure whether that's good code style: -
code/branches/core7/src/orxonox/PlayerManager.cc
r10459 r10464 39 39 namespace orxonox 40 40 { 41 ManageScopedSingleton(PlayerManager, ScopeID::R oot, false);41 ManageScopedSingleton(PlayerManager, ScopeID::ROOT, false); 42 42 43 43 RegisterAbstractClass(PlayerManager).inheritsFrom<ClientConnectionListener>(); -
code/branches/core7/src/orxonox/chat/ChatHistory.cc
r10459 r10464 34 34 { 35 35 /* singleton */ 36 ManageScopedSingleton( ChatHistory, ScopeID::R oot, false );36 ManageScopedSingleton( ChatHistory, ScopeID::ROOT, false ); 37 37 38 38 RegisterAbstractClass(ChatHistory).inheritsFrom<ChatListener>(); -
code/branches/core7/src/orxonox/chat/ChatInputHandler.cc
r10459 r10464 62 62 { 63 63 /* singleton */ 64 ManageScopedSingleton( ChatInputHandler, ScopeID::G raphics, false );64 ManageScopedSingleton( ChatInputHandler, ScopeID::GRAPHICS, false ); 65 65 66 66 /* add commands to console */ -
code/branches/core7/src/orxonox/chat/ChatManager.cc
r10459 r10464 40 40 namespace orxonox 41 41 { 42 ManageScopedSingleton(ChatManager, ScopeID::R oot, false);42 ManageScopedSingleton(ChatManager, ScopeID::ROOT, false); 43 43 44 44 SetConsoleCommand("chat", &ChatManager::chat).defaultValue(1, NETWORK_PEER_ID_BROADCAST); -
code/branches/core7/src/orxonox/overlays/InGameConsole.cc
r10459 r10464 65 65 SetConsoleCommand("InGameConsole", "closeConsole", &InGameConsole::closeConsole); 66 66 67 ManageScopedSingleton(InGameConsole, ScopeID::G raphics, false);67 ManageScopedSingleton(InGameConsole, ScopeID::GRAPHICS, false); 68 68 69 69 RegisterAbstractClass(InGameConsole).inheritsFrom<WindowEventListener>().inheritsFrom<UpdateListener>(); -
code/branches/core7/src/orxonox/sound/SoundManager.cc
r10459 r10464 50 50 namespace orxonox 51 51 { 52 ManageScopedSingleton(SoundManager, ScopeID::G raphics, true);52 ManageScopedSingleton(SoundManager, ScopeID::GRAPHICS, true); 53 53 54 54 std::string SoundManager::getALErrorString(ALenum code)
Note: See TracChangeset
for help on using the changeset viewer.