Changeset 8830 for code/branches/output/src/orxonox/gamestates
- Timestamp:
- Aug 7, 2011, 10:51:54 PM (13 years ago)
- Location:
- code/branches/output/src/orxonox/gamestates
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.