iw4x-client/src/Components/Modules/Command.hpp
Diavolo b720166913
Revert change to ZoneBuilder
& Add simple callback function to add commands
2022-06-13 00:02:20 +02:00

71 lines
1.6 KiB
C++

#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<void()>& callback);
static void Add(const char* name, const std::function<void(Command::Params*)>& callback);
static void AddSV(const char* name, const std::function<void(Command::Params*)>& callback);
static void AddRaw(const char* name, void(*callback)(), bool key = false);
static void AddRawSV(const char* name, void(*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<std::string, std::function<void(Command::Params*)>> FunctionMap;
static std::unordered_map<std::string, std::function<void(Command::Params*)>> FunctionMapSV;
static void MainCallback();
static void MainCallbackSV();
};
}