Added Event, Event_Handler & Event_Scheduler skeleton types for future event handling on the game-loop and UI side.

main
Michael Gaming 2025-03-17 21:06:33 +04:00
parent 6ca8cd61b2
commit 2753d6921f
2 changed files with 34 additions and 1 deletions

View File

@ -51,7 +51,7 @@ macro(blt_add_project name source type)
project(tower-defense) project(tower-defense)
endmacro() 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_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -21,6 +21,8 @@
#include <enemies.h> #include <enemies.h>
#include <vector> #include <vector>
#include <functional>
#include <string>
namespace td namespace td
{ {
@ -29,6 +31,37 @@ namespace td
public: public:
private: 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<void(void*)> 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<void(void*)> 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 #endif //GAME_H