blob: 64d7c26e0acfbd451e74147bbe535842fa2120f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#include "EventManager.h"
using namespace crepe;
EventManager & EventManager::get_instance() {
static EventManager instance;
return instance;
}
void EventManager::dispatch_events() {
for (auto event_it = this->events_queue.begin(); event_it != this->events_queue.end();) {
std::unique_ptr<Event> & event = (*event_it).event;
int channel = (*event_it).channel;
std::type_index event_type = (*event_it).type;
bool event_handled = false;
auto handlers_it = this->subscribers.find(event_type);
if (handlers_it == this->subscribers.end()) {
continue;
}
std::vector<CallbackEntry> & handlers = handlers_it->second;
for (auto handler_it = handlers.begin(); handler_it != handlers.end();
++handler_it) {
// If callback is executed and returns true, remove the event from the queue
if ((*handler_it).callback->exec(*event)) {
event_it = this->events_queue.erase(event_it);
event_handled = true;
break;
}
}
if (!event_handled) {
++event_it;
}
}
}
void EventManager::clear() {
this->subscribers.clear();
this->events_queue.clear();
}
void EventManager::unsubscribe(subscription_t event_id) {
for (auto& [event_type, handlers] : this->subscribers) {
for (auto it = handlers.begin(); it != handlers.end();) {
if (it->id == event_id) {
it = handlers.erase(it);
return;
} else {
++it;
}
}
}
}
|