#pragma once /* * Copyright (C) 2024 Brett Terpstra * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef GAME_H #define GAME_H #include #include #include #include namespace td { class game_t { 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