Changeset 1535 for code/trunk/src/orxonox/GraphicsEngine.h
- Timestamp:
- Jun 4, 2008, 8:54:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/GraphicsEngine.h
r1511 r1535 21 21 * 22 22 * Author: 23 * Benjamin Knecht <beni_at_orxonox.net>, (C) 200723 * Reto Grieder 24 24 * Co-authors: 25 * Reto Grieder25 * Benjamin Knecht <beni_at_orxonox.net>, (C) 2007, Felix Schulthess 26 26 * 27 27 */ … … 56 56 public: 57 57 void setConfigValues(); 58 bool setup( std::string& dataPath);59 voiddeclareRessourceLocations();58 bool setup(); 59 bool declareRessourceLocations(); 60 60 bool loadRenderer(); 61 61 bool initialiseResources(); … … 65 65 66 66 Ogre::SceneManager* getSceneManager() { return scene_; } 67 std::string& getDataPath() { return dataPath_; }68 67 69 68 // several window properties … … 95 94 bool, const std::string&); 96 95 97 Ogre::Root* root_; //!< Ogre's root98 Ogre::SceneManager* scene_; //!< scene manager of the game99 Ogre::RenderWindow* renderWindow_; //!< the current render window100 //bool bOverwritePath_; //!< overwrites path101 //std::string configPath_; //!< path to config file102 std::string dataPath_; //!< path to data file103 std::string ogreLog file_;//!< log file name for Ogre log messages104 int ogreLogLevelTrivial_; //!< Corresponding Orxonx debug level for LL_TRIVIAL105 int ogreLogLevelNormal_; //!< Corresponding Orxonx debug level for LL_NORMAL106 int ogreLogLevelCritical_; //!< Corresponding Orxonx debug level for LL_CRITICAL96 Ogre::Root* root_; //!< Ogre's root 97 Ogre::SceneManager* scene_; //!< scene manager of the game 98 Ogre::RenderWindow* renderWindow_; //!< the current render window 99 std::string resourceFile_; //!< resources file name 100 std::string ogreConfigFile_; //!< ogre config file name 101 std::string ogrePluginsFile_; //!< ogre plugins file name 102 std::string ogreLogFile_; //!< log file name for Ogre log messages 103 int ogreLogLevelTrivial_; //!< Corresponding Orxonx debug level for LL_TRIVIAL 104 int ogreLogLevelNormal_; //!< Corresponding Orxonx debug level for LL_NORMAL 105 int ogreLogLevelCritical_; //!< Corresponding Orxonx debug level for LL_CRITICAL 107 106 }; 108 107 }
Note: See TracChangeset
for help on using the changeset viewer.