Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 3, 2008, 12:20:36 AM (16 years ago)
Author:
rgrieder
Message:
  • moved Tickable to objects again
  • network, audio and core now have their own tick routine
  • Sequence is defined in Orxonox.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/input/src/core/input/InputManager.h

    r1519 r1524  
    4343#include "ois/OIS.h"
    4444#include "util/Math.h"
    45 #include "core/Tickable.h"
     45#include "core/OrxonoxClass.h"
    4646#include "InputInterfaces.h"
    4747
     
    8989  */
    9090  class _CoreExport InputManager
    91         : public TickableReal,
     91        : public OrxonoxClass,
    9292          public OIS::KeyListener, public OIS::MouseListener, public OIS::JoyStickListener
    9393  {
     
    143143    static void calibrate();
    144144
     145    static void tick(float dt);
     146
    145147    static bool addKeyHandler                 (KeyHandler* handler, const std::string& name);
    146148    static bool removeKeyHandler              (const std::string& name);
     
    191193    unsigned int _getJoystick(const OIS::JoyStickEvent& arg);
    192194
    193     void tick(float dt);
     195    void _tick(float dt);
    194196
    195197    // input events
Note: See TracChangeset for help on using the changeset viewer.