]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - cmd.c
Add csqc_polygons_defaultmaterial_nocullface cvar which defaults to 1 in nexuiz and...
[xonotic/darkplaces.git] / cmd.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // cmd.c -- Quake script command processing module
21
22 #include "quakedef.h"
23 #include "thread.h"
24
25 cmd_state_t cmd_client;
26 cmd_state_t cmd_clientfromserver;
27 cmd_state_t cmd_server;
28 cmd_state_t cmd_serverfromclient;
29
30 cmd_userdefined_t cmd_userdefined_all;
31 cmd_userdefined_t cmd_userdefined_null;
32
33 typedef struct cmd_iter_s {
34         cmd_state_t *cmd;
35 }
36 cmd_iter_t;
37
38 static cmd_iter_t cmd_iter_all[] = {
39         {&cmd_client},
40         {&cmd_clientfromserver},
41         {&cmd_server},
42         {&cmd_serverfromclient},
43         {NULL},
44 };
45
46
47 // we only run the +whatever commandline arguments once
48 qboolean host_stuffcmdsrun = false;
49
50 //=============================================================================
51
52 void Cbuf_Lock(cmd_state_t *cmd)
53 {
54         Thread_AtomicLock(&cmd->text_lock);
55 }
56
57 void Cbuf_Unlock(cmd_state_t *cmd)
58 {
59         Thread_AtomicUnlock(&cmd->text_lock);
60 }
61
62
63 /*
64 ============
65 Cmd_Wait_f
66
67 Causes execution of the remainder of the command buffer to be delayed until
68 next frame.  This allows commands like:
69 bind g "impulse 5 ; +attack ; wait ; -attack ; impulse 2"
70 ============
71 */
72 static void Cmd_Wait_f (cmd_state_t *cmd)
73 {
74         cmd->wait = true;
75 }
76
77 /*
78 ============
79 Cmd_Defer_f
80
81 Cause a command to be executed after a delay.
82 ============
83 */
84 static void Cmd_Defer_f (cmd_state_t *cmd)
85 {
86         if(Cmd_Argc(cmd) == 1)
87         {
88                 cmddeferred_t *next = cmd->deferred_list;
89                 if(!next)
90                         Con_Printf("No commands are pending.\n");
91                 while(next)
92                 {
93                         Con_Printf("-> In %9.2f: %s\n", next->delay, next->value);
94                         next = next->next;
95                 }
96         } else if(Cmd_Argc(cmd) == 2 && !strcasecmp("clear", Cmd_Argv(cmd, 1)))
97         {
98                 while(cmd->deferred_list)
99                 {
100                         cmddeferred_t *defcmd = cmd->deferred_list;
101                         cmd->deferred_list = defcmd->next;
102                         Mem_Free(defcmd->value);
103                         Mem_Free(defcmd);
104                 }
105         } else if(Cmd_Argc(cmd) == 3)
106         {
107                 const char *value = Cmd_Argv(cmd, 2);
108                 cmddeferred_t *defcmd = (cmddeferred_t*)Mem_Alloc(tempmempool, sizeof(*defcmd));
109                 size_t len = strlen(value);
110
111                 defcmd->delay = atof(Cmd_Argv(cmd, 1));
112                 defcmd->value = (char*)Mem_Alloc(tempmempool, len+1);
113                 memcpy(defcmd->value, value, len+1);
114                 defcmd->next = NULL;
115
116                 if(cmd->deferred_list)
117                 {
118                         cmddeferred_t *next = cmd->deferred_list;
119                         while(next->next)
120                                 next = next->next;
121                         next->next = defcmd;
122                 } else
123                         cmd->deferred_list = defcmd;
124                 /* Stupid me... this changes the order... so commands with the same delay go blub :S
125                   defcmd->next = cmd_deferred_list;
126                   cmd_deferred_list = defcmd;*/
127         } else {
128                 Con_Printf("usage: defer <seconds> <command>\n"
129                            "       defer clear\n");
130                 return;
131         }
132 }
133
134 /*
135 ============
136 Cmd_Centerprint_f
137
138 Print something to the center of the screen using SCR_Centerprint
139 ============
140 */
141 static void Cmd_Centerprint_f (cmd_state_t *cmd)
142 {
143         char msg[MAX_INPUTLINE];
144         unsigned int i, c, p;
145         c = Cmd_Argc(cmd);
146         if(c >= 2)
147         {
148                 strlcpy(msg, Cmd_Argv(cmd,1), sizeof(msg));
149                 for(i = 2; i < c; ++i)
150                 {
151                         strlcat(msg, " ", sizeof(msg));
152                         strlcat(msg, Cmd_Argv(cmd, i), sizeof(msg));
153                 }
154                 c = (unsigned int)strlen(msg);
155                 for(p = 0, i = 0; i < c; ++i)
156                 {
157                         if(msg[i] == '\\')
158                         {
159                                 if(msg[i+1] == 'n')
160                                         msg[p++] = '\n';
161                                 else if(msg[i+1] == '\\')
162                                         msg[p++] = '\\';
163                                 else {
164                                         msg[p++] = '\\';
165                                         msg[p++] = msg[i+1];
166                                 }
167                                 ++i;
168                         } else {
169                                 msg[p++] = msg[i];
170                         }
171                 }
172                 msg[p] = '\0';
173                 SCR_CenterPrint(msg);
174         }
175 }
176
177 /*
178 =============================================================================
179
180                                                 COMMAND BUFFER
181
182 =============================================================================
183 */
184
185 /*
186 ============
187 Cbuf_AddText
188
189 Adds command text at the end of the buffer
190 ============
191 */
192 void Cbuf_AddText (cmd_state_t *cmd, const char *text)
193 {
194         int             l;
195
196         l = (int)strlen(text);
197
198         Cbuf_Lock(cmd);
199         if (cmd->text.maxsize - cmd->text.cursize <= l)
200                 Con_Print("Cbuf_AddText: overflow\n");
201         else
202                 SZ_Write(&cmd->text, (const unsigned char *)text, l);
203         Cbuf_Unlock(cmd);
204 }
205
206
207 /*
208 ============
209 Cbuf_InsertText
210
211 Adds command text immediately after the current command
212 Adds a \n to the text
213 FIXME: actually change the command buffer to do less copying
214 ============
215 */
216 void Cbuf_InsertText (cmd_state_t *cmd, const char *text)
217 {
218         size_t l = strlen(text);
219         Cbuf_Lock(cmd);
220         // we need to memmove the existing text and stuff this in before it...
221         if (cmd->text.cursize + l >= (size_t)cmd->text.maxsize)
222                 Con_Print("Cbuf_InsertText: overflow\n");
223         else
224         {
225                 // we don't have a SZ_Prepend, so...
226                 memmove(cmd->text.data + l, cmd->text.data, cmd->text.cursize);
227                 cmd->text.cursize += (int)l;
228                 memcpy(cmd->text.data, text, l);
229         }
230         Cbuf_Unlock(cmd);
231 }
232
233 /*
234 ============
235 Cbuf_Execute_Deferred --blub
236 ============
237 */
238 static void Cbuf_Execute_Deferred (cmd_state_t *cmd)
239 {
240         static double oldrealtime = 0;
241         cmddeferred_t *defcmd, *prev;
242         double eat;
243         if (realtime - oldrealtime < 0 || realtime - oldrealtime > 1800) oldrealtime = realtime;
244         eat = realtime - oldrealtime;
245         if (eat < (1.0 / 120.0))
246                 return;
247         oldrealtime = realtime;
248         prev = NULL;
249         defcmd = cmd->deferred_list;
250         while(defcmd)
251         {
252                 defcmd->delay -= eat;
253                 if(defcmd->delay <= 0)
254                 {
255                         Cbuf_AddText(cmd, defcmd->value);
256                         Cbuf_AddText(cmd, ";\n");
257                         Mem_Free(defcmd->value);
258
259                         if(prev) {
260                                 prev->next = defcmd->next;
261                                 Mem_Free(defcmd);
262                                 defcmd = prev->next;
263                         } else {
264                                 cmd->deferred_list = defcmd->next;
265                                 Mem_Free(defcmd);
266                                 defcmd = cmd->deferred_list;
267                         }
268                         continue;
269                 }
270                 prev = defcmd;
271                 defcmd = defcmd->next;
272         }
273 }
274
275 /*
276 ============
277 Cbuf_Execute
278 ============
279 */
280 static qboolean Cmd_PreprocessString(cmd_state_t *cmd, const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias );
281 void Cbuf_Execute (cmd_state_t *cmd)
282 {
283         int i;
284         char *text;
285         char line[MAX_INPUTLINE];
286         char preprocessed[MAX_INPUTLINE];
287         char *firstchar;
288         qboolean quotes;
289         char *comment;
290
291         // LadyHavoc: making sure the tokenizebuffer doesn't get filled up by repeated crashes
292         cmd->tokenizebufferpos = 0;
293
294         while (cmd->text.cursize)
295         {
296 // find a \n or ; line break
297                 text = (char *)cmd->text.data;
298
299                 quotes = false;
300                 comment = NULL;
301                 for (i=0 ; i < cmd->text.cursize ; i++)
302                 {
303                         if(!comment)
304                         {
305                                 if (text[i] == '"')
306                                         quotes = !quotes;
307
308                                 if(quotes)
309                                 {
310                                         // make sure i doesn't get > cursize which causes a negative
311                                         // size in memmove, which is fatal --blub
312                                         if (i < (cmd->text.cursize-1) && (text[i] == '\\' && (text[i+1] == '"' || text[i+1] == '\\')))
313                                                 i++;
314                                 }
315                                 else
316                                 {
317                                         if(text[i] == '/' && text[i + 1] == '/' && (i == 0 || ISWHITESPACE(text[i-1])))
318                                                 comment = &text[i];
319                                         if(text[i] == ';')
320                                                 break;  // don't break if inside a quoted string or comment
321                                 }
322                         }
323
324                         if (text[i] == '\r' || text[i] == '\n')
325                                 break;
326                 }
327
328                 // better than CRASHING on overlong input lines that may SOMEHOW enter the buffer
329                 if(i >= MAX_INPUTLINE)
330                 {
331                         Con_Printf("Warning: console input buffer had an overlong line. Ignored.\n");
332                         line[0] = 0;
333                 }
334                 else
335                 {
336                         memcpy (line, text, comment ? (comment - text) : i);
337                         line[comment ? (comment - text) : i] = 0;
338                 }
339
340 // delete the text from the command buffer and move remaining commands down
341 // this is necessary because commands (exec, alias) can insert data at the
342 // beginning of the text buffer
343
344                 if (i == cmd->text.cursize)
345                         cmd->text.cursize = 0;
346                 else
347                 {
348                         i++;
349                         cmd->text.cursize -= i;
350                         memmove (cmd->text.data, text+i, cmd->text.cursize);
351                 }
352
353 // execute the command line
354                 firstchar = line;
355                 while(*firstchar && ISWHITESPACE(*firstchar))
356                         ++firstchar;
357                 if(
358                         (strncmp(firstchar, "alias", 5) || !ISWHITESPACE(firstchar[5]))
359                         &&
360                         (strncmp(firstchar, "bind", 4) || !ISWHITESPACE(firstchar[4]))
361                         &&
362                         (strncmp(firstchar, "in_bind", 7) || !ISWHITESPACE(firstchar[7]))
363                 )
364                 {
365                         if(Cmd_PreprocessString( cmd, line, preprocessed, sizeof(preprocessed), NULL ))
366                                 Cmd_ExecuteString (cmd, preprocessed, src_command, false);
367                 }
368                 else
369                 {
370                         Cmd_ExecuteString (cmd, line, src_command, false);
371                 }
372
373                 if (cmd->wait)
374                 {       // skip out while text still remains in buffer, leaving it
375                         // for next frame
376                         cmd->wait = false;
377                         break;
378                 }
379         }
380 }
381
382 void Cbuf_Frame(cmd_state_t *cmd)
383 {
384         Cbuf_Execute_Deferred(cmd);
385         if (cmd->text.cursize)
386         {
387                 SV_LockThreadMutex();
388                 Cbuf_Execute(cmd);
389                 SV_UnlockThreadMutex();
390         }
391 }
392
393 /*
394 ==============================================================================
395
396                                                 SCRIPT COMMANDS
397
398 ==============================================================================
399 */
400
401 /*
402 ===============
403 Cmd_StuffCmds_f
404
405 Adds command line parameters as script statements
406 Commands lead with a +, and continue until a - or another +
407 quake +prog jctest.qp +cmd amlev1
408 quake -nosound +cmd amlev1
409 ===============
410 */
411 static void Cmd_StuffCmds_f (cmd_state_t *cmd)
412 {
413         int             i, j, l;
414         // this is for all commandline options combined (and is bounds checked)
415         char    build[MAX_INPUTLINE];
416
417         if (Cmd_Argc (cmd) != 1)
418         {
419                 Con_Print("stuffcmds : execute command line parameters\n");
420                 return;
421         }
422
423         // no reason to run the commandline arguments twice
424         if (host_stuffcmdsrun)
425                 return;
426
427         host_stuffcmdsrun = true;
428         build[0] = 0;
429         l = 0;
430         for (i = 0;i < com_argc;i++)
431         {
432                 if (com_argv[i] && com_argv[i][0] == '+' && (com_argv[i][1] < '0' || com_argv[i][1] > '9') && l + strlen(com_argv[i]) - 1 <= sizeof(build) - 1)
433                 {
434                         j = 1;
435                         while (com_argv[i][j])
436                                 build[l++] = com_argv[i][j++];
437                         i++;
438                         for (;i < com_argc;i++)
439                         {
440                                 if (!com_argv[i])
441                                         continue;
442                                 if ((com_argv[i][0] == '+' || com_argv[i][0] == '-') && (com_argv[i][1] < '0' || com_argv[i][1] > '9'))
443                                         break;
444                                 if (l + strlen(com_argv[i]) + 4 > sizeof(build) - 1)
445                                         break;
446                                 build[l++] = ' ';
447                                 if (strchr(com_argv[i], ' '))
448                                         build[l++] = '\"';
449                                 for (j = 0;com_argv[i][j];j++)
450                                         build[l++] = com_argv[i][j];
451                                 if (strchr(com_argv[i], ' '))
452                                         build[l++] = '\"';
453                         }
454                         build[l++] = '\n';
455                         i--;
456                 }
457         }
458         // now terminate the combined string and prepend it to the command buffer
459         // we already reserved space for the terminator
460         build[l++] = 0;
461         Cbuf_InsertText (cmd, build);
462 }
463
464 static void Cmd_Exec(cmd_state_t *cmd, const char *filename)
465 {
466         char *f;
467         size_t filenameLen = strlen(filename);
468         qboolean isdefaultcfg =
469                 !strcmp(filename, "default.cfg") ||
470                 (filenameLen >= 12 && !strcmp(filename + filenameLen - 12, "/default.cfg"));
471
472         if (!strcmp(filename, "config.cfg"))
473         {
474                 filename = CONFIGFILENAME;
475                 if (COM_CheckParm("-noconfig"))
476                         return; // don't execute config.cfg
477         }
478
479         f = (char *)FS_LoadFile (filename, tempmempool, false, NULL);
480         if (!f)
481         {
482                 Con_Printf("couldn't exec %s\n",filename);
483                 return;
484         }
485         Con_Printf("execing %s\n",filename);
486
487         // if executing default.cfg for the first time, lock the cvar defaults
488         // it may seem backwards to insert this text BEFORE the default.cfg
489         // but Cbuf_InsertText inserts before, so this actually ends up after it.
490         if (isdefaultcfg)
491                 Cbuf_InsertText(cmd, "\ncvar_lockdefaults\n");
492
493         // insert newline after the text to make sure the last line is terminated (some text editors omit the trailing newline)
494         // (note: insertion order here is backwards from execution order, so this adds it after the text, by calling it before...)
495         Cbuf_InsertText (cmd, "\n");
496         Cbuf_InsertText (cmd, f);
497         Mem_Free(f);
498
499         if (isdefaultcfg)
500         {
501                 // special defaults for specific games go here, these execute before default.cfg
502                 // Nehahra pushable crates malfunction in some levels if this is on
503                 // Nehahra NPC AI is confused by blowupfallenzombies
504                 switch(gamemode)
505                 {
506                 case GAME_NORMAL:
507                         Cbuf_InsertText(cmd, "\n"
508 "sv_gameplayfix_blowupfallenzombies 0\n"
509 "sv_gameplayfix_findradiusdistancetobox 0\n"
510 "sv_gameplayfix_grenadebouncedownslopes 0\n"
511 "sv_gameplayfix_slidemoveprojectiles 0\n"
512 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
513 "sv_gameplayfix_setmodelrealbox 0\n"
514 "sv_gameplayfix_droptofloorstartsolid 0\n"
515 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
516 "sv_gameplayfix_noairborncorpse 0\n"
517 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
518 "sv_gameplayfix_easierwaterjump 0\n"
519 "sv_gameplayfix_delayprojectiles 0\n"
520 "sv_gameplayfix_multiplethinksperframe 0\n"
521 "sv_gameplayfix_fixedcheckwatertransition 0\n"
522 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
523 "sv_gameplayfix_swiminbmodels 0\n"
524 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
525 "sys_ticrate 0.01388889\n"
526 "r_shadow_gloss 1\n"
527 "r_shadow_bumpscale_basetexture 0\n"
528 "csqc_polygons_defaultmaterial_nocullface 0\n"
529                                 );
530                         break;
531                 case GAME_NEHAHRA:
532                         Cbuf_InsertText(cmd, "\n"
533 "sv_gameplayfix_blowupfallenzombies 0\n"
534 "sv_gameplayfix_findradiusdistancetobox 0\n"
535 "sv_gameplayfix_grenadebouncedownslopes 0\n"
536 "sv_gameplayfix_slidemoveprojectiles 0\n"
537 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
538 "sv_gameplayfix_setmodelrealbox 0\n"
539 "sv_gameplayfix_droptofloorstartsolid 0\n"
540 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
541 "sv_gameplayfix_noairborncorpse 0\n"
542 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
543 "sv_gameplayfix_easierwaterjump 0\n"
544 "sv_gameplayfix_delayprojectiles 0\n"
545 "sv_gameplayfix_multiplethinksperframe 0\n"
546 "sv_gameplayfix_fixedcheckwatertransition 0\n"
547 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
548 "sv_gameplayfix_swiminbmodels 0\n"
549 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
550 "sys_ticrate 0.01388889\n"
551 "r_shadow_gloss 1\n"
552 "r_shadow_bumpscale_basetexture 0\n"
553 "csqc_polygons_defaultmaterial_nocullface 0\n"
554                                 );
555                         break;
556                 // hipnotic mission pack has issues in their 'friendly monster' ai, which seem to attempt to attack themselves for some reason when findradius() returns non-solid entities.
557                 // hipnotic mission pack has issues with bobbing water entities 'jittering' between different heights on alternate frames at the default 0.0138889 ticrate, 0.02 avoids this issue
558                 // hipnotic mission pack has issues in their proximity mine sticking code, which causes them to bounce off.
559                 case GAME_HIPNOTIC:
560                 case GAME_QUOTH:
561                         Cbuf_InsertText(cmd, "\n"
562 "sv_gameplayfix_blowupfallenzombies 0\n"
563 "sv_gameplayfix_findradiusdistancetobox 0\n"
564 "sv_gameplayfix_grenadebouncedownslopes 0\n"
565 "sv_gameplayfix_slidemoveprojectiles 0\n"
566 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
567 "sv_gameplayfix_setmodelrealbox 0\n"
568 "sv_gameplayfix_droptofloorstartsolid 0\n"
569 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
570 "sv_gameplayfix_noairborncorpse 0\n"
571 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
572 "sv_gameplayfix_easierwaterjump 0\n"
573 "sv_gameplayfix_delayprojectiles 0\n"
574 "sv_gameplayfix_multiplethinksperframe 0\n"
575 "sv_gameplayfix_fixedcheckwatertransition 0\n"
576 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
577 "sv_gameplayfix_swiminbmodels 0\n"
578 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
579 "sys_ticrate 0.02\n"
580 "r_shadow_gloss 1\n"
581 "r_shadow_bumpscale_basetexture 0\n"
582 "csqc_polygons_defaultmaterial_nocullface 0\n"
583                                 );
584                         break;
585                 // rogue mission pack has a guardian boss that does not wake up if findradius returns one of the entities around its spawn area
586                 case GAME_ROGUE:
587                         Cbuf_InsertText(cmd, "\n"
588 "sv_gameplayfix_blowupfallenzombies 0\n"
589 "sv_gameplayfix_findradiusdistancetobox 0\n"
590 "sv_gameplayfix_grenadebouncedownslopes 0\n"
591 "sv_gameplayfix_slidemoveprojectiles 0\n"
592 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
593 "sv_gameplayfix_setmodelrealbox 0\n"
594 "sv_gameplayfix_droptofloorstartsolid 0\n"
595 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
596 "sv_gameplayfix_noairborncorpse 0\n"
597 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
598 "sv_gameplayfix_easierwaterjump 0\n"
599 "sv_gameplayfix_delayprojectiles 0\n"
600 "sv_gameplayfix_multiplethinksperframe 0\n"
601 "sv_gameplayfix_fixedcheckwatertransition 0\n"
602 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
603 "sv_gameplayfix_swiminbmodels 0\n"
604 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
605 "sys_ticrate 0.01388889\n"
606 "r_shadow_gloss 1\n"
607 "r_shadow_bumpscale_basetexture 0\n"
608 "csqc_polygons_defaultmaterial_nocullface 0\n"
609                                 );
610                         break;
611                 case GAME_TENEBRAE:
612                         Cbuf_InsertText(cmd, "\n"
613 "sv_gameplayfix_blowupfallenzombies 0\n"
614 "sv_gameplayfix_findradiusdistancetobox 0\n"
615 "sv_gameplayfix_grenadebouncedownslopes 0\n"
616 "sv_gameplayfix_slidemoveprojectiles 0\n"
617 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
618 "sv_gameplayfix_setmodelrealbox 0\n"
619 "sv_gameplayfix_droptofloorstartsolid 0\n"
620 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
621 "sv_gameplayfix_noairborncorpse 0\n"
622 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
623 "sv_gameplayfix_easierwaterjump 0\n"
624 "sv_gameplayfix_delayprojectiles 0\n"
625 "sv_gameplayfix_multiplethinksperframe 0\n"
626 "sv_gameplayfix_fixedcheckwatertransition 0\n"
627 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
628 "sv_gameplayfix_swiminbmodels 0\n"
629 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
630 "sys_ticrate 0.01388889\n"
631 "r_shadow_gloss 2\n"
632 "r_shadow_bumpscale_basetexture 4\n"
633 "csqc_polygons_defaultmaterial_nocullface 0\n"
634                                 );
635                         break;
636                 case GAME_NEXUIZ:
637                         Cbuf_InsertText(cmd, "\n"
638 "sv_gameplayfix_blowupfallenzombies 1\n"
639 "sv_gameplayfix_findradiusdistancetobox 1\n"
640 "sv_gameplayfix_grenadebouncedownslopes 1\n"
641 "sv_gameplayfix_slidemoveprojectiles 1\n"
642 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
643 "sv_gameplayfix_setmodelrealbox 1\n"
644 "sv_gameplayfix_droptofloorstartsolid 1\n"
645 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
646 "sv_gameplayfix_noairborncorpse 1\n"
647 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
648 "sv_gameplayfix_easierwaterjump 1\n"
649 "sv_gameplayfix_delayprojectiles 1\n"
650 "sv_gameplayfix_multiplethinksperframe 1\n"
651 "sv_gameplayfix_fixedcheckwatertransition 1\n"
652 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
653 "sv_gameplayfix_swiminbmodels 1\n"
654 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
655 "sys_ticrate 0.01388889\n"
656 "sv_gameplayfix_q2airaccelerate 1\n"
657 "sv_gameplayfix_stepmultipletimes 1\n"
658 "csqc_polygons_defaultmaterial_nocullface 1\n"
659                                 );
660                         break;
661                 case GAME_XONOTIC:
662                 case GAME_VORETOURNAMENT:
663                         // compatibility for versions prior to 2020-05-25, this can be overridden in newer versions to get the default behavior and be consistent with FTEQW engine
664                         Cbuf_InsertText(cmd, "\n"
665 "csqc_polygons_defaultmaterial_nocullface 1\n"
666                                 );
667                         break;
668                 // Steel Storm: Burning Retribution csqc misinterprets CSQC_InputEvent if type is a value other than 0 or 1
669                 case GAME_STEELSTORM:
670                         Cbuf_InsertText(cmd, "\n"
671 "sv_gameplayfix_blowupfallenzombies 1\n"
672 "sv_gameplayfix_findradiusdistancetobox 1\n"
673 "sv_gameplayfix_grenadebouncedownslopes 1\n"
674 "sv_gameplayfix_slidemoveprojectiles 1\n"
675 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
676 "sv_gameplayfix_setmodelrealbox 1\n"
677 "sv_gameplayfix_droptofloorstartsolid 1\n"
678 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
679 "sv_gameplayfix_noairborncorpse 1\n"
680 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
681 "sv_gameplayfix_easierwaterjump 1\n"
682 "sv_gameplayfix_delayprojectiles 1\n"
683 "sv_gameplayfix_multiplethinksperframe 1\n"
684 "sv_gameplayfix_fixedcheckwatertransition 1\n"
685 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
686 "sv_gameplayfix_swiminbmodels 1\n"
687 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
688 "sys_ticrate 0.01388889\n"
689 "cl_csqc_generatemousemoveevents 0\n"
690 "csqc_polygons_defaultmaterial_nocullface 1\n"
691                                 );
692                         break;
693                 default:
694                         Cbuf_InsertText(cmd, "\n"
695 "sv_gameplayfix_blowupfallenzombies 1\n"
696 "sv_gameplayfix_findradiusdistancetobox 1\n"
697 "sv_gameplayfix_grenadebouncedownslopes 1\n"
698 "sv_gameplayfix_slidemoveprojectiles 1\n"
699 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
700 "sv_gameplayfix_setmodelrealbox 1\n"
701 "sv_gameplayfix_droptofloorstartsolid 1\n"
702 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
703 "sv_gameplayfix_noairborncorpse 1\n"
704 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
705 "sv_gameplayfix_easierwaterjump 1\n"
706 "sv_gameplayfix_delayprojectiles 1\n"
707 "sv_gameplayfix_multiplethinksperframe 1\n"
708 "sv_gameplayfix_fixedcheckwatertransition 1\n"
709 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
710 "sv_gameplayfix_swiminbmodels 1\n"
711 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
712 "sys_ticrate 0.01388889\n"
713 "csqc_polygons_defaultmaterial_nocullface 0\n"
714                                 );
715                         break;
716                 }
717         }
718 }
719
720 /*
721 ===============
722 Cmd_Exec_f
723 ===============
724 */
725 static void Cmd_Exec_f (cmd_state_t *cmd)
726 {
727         fssearch_t *s;
728         int i;
729
730         if (Cmd_Argc(cmd) != 2)
731         {
732                 Con_Print("exec <filename> : execute a script file\n");
733                 return;
734         }
735
736         s = FS_Search(Cmd_Argv(cmd, 1), true, true);
737         if(!s || !s->numfilenames)
738         {
739                 Con_Printf("couldn't exec %s\n",Cmd_Argv(cmd, 1));
740                 return;
741         }
742
743         for(i = 0; i < s->numfilenames; ++i)
744                 Cmd_Exec(cmd, s->filenames[i]);
745
746         FS_FreeSearch(s);
747 }
748
749
750 /*
751 ===============
752 Cmd_Echo_f
753
754 Just prints the rest of the line to the console
755 ===============
756 */
757 static void Cmd_Echo_f (cmd_state_t *cmd)
758 {
759         int             i;
760
761         for (i=1 ; i<Cmd_Argc(cmd) ; i++)
762                 Con_Printf("%s ",Cmd_Argv(cmd, i));
763         Con_Print("\n");
764 }
765
766 // DRESK - 5/14/06
767 // Support Doom3-style Toggle Console Command
768 /*
769 ===============
770 Cmd_Toggle_f
771
772 Toggles a specified console variable amongst the values specified (default is 0 and 1)
773 ===============
774 */
775 static void Cmd_Toggle_f(cmd_state_t *cmd)
776 {
777         // Acquire Number of Arguments
778         int nNumArgs = Cmd_Argc(cmd);
779
780         if(nNumArgs == 1)
781                 // No Arguments Specified; Print Usage
782                 Con_Print("Toggle Console Variable - Usage\n  toggle <variable> - toggles between 0 and 1\n  toggle <variable> <value> - toggles between 0 and <value>\n  toggle <variable> [string 1] [string 2]...[string n] - cycles through all strings\n");
783         else
784         { // Correct Arguments Specified
785                 // Acquire Potential CVar
786                 cvar_t* cvCVar = Cvar_FindVar(cmd->cvars, Cmd_Argv(cmd, 1), cmd->cvars_flagsmask);
787
788                 if(cvCVar != NULL)
789                 { // Valid CVar
790                         if(nNumArgs == 2)
791                         { // Default Usage
792                                 if(cvCVar->integer)
793                                         Cvar_SetValueQuick(cvCVar, 0);
794                                 else
795                                         Cvar_SetValueQuick(cvCVar, 1);
796                         }
797                         else
798                         if(nNumArgs == 3)
799                         { // 0 and Specified Usage
800                                 if(cvCVar->integer == atoi(Cmd_Argv(cmd, 2) ) )
801                                         // CVar is Specified Value; // Reset to 0
802                                         Cvar_SetValueQuick(cvCVar, 0);
803                                 else
804                                 if(cvCVar->integer == 0)
805                                         // CVar is 0; Specify Value
806                                         Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
807                                 else
808                                         // CVar does not match; Reset to 0
809                                         Cvar_SetValueQuick(cvCVar, 0);
810                         }
811                         else
812                         { // Variable Values Specified
813                                 int nCnt;
814                                 int bFound = 0;
815
816                                 for(nCnt = 2; nCnt < nNumArgs; nCnt++)
817                                 { // Cycle through Values
818                                         if( strcmp(cvCVar->string, Cmd_Argv(cmd, nCnt) ) == 0)
819                                         { // Current Value Located; Increment to Next
820                                                 if( (nCnt + 1) == nNumArgs)
821                                                         // Max Value Reached; Reset
822                                                         Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
823                                                 else
824                                                         // Next Value
825                                                         Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, nCnt + 1) );
826
827                                                 // End Loop
828                                                 nCnt = nNumArgs;
829                                                 // Assign Found
830                                                 bFound = 1;
831                                         }
832                                 }
833                                 if(!bFound)
834                                         // Value not Found; Reset to Original
835                                         Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
836                         }
837
838                 }
839                 else
840                 { // Invalid CVar
841                         Con_Printf("ERROR : CVar '%s' not found\n", Cmd_Argv(cmd, 1) );
842                 }
843         }
844 }
845
846 /*
847 ===============
848 Cmd_Alias_f
849
850 Creates a new command that executes a command string (possibly ; seperated)
851 ===============
852 */
853 static void Cmd_Alias_f (cmd_state_t *cmd)
854 {
855         cmdalias_t      *a;
856         char            line[MAX_INPUTLINE];
857         int                     i, c;
858         const char              *s;
859         size_t          alloclen;
860
861         if (Cmd_Argc(cmd) == 1)
862         {
863                 Con_Print("Current alias commands:\n");
864                 for (a = cmd->userdefined->alias ; a ; a=a->next)
865                         Con_Printf("%s : %s", a->name, a->value);
866                 return;
867         }
868
869         s = Cmd_Argv(cmd, 1);
870         if (strlen(s) >= MAX_ALIAS_NAME)
871         {
872                 Con_Print("Alias name is too long\n");
873                 return;
874         }
875
876         // if the alias already exists, reuse it
877         for (a = cmd->userdefined->alias ; a ; a=a->next)
878         {
879                 if (!strcmp(s, a->name))
880                 {
881                         Z_Free (a->value);
882                         break;
883                 }
884         }
885
886         if (!a)
887         {
888                 cmdalias_t *prev, *current;
889
890                 a = (cmdalias_t *)Z_Malloc (sizeof(cmdalias_t));
891                 strlcpy (a->name, s, sizeof (a->name));
892                 // insert it at the right alphanumeric position
893                 for( prev = NULL, current = cmd->userdefined->alias ; current && strcmp( current->name, a->name ) < 0 ; prev = current, current = current->next )
894                         ;
895                 if( prev ) {
896                         prev->next = a;
897                 } else {
898                         cmd->userdefined->alias = a;
899                 }
900                 a->next = current;
901         }
902
903
904 // copy the rest of the command line
905         line[0] = 0;            // start out with a null string
906         c = Cmd_Argc(cmd);
907         for (i=2 ; i < c ; i++)
908         {
909                 if (i != 2)
910                         strlcat (line, " ", sizeof (line));
911                 strlcat (line, Cmd_Argv(cmd, i), sizeof (line));
912         }
913         strlcat (line, "\n", sizeof (line));
914
915         alloclen = strlen (line) + 1;
916         if(alloclen >= 2)
917                 line[alloclen - 2] = '\n'; // to make sure a newline is appended even if too long
918         a->value = (char *)Z_Malloc (alloclen);
919         memcpy (a->value, line, alloclen);
920 }
921
922 /*
923 ===============
924 Cmd_UnAlias_f
925
926 Remove existing aliases.
927 ===============
928 */
929 static void Cmd_UnAlias_f (cmd_state_t *cmd)
930 {
931         cmdalias_t      *a, *p;
932         int i;
933         const char *s;
934
935         if(Cmd_Argc(cmd) == 1)
936         {
937                 Con_Print("unalias: Usage: unalias alias1 [alias2 ...]\n");
938                 return;
939         }
940
941         for(i = 1; i < Cmd_Argc(cmd); ++i)
942         {
943                 s = Cmd_Argv(cmd, i);
944                 p = NULL;
945                 for(a = cmd->userdefined->alias; a; p = a, a = a->next)
946                 {
947                         if(!strcmp(s, a->name))
948                         {
949                                 if (a->initstate) // we can not remove init aliases
950                                         continue;
951                                 if(a == cmd->userdefined->alias)
952                                         cmd->userdefined->alias = a->next;
953                                 if(p)
954                                         p->next = a->next;
955                                 Z_Free(a->value);
956                                 Z_Free(a);
957                                 break;
958                         }
959                 }
960                 if(!a)
961                         Con_Printf("unalias: %s alias not found\n", s);
962         }
963 }
964
965 /*
966 =============================================================================
967
968                                         COMMAND EXECUTION
969
970 =============================================================================
971 */
972
973 static const char *Cmd_GetDirectCvarValue(cmd_state_t *cmd, const char *varname, cmdalias_t *alias, qboolean *is_multiple)
974 {
975         cvar_t *cvar;
976         long argno;
977         char *endptr;
978         static char vabuf[1024]; // cmd_mutex
979
980         if(is_multiple)
981                 *is_multiple = false;
982
983         if(!varname || !*varname)
984                 return NULL;
985
986         if(alias)
987         {
988                 if(!strcmp(varname, "*"))
989                 {
990                         if(is_multiple)
991                                 *is_multiple = true;
992                         return Cmd_Args(cmd);
993                 }
994                 else if(!strcmp(varname, "#"))
995                 {
996                         return va(vabuf, sizeof(vabuf), "%d", Cmd_Argc(cmd));
997                 }
998                 else if(varname[strlen(varname) - 1] == '-')
999                 {
1000                         argno = strtol(varname, &endptr, 10);
1001                         if(endptr == varname + strlen(varname) - 1)
1002                         {
1003                                 // whole string is a number, apart from the -
1004                                 const char *p = Cmd_Args(cmd);
1005                                 for(; argno > 1; --argno)
1006                                         if(!COM_ParseToken_Console(&p))
1007                                                 break;
1008                                 if(p)
1009                                 {
1010                                         if(is_multiple)
1011                                                 *is_multiple = true;
1012
1013                                         // kill pre-argument whitespace
1014                                         for (;*p && ISWHITESPACE(*p);p++)
1015                                                 ;
1016
1017                                         return p;
1018                                 }
1019                         }
1020                 }
1021                 else
1022                 {
1023                         argno = strtol(varname, &endptr, 10);
1024                         if(*endptr == 0)
1025                         {
1026                                 // whole string is a number
1027                                 // NOTE: we already made sure we don't have an empty cvar name!
1028                                 if(argno >= 0 && argno < Cmd_Argc(cmd))
1029                                         return Cmd_Argv(cmd, argno);
1030                         }
1031                 }
1032         }
1033
1034         if((cvar = Cvar_FindVar(cmd->cvars, varname, cmd->cvars_flagsmask)) && !(cvar->flags & CVAR_PRIVATE))
1035                 return cvar->string;
1036
1037         return NULL;
1038 }
1039
1040 qboolean Cmd_QuoteString(char *out, size_t outlen, const char *in, const char *quoteset, qboolean putquotes)
1041 {
1042         qboolean quote_quot = !!strchr(quoteset, '"');
1043         qboolean quote_backslash = !!strchr(quoteset, '\\');
1044         qboolean quote_dollar = !!strchr(quoteset, '$');
1045
1046         if(putquotes)
1047         {
1048                 if(outlen <= 2)
1049                 {
1050                         *out++ = 0;
1051                         return false;
1052                 }
1053                 *out++ = '"'; --outlen;
1054                 --outlen;
1055         }
1056
1057         while(*in)
1058         {
1059                 if(*in == '"' && quote_quot)
1060                 {
1061                         if(outlen <= 2)
1062                                 goto fail;
1063                         *out++ = '\\'; --outlen;
1064                         *out++ = '"'; --outlen;
1065                 }
1066                 else if(*in == '\\' && quote_backslash)
1067                 {
1068                         if(outlen <= 2)
1069                                 goto fail;
1070                         *out++ = '\\'; --outlen;
1071                         *out++ = '\\'; --outlen;
1072                 }
1073                 else if(*in == '$' && quote_dollar)
1074                 {
1075                         if(outlen <= 2)
1076                                 goto fail;
1077                         *out++ = '$'; --outlen;
1078                         *out++ = '$'; --outlen;
1079                 }
1080                 else
1081                 {
1082                         if(outlen <= 1)
1083                                 goto fail;
1084                         *out++ = *in; --outlen;
1085                 }
1086                 ++in;
1087         }
1088         if(putquotes)
1089                 *out++ = '"';
1090         *out++ = 0;
1091         return true;
1092 fail:
1093         if(putquotes)
1094                 *out++ = '"';
1095         *out++ = 0;
1096         return false;
1097 }
1098
1099 static const char *Cmd_GetCvarValue(cmd_state_t *cmd, const char *var, size_t varlen, cmdalias_t *alias)
1100 {
1101         static char varname[MAX_INPUTLINE]; // cmd_mutex
1102         static char varval[MAX_INPUTLINE]; // cmd_mutex
1103         const char *varstr = NULL;
1104         char *varfunc;
1105         qboolean required = false;
1106         qboolean optional = false;
1107         static char asis[] = "asis"; // just to suppress const char warnings
1108
1109         if(varlen >= MAX_INPUTLINE)
1110                 varlen = MAX_INPUTLINE - 1;
1111         memcpy(varname, var, varlen);
1112         varname[varlen] = 0;
1113         varfunc = strchr(varname, ' ');
1114
1115         if(varfunc)
1116         {
1117                 *varfunc = 0;
1118                 ++varfunc;
1119         }
1120
1121         if(*var == 0)
1122         {
1123                 // empty cvar name?
1124                 if(alias)
1125                         Con_Printf("Warning: Could not expand $ in alias %s\n", alias->name);
1126                 else
1127                         Con_Printf("Warning: Could not expand $\n");
1128                 return "$";
1129         }
1130
1131         if(varfunc)
1132         {
1133                 char *p;
1134                 // ? means optional
1135                 while((p = strchr(varfunc, '?')))
1136                 {
1137                         optional = true;
1138                         memmove(p, p+1, strlen(p)); // with final NUL
1139                 }
1140                 // ! means required
1141                 while((p = strchr(varfunc, '!')))
1142                 {
1143                         required = true;
1144                         memmove(p, p+1, strlen(p)); // with final NUL
1145                 }
1146                 // kill spaces
1147                 while((p = strchr(varfunc, ' ')))
1148                 {
1149                         memmove(p, p+1, strlen(p)); // with final NUL
1150                 }
1151                 // if no function is left, NULL it
1152                 if(!*varfunc)
1153                         varfunc = NULL;
1154         }
1155
1156         if(varname[0] == '$')
1157                 varstr = Cmd_GetDirectCvarValue(cmd, Cmd_GetDirectCvarValue(cmd, varname + 1, alias, NULL), alias, NULL);
1158         else
1159         {
1160                 qboolean is_multiple = false;
1161                 // Exception: $* and $n- don't use the quoted form by default
1162                 varstr = Cmd_GetDirectCvarValue(cmd, varname, alias, &is_multiple);
1163                 if(is_multiple)
1164                         if(!varfunc)
1165                                 varfunc = asis;
1166         }
1167
1168         if(!varstr)
1169         {
1170                 if(required)
1171                 {
1172                         if(alias)
1173                                 Con_Printf("Error: Could not expand $%s in alias %s\n", varname, alias->name);
1174                         else
1175                                 Con_Printf("Error: Could not expand $%s\n", varname);
1176                         return NULL;
1177                 }
1178                 else if(optional)
1179                 {
1180                         return "";
1181                 }
1182                 else
1183                 {
1184                         if(alias)
1185                                 Con_Printf("Warning: Could not expand $%s in alias %s\n", varname, alias->name);
1186                         else
1187                                 Con_Printf("Warning: Could not expand $%s\n", varname);
1188                         dpsnprintf(varval, sizeof(varval), "$%s", varname);
1189                         return varval;
1190                 }
1191         }
1192
1193         if(!varfunc || !strcmp(varfunc, "q")) // note: quoted form is default, use "asis" to override!
1194         {
1195                 // quote it so it can be used inside double quotes
1196                 // we just need to replace " by \", and of course, double backslashes
1197                 Cmd_QuoteString(varval, sizeof(varval), varstr, "\"\\", false);
1198                 return varval;
1199         }
1200         else if(!strcmp(varfunc, "asis"))
1201         {
1202                 return varstr;
1203         }
1204         else
1205                 Con_Printf("Unknown variable function %s\n", varfunc);
1206
1207         return varstr;
1208 }
1209
1210 /*
1211 Cmd_PreprocessString
1212
1213 Preprocesses strings and replaces $*, $param#, $cvar accordingly. Also strips comments.
1214 */
1215 static qboolean Cmd_PreprocessString(cmd_state_t *cmd, const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias ) {
1216         const char *in;
1217         size_t eat, varlen;
1218         unsigned outlen;
1219         const char *val;
1220
1221         // don't crash if there's no room in the outtext buffer
1222         if( maxoutlen == 0 ) {
1223                 return false;
1224         }
1225         maxoutlen--; // because of \0
1226
1227         in = intext;
1228         outlen = 0;
1229
1230         while( *in && outlen < maxoutlen ) {
1231                 if( *in == '$' ) {
1232                         // this is some kind of expansion, see what comes after the $
1233                         in++;
1234
1235                         // The console does the following preprocessing:
1236                         //
1237                         // - $$ is transformed to a single dollar sign.
1238                         // - $var or ${var} are expanded to the contents of the named cvar,
1239                         //   with quotation marks and backslashes quoted so it can safely
1240                         //   be used inside quotation marks (and it should always be used
1241                         //   that way)
1242                         // - ${var asis} inserts the cvar value as is, without doing this
1243                         //   quoting
1244                         // - ${var ?} silently expands to the empty string if
1245                         //   $var does not exist
1246                         // - ${var !} fails expansion and executes nothing if
1247                         //   $var does not exist
1248                         // - prefix the cvar name with a dollar sign to do indirection;
1249                         //   for example, if $x has the value timelimit, ${$x} will return
1250                         //   the value of $timelimit
1251                         // - when expanding an alias, the special variable name $* refers
1252                         //   to all alias parameters, and a number refers to that numbered
1253                         //   alias parameter, where the name of the alias is $0, the first
1254                         //   parameter is $1 and so on; as a special case, $* inserts all
1255                         //   parameters, without extra quoting, so one can use $* to just
1256                         //   pass all parameters around. All parameters starting from $n
1257                         //   can be referred to as $n- (so $* is equivalent to $1-).
1258                         // - ${* q} and ${n- q} force quoting anyway
1259                         //
1260                         // Note: when expanding an alias, cvar expansion is done in the SAME step
1261                         // as alias expansion so that alias parameters or cvar values containing
1262                         // dollar signs have no unwanted bad side effects. However, this needs to
1263                         // be accounted for when writing complex aliases. For example,
1264                         //   alias foo "set x NEW; echo $x"
1265                         // actually expands to
1266                         //   "set x NEW; echo OLD"
1267                         // and will print OLD! To work around this, use a second alias:
1268                         //   alias foo "set x NEW; foo2"
1269                         //   alias foo2 "echo $x"
1270                         //
1271                         // Also note: lines starting with alias are exempt from cvar expansion.
1272                         // If you want cvar expansion, write "alias" instead:
1273                         //
1274                         //   set x 1
1275                         //   alias foo "echo $x"
1276                         //   "alias" bar "echo $x"
1277                         //   set x 2
1278                         //
1279                         // foo will print 2, because the variable $x will be expanded when the alias
1280                         // gets expanded. bar will print 1, because the variable $x was expanded
1281                         // at definition time. foo can be equivalently defined as
1282                         //
1283                         //   "alias" foo "echo $$x"
1284                         //
1285                         // because at definition time, $$ will get replaced to a single $.
1286
1287                         if( *in == '$' ) {
1288                                 val = "$";
1289                                 eat = 1;
1290                         } else if(*in == '{') {
1291                                 varlen = strcspn(in + 1, "}");
1292                                 if(in[varlen + 1] == '}')
1293                                 {
1294                                         val = Cmd_GetCvarValue(cmd, in + 1, varlen, alias);
1295                                         if(!val)
1296                                                 return false;
1297                                         eat = varlen + 2;
1298                                 }
1299                                 else
1300                                 {
1301                                         // ran out of data?
1302                                         val = NULL;
1303                                         eat = varlen + 1;
1304                                 }
1305                         } else {
1306                                 varlen = strspn(in, "#*0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-");
1307                                 val = Cmd_GetCvarValue(cmd, in, varlen, alias);
1308                                 if(!val)
1309                                         return false;
1310                                 eat = varlen;
1311                         }
1312                         if(val)
1313                         {
1314                                 // insert the cvar value
1315                                 while(*val && outlen < maxoutlen)
1316                                         outtext[outlen++] = *val++;
1317                                 in += eat;
1318                         }
1319                         else
1320                         {
1321                                 // copy the unexpanded text
1322                                 outtext[outlen++] = '$';
1323                                 while(eat && outlen < maxoutlen)
1324                                 {
1325                                         outtext[outlen++] = *in++;
1326                                         --eat;
1327                                 }
1328                         }
1329                 }
1330                 else 
1331                         outtext[outlen++] = *in++;
1332         }
1333         outtext[outlen] = 0;
1334         return true;
1335 }
1336
1337 /*
1338 ============
1339 Cmd_ExecuteAlias
1340
1341 Called for aliases and fills in the alias into the cbuffer
1342 ============
1343 */
1344 static void Cmd_ExecuteAlias (cmd_state_t *cmd, cmdalias_t *alias)
1345 {
1346         static char buffer[ MAX_INPUTLINE ]; // cmd_mutex
1347         static char buffer2[ MAX_INPUTLINE ]; // cmd_mutex
1348         qboolean ret = Cmd_PreprocessString( cmd, alias->value, buffer, sizeof(buffer) - 2, alias );
1349         if(!ret)
1350                 return;
1351         // insert at start of command buffer, so that aliases execute in order
1352         // (fixes bug introduced by Black on 20050705)
1353
1354         // Note: Cbuf_PreprocessString will be called on this string AGAIN! So we
1355         // have to make sure that no second variable expansion takes place, otherwise
1356         // alias parameters containing dollar signs can have bad effects.
1357         Cmd_QuoteString(buffer2, sizeof(buffer2), buffer, "$", false);
1358         Cbuf_InsertText(cmd, buffer2);
1359 }
1360
1361 /*
1362 ========
1363 Cmd_List
1364
1365         CmdList Added by EvilTypeGuy eviltypeguy@qeradiant.com
1366         Thanks to Matthias "Maddes" Buecher, http://www.inside3d.com/qip/
1367
1368 ========
1369 */
1370 static void Cmd_List_f (cmd_state_t *cmd)
1371 {
1372         cmd_function_t *func;
1373         const char *partial;
1374         size_t len;
1375         int count;
1376         qboolean ispattern;
1377
1378         if (Cmd_Argc(cmd) > 1)
1379         {
1380                 partial = Cmd_Argv(cmd, 1);
1381                 len = strlen(partial);
1382                 ispattern = (strchr(partial, '*') || strchr(partial, '?'));
1383         }
1384         else
1385         {
1386                 partial = NULL;
1387                 len = 0;
1388                 ispattern = false;
1389         }
1390
1391         count = 0;
1392         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1393         {
1394                 if (partial && (ispattern ? !matchpattern_with_separator(func->name, partial, false, "", false) : strncmp(partial, func->name, len)))
1395                         continue;
1396                 Con_Printf("%s : %s\n", func->name, func->description);
1397                 count++;
1398         }
1399         for (func = cmd->engine_functions; func; func = func->next)
1400         {
1401                 if (partial && (ispattern ? !matchpattern_with_separator(func->name, partial, false, "", false) : strncmp(partial, func->name, len)))
1402                         continue;
1403                 Con_Printf("%s : %s\n", func->name, func->description);
1404                 count++;
1405         }
1406
1407         if (len)
1408         {
1409                 if(ispattern)
1410                         Con_Printf("%i Command%s matching \"%s\"\n\n", count, (count > 1) ? "s" : "", partial);
1411                 else
1412                         Con_Printf("%i Command%s beginning with \"%s\"\n\n", count, (count > 1) ? "s" : "", partial);
1413         }
1414         else
1415                 Con_Printf("%i Command%s\n\n", count, (count > 1) ? "s" : "");
1416 }
1417
1418 static void Cmd_Apropos_f(cmd_state_t *cmd)
1419 {
1420         cmd_function_t *func;
1421         cvar_t *cvar;
1422         cmdalias_t *alias;
1423         const char *partial;
1424         int count;
1425         qboolean ispattern;
1426         char vabuf[1024];
1427
1428         if (Cmd_Argc(cmd) > 1)
1429                 partial = Cmd_Args(cmd);
1430         else
1431         {
1432                 Con_Printf("usage: apropos <string>\n");
1433                 return;
1434         }
1435
1436         ispattern = partial && (strchr(partial, '*') || strchr(partial, '?'));
1437         if(!ispattern)
1438                 partial = va(vabuf, sizeof(vabuf), "*%s*", partial);
1439
1440         count = 0;
1441         for (cvar = cmd->cvars->vars; cvar; cvar = cvar->next)
1442         {
1443                 if (!matchpattern_with_separator(cvar->name, partial, true, "", false))
1444                 if (!matchpattern_with_separator(cvar->description, partial, true, "", false))
1445                         continue;
1446                 Con_Printf ("cvar ^3%s^7 is \"%s\" [\"%s\"] %s\n", cvar->name, cvar->string, cvar->defstring, cvar->description);
1447                 count++;
1448         }
1449         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1450         {
1451                 if (!matchpattern_with_separator(func->name, partial, true, "", false))
1452                         if (!matchpattern_with_separator(func->description, partial, true, "", false))
1453                                 continue;
1454                 Con_Printf("command ^2%s^7: %s\n", func->name, func->description);
1455                 count++;
1456         }
1457         for (func = cmd->engine_functions; func; func = func->next)
1458         {
1459                 if (!matchpattern_with_separator(func->name, partial, true, "", false))
1460                 if (!matchpattern_with_separator(func->description, partial, true, "", false))
1461                         continue;
1462                 Con_Printf("command ^2%s^7: %s\n", func->name, func->description);
1463                 count++;
1464         }
1465         for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1466         {
1467                 // procede here a bit differently as an alias value always got a final \n
1468                 if (!matchpattern_with_separator(alias->name, partial, true, "", false))
1469                 if (!matchpattern_with_separator(alias->value, partial, true, "\n", false)) // when \n is as separator wildcards don't match it
1470                         continue;
1471                 Con_Printf("alias ^5%s^7: %s", alias->name, alias->value); // do not print an extra \n
1472                 count++;
1473         }
1474         Con_Printf("%i result%s\n\n", count, (count > 1) ? "s" : "");
1475 }
1476
1477 /*
1478 ============
1479 Cmd_Init
1480 ============
1481 */
1482 void Cmd_Init(void)
1483 {
1484         cmd_iter_t *cmd_iter;
1485         for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
1486         {
1487                 cmd_state_t *cmd = cmd_iter->cmd;
1488                 cmd->mempool = Mem_AllocPool("commands", 0, NULL);
1489                 // space for commands and script files
1490                 cmd->text.data = cmd->text_buf;
1491                 cmd->text.maxsize = sizeof(cmd->text_buf);
1492                 cmd->text.cursize = 0;
1493                 cmd->null_string = "";
1494         }
1495         // client console can see server cvars because the user may start a server
1496         cmd_client.cvars = &cvars_all;
1497         cmd_client.cvars_flagsmask = CVAR_CLIENT | CVAR_SERVER;
1498         cmd_client.userdefined = &cmd_userdefined_all;
1499         // stuffcmd from server has access to the reasonable client things, but it probably doesn't need to access the client's server-only cvars
1500         cmd_clientfromserver.cvars = &cvars_all;
1501         cmd_clientfromserver.cvars_flagsmask = CVAR_CLIENT;
1502         cmd_clientfromserver.userdefined = &cmd_userdefined_all;
1503         // dedicated server console can only see server cvars, there is no client
1504         cmd_server.cvars = &cvars_all;
1505         cmd_server.cvars_flagsmask = CVAR_SERVER;
1506         cmd_server.userdefined = &cmd_userdefined_all;
1507         // server commands received from clients have no reason to access cvars, cvar expansion seems perilous.
1508         cmd_serverfromclient.cvars = &cvars_null;
1509         cmd_serverfromclient.cvars_flagsmask = 0;
1510         cmd_serverfromclient.userdefined = &cmd_userdefined_null;
1511 }
1512
1513 void Cmd_Init_Commands(qboolean dedicated_server)
1514 {
1515 //
1516 // register our commands
1517 //
1518         // client-only commands
1519         Cmd_AddCommand(&cmd_client, "cmd", Cmd_ForwardToServer_f, "send a console commandline to the server (used by some mods)");
1520         Cmd_AddCommand(&cmd_clientfromserver, "cmd", Cmd_ForwardToServer_f, "send a console commandline to the server (used by some mods)");
1521         Cmd_AddCommand(&cmd_client, "wait", Cmd_Wait_f, "make script execution wait for next rendered frame");
1522         Cmd_AddCommand(&cmd_client, "cprint", Cmd_Centerprint_f, "print something at the screen center");
1523
1524         // maintenance commands used for upkeep of cvars and saved configs
1525         Cmd_AddCommand(&cmd_client, "stuffcmds", Cmd_StuffCmds_f, "execute commandline parameters (must be present in quake.rc script)");
1526         Cmd_AddCommand(&cmd_client, "cvar_lockdefaults", Cvar_LockDefaults_f, "stores the current values of all cvars into their default values, only used once during startup after parsing default.cfg");
1527         Cmd_AddCommand(&cmd_client, "cvar_resettodefaults_all", Cvar_ResetToDefaults_All_f, "sets all cvars to their locked default values");
1528         Cmd_AddCommand(&cmd_client, "cvar_resettodefaults_nosaveonly", Cvar_ResetToDefaults_NoSaveOnly_f, "sets all non-saved cvars to their locked default values (variables that will not be saved to config.cfg)");
1529         Cmd_AddCommand(&cmd_client, "cvar_resettodefaults_saveonly", Cvar_ResetToDefaults_SaveOnly_f, "sets all saved cvars to their locked default values (variables that will be saved to config.cfg)");
1530         Cmd_AddCommand(&cmd_server, "stuffcmds", Cmd_StuffCmds_f, "execute commandline parameters (must be present in quake.rc script)");
1531         Cmd_AddCommand(&cmd_server, "cvar_lockdefaults", Cvar_LockDefaults_f, "stores the current values of all cvars into their default values, only used once during startup after parsing default.cfg");
1532         Cmd_AddCommand(&cmd_server, "cvar_resettodefaults_all", Cvar_ResetToDefaults_All_f, "sets all cvars to their locked default values");
1533         Cmd_AddCommand(&cmd_server, "cvar_resettodefaults_nosaveonly", Cvar_ResetToDefaults_NoSaveOnly_f, "sets all non-saved cvars to their locked default values (variables that will not be saved to config.cfg)");
1534         Cmd_AddCommand(&cmd_server, "cvar_resettodefaults_saveonly", Cvar_ResetToDefaults_SaveOnly_f, "sets all saved cvars to their locked default values (variables that will be saved to config.cfg)");
1535
1536         // general console commands used in multiple environments
1537         Cmd_AddCommand(&cmd_client, "exec", Cmd_Exec_f, "execute a script file");
1538         Cmd_AddCommand(&cmd_client, "echo",Cmd_Echo_f, "print a message to the console (useful in scripts)");
1539         Cmd_AddCommand(&cmd_client, "alias",Cmd_Alias_f, "create a script function (parameters are passed in as $X (being X a number), $* for all parameters, $X- for all parameters starting from $X). Without arguments show the list of all alias");
1540         Cmd_AddCommand(&cmd_client, "unalias",Cmd_UnAlias_f, "remove an alias");
1541         Cmd_AddCommand(&cmd_client, "set", Cvar_Set_f, "create or change the value of a console variable");
1542         Cmd_AddCommand(&cmd_client, "seta", Cvar_SetA_f, "create or change the value of a console variable that will be saved to config.cfg");
1543         Cmd_AddCommand(&cmd_client, "unset", Cvar_Del_f, "delete a cvar (does not work for static ones like _cl_name, or read-only ones)");
1544         Cmd_AddCommand(&cmd_clientfromserver, "exec", Cmd_Exec_f, "execute a script file");
1545         Cmd_AddCommand(&cmd_clientfromserver, "echo", Cmd_Echo_f, "print a message to the console (useful in scripts)");
1546         Cmd_AddCommand(&cmd_clientfromserver, "alias", Cmd_Alias_f, "create a script function (parameters are passed in as $X (being X a number), $* for all parameters, $X- for all parameters starting from $X). Without arguments show the list of all alias");
1547         Cmd_AddCommand(&cmd_clientfromserver, "unalias", Cmd_UnAlias_f, "remove an alias");
1548         Cmd_AddCommand(&cmd_clientfromserver, "set", Cvar_Set_f, "create or change the value of a console variable");
1549         Cmd_AddCommand(&cmd_clientfromserver, "seta", Cvar_SetA_f, "create or change the value of a console variable that will be saved to config.cfg");
1550         Cmd_AddCommand(&cmd_clientfromserver, "unset", Cvar_Del_f, "delete a cvar (does not work for static ones like _cl_name, or read-only ones)");
1551         Cmd_AddCommand(&cmd_server, "exec", Cmd_Exec_f, "execute a script file");
1552         Cmd_AddCommand(&cmd_server, "echo", Cmd_Echo_f, "print a message to the console (useful in scripts)");
1553         Cmd_AddCommand(&cmd_server, "alias", Cmd_Alias_f, "create a script function (parameters are passed in as $X (being X a number), $* for all parameters, $X- for all parameters starting from $X). Without arguments show the list of all alias");
1554         Cmd_AddCommand(&cmd_server, "unalias", Cmd_UnAlias_f, "remove an alias");
1555         Cmd_AddCommand(&cmd_server, "set", Cvar_Set_f, "create or change the value of a console variable");
1556         Cmd_AddCommand(&cmd_server, "seta", Cvar_SetA_f, "create or change the value of a console variable that will be saved to config.cfg");
1557         Cmd_AddCommand(&cmd_server, "unset", Cvar_Del_f, "delete a cvar (does not work for static ones like _cl_name, or read-only ones)");
1558
1559 #ifdef FILLALLCVARSWITHRUBBISH
1560         Cmd_AddCommand(&cmd_client, "fillallcvarswithrubbish", Cvar_FillAll_f, "fill all cvars with a specified number of characters to provoke buffer overruns");
1561         Cmd_AddCommand(&cmd_server, "fillallcvarswithrubbish", Cvar_FillAll_f, "fill all cvars with a specified number of characters to provoke buffer overruns");
1562 #endif /* FILLALLCVARSWITHRUBBISH */
1563
1564         // 2000-01-09 CmdList, CvarList commands By Matthias "Maddes" Buecher
1565         // Added/Modified by EvilTypeGuy eviltypeguy@qeradiant.com
1566         Cmd_AddCommand(&cmd_client, "cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix or matching the specified wildcard pattern");
1567         Cmd_AddCommand(&cmd_client, "cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix or matching the specified wildcard pattern");
1568         Cmd_AddCommand(&cmd_client, "apropos", Cmd_Apropos_f, "lists all console variables/commands/aliases containing the specified string in the name or description");
1569         Cmd_AddCommand(&cmd_server, "cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix or matching the specified wildcard pattern");
1570         Cmd_AddCommand(&cmd_server, "cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix or matching the specified wildcard pattern");
1571         Cmd_AddCommand(&cmd_server, "apropos", Cmd_Apropos_f, "lists all console variables/commands/aliases containing the specified string in the name or description");
1572
1573         Cmd_AddCommand(&cmd_client, "defer", Cmd_Defer_f, "execute a command in the future");
1574         Cmd_AddCommand(&cmd_server, "defer", Cmd_Defer_f, "execute a command in the future");
1575
1576         // DRESK - 5/14/06
1577         // Support Doom3-style Toggle Command
1578         Cmd_AddCommand(&cmd_client, "toggle", Cmd_Toggle_f, "toggles a console variable's values (use for more info)");
1579         Cmd_AddCommand(&cmd_server, "toggle", Cmd_Toggle_f, "toggles a console variable's values (use for more info)");
1580         Cmd_AddCommand(&cmd_clientfromserver, "toggle", Cmd_Toggle_f, "toggles a console variable's values (use for more info)");
1581 }
1582
1583 /*
1584 ============
1585 Cmd_Shutdown
1586 ============
1587 */
1588 void Cmd_Shutdown(void)
1589 {
1590         cmd_iter_t *cmd_iter;
1591         for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
1592         {
1593                 cmd_state_t *cmd = cmd_iter->cmd;
1594
1595                 if (cmd->text_lock)
1596                 {
1597                         // we usually have this locked when we get here from Host_Quit_f
1598                         Cbuf_Unlock(cmd);
1599                 }
1600
1601                 Mem_FreePool(&cmd->mempool);
1602         }
1603 }
1604
1605 /*
1606 ============
1607 Cmd_Argc
1608 ============
1609 */
1610 int             Cmd_Argc (cmd_state_t *cmd)
1611 {
1612         return cmd->argc;
1613 }
1614
1615 /*
1616 ============
1617 Cmd_Argv
1618 ============
1619 */
1620 const char *Cmd_Argv(cmd_state_t *cmd, int arg)
1621 {
1622         if (arg >= cmd->argc )
1623                 return cmd->null_string;
1624         return cmd->argv[arg];
1625 }
1626
1627 /*
1628 ============
1629 Cmd_Args
1630 ============
1631 */
1632 const char *Cmd_Args (cmd_state_t *cmd)
1633 {
1634         return cmd->args;
1635 }
1636
1637
1638 /*
1639 ============
1640 Cmd_TokenizeString
1641
1642 Parses the given string into command line tokens.
1643 ============
1644 */
1645 // AK: This function should only be called from ExcuteString because the current design is a bit of an hack
1646 static void Cmd_TokenizeString (cmd_state_t *cmd, const char *text)
1647 {
1648         int l;
1649
1650         cmd->argc = 0;
1651         cmd->args = NULL;
1652
1653         while (1)
1654         {
1655                 // skip whitespace up to a /n
1656                 while (*text && ISWHITESPACE(*text) && *text != '\r' && *text != '\n')
1657                         text++;
1658
1659                 // line endings:
1660                 // UNIX: \n
1661                 // Mac: \r
1662                 // Windows: \r\n
1663                 if (*text == '\n' || *text == '\r')
1664                 {
1665                         // a newline separates commands in the buffer
1666                         if (*text == '\r' && text[1] == '\n')
1667                                 text++;
1668                         text++;
1669                         break;
1670                 }
1671
1672                 if (!*text)
1673                         return;
1674
1675                 if (cmd->argc == 1)
1676                         cmd->args = text;
1677
1678                 if (!COM_ParseToken_Console(&text))
1679                         return;
1680
1681                 if (cmd->argc < MAX_ARGS)
1682                 {
1683                         l = (int)strlen(com_token) + 1;
1684                         if (cmd->tokenizebufferpos + l > CMD_TOKENIZELENGTH)
1685                         {
1686                                 Con_Printf("Cmd_TokenizeString: ran out of %i character buffer space for command arguements\n", CMD_TOKENIZELENGTH);
1687                                 break;
1688                         }
1689                         memcpy (cmd->tokenizebuffer + cmd->tokenizebufferpos, com_token, l);
1690                         cmd->argv[cmd->argc] = cmd->tokenizebuffer + cmd->tokenizebufferpos;
1691                         cmd->tokenizebufferpos += l;
1692                         cmd->argc++;
1693                 }
1694         }
1695 }
1696
1697
1698 /*
1699 ============
1700 Cmd_AddCommand
1701 ============
1702 */
1703 void Cmd_AddCommand(cmd_state_t *cmd, const char *cmd_name, xcommand_t function, const char *description)
1704 {
1705         cmd_function_t *func;
1706         cmd_function_t *prev, *current;
1707
1708 // fail if the command is a variable name
1709         if (Cvar_FindVar(cmd->cvars, cmd_name, ~0))
1710         {
1711                 Con_Printf("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
1712                 return;
1713         }
1714
1715         if (function)
1716         {
1717                 // fail if the command already exists in this interpreter
1718                 for (func = cmd->engine_functions; func; func = func->next)
1719                 {
1720                         if (!strcmp(cmd_name, func->name))
1721                         {
1722                                 Con_Printf("Cmd_AddCommand: %s already defined\n", cmd_name);
1723                                 return;
1724                         }
1725                 }
1726
1727                 func = (cmd_function_t *)Mem_Alloc(cmd->mempool, sizeof(cmd_function_t));
1728                 func->name = cmd_name;
1729                 func->function = function;
1730                 func->description = description;
1731                 func->next = cmd->engine_functions;
1732
1733                 // insert it at the right alphanumeric position
1734                 for (prev = NULL, current = cmd->engine_functions; current && strcmp(current->name, func->name) < 0; prev = current, current = current->next)
1735                         ;
1736                 if (prev) {
1737                         prev->next = func;
1738                 }
1739                 else {
1740                         cmd->engine_functions = func;
1741                 }
1742                 func->next = current;
1743         }
1744         else
1745         {
1746                 // mark csqcfunc if the function already exists in the csqc_functions list
1747                 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1748                 {
1749                         if (!strcmp(cmd_name, func->name))
1750                         {
1751                                 func->csqcfunc = true; //[515]: csqc
1752                                 return;
1753                         }
1754                 }
1755
1756
1757                 func = (cmd_function_t *)Mem_Alloc(cmd->mempool, sizeof(cmd_function_t));
1758                 func->name = cmd_name;
1759                 func->function = function;
1760                 func->description = description;
1761                 func->csqcfunc = true; //[515]: csqc
1762                 func->next = cmd->userdefined->csqc_functions;
1763
1764                 // insert it at the right alphanumeric position
1765                 for (prev = NULL, current = cmd->userdefined->csqc_functions; current && strcmp(current->name, func->name) < 0; prev = current, current = current->next)
1766                         ;
1767                 if (prev) {
1768                         prev->next = func;
1769                 }
1770                 else {
1771                         cmd->userdefined->csqc_functions = func;
1772                 }
1773                 func->next = current;
1774         }
1775 }
1776
1777 /*
1778 ============
1779 Cmd_Exists
1780 ============
1781 */
1782 qboolean Cmd_Exists (cmd_state_t *cmd, const char *cmd_name)
1783 {
1784         cmd_function_t  *func;
1785
1786         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1787                 if (!strcmp(cmd_name, func->name))
1788                         return true;
1789
1790         for (func=cmd->engine_functions ; func ; func=func->next)
1791                 if (!strcmp (cmd_name,func->name))
1792                         return true;
1793
1794         return false;
1795 }
1796
1797
1798 /*
1799 ============
1800 Cmd_CompleteCommand
1801 ============
1802 */
1803 const char *Cmd_CompleteCommand (cmd_state_t *cmd, const char *partial)
1804 {
1805         cmd_function_t *func;
1806         size_t len;
1807
1808         len = strlen(partial);
1809
1810         if (!len)
1811                 return NULL;
1812
1813 // check functions
1814         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1815                 if (!strncasecmp(partial, func->name, len))
1816                         return func->name;
1817
1818         for (func = cmd->engine_functions; func; func = func->next)
1819                 if (!strncasecmp(partial, func->name, len))
1820                         return func->name;
1821
1822         return NULL;
1823 }
1824
1825 /*
1826         Cmd_CompleteCountPossible
1827
1828         New function for tab-completion system
1829         Added by EvilTypeGuy
1830         Thanks to Fett erich@heintz.com
1831         Thanks to taniwha
1832
1833 */
1834 int Cmd_CompleteCountPossible (cmd_state_t *cmd, const char *partial)
1835 {
1836         cmd_function_t *func;
1837         size_t len;
1838         int h;
1839
1840         h = 0;
1841         len = strlen(partial);
1842
1843         if (!len)
1844                 return 0;
1845
1846         // Loop through the command list and count all partial matches
1847         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1848                 if (!strncasecmp(partial, func->name, len))
1849                         h++;
1850
1851         for (func = cmd->engine_functions; func; func = func->next)
1852                 if (!strncasecmp(partial, func->name, len))
1853                         h++;
1854
1855         return h;
1856 }
1857
1858 /*
1859         Cmd_CompleteBuildList
1860
1861         New function for tab-completion system
1862         Added by EvilTypeGuy
1863         Thanks to Fett erich@heintz.com
1864         Thanks to taniwha
1865
1866 */
1867 const char **Cmd_CompleteBuildList (cmd_state_t *cmd, const char *partial)
1868 {
1869         cmd_function_t *func;
1870         size_t len = 0;
1871         size_t bpos = 0;
1872         size_t sizeofbuf = (Cmd_CompleteCountPossible (cmd, partial) + 1) * sizeof (const char *);
1873         const char **buf;
1874
1875         len = strlen(partial);
1876         buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
1877         // Loop through the functions lists and print all matches
1878         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1879                 if (!strncasecmp(partial, func->name, len))
1880                         buf[bpos++] = func->name;
1881         for (func = cmd->engine_functions; func; func = func->next)
1882                 if (!strncasecmp(partial, func->name, len))
1883                         buf[bpos++] = func->name;
1884
1885         buf[bpos] = NULL;
1886         return buf;
1887 }
1888
1889 // written by LadyHavoc
1890 void Cmd_CompleteCommandPrint (cmd_state_t *cmd, const char *partial)
1891 {
1892         cmd_function_t *func;
1893         size_t len = strlen(partial);
1894         // Loop through the command list and print all matches
1895         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1896                 if (!strncasecmp(partial, func->name, len))
1897                         Con_Printf("^2%s^7: %s\n", func->name, func->description);
1898         for (func = cmd->engine_functions; func; func = func->next)
1899                 if (!strncasecmp(partial, func->name, len))
1900                         Con_Printf("^2%s^7: %s\n", func->name, func->description);
1901 }
1902
1903 /*
1904         Cmd_CompleteAlias
1905
1906         New function for tab-completion system
1907         Added by EvilTypeGuy
1908         Thanks to Fett erich@heintz.com
1909         Thanks to taniwha
1910
1911 */
1912 const char *Cmd_CompleteAlias (cmd_state_t *cmd, const char *partial)
1913 {
1914         cmdalias_t *alias;
1915         size_t len;
1916
1917         len = strlen(partial);
1918
1919         if (!len)
1920                 return NULL;
1921
1922         // Check functions
1923         for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1924                 if (!strncasecmp(partial, alias->name, len))
1925                         return alias->name;
1926
1927         return NULL;
1928 }
1929
1930 // written by LadyHavoc
1931 void Cmd_CompleteAliasPrint (cmd_state_t *cmd, const char *partial)
1932 {
1933         cmdalias_t *alias;
1934         size_t len = strlen(partial);
1935         // Loop through the alias list and print all matches
1936         for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1937                 if (!strncasecmp(partial, alias->name, len))
1938                         Con_Printf("^5%s^7: %s", alias->name, alias->value);
1939 }
1940
1941
1942 /*
1943         Cmd_CompleteAliasCountPossible
1944
1945         New function for tab-completion system
1946         Added by EvilTypeGuy
1947         Thanks to Fett erich@heintz.com
1948         Thanks to taniwha
1949
1950 */
1951 int Cmd_CompleteAliasCountPossible (cmd_state_t *cmd, const char *partial)
1952 {
1953         cmdalias_t      *alias;
1954         size_t          len;
1955         int                     h;
1956
1957         h = 0;
1958
1959         len = strlen(partial);
1960
1961         if (!len)
1962                 return 0;
1963
1964         // Loop through the command list and count all partial matches
1965         for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1966                 if (!strncasecmp(partial, alias->name, len))
1967                         h++;
1968
1969         return h;
1970 }
1971
1972 /*
1973         Cmd_CompleteAliasBuildList
1974
1975         New function for tab-completion system
1976         Added by EvilTypeGuy
1977         Thanks to Fett erich@heintz.com
1978         Thanks to taniwha
1979
1980 */
1981 const char **Cmd_CompleteAliasBuildList (cmd_state_t *cmd, const char *partial)
1982 {
1983         cmdalias_t *alias;
1984         size_t len = 0;
1985         size_t bpos = 0;
1986         size_t sizeofbuf = (Cmd_CompleteAliasCountPossible (cmd, partial) + 1) * sizeof (const char *);
1987         const char **buf;
1988
1989         len = strlen(partial);
1990         buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
1991         // Loop through the alias list and print all matches
1992         for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1993                 if (!strncasecmp(partial, alias->name, len))
1994                         buf[bpos++] = alias->name;
1995
1996         buf[bpos] = NULL;
1997         return buf;
1998 }
1999
2000 // TODO: Make this more generic?
2001 void Cmd_ClearCSQCCommands (cmd_state_t *cmd)
2002 {
2003         cmd_function_t *func;
2004         cmd_function_t **next = &cmd->userdefined->csqc_functions;
2005         
2006         while(*next)
2007         {
2008                 func = *next;
2009                 *next = func->next;
2010                 Z_Free(func);
2011         }
2012 }
2013
2014 /*
2015 ============
2016 Cmd_ExecuteString
2017
2018 A complete command line has been parsed, so try to execute it
2019 FIXME: lookupnoadd the token to speed search?
2020 ============
2021 */
2022 void Cmd_ExecuteString (cmd_state_t *cmd, const char *text, cmd_source_t src, qboolean lockmutex)
2023 {
2024         int oldpos;
2025         cmd_function_t *func;
2026         cmdalias_t *a;
2027         if (lockmutex)
2028                 Cbuf_Lock(cmd);
2029         oldpos = cmd->tokenizebufferpos;
2030         cmd->source = src;
2031
2032         Cmd_TokenizeString (cmd, text);
2033
2034 // execute the command line
2035         if (!Cmd_Argc(cmd))
2036                 goto done; // no tokens
2037
2038 // check functions
2039         for (func = cmd->userdefined->csqc_functions; func; func = func->next)
2040         {
2041                 if (!strcasecmp(cmd->argv[0], func->name))
2042                 {
2043                         if (func->csqcfunc && CL_VM_ConsoleCommand(text))       //[515]: csqc
2044                                 goto done;
2045                         break;
2046                 }
2047         }
2048
2049         for (func = cmd->engine_functions; func; func=func->next)
2050         {
2051                 if (!strcasecmp (cmd->argv[0], func->name))
2052                 {
2053                         switch (src)
2054                         {
2055                         case src_command:
2056                                 if (func->function)
2057                                         func->function(cmd);
2058                                 else
2059                                         Con_Printf("Command \"%s\" can not be executed\n", Cmd_Argv(cmd, 0));
2060                                 goto done;
2061                         case src_client:
2062                                 if (func->function)
2063                                 {
2064                                         func->function(cmd);
2065                                         goto done;
2066                                 }
2067                         }
2068                         break;
2069                 }
2070         }
2071
2072         // if it's a client command and no command was found, say so.
2073         if (cmd->source == src_client)
2074         {
2075                 Con_Printf("Client \"%s\" tried to execute \"%s\"\n", host_client->name, text);
2076                 goto done;
2077         }
2078
2079 // check alias
2080         for (a=cmd->userdefined->alias ; a ; a=a->next)
2081         {
2082                 if (!strcasecmp (cmd->argv[0], a->name))
2083                 {
2084                         Cmd_ExecuteAlias(cmd, a);
2085                         goto done;
2086                 }
2087         }
2088
2089 // check cvars
2090         if (!Cvar_Command(cmd) && host_framecount > 0) {
2091                 if (cmd == &cmd_clientfromserver) {
2092                         Con_Printf("Server tried to execute \"%s\"\n", Cmd_Argv(cmd, 0));
2093                 } else {
2094                         Con_Printf("Unknown command \"%s\"\n", Cmd_Argv(cmd, 0));
2095                 }
2096         }
2097 done:
2098         cmd->tokenizebufferpos = oldpos;
2099         if (lockmutex)
2100                 Cbuf_Unlock(cmd);
2101 }
2102
2103
2104 /*
2105 ===================
2106 Cmd_ForwardStringToServer
2107
2108 Sends an entire command string over to the server, unprocessed
2109 ===================
2110 */
2111 void Cmd_ForwardStringToServer (const char *s)
2112 {
2113         char temp[128];
2114         if (cls.state != ca_connected)
2115         {
2116                 Con_Printf("Can't \"%s\", not connected\n", s);
2117                 return;
2118         }
2119
2120         if (!cls.netcon)
2121                 return;
2122
2123         // LadyHavoc: thanks to Fuh for bringing the pure evil of SZ_Print to my
2124         // attention, it has been eradicated from here, its only (former) use in
2125         // all of darkplaces.
2126         if (cls.protocol == PROTOCOL_QUAKEWORLD)
2127                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
2128         else
2129                 MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
2130         if ((!strncmp(s, "say ", 4) || !strncmp(s, "say_team ", 9)) && cl_locs_enable.integer)
2131         {
2132                 // say/say_team commands can replace % character codes with status info
2133                 while (*s)
2134                 {
2135                         if (*s == '%' && s[1])
2136                         {
2137                                 // handle proquake message macros
2138                                 temp[0] = 0;
2139                                 switch (s[1])
2140                                 {
2141                                 case 'l': // current location
2142                                         CL_Locs_FindLocationName(temp, sizeof(temp), cl.movement_origin);
2143                                         break;
2144                                 case 'h': // current health
2145                                         dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_HEALTH]);
2146                                         break;
2147                                 case 'a': // current armor
2148                                         dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_ARMOR]);
2149                                         break;
2150                                 case 'x': // current rockets
2151                                         dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_ROCKETS]);
2152                                         break;
2153                                 case 'c': // current cells
2154                                         dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_CELLS]);
2155                                         break;
2156                                 // silly proquake macros
2157                                 case 'd': // loc at last death
2158                                         CL_Locs_FindLocationName(temp, sizeof(temp), cl.lastdeathorigin);
2159                                         break;
2160                                 case 't': // current time
2161                                         dpsnprintf(temp, sizeof(temp), "%.0f:%.0f", floor(cl.time / 60), cl.time - floor(cl.time / 60) * 60);
2162                                         break;
2163                                 case 'r': // rocket launcher status ("I have RL", "I need rockets", "I need RL")
2164                                         if (!(cl.stats[STAT_ITEMS] & IT_ROCKET_LAUNCHER))
2165                                                 dpsnprintf(temp, sizeof(temp), "I need RL");
2166                                         else if (!cl.stats[STAT_ROCKETS])
2167                                                 dpsnprintf(temp, sizeof(temp), "I need rockets");
2168                                         else
2169                                                 dpsnprintf(temp, sizeof(temp), "I have RL");
2170                                         break;
2171                                 case 'p': // powerup status (outputs "quad" "pent" and "eyes" according to status)
2172                                         if (cl.stats[STAT_ITEMS] & IT_QUAD)
2173                                         {
2174                                                 if (temp[0])
2175                                                         strlcat(temp, " ", sizeof(temp));
2176                                                 strlcat(temp, "quad", sizeof(temp));
2177                                         }
2178                                         if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
2179                                         {
2180                                                 if (temp[0])
2181                                                         strlcat(temp, " ", sizeof(temp));
2182                                                 strlcat(temp, "pent", sizeof(temp));
2183                                         }
2184                                         if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
2185                                         {
2186                                                 if (temp[0])
2187                                                         strlcat(temp, " ", sizeof(temp));
2188                                                 strlcat(temp, "eyes", sizeof(temp));
2189                                         }
2190                                         break;
2191                                 case 'w': // weapon status (outputs "SSG:NG:SNG:GL:RL:LG" with the text between : characters omitted if you lack the weapon)
2192                                         if (cl.stats[STAT_ITEMS] & IT_SUPER_SHOTGUN)
2193                                                 strlcat(temp, "SSG", sizeof(temp));
2194                                         strlcat(temp, ":", sizeof(temp));
2195                                         if (cl.stats[STAT_ITEMS] & IT_NAILGUN)
2196                                                 strlcat(temp, "NG", sizeof(temp));
2197                                         strlcat(temp, ":", sizeof(temp));
2198                                         if (cl.stats[STAT_ITEMS] & IT_SUPER_NAILGUN)
2199                                                 strlcat(temp, "SNG", sizeof(temp));
2200                                         strlcat(temp, ":", sizeof(temp));
2201                                         if (cl.stats[STAT_ITEMS] & IT_GRENADE_LAUNCHER)
2202                                                 strlcat(temp, "GL", sizeof(temp));
2203                                         strlcat(temp, ":", sizeof(temp));
2204                                         if (cl.stats[STAT_ITEMS] & IT_ROCKET_LAUNCHER)
2205                                                 strlcat(temp, "RL", sizeof(temp));
2206                                         strlcat(temp, ":", sizeof(temp));
2207                                         if (cl.stats[STAT_ITEMS] & IT_LIGHTNING)
2208                                                 strlcat(temp, "LG", sizeof(temp));
2209                                         break;
2210                                 default:
2211                                         // not a recognized macro, print it as-is...
2212                                         temp[0] = s[0];
2213                                         temp[1] = s[1];
2214                                         temp[2] = 0;
2215                                         break;
2216                                 }
2217                                 // write the resulting text
2218                                 SZ_Write(&cls.netcon->message, (unsigned char *)temp, (int)strlen(temp));
2219                                 s += 2;
2220                                 continue;
2221                         }
2222                         MSG_WriteByte(&cls.netcon->message, *s);
2223                         s++;
2224                 }
2225                 MSG_WriteByte(&cls.netcon->message, 0);
2226         }
2227         else // any other command is passed on as-is
2228                 SZ_Write(&cls.netcon->message, (const unsigned char *)s, (int)strlen(s) + 1);
2229 }
2230
2231 /*
2232 ===================
2233 Cmd_ForwardToServer
2234
2235 Sends the entire command line over to the server
2236 ===================
2237 */
2238 void Cmd_ForwardToServer_f (cmd_state_t *cmd)
2239 {
2240         const char *s;
2241         char vabuf[1024];
2242         if (!strcasecmp(Cmd_Argv(cmd, 0), "cmd"))
2243         {
2244                 // we want to strip off "cmd", so just send the args
2245                 s = Cmd_Argc(cmd) > 1 ? Cmd_Args(cmd) : "";
2246         }
2247         else
2248         {
2249                 // we need to keep the command name, so send Cmd_Argv(cmd, 0), a space and then Cmd_Args(cmd)
2250                 s = va(vabuf, sizeof(vabuf), "%s %s", Cmd_Argv(cmd, 0), Cmd_Argc(cmd) > 1 ? Cmd_Args(cmd) : "");
2251         }
2252         // don't send an empty forward message if the user tries "cmd" by itself
2253         if (!s || !*s)
2254                 return;
2255         Cmd_ForwardStringToServer(s);
2256 }
2257
2258
2259 /*
2260 ================
2261 Cmd_CheckParm
2262
2263 Returns the position (1 to argc-1) in the command's argument list
2264 where the given parameter apears, or 0 if not present
2265 ================
2266 */
2267
2268 int Cmd_CheckParm (cmd_state_t *cmd, const char *parm)
2269 {
2270         int i;
2271
2272         if (!parm)
2273         {
2274                 Con_Printf ("Cmd_CheckParm: NULL");
2275                 return 0;
2276         }
2277
2278         for (i = 1; i < Cmd_Argc (cmd); i++)
2279                 if (!strcasecmp (parm, Cmd_Argv(cmd, i)))
2280                         return i;
2281
2282         return 0;
2283 }
2284
2285
2286
2287 void Cmd_SaveInitState(void)
2288 {
2289         cmd_iter_t *cmd_iter;
2290         for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
2291         {
2292                 cmd_state_t *cmd = cmd_iter->cmd;
2293                 cmd_function_t *f;
2294                 cmdalias_t *a;
2295                 for (f = cmd->userdefined->csqc_functions; f; f = f->next)
2296                         f->initstate = true;
2297                 for (f = cmd->engine_functions; f; f = f->next)
2298                         f->initstate = true;
2299                 for (a = cmd->userdefined->alias; a; a = a->next)
2300                 {
2301                         a->initstate = true;
2302                         a->initialvalue = Mem_strdup(zonemempool, a->value);
2303                 }
2304         }
2305         Cvar_SaveInitState(&cvars_all);
2306 }
2307
2308 void Cmd_RestoreInitState(void)
2309 {
2310         cmd_iter_t *cmd_iter;
2311         for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
2312         {
2313                 cmd_state_t *cmd = cmd_iter->cmd;
2314                 cmd_function_t *f, **fp;
2315                 cmdalias_t *a, **ap;
2316                 for (fp = &cmd->userdefined->csqc_functions; (f = *fp);)
2317                 {
2318                         if (f->initstate)
2319                                 fp = &f->next;
2320                         else
2321                         {
2322                                 // destroy this command, it didn't exist at init
2323                                 Con_DPrintf("Cmd_RestoreInitState: Destroying command %s\n", f->name);
2324                                 *fp = f->next;
2325                                 Z_Free(f);
2326                         }
2327                 }
2328                 for (fp = &cmd->engine_functions; (f = *fp);)
2329                 {
2330                         if (f->initstate)
2331                                 fp = &f->next;
2332                         else
2333                         {
2334                                 // destroy this command, it didn't exist at init
2335                                 Con_DPrintf("Cmd_RestoreInitState: Destroying command %s\n", f->name);
2336                                 *fp = f->next;
2337                                 Z_Free(f);
2338                         }
2339                 }
2340                 for (ap = &cmd->userdefined->alias; (a = *ap);)
2341                 {
2342                         if (a->initstate)
2343                         {
2344                                 // restore this alias, it existed at init
2345                                 if (strcmp(a->value ? a->value : "", a->initialvalue ? a->initialvalue : ""))
2346                                 {
2347                                         Con_DPrintf("Cmd_RestoreInitState: Restoring alias %s\n", a->name);
2348                                         if (a->value)
2349                                                 Z_Free(a->value);
2350                                         a->value = Mem_strdup(zonemempool, a->initialvalue);
2351                                 }
2352                                 ap = &a->next;
2353                         }
2354                         else
2355                         {
2356                                 // free this alias, it didn't exist at init...
2357                                 Con_DPrintf("Cmd_RestoreInitState: Destroying alias %s\n", a->name);
2358                                 *ap = a->next;
2359                                 if (a->value)
2360                                         Z_Free(a->value);
2361                                 Z_Free(a);
2362                         }
2363                 }
2364         }
2365         Cvar_RestoreInitState(&cvars_all);
2366 }