Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 26, 2008, 1:44:51 PM (16 years ago)
Author:
rgrieder
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/Orxonox.h

    r922 r926  
    99
    1010#include <string>
    11 #include <deque>
    1211
    1312#include <OgrePrerequisites.h>
    14 #include <OIS/OISPrereqs.h>
     13//#include <OIS/OISPrereqs.h>
    1514
    1615#include "OrxonoxPrereqs.h"
     
    4342      inline GraphicsEngine* getOgrePointer()              { return ogre_; };
    4443      inline audio::AudioManager* getAudioManagerPointer() { return auMan_; };
    45       //inline OIS::Keyboard* getKeyboard()                  { return this->keyboard_; }
    46       //inline OIS::Mouse* getMouse()                        { return this->mouse_; }
    4744      inline BulletManager* getBulletMgr()                 { return this->bulletMgr_; }
    4845
     
    5855      void clientStart();
    5956      void standaloneStart();
    60       void defineResources();
    61       void setupRenderSystem();
    62       void createRenderWindow();
    63       void initializeResourceGroups();
     57
    6458      void createScene(void);
    65       void setupScene();
    6659      void setupInputSystem();
    6760      void startRenderLoop();
    68       void updateTimers(float);
    6961      float calculateEventTime(unsigned long, std::deque<unsigned long>&);
    7062
     
    7466      GraphicsEngine*       ogre_;          //!< our dearest graphics engine <3
    7567      std::string           dataPath_;      //!< path to data
    76 //      loader::LevelLoader*  loader_;        //!< level loader builds the scene
    7768      audio::AudioManager*  auMan_;         //!< audio manager
    7869      BulletManager*        bulletMgr_;     //!< Keeps track of the thrown bullets
    79       static Orxonox*       singletonRef_;
    8070      InputHandler*         inputHandler_;
    81       //OIS::Keyboard*        keyboard_;
    82       //OIS::Mouse*           mouse_;
    83       //OIS::InputManager*    inputManager_;
    84       OrxListener*          frameListener_;
    8571      Ogre::Root*           root_;
    8672      // TODO: make this a config-value by creating a config class for orxonox
     
    8874      // little hack to actually show something dynamic in the HUD
    8975      HUD*                  orxonoxHUD_;
    90       bool                  bAbort_;
     76      bool                  bAbort_;        //!< aborts the render loop if true
    9177
    9278      // this is used to identify the mode (server/client/...) we're in
Note: See TracChangeset for help on using the changeset viewer.