diff --git a/src/dawn/event/Event.hpp b/src/dawn/event/Event.hpp index 6fce0ba9..50bea65f 100644 --- a/src/dawn/event/Event.hpp +++ b/src/dawn/event/Event.hpp @@ -7,14 +7,34 @@ #include "dawnlibs.hpp" namespace Dawn { - template + template class Event { private: + int32_t nextId = 0; + std::unordered_map> listeners; public: - Event() {} - virtual ~Event() {} + Event() { - virtual void operator()(T &t) = 0; + } + + void emit(A ...args) { + auto copy = listeners; + for(auto &pair : copy) { + pair.second(args...); + } + } + + std::function listen(const std::function listener) { + int32_t id = nextId++; + listeners[id] = listener; + return [this, id]() { + listeners.erase(id); + }; + } + + virtual ~Event() { + listeners.clear(); + } } } \ No newline at end of file