Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4409 in orxonox.OLD for orxonox/trunk/src/story_entities


Ignore:
Timestamp:
May 31, 2005, 12:24:50 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: space ship control works again, now working on system commands

Location:
orxonox/trunk/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/story_entities/world.cc

    r4407 r4409  
    278278  this->garbageCollector = GarbageCollector::getInstance();
    279279
     280  this->eventHandler = EventHandler::getInstance();
     281
    280282  this->particleEngine = ParticleEngine::getInstance();
    281283  this->trackManager = TrackManager::getInstance();
     
    420422  orx->getLocalInput()->bind (localPlayer);
    421423
    422   EventHandler::getInstance()->subscribe(this->localPlayer, ES_ALL, KeyMapper::PEV_UP);
     424  this->eventHandler->subscribe(this->localPlayer, ES_ALL, KeyMapper::PEV_UP);
     425  this->eventHandler->subscribe(this->localPlayer, ES_ALL, KeyMapper::PEV_DOWN);
     426  this->eventHandler->subscribe(this->localPlayer, ES_ALL, KeyMapper::PEV_LEFT);
     427  this->eventHandler->subscribe(this->localPlayer, ES_ALL, KeyMapper::PEV_RIGHT);
    423428 
    424429  // bind camera
  • orxonox/trunk/src/story_entities/world.h

    r4396 r4409  
    2626class TiXmlElement;
    2727class PilotNode;
     28class EventHandler;
    2829
    2930//! The game world Interface
     
    128129
    129130  GarbageCollector* garbageCollector; //!< reference to the garbage  collector
     131  EventHandler* eventHandler;
    130132
    131133  /* function for main-loop */
Note: See TracChangeset for help on using the changeset viewer.