Changeset 8830 for code/branches/output/src/orxonox
- Timestamp:
- Aug 7, 2011, 10:51:54 PM (14 years ago)
- Location:
- code/branches/output/src/orxonox
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/orxonox/Main.cc
r8729 r8830 61 61 int main(const std::string& strCmdLine) 62 62 { 63 orxout(internal_status) << "entering orxonox::main()" << endl; 64 orxout(internal_info) << "command line: " << strCmdLine << endl; 65 66 orxout(internal_info) << "creating Game object:" << endl; 63 67 Game* game = new Game(strCmdLine); 68 orxout(user_status) << "Finished initialization" << endl; 64 69 65 70 if (CommandLineParser::getValue("generateDoc").getString().empty()) 66 71 { 72 orxout(internal_info) << "preparing game states" << endl; 73 67 74 /* TODO make this clear */ 68 75 game->setStateHierarchy( … … 98 105 } 99 106 107 orxout(internal_info) << "starting game" << endl; 100 108 game->run(); 101 109 } -
code/branches/output/src/orxonox/gamestates/GSClient.cc
r8788 r8830 52 52 void GSClient::activate() 53 53 { 54 orxout(user_status) << "Starting client" << endl; 55 54 56 GameMode::setIsClient(true); 55 57 -
code/branches/output/src/orxonox/gamestates/GSLevel.cc
r8809 r8830 74 74 void GSLevel::activate() 75 75 { 76 orxout(user_status) << "Loading level" << endl; 77 76 78 if (GameMode::showsGraphics()) 77 79 { … … 155 157 156 158 // call the loader 157 orxout(user_status) << "Loading level..." << endl;158 159 startFile_ = new XMLFile(LevelManager::getInstance().getDefaultLevel()); 159 160 bool loaded = Loader::open(startFile_); … … 169 170 delete startFile_; 170 171 171 orxout(user_status) << "Unloaded level" << endl;172 172 orxout(internal_info) << "Remaining objects:" << endl; 173 173 unsigned int i = 0; -
code/branches/output/src/orxonox/gamestates/GSMainMenu.cc
r8079 r8830 95 95 void GSMainMenu::activate() 96 96 { 97 orxout(user_status) << "Loading main menu" << endl; 98 97 99 // show main menu 98 100 GraphicsManager::getInstance().setCamera(this->camera_); -
code/branches/output/src/orxonox/gamestates/GSMasterServer.cc
r8809 r8830 50 50 void GSMasterServer::activate() 51 51 { 52 orxout(user_status) << "Starting masterserver" << endl; 53 52 54 /* TODO make this work for masterserver as well */ 53 55 //GameMode::setIsServer(true); 54 56 55 57 this->mserver = new MasterServer(); 56 orxout(user_status) << "Loading masterserver mode" << endl;57 58 58 this->mserver->run(); 59 59 } -
code/branches/output/src/orxonox/gamestates/GSServer.cc
r8809 r8830 54 54 void GSServer::activate() 55 55 { 56 orxout(user_status) << "Starting server" << endl; 57 56 58 GameMode::setIsServer(true); 57 59 -
code/branches/output/src/orxonox/sound/SoundManager.cc
r8809 r8830 71 71 RegisterRootObject(SoundManager); 72 72 73 orxout(user_status) << "Loading sound" << endl; 74 73 75 this->bDestructorCalled_ = false; 74 76
Note: See TracChangeset
for help on using the changeset viewer.