]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/command/reg.qh
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / reg.qh
1 #pragma once
2
3 #include "command.qh"
4 REGISTRY(GENERIC_COMMANDS, BITS(7))
5 REGISTER_REGISTRY(GENERIC_COMMANDS)
6 REGISTRY_SORT(GENERIC_COMMANDS)
7
8 REGISTRY_DEFINE_GET(GENERIC_COMMANDS, NULL)
9
10 .bool m_menubased; // switch to tell whether this alias should be registered as a menu or client based command
11
12 #define GENERIC_COMMAND(id, description, menubased) \
13         CLASS(genericcommand_##id, Command) \
14                 ATTRIB(genericcommand_##id, m_name, string, #id); \
15         ATTRIB(genericcommand_##id, m_description, string, description); \
16         ATTRIB(genericcommand_##id, m_menubased, bool, menubased); \
17         ENDCLASS(genericcommand_##id) \
18     REGISTER(GENERIC_COMMANDS, CMD_G, id, m_id, NEW(genericcommand_##id)); \
19         METHOD(genericcommand_##id, m_invokecmd, void(genericcommand_##id this, int request, entity caller, int arguments, string command))
20
21 STATIC_INIT(GENERIC_COMMANDS_aliases) {
22         FOREACH(GENERIC_COMMANDS, true, localcmd(sprintf("alias %1$s \"%2$s %1$s ${* ?}\"\n", it.m_name, ((it.m_menubased) ? "qc_cmd_svmenu" : "qc_cmd_svcl"))));
23 }