// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "dawnlibs.hpp" namespace Dawn { template class Event { private: int32_t nextId = 0; std::map> listeners; public: /** * Constructs a new Event. */ Event() { } /** * Emits the event. * @param args The arguments to pass to the listeners. */ void emit(A ...args) { auto copy = listeners; for(auto &pair : copy) { pair.second(args...); } } /** * Listens to the event. * @param listener The listener to add. * @returns A function that can be called to remove the listener. */ std::function listen(const std::function listener) { int32_t id = nextId++; listeners[id] = listener; return [this, id]() { listeners.erase(id); }; } /** * Removes a listener from the event. * @param id The id of the listener to remove. */ virtual ~Event() { listeners.clear(); } }; }