]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/common.qh
Clean up SVQC #includes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / common.qh
1 #ifndef COMMAND_COMMON_H
2 #define COMMAND_COMMON_H
3
4 #include "vote.qh"
5
6 #include "../../common/command/generic.qh"
7 #include "../../common/command/shared_defs.qh"
8
9 // ============================================================
10 //  Shared declarations for server commands, written by Samual
11 //  Last updated: December 30th, 2011
12 // ============================================================
13
14 // client verification results
15 const float CLIENT_ACCEPTABLE = 1;
16 const float CLIENT_DOESNT_EXIST = -1;
17 const float CLIENT_NOT_REAL = -2;
18 const float CLIENT_NOT_BOT = -3;
19
20 // definitions for timeouts
21 const float TIMEOUT_INACTIVE = 0;
22 const float TIMEOUT_LEADTIME = 1;
23 const float TIMEOUT_ACTIVE = 2;
24
25 // timeout which pauses the game by setting the slowmo value extremely low.
26 const float TIMEOUT_SLOWMO_VALUE = 0.0001;
27
28 // global timeout information declarations
29 entity timeout_caller; // contains the entity of the player who started the last timeout
30 entity timeout_handler; // responsible for centerprinting the timeout countdowns and playing sounds
31 float sys_frametime; // gets initialised in worldspawn, saves the value from autocvar_sys_ticrate
32 float orig_slowmo; // contains the value of autocvar_slowmo so that, after timeout finished, it isn't set to slowmo 1 necessarily
33 float timeout_time; // contains the time in seconds that the active timeout has left
34 float timeout_leadtime; // contains the number of seconds left of the leadtime (before the timeout starts)
35 float timeout_status; // (values: 0, 1, 2) contains whether a timeout is not active (0), was called but still at leadtime (1) or is active (2)
36 .float allowed_timeouts; // contains the number of allowed timeouts for each player
37 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
38
39 // allow functions to be used in other code like g_world.qc and teamplay.qc
40 void timeout_handler_think();
41
42 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
43 void CommonCommand_macro_write_aliases(float fh);
44
45 // keep track of the next token to use for argc
46 float next_token;
47
48 // select the proper prefix for usage and other messages
49 string GetCommandPrefix(entity caller);
50
51 // if client return player nickname, or if server return admin nickname
52 string GetCallerName(entity caller);
53
54 // verify that the client provided is acceptable for use
55 float VerifyClientEntity(entity client, float must_be_real, float must_be_bots);
56
57 // if the client is not acceptable, return a string to be used for error messages
58 string GetClientErrorString(float clienterror, string original_input);
59
60 // is this entity number even in the possible range of entities?
61 float VerifyClientNumber(float tmp_number);
62
63 entity GetIndexedEntity(float argc, float start_index);
64
65 // find a player which matches the input string, and return their entity
66 entity GetFilteredEntity(string input);
67
68 // same thing, but instead return their edict number
69 float GetFilteredNumber(string input);
70
71 // switch between sprint and print depending on whether the receiver is the server or a player
72 void print_to(entity to, string input);
73
74 // ==========================================
75 //  Supporting functions for common commands
76 // ==========================================
77
78 // used by CommonCommand_timeout() and CommonCommand_timein() to handle game pausing and messaging and such.
79 void timeout_handler_reset();
80
81 void timeout_handler_think();
82
83 // ===================================================
84 //  Common commands used in both sv_cmd.qc and cmd.qc
85 // ===================================================
86
87 void CommonCommand_cvar_changes(float request, entity caller);
88
89 void CommonCommand_cvar_purechanges(float request, entity caller);
90
91 void CommonCommand_info(float request, entity caller, float argc);
92
93 void CommonCommand_ladder(float request, entity caller);
94
95 void CommonCommand_lsmaps(float request, entity caller);
96
97 void CommonCommand_printmaplist(float request, entity caller);
98
99 void CommonCommand_rankings(float request, entity caller);
100
101 void CommonCommand_records(float request, entity caller);
102
103 void CommonCommand_teamstatus(float request, entity caller);
104
105 void CommonCommand_time(float request, entity caller);
106
107 void CommonCommand_timein(float request, entity caller);
108
109 void CommonCommand_timeout(float request, entity caller);
110
111 void CommonCommand_who(float request, entity caller, float argc);
112
113
114 // ==================================
115 //  Macro system for common commands
116 // ==================================
117
118 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
119 #define COMMON_COMMANDS(request,caller,arguments,command) \
120         COMMON_COMMAND("cvar_changes", CommonCommand_cvar_changes(request, caller), "Prints a list of all changed server cvars") \
121         COMMON_COMMAND("cvar_purechanges", CommonCommand_cvar_purechanges(request, caller), "Prints a list of all changed gameplay cvars") \
122         COMMON_COMMAND("info", CommonCommand_info(request, caller, arguments), "Request for unique server information set up by admin") \
123         COMMON_COMMAND("ladder", CommonCommand_ladder(request, caller), "Get information about top players if supported") \
124         COMMON_COMMAND("lsmaps", CommonCommand_lsmaps(request, caller), "List maps which can be used with the current game mode") \
125         COMMON_COMMAND("printmaplist", CommonCommand_printmaplist(request, caller), "Display full server maplist reply") \
126         COMMON_COMMAND("rankings", CommonCommand_rankings(request, caller), "Print information about rankings") \
127         COMMON_COMMAND("records", CommonCommand_records(request, caller), "List top 10 records for the current map") \
128         COMMON_COMMAND("teamstatus", CommonCommand_teamstatus(request, caller), "Show information about player and team scores") \
129         COMMON_COMMAND("time", CommonCommand_time(request, caller), "Print different formats/readouts of time") \
130         COMMON_COMMAND("timein", CommonCommand_timein(request, caller), "Resume the game from being paused with a timeout") \
131         COMMON_COMMAND("timeout", CommonCommand_timeout(request, caller), "Call a timeout which pauses the game for certain amount of time unless unpaused") \
132         COMMON_COMMAND("vote", VoteCommand(request, caller, arguments, command), "Request an action to be voted upon by players") \
133         COMMON_COMMAND("who", CommonCommand_who(request, caller, arguments), "Display detailed client information about all players") \
134         /* nothing */
135
136 void CommonCommand_macro_help(entity caller)
137 {
138         #define COMMON_COMMAND(name,function,description) \
139                 { print_to(caller, strcat("  ^2", name, "^7: ", description)); }
140
141         COMMON_COMMANDS(0, caller, 0, "");
142         #undef COMMON_COMMAND
143
144         return;
145 }
146
147 float CommonCommand_macro_command(float argc, entity caller, string command)
148 {
149         #define COMMON_COMMAND(name,function,description) \
150                 { if(name == strtolower(argv(0))) { function; return true; } }
151
152         COMMON_COMMANDS(CMD_REQUEST_COMMAND, caller, argc, command);
153         #undef COMMON_COMMAND
154
155         return false;
156 }
157
158 float CommonCommand_macro_usage(float argc, entity caller)
159 {
160         #define COMMON_COMMAND(name,function,description) \
161                 { if(name == strtolower(argv(1))) { function; return true; } }
162
163         COMMON_COMMANDS(CMD_REQUEST_USAGE, caller, argc, "");
164         #undef COMMON_COMMAND
165
166         return false;
167 }
168
169 void CommonCommand_macro_write_aliases(float fh)
170 {
171         #define COMMON_COMMAND(name,function,description) \
172                 { CMD_Write_Alias("qc_cmd_svcmd", name, description); }
173
174         COMMON_COMMANDS(0, world, 0, "");
175         #undef COMMON_COMMAND
176
177         return;
178 }
179
180
181 #endif