]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/common.qh
Merge branch 'master' into Mario/showspecs
[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 kicking
55 float VerifyKickableEntity(entity client);
56
57 // verify that the client provided is acceptable for use
58 float VerifyClientEntity(entity client, float must_be_real, float must_be_bots);
59
60 // if the client is not acceptable, return a string to be used for error messages
61 string GetClientErrorString_color(float clienterror, string original_input, string col);
62 #define GetClientErrorString(clienterror,original_input) GetClientErrorString_color(clienterror,original_input,"^7")
63
64 // is this entity number even in the possible range of entities?
65 float VerifyClientNumber(float tmp_number);
66
67 entity GetIndexedEntity(float argc, float start_index);
68
69 // find a player which matches the input string, and return their entity
70 entity GetFilteredEntity(string input);
71
72 // same thing, but instead return their edict number
73 float GetFilteredNumber(string input);
74
75 // switch between sprint and print depending on whether the receiver is the server or a player
76 void print_to(entity to, string input);
77
78 // ==========================================
79 //  Supporting functions for common commands
80 // ==========================================
81
82 // used by CommonCommand_timeout() and CommonCommand_timein() to handle game pausing and messaging and such.
83 void timeout_handler_reset();
84
85 void timeout_handler_think();
86
87 // ===================================================
88 //  Common commands used in both sv_cmd.qc and cmd.qc
89 // ===================================================
90
91 void CommonCommand_cvar_changes(float request, entity caller);
92
93 void CommonCommand_cvar_purechanges(float request, entity caller);
94
95 void CommonCommand_info(float request, entity caller, float argc);
96
97 void CommonCommand_ladder(float request, entity caller);
98
99 void CommonCommand_lsmaps(float request, entity caller);
100
101 void CommonCommand_printmaplist(float request, entity caller);
102
103 void CommonCommand_rankings(float request, entity caller);
104
105 void CommonCommand_records(float request, entity caller);
106
107 void CommonCommand_teamstatus(float request, entity caller);
108
109 void CommonCommand_time(float request, entity caller);
110
111 void CommonCommand_timein(float request, entity caller);
112
113 void CommonCommand_timeout(float request, entity caller);
114
115 void CommonCommand_who(float request, entity caller, float argc);
116
117
118 // ==================================
119 //  Macro system for common commands
120 // ==================================
121
122 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
123 #define COMMON_COMMANDS(request,caller,arguments,command) \
124         COMMON_COMMAND("cvar_changes", CommonCommand_cvar_changes(request, caller), "Prints a list of all changed server cvars") \
125         COMMON_COMMAND("cvar_purechanges", CommonCommand_cvar_purechanges(request, caller), "Prints a list of all changed gameplay cvars") \
126         COMMON_COMMAND("info", CommonCommand_info(request, caller, arguments), "Request for unique server information set up by admin") \
127         COMMON_COMMAND("ladder", CommonCommand_ladder(request, caller), "Get information about top players if supported") \
128         COMMON_COMMAND("lsmaps", CommonCommand_lsmaps(request, caller), "List maps which can be used with the current game mode") \
129         COMMON_COMMAND("printmaplist", CommonCommand_printmaplist(request, caller), "Display full server maplist reply") \
130         COMMON_COMMAND("rankings", CommonCommand_rankings(request, caller), "Print information about rankings") \
131         COMMON_COMMAND("records", CommonCommand_records(request, caller), "List top 10 records for the current map") \
132         COMMON_COMMAND("teamstatus", CommonCommand_teamstatus(request, caller), "Show information about player and team scores") \
133         COMMON_COMMAND("time", CommonCommand_time(request, caller), "Print different formats/readouts of time") \
134         COMMON_COMMAND("timein", CommonCommand_timein(request, caller), "Resume the game from being paused with a timeout") \
135         COMMON_COMMAND("timeout", CommonCommand_timeout(request, caller), "Call a timeout which pauses the game for certain amount of time unless unpaused") \
136         COMMON_COMMAND("vote", VoteCommand(request, caller, arguments, command), "Request an action to be voted upon by players") \
137         COMMON_COMMAND("who", CommonCommand_who(request, caller, arguments), "Display detailed client information about all players") \
138         /* nothing */
139
140 void CommonCommand_macro_help(entity caller)
141 {
142         #define COMMON_COMMAND(name,function,description) \
143                 { print_to(caller, strcat("  ^2", name, "^7: ", description)); }
144
145         COMMON_COMMANDS(0, caller, 0, "");
146         #undef COMMON_COMMAND
147
148         return;
149 }
150
151 float CommonCommand_macro_command(float argc, entity caller, string command)
152 {
153         #define COMMON_COMMAND(name,function,description) \
154                 { if(name == strtolower(argv(0))) { function; return true; } }
155
156         COMMON_COMMANDS(CMD_REQUEST_COMMAND, caller, argc, command);
157         #undef COMMON_COMMAND
158
159         return false;
160 }
161
162 float CommonCommand_macro_usage(float argc, entity caller)
163 {
164         #define COMMON_COMMAND(name,function,description) \
165                 { if(name == strtolower(argv(1))) { function; return true; } }
166
167         COMMON_COMMANDS(CMD_REQUEST_USAGE, caller, argc, "");
168         #undef COMMON_COMMAND
169
170         return false;
171 }
172
173 void CommonCommand_macro_write_aliases(float fh)
174 {
175         #define COMMON_COMMAND(name,function,description) \
176                 { CMD_Write_Alias("qc_cmd_svcmd", name, description); }
177
178         COMMON_COMMANDS(0, world, 0, "");
179         #undef COMMON_COMMAND
180
181         return;
182 }
183
184
185 #endif