diff --git a/CMakeLists.txt b/CMakeLists.txt index 840df42..b63df56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ macro(blt_add_project name source type) project(tower-defense) endmacro() -project(tower-defense VERSION 0.0.12) +project(tower-defense VERSION 0.0.13) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/include/game.h b/include/game.h index 44689ef..85b7ede 100644 --- a/include/game.h +++ b/include/game.h @@ -21,6 +21,8 @@ #include #include +#include +#include namespace td { @@ -29,6 +31,37 @@ namespace td public: private: }; + + class event_t + { + event_handler_t handler; + std::string signature; + public: + void callHandler(void* target) { handler.call(target); } + private: + + }; + + class event_handler_t + { + // I don't want to keep the parameter as a void pointer, maybe it would be nice to have a gameObject class or sumthing, + // or diverge into unique event_handlers types, idk + std::function callback; + + // I'm preparing for when a handler would contain more than just a regular std::function, so this class would contain that stuff + public: + event_handler_t(std::function hndlr) : callback(std::move(hndlr)) {}; + void call(void* target) { return callback(target); } + private: + }; + + class event_scheduler_t + { + public: + void add_event_listener(event_t ev, event_handler_t handler); + private: + void* target; + }; } #endif //GAME_H