|
Last change
on this file since 6431 was
5553,
checked in by bensch, 20 years ago
|
|
orxonox/trunk: Quit Events are listened on.
- Quit-Button from the Windows Handler works
- ctrl-c also quits the game.
(smoothly)
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | * @file event_def.h |
|---|
| 3 | * some central definitions |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _EVENT_DEF_H |
|---|
| 7 | #define _EVENT_DEF_H |
|---|
| 8 | |
|---|
| 9 | #ifdef HAVE_SDL_H |
|---|
| 10 | #include "SDL_keysym.h" |
|---|
| 11 | #else |
|---|
| 12 | #include "SDL/SDL_keysym.h" |
|---|
| 13 | #endif |
|---|
| 14 | #include "stdincl.h" |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | //! these are the extended event types, that are not included in SDL_keysym |
|---|
| 18 | typedef enum extEventTyes |
|---|
| 19 | { |
|---|
| 20 | EV_MOUSE_BUTTON_LEFT = SDLK_LAST + 1, |
|---|
| 21 | EV_MOUSE_BUTTON_MIDDLE, |
|---|
| 22 | EV_MOUSE_BUTTON_RIGHT, |
|---|
| 23 | EV_MOUSE_BUTTON_WHEELUP, |
|---|
| 24 | EV_MOUSE_BUTTON_WHEELDOWN, |
|---|
| 25 | EV_MOUSE_MOTION, |
|---|
| 26 | EV_JOY_AXIS_MOTION, |
|---|
| 27 | EV_JOY_BALL_MOTION, |
|---|
| 28 | EV_JOY_HAT_MOTION, |
|---|
| 29 | EV_JOY_BUTTON, |
|---|
| 30 | |
|---|
| 31 | EV_VIDEO_RESIZE, |
|---|
| 32 | |
|---|
| 33 | EV_MAIN_QUIT, |
|---|
| 34 | |
|---|
| 35 | EV_UNKNOWN, |
|---|
| 36 | |
|---|
| 37 | EV_NUMBER |
|---|
| 38 | }; |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | //! this is an enumeration of all states of the event_handler/game |
|---|
| 42 | typedef enum elState |
|---|
| 43 | { |
|---|
| 44 | ES_NULL = -1, |
|---|
| 45 | ES_GAME = 0, //!< the state during the game plays |
|---|
| 46 | ES_GAME_MENU = 1, //!< state when the menu is called during game |
|---|
| 47 | ES_MENU = 2, //!< orxonox menu state |
|---|
| 48 | ES_SHELL = 3, //!< if we are in shell Modus |
|---|
| 49 | |
|---|
| 50 | ES_ALL = 4, //!< you want to register events for all states |
|---|
| 51 | |
|---|
| 52 | ES_NUMBER = 5, //!< the number of states |
|---|
| 53 | }; |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | #endif /* _EVENT_DEF_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.