Changeset 7868 in orxonox.OLD for trunk/src/world_entities/space_ships/turbine_hover.cc
- Timestamp:
- May 26, 2006, 1:21:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/turbine_hover.cc
r7348 r7868 26 26 #include "util/loading/factory.h" 27 27 #include "key_mapper.h" 28 #include "event_handler.h"29 28 #include "state.h" 30 29 … … 32 31 #include "dot_emitter.h" 33 32 #include "sprite_particles.h" 34 35 using namespace std;36 33 37 34 CREATE_FACTORY(TurbineHover, CL_TURBINE_HOVER); … … 176 173 177 174 178 //add events to the eventlist 179 registerEvent(KeyMapper::PEV_FORWARD);180 registerEvent(KeyMapper::PEV_BACKWARD);181 registerEvent(KeyMapper::PEV_LEFT);182 registerEvent(KeyMapper::PEV_RIGHT);183 registerEvent(KeyMapper::PEV_UP);184 registerEvent(KeyMapper::PEV_DOWN);185 registerEvent(KeyMapper::PEV_FIRE1);186 registerEvent(KeyMapper::PEV_NEXT_WEAPON);187 registerEvent(KeyMapper::PEV_PREVIOUS_WEAPON);188 registerEvent(EV_MOUSE_MOTION);175 //add events to the eventlist of the Playable 176 this->registerEvent(KeyMapper::PEV_FORWARD); 177 this->registerEvent(KeyMapper::PEV_BACKWARD); 178 this->registerEvent(KeyMapper::PEV_LEFT); 179 this->registerEvent(KeyMapper::PEV_RIGHT); 180 this->registerEvent(KeyMapper::PEV_UP); 181 this->registerEvent(KeyMapper::PEV_DOWN); 182 this->registerEvent(KeyMapper::PEV_FIRE1); 183 this->registerEvent(KeyMapper::PEV_NEXT_WEAPON); 184 this->registerEvent(KeyMapper::PEV_PREVIOUS_WEAPON); 185 this->registerEvent(EV_MOUSE_MOTION); 189 186 190 187 dynamic_cast<Element2D*>(this->getWeaponManager().getFixedTarget())->setVisibility( false);
Note: See TracChangeset
for help on using the changeset viewer.