| 1 | /*! | 
|---|
| 2 |  * @file event_handler.h | 
|---|
| 3 |  * Definition of the EventHandler | 
|---|
| 4 |  * | 
|---|
| 5 |  */ | 
|---|
| 6 |  | 
|---|
| 7 | #ifndef _EVENT_HANDLER_H | 
|---|
| 8 | #define _EVENT_HANDLER_H | 
|---|
| 9 |  | 
|---|
| 10 | #include "base_object.h" | 
|---|
| 11 | #include "key_mapper.h" | 
|---|
| 12 | #include "event_def.h" | 
|---|
| 13 |  | 
|---|
| 14 | // FORWARD DECLARATION | 
|---|
| 15 | class EventListener; | 
|---|
| 16 | template<class T> class tStack; | 
|---|
| 17 | class IniParser; | 
|---|
| 18 |  | 
|---|
| 19 | //! The one Event Handler from Orxonox | 
|---|
| 20 | class EventHandler : public BaseObject { | 
|---|
| 21 |  | 
|---|
| 22 |  public: | 
|---|
| 23 |   virtual ~EventHandler(); | 
|---|
| 24 |   /** @returns a Pointer to the only object of this Class */ | 
|---|
| 25 |   inline static EventHandler* getInstance() { if (!singletonRef) singletonRef = new EventHandler();  return singletonRef; }; | 
|---|
| 26 |   void init(IniParser* iniParser); | 
|---|
| 27 |  | 
|---|
| 28 |   /** @param state: to which the event handler shall change */ | 
|---|
| 29 |   inline void setState(elState state) { this->state = state; }; | 
|---|
| 30 |   /** @returns the current state */ | 
|---|
| 31 |   inline elState getState() const { return this->state; }; | 
|---|
| 32 |  | 
|---|
| 33 |   void pushState(elState state); | 
|---|
| 34 |   elState popState(); | 
|---|
| 35 |  | 
|---|
| 36 |   void subscribe(EventListener* el, elState state, int eventType); | 
|---|
| 37 |   void unsubscribe(elState state, int eventType); | 
|---|
| 38 |   void unsubscribe(EventListener* el, elState state = ES_ALL); | 
|---|
| 39 |   void flush(elState state); | 
|---|
| 40 |   /** @returns true, if the @param state has @param eventType subscribed?? */ | 
|---|
| 41 |   inline bool isSubscribed(elState state, int eventType) { return(listeners[state][eventType] == NULL)?false:true; }; | 
|---|
| 42 |  | 
|---|
| 43 |  | 
|---|
| 44 |   void withUNICODE(bool enableUNICODE); | 
|---|
| 45 |   void grabEvents(bool grabEvents); | 
|---|
| 46 |  | 
|---|
| 47 |   void process(); | 
|---|
| 48 |  | 
|---|
| 49 |   static int eventFilter(const SDL_Event *event); | 
|---|
| 50 |   void debug() const; | 
|---|
| 51 |  | 
|---|
| 52 |  private: | 
|---|
| 53 |   EventHandler(); | 
|---|
| 54 |  | 
|---|
| 55 |  | 
|---|
| 56 |  private: | 
|---|
| 57 |   static EventHandler*       singletonRef;                    //!< the singleton reference | 
|---|
| 58 |  | 
|---|
| 59 |   EventListener*             listeners[ES_NUMBER][EV_NUMBER]; //!< a list of registered listeners. | 
|---|
| 60 |   elState                    state;                           //!< the state of the event handlder. | 
|---|
| 61 |   tStack<short>*             stateStack;                      //!< a stack for the States we are in. | 
|---|
| 62 |   KeyMapper*                 keyMapper;                       //!< reference to the key mapper. | 
|---|
| 63 |  | 
|---|
| 64 |   bool                       bUNICODE;                        //!< If unicode should be enabled. | 
|---|
| 65 |   bool                       eventsGrabbed;                   //!< If the events should be grabbed | 
|---|
| 66 | }; | 
|---|
| 67 |  | 
|---|
| 68 |  | 
|---|
| 69 | #endif /* _EVENT_HANDLER_H */ | 
|---|