Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 24, 2008, 10:08:42 PM (16 years ago)
Author:
rgrieder
Message:
  • moved OrxonoxPlatform.h to util (didn't even notice util recently)
  • therefore was able to define uint32_t, etc. for all our libs in OrxonoxPlatform.h
  • made use of OgreRenderWindow::getAverageFPS() in HUD
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/core/KeyBinder.cc

    r1413 r1414  
    188188        // check for param command
    189189        int paramIndex = eval.getEvaluatedExecutor()->getAxisParamIndex();
    190         // TODO: check in Executor for correct paramIndex
    191190        if (paramIndex >= 0)
    192191        {
     
    231230          cmd->evaluation_ = eval;
    232231
    233           //TODO: check CommandEvaluation for correct KeybindMode
    234232          if (mode == KeybindMode::None)
    235233            mode = eval.getEvaluatedExecutor()->getKeybindMode();
     
    757755  void KeyBinder::joyStickAxisMoved(int joyStickID, int axis, int value)
    758756  {
    759     // TODO: check whether 16 bit integer as general axis value is a good idea (works under windows)
     757    // TODO: Use proper calibration values instead of generally 16-bit integer
    760758    int i = 8 + axis * 2;
    761759    if (value >= 0)
Note: See TracChangeset for help on using the changeset viewer.