Changeset 3363 for code/branches/resource
- Timestamp:
- Jul 29, 2009, 5:24:39 PM (15 years ago)
- Location:
- code/branches/resource/src/core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/resource/src/core/Core.cc
r3356 r3363 248 248 249 249 Core::Core(const std::string& cmdLine) 250 : bDevRun_(false) 250 // Cleanup guard for identifier destruction (incl. XMLPort, configValues, consoleCommands) 251 : identifierDestroyer_(Identifier::destroyAllIdentifiers) 252 // Cleanup guard for external console commands that don't belong to an Identifier 253 , consoleCommandDestroyer_(CommandExecutor::destroyExternalCommands) 254 , bDevRun_(false) 251 255 , bGraphicsLoaded_(false) 256 , configuration_(new CoreConfiguration()) // Don't yet create config values! 252 257 { 253 258 if (singletonRef_s != 0) … … 257 262 } 258 263 Core::singletonRef_s = this; 259 260 // We need the variables very soon. But don't configure them yet!261 this->configuration_ = new CoreConfiguration();262 264 263 265 // Parse command line arguments first … … 276 278 // create a signal handler (only active for linux) 277 279 // This call is placed as soon as possible, but after the directories are set 278 this->signalHandler_ = new SignalHandler();280 this->signalHandler_.reset(new SignalHandler()); 279 281 this->signalHandler_->doCatch(configuration_->executablePath_.string(), Core::getLogPathString() + "orxonox_crash.log"); 280 282 … … 295 297 296 298 // Manage ini files and set the default settings file (usually orxonox.ini) 297 this->configFileManager_ = new ConfigFileManager();299 this->configFileManager_.reset(new ConfigFileManager()); 298 300 this->configFileManager_->setFilename(ConfigFileType::Settings, 299 301 CommandLine::getValue("settingsFile").getString()); 300 302 301 303 // Required as well for the config values 302 this->languageInstance_ = new Language();304 this->languageInstance_.reset(new Language()); 303 305 304 306 // Do this soon after the ConfigFileManager has been created to open up the … … 307 309 308 310 // Create the lua interface 309 this->luaBind_ = new LuaBind();311 this->luaBind_.reset(new LuaBind()); 310 312 311 313 // initialise Tcl 312 this->tclBind_ = new TclBind(Core::getMediaPathString());313 this->tclThreadManager_ = new TclThreadManager(tclBind_->getTclInterpreter());314 this->tclBind_.reset(new TclBind(Core::getMediaPathString())); 315 this->tclThreadManager_.reset(new TclThreadManager(tclBind_->getTclInterpreter())); 314 316 315 317 // create a shell 316 this->shell_ = new Shell();318 this->shell_.reset(new Shell()); 317 319 318 320 // creates the class hierarchy for all classes with factories … … 321 323 322 324 /** 323 @brief Sets the bool to true to avoid static functions accessing a deleted object. 325 @brief 326 All destruction code is handled by scoped_ptrs and SimpleScopeGuards. 324 327 */ 325 328 Core::~Core() 326 329 { 327 delete this->shell_;328 delete this->tclThreadManager_;329 delete this->tclBind_;330 delete this->luaBind_;331 delete this->configuration_;332 delete this->languageInstance_;333 delete this->configFileManager_;334 335 // Destroy command line arguments336 CommandLine::destroyAllArguments();337 // Also delete external console commands that don't belong to an Identifier338 CommandExecutor::destroyExternalCommands();339 // Clean up class hierarchy stuff (identifiers, XMLPort, configValues, consoleCommand)340 Identifier::destroyAllIdentifiers();341 342 delete this->signalHandler_;343 344 330 // Don't assign singletonRef_s with NULL! Recreation is not supported 331 // The is quite simply because of the pre-main code that uses heap allocation 332 // And we correctly deallocate these resources in this destructor. 345 333 } 346 334 … … 351 339 352 340 // Load OGRE including the render window 353 this->graphicsManager_ = new GraphicsManager();341 scoped_ptr<GraphicsManager> graphicsManager(new GraphicsManager()); 354 342 355 343 // The render window width and height are used to set up the mouse movement. 356 344 size_t windowHnd = 0; 357 Ogre::RenderWindow* renderWindow = GraphicsManager::getInstance().getRenderWindow(); 358 renderWindow->getCustomAttribute("WINDOW", &windowHnd); 345 graphicsManager->getRenderWindow()->getCustomAttribute("WINDOW", &windowHnd); 359 346 360 347 // Calls the InputManager which sets up the input devices. 361 inputManager_ = new InputManager(windowHnd);348 scoped_ptr<InputManager> inputManager(new InputManager(windowHnd)); 362 349 363 350 // load the CEGUI interface 364 guiManager_ = new GUIManager(renderWindow); 351 guiManager_.reset(new GUIManager(graphicsManager->getRenderWindow())); 352 353 // Dismiss scoped pointers 354 graphicsManager_.swap(graphicsManager); 355 inputManager_.swap(inputManager); 365 356 366 357 bGraphicsLoaded_ = true; … … 372 363 return; 373 364 374 delete this->guiManager_;375 delete this->inputManager_;376 delete graphicsManager_;365 this->guiManager_.reset();; 366 this->inputManager_.reset();; 367 this->graphicsManager_.reset(); 377 368 378 369 bGraphicsLoaded_ = false; -
code/branches/resource/src/core/Core.h
r3349 r3363 43 43 44 44 #include <cassert> 45 #include <boost/scoped_ptr.hpp> 45 46 #include "util/OutputHandler.h" 47 #include "util/ScopeGuard.h" 46 48 47 49 namespace orxonox 48 50 { 49 51 class CoreConfiguration; 52 using boost::scoped_ptr; 50 53 51 54 /** … … 58 61 class _CoreExport Core 59 62 { 63 typedef Loki::ScopeGuardImpl0<void (*)()> SimpleScopeGuard; 64 60 65 public: 61 66 /** … … 112 117 void setThreadAffinity(int limitToCPU); 113 118 114 // Singletons 115 ConfigFileManager* configFileManager_; 116 Language* languageInstance_; 117 LuaBind* luaBind_; 118 Shell* shell_; 119 SignalHandler* signalHandler_; 120 TclBind* tclBind_; 121 TclThreadManager* tclThreadManager_; 119 // Mind the order for the destruction! 120 scoped_ptr<SignalHandler> signalHandler_; 121 SimpleScopeGuard identifierDestroyer_; 122 SimpleScopeGuard consoleCommandDestroyer_; 123 scoped_ptr<ConfigFileManager> configFileManager_; 124 scoped_ptr<Language> languageInstance_; 125 scoped_ptr<CoreConfiguration> configuration_; 126 scoped_ptr<LuaBind> luaBind_; 127 scoped_ptr<TclBind> tclBind_; 128 scoped_ptr<TclThreadManager> tclThreadManager_; 129 scoped_ptr<Shell> shell_; 122 130 // graphical 123 InputManager* inputManager_; //!< Interface to OIS124 GUIManager* guiManager_; //!< Interface to GUI125 GraphicsManager* graphicsManager_; //!< Interface to OGRE131 scoped_ptr<GraphicsManager> graphicsManager_; //!< Interface to OGRE 132 scoped_ptr<InputManager> inputManager_; //!< Interface to OIS 133 scoped_ptr<GUIManager> guiManager_; //!< Interface to GUI 126 134 127 bool bDevRun_; //!< True for runs in the build directory (not installed) 128 bool bGraphicsLoaded_; 129 CoreConfiguration* configuration_; 135 bool bDevRun_; //!< True for runs in the build directory (not installed) 136 bool bGraphicsLoaded_; 130 137 131 138 static Core* singletonRef_s; -
code/branches/resource/src/core/Game.cc
r3359 r3363 40 40 #include "util/Debug.h" 41 41 #include "util/Exception.h" 42 #include "util/ScopeGuard.h" 42 43 #include "util/Sleep.h" 43 44 #include "util/SubString.h" … … 133 134 134 135 // Set up a basic clock to keep time 135 this->gameClock_ = new Clock();136 this->gameClock_.reset(new Clock()); 136 137 137 138 // Create the Core 138 this->core_ = new Core(cmdLine);139 this->core_.reset(new Core(cmdLine)); 139 140 140 141 // After the core has been created, we can safely instantiate the GameStates that don't require graphics … … 153 154 154 155 // Do this after the Core creation! 155 this->configuration_ = new GameConfiguration();156 this->configuration_.reset(new GameConfiguration()); 156 157 } 157 158 158 159 /** 159 160 @brief 161 All destruction code is handled by scoped_ptrs and SimpleScopeGuards. 160 162 */ 161 163 Game::~Game() 162 164 { 163 // Destroy the configuration helper class instance164 delete this->configuration_;165 166 // Destroy the GameStates (note that the nodes still point to them, but doesn't matter)167 for (std::map<std::string, GameState*>::const_iterator it = constructedStates_.begin();168 it != constructedStates_.end(); ++it)169 delete it->second;170 171 // Destroy the Core and with it almost everything172 delete this->core_;173 delete this->gameClock_;174 175 // Take care of the GameStateFactories176 GameStateFactory::destroyFactories();177 178 165 // Don't assign singletonRef_s with NULL! Recreation is not supported 179 166 } … … 283 270 { 284 271 // Note: The first element is the empty root state, which doesn't need ticking 285 for ( std::vector<GameState*>::const_iterator it = this->loadedStates_.begin() + 1;272 for (GameStateVector::const_iterator it = this->loadedStates_.begin() + 1; 286 273 it != this->loadedStates_.end(); ++it) 287 274 { … … 457 444 } 458 445 459 GameState*Game::getState(const std::string& name)460 { 461 std::map<std::string, GameState*>::const_iterator it = constructedStates_.find(name);446 shared_ptr<GameState> Game::getState(const std::string& name) 447 { 448 GameStateMap::const_iterator it = constructedStates_.find(name); 462 449 if (it != constructedStates_.end()) 463 450 return it->second; … … 469 456 else 470 457 COUT(1) << "Error: Could not find GameState '" << name << "'." << std::endl; 471 return 0;458 return shared_ptr<GameState>(); 472 459 } 473 460 } … … 528 515 { 529 516 core_->loadGraphics(); 517 Loki::ScopeGuard graphicsUnloader = Loki::MakeObjGuard(*this, &Game::unloadGraphics); 530 518 GameMode::bShowsGraphics_s = true; 531 519 … … 536 524 if (it->second.bGraphicsMode) 537 525 { 526 // Game state loading failure is serious --> don't catch 527 shared_ptr<GameState> gameState = GameStateFactory::fabricate(it->second); 538 528 if (!constructedStates_.insert(std::make_pair( 539 it->second.stateName, GameStateFactory::fabricate(it->second))).second)529 it->second.stateName, gameState)).second) 540 530 assert(false); // GameState was already created! 541 531 } 542 532 } 533 graphicsUnloader.Dismiss(); 543 534 } 544 535 } … … 549 540 { 550 541 // Destroy all the GameStates that require graphics 551 for ( std::map<std::string, GameState*>::iterator it = constructedStates_.begin(); it != constructedStates_.end();)542 for (GameStateMap::iterator it = constructedStates_.begin(); it != constructedStates_.end();) 552 543 { 553 544 if (it->second->getInfo().bGraphicsMode) 554 {555 delete it->second;556 545 constructedStates_.erase(it++); 557 }558 546 else 559 547 ++it; … … 577 565 { 578 566 this->bChangingState_ = true; 567 LOKI_ON_BLOCK_EXIT_OBJ(*this, &Game::resetChangingState); 568 579 569 // If state requires graphics, load it 580 if (gameStateDeclarations_s[name].bGraphicsMode) 570 Loki::ScopeGuard graphicsUnloader = Loki::MakeObjGuard(*this, &Game::unloadGraphics); 571 if (gameStateDeclarations_s[name].bGraphicsMode && !GameMode::showsGraphics()) 581 572 this->loadGraphics(); 582 GameState* state = this->getState(name); 573 else 574 graphicsUnloader.Dismiss(); 575 576 shared_ptr<GameState> state = this->getState(name); 583 577 state->activate(); 584 578 if (!this->loadedStates_.empty()) … … 586 580 this->loadedStates_.push_back(state); 587 581 state->activity_.topState = true; 588 this->bChangingState_ = false; 582 583 graphicsUnloader.Dismiss(); 589 584 } 590 585 591 586 void Game::unloadState(const std::string& name) 592 587 { 593 GameState* state = this->getState(name);594 588 this->bChangingState_ = true; 595 state->activity_.topState = false;596 this->loadedStates_.pop_back();597 if (!this->loadedStates_.empty())598 this->loadedStates_.back()->activity_.topState = true;599 589 try 600 590 { 591 shared_ptr<GameState> state = this->getState(name); 592 state->activity_.topState = false; 593 this->loadedStates_.pop_back(); 594 if (!this->loadedStates_.empty()) 595 this->loadedStates_.back()->activity_.topState = true; 601 596 state->deactivate(); 602 // Check if graphis is still required603 bool graphicsRequired = false;604 for (unsigned i = 0; i < loadedStates_.size(); ++i)605 graphicsRequired |= loadedStates_[i]->getInfo().bGraphicsMode;606 if (!graphicsRequired)607 this->unloadGraphics();608 597 } 609 598 catch (const std::exception& ex) … … 612 601 COUT(2) << " There might be potential resource leaks involved! To avoid this, improve exception-safety." << std::endl; 613 602 } 603 // Check if graphics is still required 604 bool graphicsRequired = false; 605 for (unsigned i = 0; i < loadedStates_.size(); ++i) 606 graphicsRequired |= loadedStates_[i]->getInfo().bGraphicsMode; 607 if (!graphicsRequired) 608 this->unloadGraphics(); 614 609 this->bChangingState_ = false; 615 610 } 616 611 617 std::map<std::string, Game::GameStateFactory*> Game::GameStateFactory::factories_s;618 619 /*static*/ GameState*Game::GameStateFactory::fabricate(const GameStateInfo& info)620 { 621 std::map<std::string, GameStateFactory*>::const_iterator it = factories_s.find(info.className);612 std::map<std::string, shared_ptr<Game::GameStateFactory> > Game::GameStateFactory::factories_s; 613 614 /*static*/ shared_ptr<GameState> Game::GameStateFactory::fabricate(const GameStateInfo& info) 615 { 616 std::map<std::string, shared_ptr<Game::GameStateFactory> >::const_iterator it = factories_s.find(info.className); 622 617 assert(it != factories_s.end()); 623 618 return it->second->fabricateInternal(info); 624 619 } 625 626 /*static*/ void Game::GameStateFactory::destroyFactories()627 {628 for (std::map<std::string, GameStateFactory*>::const_iterator it = factories_s.begin(); it != factories_s.end(); ++it)629 delete it->second;630 factories_s.clear();631 }632 620 } -
code/branches/resource/src/core/Game.h
r3356 r3363 44 44 #include <vector> 45 45 #include <boost/shared_ptr.hpp> 46 #include <boost/scoped_ptr.hpp> 46 47 #include <boost/preprocessor/cat.hpp> 47 48 … … 59 60 { 60 61 class GameConfiguration; 62 using boost::scoped_ptr; 63 using boost::shared_ptr; 61 64 62 65 //! Helper object required before GameStates are being constructed … … 75 78 class _CoreExport Game 76 79 { 80 typedef std::vector<shared_ptr<GameState> > GameStateVector; 81 typedef std::map<std::string, shared_ptr<GameState> > GameStateMap; 77 82 typedef boost::shared_ptr<GameStateTreeNode> GameStateTreeNodePtr; 78 83 public: … … 81 86 82 87 void setStateHierarchy(const std::string& str); 83 GameState*getState(const std::string& name);88 shared_ptr<GameState> getState(const std::string& name); 84 89 85 90 void run(); … … 106 111 public: 107 112 virtual ~GameStateFactory() { } 108 static GameState*fabricate(const GameStateInfo& info);113 static shared_ptr<GameState> fabricate(const GameStateInfo& info); 109 114 template <class T> 110 115 static void createFactory(const std::string& className) 111 { factories_s[className] = new TemplateGameStateFactory<T>(); } 112 static void destroyFactories(); 116 { factories_s[className].reset(new TemplateGameStateFactory<T>()); } 113 117 private: 114 virtual GameState*fabricateInternal(const GameStateInfo& info) = 0;115 static std::map<std::string, GameStateFactory*> factories_s;118 virtual shared_ptr<GameState> fabricateInternal(const GameStateInfo& info) = 0; 119 static std::map<std::string, shared_ptr<GameStateFactory> > factories_s; 116 120 }; 117 121 template <class T> … … 119 123 { 120 124 public: 121 GameState*fabricateInternal(const GameStateInfo& info)122 { return new T(info); }125 shared_ptr<GameState> fabricateInternal(const GameStateInfo& info) 126 { return shared_ptr<GameState>(new T(info)); } 123 127 }; 124 128 … … 144 148 void updateFPSLimiter(); 145 149 146 std::map<std::string, GameState*> constructedStates_; 147 std::vector<GameState*> loadedStates_; 150 // ScopeGuard helper function 151 void resetChangingState() { this->bChangingState_ = false; } 152 153 scoped_ptr<Clock> gameClock_; 154 scoped_ptr<Core> core_; 155 scoped_ptr<GameConfiguration> configuration_; 156 157 GameStateMap constructedStates_; 158 GameStateVector loadedStates_; 148 159 GameStateTreeNodePtr rootStateNode_; 149 160 GameStateTreeNodePtr loadedTopStateNode_; 150 std::vector<GameStateTreeNodePtr > requestedStateNodes_; 151 152 Core* core_; 153 Clock* gameClock_; 154 GameConfiguration* configuration_; 161 std::vector<GameStateTreeNodePtr> requestedStateNodes_; 155 162 156 163 bool bChangingState_;
Note: See TracChangeset
for help on using the changeset viewer.