#pragma once namespace Components { class Command : public Component { public: static_assert(sizeof(Game::cmd_function_t) == 0x18); class Params { public: Params() = default; virtual ~Params() = default; virtual int size() = 0; virtual const char* get(int index) = 0; virtual std::string join(int index); virtual const char* operator[](const int index) { return this->get(index); } }; class ClientParams final : public Params { public: ClientParams(); int size() override; const char* get(int index) override; private: int nesting_; }; class ServerParams final : public Params { public: ServerParams(); int size() override; const char* get(int index) override; private: int nesting_; }; Command() = default; static Game::cmd_function_t* Allocate(); static void Add(const char* name, const std::function& callback); static void Add(const char* name, const std::function& callback); static void AddRaw(const char* name, void(*callback)(), bool key = false); static void AddSV(const char* name, const std::function& callback); static void Execute(std::string command, bool sync = true); static Game::cmd_function_t* Find(const std::string& command); private: static std::unordered_map> FunctionMap; static std::unordered_map> FunctionMapSV; static void AddRawSV(const char* name, void(*callback)()); static void MainCallback(); static void MainCallbackSV(); }; }