diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 09:30:51 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-21 09:30:51 +0100 | 
| commit | e2f085c444a8b37af65816e10bf366e6860d25c2 (patch) | |
| tree | cec8c3e5640f659478838534ad64b86502bc8e29 /src/crepe/api/EventManager.hpp | |
| parent | 9d66b6cfccd15a1600c30af5e744e8b0710eeae6 (diff) | |
| parent | 1cc120a0031cfc19c35240da8390d9129b4d75a3 (diff) | |
merge `master` into `loek/util`
Diffstat (limited to 'src/crepe/api/EventManager.hpp')
| -rw-r--r-- | src/crepe/api/EventManager.hpp | 36 | 
1 files changed, 36 insertions, 0 deletions
| diff --git a/src/crepe/api/EventManager.hpp b/src/crepe/api/EventManager.hpp new file mode 100644 index 0000000..a5f4556 --- /dev/null +++ b/src/crepe/api/EventManager.hpp @@ -0,0 +1,36 @@ +#pragma once + +#include "EventManager.h" + +namespace crepe { + +template <typename EventType> +subscription_t EventManager::subscribe(const EventHandler<EventType> & callback, +									   event_channel_t channel) { +	subscription_counter++; +	std::type_index event_type = typeid(EventType); +	std::unique_ptr<EventHandlerWrapper<EventType>> handler +		= std::make_unique<EventHandlerWrapper<EventType>>(callback); +	std::vector<CallbackEntry> & handlers = this->subscribers[event_type]; +	handlers.emplace_back(CallbackEntry{ +		.callback = std::move(handler), .channel = channel, .id = subscription_counter}); +	return subscription_counter; +} + +template <typename EventType> +void EventManager::queue_event(const EventType & event, event_channel_t channel) { +	static_assert(std::is_base_of<Event, EventType>::value, +				  "EventType must derive from Event"); +	this->events_queue.push_back(QueueEntry{ +		.event = std::make_unique<EventType>(event), +		.channel = channel, +		.type = typeid(EventType), +	}); +} + +template <typename EventType> +void EventManager::trigger_event(const EventType & event, event_channel_t channel) { +	this->handle_event(typeid(EventType), channel, event); +} + +} // namespace crepe |