Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 24, 2008, 1:12:31 PM (16 years ago)
Author:
rgrieder
Message:
  • AudioManager is now Tickable
  • NPC update moved to its tick-function
  • corrected CMakeLists
  • added a few window properties to GraphicsEngine
  • OrxListener has been completely replaced
File:
1 edited

Legend:

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

    r918 r919  
    4242      inline GraphicsEngine* getOgrePointer()              { return ogre_; };
    4343      inline audio::AudioManager* getAudioManagerPointer() { return auMan_; };
    44       inline OIS::Keyboard* getKeyboard()                  { return this->keyboard_; }
    45       inline OIS::Mouse* getMouse()                        { return this->mouse_; }
     44      //inline OIS::Keyboard* getKeyboard()                  { return this->keyboard_; }
     45      //inline OIS::Mouse* getMouse()                        { return this->mouse_; }
    4646      inline BulletManager* getBulletMgr()                 { return this->bulletMgr_; }
    4747
     
    6464      void setupScene();
    6565      void setupInputSystem();
    66       void createFrameListener();
    6766      void startRenderLoop();
    68       void mainLoop();
    6967      void updateTimers(float);
    7068      float calculateEventTime(unsigned long, std::deque<unsigned long>&);
     
    7775      BulletManager*        bulletMgr_;     //!< Keeps track of the thrown bullets
    7876      static Orxonox*       singletonRef_;
    79       OIS::Keyboard*        keyboard_;
    80       OIS::Mouse*           mouse_;
    81       OIS::InputManager*    inputManager_;
     77      InputHandler*         inputHandler_;
     78      //OIS::Keyboard*        keyboard_;
     79      //OIS::Mouse*           mouse_;
     80      //OIS::InputManager*    inputManager_;
    8281      OrxListener*          frameListener_;
    8382      Ogre::Root*           root_;
Note: See TracChangeset for help on using the changeset viewer.