Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/event/event_handler.h @ 8044

Last change on this file since 8044 was 7919, checked in by bensch, 18 years ago

orxonox/trunk: merged the gui branche back
merged with command:
https://svn.orxonox.net/orxonox/branches/gui
no conflicts

File size: 2.3 KB
RevLine 
[4780]1/*!
[5039]2 * @file event_handler.h
3 * Definition of the EventHandler
4 *
5 */
[4780]6
[4346]7#ifndef _EVENT_HANDLER_H
8#define _EVENT_HANDLER_H
[4329]9
10#include "base_object.h"
[4405]11#include "key_mapper.h"
[4352]12#include "event_def.h"
[7919]13#include "event.h"
[7164]14#include <stack>
[7756]15#include <vector>
[4329]16
[4834]17// FORWARD DECLARATION
[4346]18class EventListener;
[4329]19
[4346]20//! The one Event Handler from Orxonox
21class EventHandler : public BaseObject {
22
[4329]23 public:
[4746]24  virtual ~EventHandler();
[4836]25  /** @returns a Pointer to the only object of this Class */
[4746]26  inline static EventHandler* getInstance() { if (!singletonRef) singletonRef = new EventHandler();  return singletonRef; };
[7256]27  void init();
[4407]28
[7919]29  void setState(elState state);
[5093]30  /** @returns the current state */
31  inline elState getState() const { return this->state; };
[4350]32
[5388]33  void pushState(elState state);
34  elState popState();
35
[4405]36  void subscribe(EventListener* el, elState state, int eventType);
[7868]37  void unsubscribe(EventListener* el, elState state, int eventType);
[4420]38  void unsubscribe(EventListener* el, elState state = ES_ALL);
[4364]39  void flush(elState state);
[5309]40  /** @returns true, if the @param state has @param eventType subscribed?? */
[7756]41  bool isSubscribed(elState state, int eventType);
[4346]42
[5786]43
[7919]44  void withUNICODE(elState state, bool enableUNICODE);
[5978]45  void grabEvents(bool grabEvents);
[6054]46  bool grabbedEvents() const { return this->eventsGrabbed; };
[5786]47
[7919]48  void process() const;
49  void dispachEvent(elState state, const Event& event) const;
[4346]50
[5237]51  static int eventFilter(const SDL_Event *event);
[4872]52  void debug() const;
53
[4329]54 private:
[4746]55  EventHandler();
[4352]56
[7919]57  bool findListener(std::vector<EventListener*>::iterator* it, elState state, int eventType, EventListener* listener);
58
[4368]59 private:
[7756]60  static EventHandler*         singletonRef;                    //!< the singleton reference
[4780]61
[7756]62  std::vector<EventListener*>  listeners[ES_NUMBER][EV_NUMBER]; //!< a list of registered listeners.
63  elState                      state;                           //!< the state of the event handlder.
64  std::stack<short>            stateStack;                      //!< a stack for the States we are in.
65  KeyMapper                    keyMapper;                       //!< reference to the key mapper.
[5388]66
[7919]67  bool                         bUNICODE[ES_NUMBER];             //!< If unicode should be enabled.
[7756]68  bool                         eventsGrabbed;                   //!< If the events should be grabbed
[4329]69};
70
[5237]71
[4346]72#endif /* _EVENT_HANDLER_H */
Note: See TracBrowser for help on using the repository browser.