Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 21, 2008, 6:14:31 PM (16 years ago)
Author:
rgrieder
Message:
  • merged all changes in the input branch into this one
  • moved Tickable to core (would have created circular library dependencies)
  • exported OrxListener to a separate file, soon to be deleted
changed
, &&, XOR back to or, and, xor because I found the necessary include file for VC++
  • created abortRequest() in Orxonox.cc to call for a smooth end of the game (an alternative would be to make tick() return a boolean, like it is with frameStarted())
File:
1 copied

Legend:

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

    r916 r917  
    3434#define _OrxListener_H__
    3535
     36#include <OIS/OISPrereqs.h>
     37
    3638#include "../OrxonoxPrereqs.h"
    3739#include "audio/AudioPrereqs.h"
    3840#include "Orxonox.h"
    39 #include "objects/Tickable.h"
     41#include "core/Tickable.h"
    4042
    4143namespace orxonox
     
    4446  {
    4547    public:
    46       OrxListener(audio::AudioManager*  auMan, gameMode mode);
     48      OrxListener(OIS::Keyboard *keyboard, audio::AudioManager*  auMan, gameMode mode);
    4749
    4850      void tick(float dt);
     
    5254      gameMode mode_;
    5355      audio::AudioManager* auMan_;
     56      OIS::Keyboard *keyboard_;
    5457  };
    5558}
Note: See TracChangeset for help on using the changeset viewer.