Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/event/event_def.h @ 4401

Last change on this file since 4401 was 4387, checked in by patrick, 19 years ago

orxonox/trunk: little fix to prevent compile error

File size: 644 bytes
RevLine 
[4353]1/*!
2    \file event_def.h
3    \brief some central definitions
4
5*/
6
7#ifndef _EVENT_DEF_H
8#define _EVENT_DEF_H
9
[4363]10#include "SDL_keysym.h"
[4387]11#include "stdincl.h"
[4363]12
[4366]13
[4353]14#define CMD_LENGHT 16
[4364]15#define N_STD_KEYS SDLK_LAST
16#define N_BUTTONS 6
17#define DEFAULT_KEYBIND_FILE "~/.orxonox/orxonox.conf"
[4353]18
[4365]19#define EVENT_QUEUE_LENGTH 32
[4364]20
[4363]21typedef enum extEventTyes
22  {
23    EV_MOUSE_MOTION = SDLK_LAST,
24    EV_MOUSE_BUTTON,
25    EV_JOY_AXIS_MOTION,
26    EV_JOY_BALL_MOTION,
27    EV_JOY_HAT_MOTION,
[4365]28    EV_JOY_BUTTON,
29
30    EV_NUMBER
[4363]31  };
[4353]32
[4366]33
34
[4364]35typedef enum elState
36  {
37    ES_GAME,
38    ES_GAME_MENU,
39    ES_MENU,
[4363]40
[4364]41    ES_ALL,
42
43    ES_NUMBER,
44  };
45
46
[4353]47#endif /* _EVENT_DEF_H */
Note: See TracBrowser for help on using the repository browser.