Changeset 5969 in orxonox.OLD for branches/spaceshipcontrol
- Timestamp:
- Dec 7, 2005, 4:26:02 PM (19 years ago)
- Location:
- branches/spaceshipcontrol/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/spaceshipcontrol/src/defs/globals.h
r5819 r5969 68 68 #define CONFIG_NAME_PLAYER_LEFT "Left" 69 69 #define CONFIG_NAME_PLAYER_RIGHT "Right" 70 #define CONFIG_NAME_PLAYER_ROLL_RIGHT "RollR" 71 #define CONFIG_NAME_PLAYER_ROLL_LEFT "RollL" 72 70 73 #define CONFIG_NAME_PLAYER_FIRE "Fire" 71 74 #define CONFIG_NAME_PLAYER_NEXT_WEAPON "Next" -
branches/spaceshipcontrol/src/lib/event/key_mapper.cc
r5886 r5969 37 37 int KeyMapper::PEV_LEFT = EV_UNKNOWN; 38 38 int KeyMapper::PEV_RIGHT = EV_UNKNOWN; 39 int KeyMapper::PEV_ROLL_LEFT = EV_UNKNOWN; 40 int KeyMapper::PEV_ROLL_RIGHT = EV_UNKNOWN; 39 41 int KeyMapper::PEV_STRAFE_LEFT = EV_UNKNOWN; 40 42 int KeyMapper::PEV_STRAFE_RIGHT = EV_UNKNOWN; … … 69 71 {&KeyMapper::PEV_LEFT, CONFIG_NAME_PLAYER_LEFT}, 70 72 {&KeyMapper::PEV_RIGHT, CONFIG_NAME_PLAYER_RIGHT}, 73 {&KeyMapper::PEV_ROLL_LEFT, CONFIG_NAME_PLAYER_ROLL_RIGHT}, 74 {&KeyMapper::PEV_ROLL_RIGHT, CONFIG_NAME_PLAYER_ROLL_LEFT}, 71 75 {&KeyMapper::PEV_STRAFE_LEFT, "StrafeLeft"}, 72 76 {&KeyMapper::PEV_STRAFE_RIGHT, "StrafeRight"}, -
branches/spaceshipcontrol/src/lib/event/key_mapper.h
r5886 r5969 44 44 static int PEV_RIGHT; //!< right button 45 45 46 static int PEV_ROLL_LEFT; //!< rolls left 47 static int PEV_ROLL_RIGHT; //!< rolls right 48 46 49 static int PEV_STRAFE_LEFT; //!< strafe left button 47 50 static int PEV_STRAFE_RIGHT; //!< strafe right button -
branches/spaceshipcontrol/src/lib/gui/gtk_gui/gui_keys.cc
r5766 r5969 115 115 116 116 pKeysBox->setGroupName(player); 117 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_UP, "UP")); 118 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_DOWN, "DOWN")); 119 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_LEFT, "LEFT")); 120 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_RIGHT, "RIGHT")); 117 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_UP, "w")); 118 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_DOWN, "s")); 119 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_LEFT, "a")); 120 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_RIGHT, "d")); 121 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_ROLL_LEFT, "q")); 122 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_ROLL_RIGHT, "e")); 121 123 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_FIRE, "MOUSE_LEFT")); 122 124 pKeysBox->fill(addKey(CONFIG_NAME_PLAYER_NEXT_WEAPON, "m")); -
branches/spaceshipcontrol/src/lib/sound/sound_engine.cc
r5910 r5969 281 281 282 282 // INITIALIZING THE DEVICE: 283 #if ndef AL_VERSION_1_1283 #ifdef AL_VERSION_1_1 284 284 ALubyte deviceName[] = 285 285 #else
Note: See TracChangeset
for help on using the changeset viewer.