-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathEvent.hpp
277 lines (221 loc) · 7.58 KB
/
Event.hpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#pragma once
#include "../utils/casts.hpp"
#include <Geode/DefaultInclude.hpp>
#include <Geode/loader/Log.hpp>
#include <functional>
#include <memory>
#include <type_traits>
#include <mutex>
#include <deque>
#include <atomic>
#include <vector>
namespace geode {
class Mod;
class Event;
class EventListenerProtocol;
Mod* getMod();
enum class ListenerResult {
Propagate,
Stop
};
struct GEODE_DLL EventListenerPool {
virtual bool add(EventListenerProtocol* listener) = 0;
virtual void remove(EventListenerProtocol* listener) = 0;
virtual ListenerResult handle(Event* event) = 0;
virtual ~EventListenerPool() = default;
EventListenerPool() = default;
EventListenerPool(EventListenerPool const&) = delete;
EventListenerPool(EventListenerPool&&) = delete;
};
template <class... Args>
class DispatchEvent;
template <class... Args>
class DispatchFilter;
class GEODE_DLL DefaultEventListenerPool : public EventListenerPool {
protected:
// fix this in Geode 4.0.0
struct Data {
std::atomic_size_t m_locked = 0;
std::mutex m_mutex;
std::deque<EventListenerProtocol*> m_listeners;
std::vector<EventListenerProtocol*> m_toAdd;
};
std::unique_ptr<Data> m_data;
private:
static DefaultEventListenerPool* create();
DefaultEventListenerPool();
public:
bool add(EventListenerProtocol* listener) override;
void remove(EventListenerProtocol* listener) override;
ListenerResult handle(Event* event) override;
static DefaultEventListenerPool* get();
template <class... Args>
friend class DispatchEvent;
template <class... Args>
friend class DispatchFilter;
};
class GEODE_DLL EventListenerProtocol {
private:
EventListenerPool* m_pool = nullptr;
public:
bool enable();
void disable();
virtual EventListenerPool* getPool() const;
virtual ListenerResult handle(Event*) = 0;
virtual ~EventListenerProtocol();
};
template <typename C, typename T>
struct to_member;
template <typename C, typename R, typename... Args>
struct to_member<C, R(Args...)> {
using value = R (C::*)(Args...);
};
template <typename T>
concept is_event = std::is_base_of_v<Event, T>;
template <is_event T>
class EventFilter {
protected:
EventListenerProtocol* m_listener = nullptr;
public:
using Callback = ListenerResult(T*);
using Event = T;
ListenerResult handle(std::function<Callback> fn, T* e) {
return fn(e);
}
EventListenerPool* getPool() const {
return DefaultEventListenerPool::get();
}
void setListener(EventListenerProtocol* listener) {
m_listener = listener;
}
EventListenerProtocol* getListener() const {
return m_listener;
}
};
template <typename T>
concept is_filter = // # no need to do this IMO - HJfod # std::is_base_of_v<EventFilter<typename T::Event>, T> &&
requires(T a, T const& ca) {
typename T::Callback;
typename T::Event;
{ a.handle(std::declval<typename T::Callback>(), std::declval<typename T::Event*>()) } -> std::same_as<ListenerResult>;
{ ca.getPool() } -> std::convertible_to<EventListenerPool*>;
{ a.setListener(std::declval<EventListenerProtocol*>()) } -> std::same_as<void>;
{ ca.getListener() } -> std::convertible_to<EventListenerProtocol*>;
};
template <is_filter T>
class EventListener : public EventListenerProtocol {
public:
using Callback = typename T::Callback;
template <typename C>
requires std::is_class_v<C>
using MemberFn = typename to_member<C, Callback>::value;
ListenerResult handle(Event* e) override {
if (m_callback) {
if (auto myev = cast::typeinfo_cast<typename T::Event*>(e)) {
return m_filter.handle(m_callback, myev);
}
}
return ListenerResult::Propagate;
}
EventListenerPool* getPool() const override {
return m_filter.getPool();
}
EventListener(T filter = T()) : m_filter(filter) {
m_filter.setListener(this);
this->enable();
}
EventListener(std::function<Callback> fn, T filter = T())
: m_callback(fn), m_filter(filter)
{
m_filter.setListener(this);
this->enable();
}
EventListener(Callback* fnptr, T filter = T()) : m_callback(fnptr), m_filter(filter) {
m_filter.setListener(this);
this->enable();
}
template <class C>
EventListener(C* cls, MemberFn<C> fn, T filter = T()) :
EventListener(std::bind(fn, cls, std::placeholders::_1), filter)
{
m_filter.setListener(this);
this->enable();
}
EventListener(EventListener&& other)
: m_callback(std::move(other.m_callback)),
m_filter(std::move(other.m_filter))
{
m_filter.setListener(this);
other.disable();
this->enable();
}
EventListener(EventListener const& other)
: m_callback(other.m_callback),
m_filter(other.m_filter)
{
m_filter.setListener(this);
this->enable();
}
EventListener& operator=(EventListener const& other) {
if (this == &other) {
return *this;
}
m_callback = other.m_callback;
m_filter = other.m_filter;
m_filter.setListener(this);
return *this;
}
EventListener& operator=(EventListener&& other) {
if (this == &other) {
return *this;
}
m_callback = std::move(other.m_callback);
m_filter = std::move(other.m_filter);
m_filter.setListener(this);
other.disable();
return *this;
}
void bind(std::function<Callback> fn) {
m_callback = fn;
}
template <typename C>
void bind(C* cls, MemberFn<C> fn) {
m_callback = std::bind(fn, cls, std::placeholders::_1);
}
void setFilter(T filter) {
m_filter = filter;
m_filter.setListener(this);
}
T& getFilter() {
return m_filter;
}
T const& getFilter() const {
return m_filter;
}
std::function<Callback>& getCallback() {
return m_callback;
}
protected:
std::function<Callback> m_callback = nullptr;
T m_filter;
};
class GEODE_DLL [[nodiscard]] Event {
private:
friend EventListenerProtocol;
protected:
virtual EventListenerPool* getPool() const;
public:
Mod* sender;
ListenerResult postFromMod(Mod* sender);
template<class = void>
ListenerResult post() {
return postFromMod(getMod());
}
virtual ~Event();
};
// Creates an EventListener that is active for the entire lifetime of the game. You have no way of disabling the listener, so only use this if you want to always listen for certain events!
template <is_filter T>
void globalListen(typename T::Callback callback, T filter = T()) {
new EventListener<T>(callback, filter);
}
}