Changeset 917 for code/branches/network/src/orxonox/Orxonox.h
- Timestamp:
- Mar 21, 2008, 6:14:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/orxonox/Orxonox.h
r888 r917 9 9 10 10 #include <string> 11 #include <deque> 11 12 12 13 #include <OgrePrerequisites.h> … … 37 38 // not sure if this should be private 38 39 void die(/* some error code */); 40 void abortRequest(); 39 41 static Orxonox* getSingleton(); 40 42 inline Ogre::SceneManager* getSceneManager() { return ogre_->getSceneManager(); }; … … 65 67 void createFrameListener(); 66 68 void startRenderLoop(); 69 void mainLoop(); 70 void updateTimers(float); 71 float calculateEventTime(unsigned long, std::deque<unsigned long>&); 67 72 68 73 private: … … 78 83 OrxListener* frameListener_; 79 84 Ogre::Root* root_; 85 // TODO: make this a config-value by creating a config class for orxonox 86 float frameSmoothingTime_; 87 // little hack to actually show something dynamic in the HUD 88 HUD* orxonoxHUD_; 89 bool bAbort_; 80 90 81 91 // this is used to identify the mode (server/client/...) we're in
Note: See TracChangeset
for help on using the changeset viewer.