2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
20 // cmd.c -- Quake script command processing module
25 cmd_state_t cmd_client;
26 cmd_state_t cmd_server;
27 cmd_state_t cmd_serverfromclient;
29 cmd_userdefined_t cmd_userdefined_all;
30 cmd_userdefined_t cmd_userdefined_null;
32 typedef struct cmd_iter_s {
37 static cmd_iter_t cmd_iter_all[] = {
40 {&cmd_serverfromclient},
45 // we only run the +whatever commandline arguments once
46 qboolean host_stuffcmdsrun = false;
48 //=============================================================================
50 void Cbuf_Lock(cmd_state_t *cmd)
52 Thread_AtomicLock(&cmd->text_lock);
55 void Cbuf_Unlock(cmd_state_t *cmd)
57 Thread_AtomicUnlock(&cmd->text_lock);
65 Causes execution of the remainder of the command buffer to be delayed until
66 next frame. This allows commands like:
67 bind g "impulse 5 ; +attack ; wait ; -attack ; impulse 2"
70 static void Cmd_Wait_f (cmd_state_t *cmd)
79 Cause a command to be executed after a delay.
82 static void Cmd_Defer_f (cmd_state_t *cmd)
84 if(Cmd_Argc(cmd) == 1)
86 cmddeferred_t *next = cmd->deferred_list;
88 Con_Printf("No commands are pending.\n");
91 Con_Printf("-> In %9.2f: %s\n", next->delay, next->value);
94 } else if(Cmd_Argc(cmd) == 2 && !strcasecmp("clear", Cmd_Argv(cmd, 1)))
96 while(cmd->deferred_list)
98 cmddeferred_t *defcmd = cmd->deferred_list;
99 cmd->deferred_list = defcmd->next;
100 Mem_Free(defcmd->value);
103 } else if(Cmd_Argc(cmd) == 3)
105 const char *value = Cmd_Argv(cmd, 2);
106 cmddeferred_t *defcmd = (cmddeferred_t*)Mem_Alloc(tempmempool, sizeof(*defcmd));
107 size_t len = strlen(value);
109 defcmd->delay = atof(Cmd_Argv(cmd, 1));
110 defcmd->value = (char*)Mem_Alloc(tempmempool, len+1);
111 memcpy(defcmd->value, value, len+1);
114 if(cmd->deferred_list)
116 cmddeferred_t *next = cmd->deferred_list;
121 cmd->deferred_list = defcmd;
122 /* Stupid me... this changes the order... so commands with the same delay go blub :S
123 defcmd->next = cmd_deferred_list;
124 cmd_deferred_list = defcmd;*/
126 Con_Printf("usage: defer <seconds> <command>\n"
136 Print something to the center of the screen using SCR_Centerprint
139 static void Cmd_Centerprint_f (cmd_state_t *cmd)
141 char msg[MAX_INPUTLINE];
142 unsigned int i, c, p;
146 strlcpy(msg, Cmd_Argv(cmd,1), sizeof(msg));
147 for(i = 2; i < c; ++i)
149 strlcat(msg, " ", sizeof(msg));
150 strlcat(msg, Cmd_Argv(cmd, i), sizeof(msg));
152 c = (unsigned int)strlen(msg);
153 for(p = 0, i = 0; i < c; ++i)
159 else if(msg[i+1] == '\\')
171 SCR_CenterPrint(msg);
176 =============================================================================
180 =============================================================================
187 Adds command text at the end of the buffer
190 void Cbuf_AddText (cmd_state_t *cmd, const char *text)
194 l = (int)strlen(text);
197 if (cmd->text.maxsize - cmd->text.cursize <= l)
198 Con_Print("Cbuf_AddText: overflow\n");
200 SZ_Write(&cmd->text, (const unsigned char *)text, l);
209 Adds command text immediately after the current command
210 Adds a \n to the text
211 FIXME: actually change the command buffer to do less copying
214 void Cbuf_InsertText (cmd_state_t *cmd, const char *text)
216 size_t l = strlen(text);
218 // we need to memmove the existing text and stuff this in before it...
219 if (cmd->text.cursize + l >= (size_t)cmd->text.maxsize)
220 Con_Print("Cbuf_InsertText: overflow\n");
223 // we don't have a SZ_Prepend, so...
224 memmove(cmd->text.data + l, cmd->text.data, cmd->text.cursize);
225 cmd->text.cursize += (int)l;
226 memcpy(cmd->text.data, text, l);
233 Cbuf_Execute_Deferred --blub
236 static void Cbuf_Execute_Deferred (cmd_state_t *cmd)
238 cmddeferred_t *defcmd, *prev;
240 if (host.realtime - cmd->deferred_oldrealtime < 0 || host.realtime - cmd->deferred_oldrealtime > 1800) cmd->deferred_oldrealtime = host.realtime;
241 eat = host.realtime - cmd->deferred_oldrealtime;
242 if (eat < (1.0 / 120.0))
244 cmd->deferred_oldrealtime = host.realtime;
246 defcmd = cmd->deferred_list;
249 defcmd->delay -= eat;
250 if(defcmd->delay <= 0)
252 Cbuf_AddText(cmd, defcmd->value);
253 Cbuf_AddText(cmd, ";\n");
254 Mem_Free(defcmd->value);
257 prev->next = defcmd->next;
261 cmd->deferred_list = defcmd->next;
263 defcmd = cmd->deferred_list;
268 defcmd = defcmd->next;
277 static qboolean Cmd_PreprocessString(cmd_state_t *cmd, const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias );
278 void Cbuf_Execute (cmd_state_t *cmd)
282 char line[MAX_INPUTLINE];
283 char preprocessed[MAX_INPUTLINE];
288 // LadyHavoc: making sure the tokenizebuffer doesn't get filled up by repeated crashes
289 cmd->tokenizebufferpos = 0;
291 while (cmd->text.cursize)
293 // find a \n or ; line break
294 text = (char *)cmd->text.data;
298 for (i=0 ; i < cmd->text.cursize ; i++)
307 // make sure i doesn't get > cursize which causes a negative
308 // size in memmove, which is fatal --blub
309 if (i < (cmd->text.cursize-1) && (text[i] == '\\' && (text[i+1] == '"' || text[i+1] == '\\')))
314 if(text[i] == '/' && text[i + 1] == '/' && (i == 0 || ISWHITESPACE(text[i-1])))
317 break; // don't break if inside a quoted string or comment
321 if (text[i] == '\r' || text[i] == '\n')
325 // better than CRASHING on overlong input lines that may SOMEHOW enter the buffer
326 if(i >= MAX_INPUTLINE)
328 Con_Printf(CON_WARN "Warning: console input buffer had an overlong line. Ignored.\n");
333 memcpy (line, text, comment ? (comment - text) : i);
334 line[comment ? (comment - text) : i] = 0;
337 // delete the text from the command buffer and move remaining commands down
338 // this is necessary because commands (exec, alias) can insert data at the
339 // beginning of the text buffer
341 if (i == cmd->text.cursize)
342 cmd->text.cursize = 0;
346 cmd->text.cursize -= i;
347 memmove (cmd->text.data, text+i, cmd->text.cursize);
350 // execute the command line
352 while(*firstchar && ISWHITESPACE(*firstchar))
355 (strncmp(firstchar, "alias", 5) || !ISWHITESPACE(firstchar[5]))
357 (strncmp(firstchar, "bind", 4) || !ISWHITESPACE(firstchar[4]))
359 (strncmp(firstchar, "in_bind", 7) || !ISWHITESPACE(firstchar[7]))
362 if(Cmd_PreprocessString( cmd, line, preprocessed, sizeof(preprocessed), NULL ))
363 Cmd_ExecuteString (cmd, preprocessed, src_command, false);
367 Cmd_ExecuteString (cmd, line, src_command, false);
371 { // skip out while text still remains in buffer, leaving it
379 void Cbuf_Frame(cmd_state_t *cmd)
381 Cbuf_Execute_Deferred(cmd);
382 if (cmd->text.cursize)
384 SV_LockThreadMutex();
386 SV_UnlockThreadMutex();
391 ==============================================================================
395 ==============================================================================
402 Adds command line parameters as script statements
403 Commands lead with a +, and continue until a - or another +
404 quake +prog jctest.qp +cmd amlev1
405 quake -nosound +cmd amlev1
408 static void Cmd_StuffCmds_f (cmd_state_t *cmd)
411 // this is for all commandline options combined (and is bounds checked)
412 char build[MAX_INPUTLINE];
414 // come back later so we don't crash
415 if(host.state == host_init)
418 if (Cmd_Argc (cmd) != 1)
420 Con_Print("stuffcmds : execute command line parameters\n");
424 // no reason to run the commandline arguments twice
425 if (host_stuffcmdsrun)
428 host_stuffcmdsrun = true;
431 for (i = 0;i < sys.argc;i++)
433 if (sys.argv[i] && sys.argv[i][0] == '+' && (sys.argv[i][1] < '0' || sys.argv[i][1] > '9') && l + strlen(sys.argv[i]) - 1 <= sizeof(build) - 1)
436 while (sys.argv[i][j])
437 build[l++] = sys.argv[i][j++];
439 for (;i < sys.argc;i++)
443 if ((sys.argv[i][0] == '+' || sys.argv[i][0] == '-') && (sys.argv[i][1] < '0' || sys.argv[i][1] > '9'))
445 if (l + strlen(sys.argv[i]) + 4 > sizeof(build) - 1)
448 if (strchr(sys.argv[i], ' '))
450 for (j = 0;sys.argv[i][j];j++)
451 build[l++] = sys.argv[i][j];
452 if (strchr(sys.argv[i], ' '))
459 // now terminate the combined string and prepend it to the command buffer
460 // we already reserved space for the terminator
462 Cbuf_InsertText (cmd, build);
465 static void Cmd_Exec(cmd_state_t *cmd, const char *filename)
468 size_t filenameLen = strlen(filename);
469 qboolean isdefaultcfg =
470 !strcmp(filename, "default.cfg") ||
471 (filenameLen >= 12 && !strcmp(filename + filenameLen - 12, "/default.cfg"));
473 if (!strcmp(filename, "config.cfg"))
475 filename = CONFIGFILENAME;
476 if (COM_CheckParm("-noconfig"))
477 return; // don't execute config.cfg
480 f = (char *)FS_LoadFile (filename, tempmempool, false, NULL);
483 Con_Printf("couldn't exec %s\n",filename);
486 Con_Printf("execing %s\n",filename);
488 // if executing default.cfg for the first time, lock the cvar defaults
489 // it may seem backwards to insert this text BEFORE the default.cfg
490 // but Cbuf_InsertText inserts before, so this actually ends up after it.
492 Cbuf_InsertText(cmd, "\ncvar_lockdefaults\n");
494 // insert newline after the text to make sure the last line is terminated (some text editors omit the trailing newline)
495 // (note: insertion order here is backwards from execution order, so this adds it after the text, by calling it before...)
496 Cbuf_InsertText (cmd, "\n");
497 Cbuf_InsertText (cmd, f);
502 // special defaults for specific games go here, these execute before default.cfg
503 // Nehahra pushable crates malfunction in some levels if this is on
504 // Nehahra NPC AI is confused by blowupfallenzombies
508 Cbuf_InsertText(cmd, "\n"
509 "sv_gameplayfix_blowupfallenzombies 0\n"
510 "sv_gameplayfix_findradiusdistancetobox 0\n"
511 "sv_gameplayfix_grenadebouncedownslopes 0\n"
512 "sv_gameplayfix_slidemoveprojectiles 0\n"
513 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
514 "sv_gameplayfix_setmodelrealbox 0\n"
515 "sv_gameplayfix_droptofloorstartsolid 0\n"
516 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
517 "sv_gameplayfix_noairborncorpse 0\n"
518 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
519 "sv_gameplayfix_easierwaterjump 0\n"
520 "sv_gameplayfix_delayprojectiles 0\n"
521 "sv_gameplayfix_multiplethinksperframe 0\n"
522 "sv_gameplayfix_fixedcheckwatertransition 0\n"
523 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
524 "sv_gameplayfix_swiminbmodels 0\n"
525 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
526 "sys_ticrate 0.01388889\n"
528 "r_shadow_bumpscale_basetexture 0\n"
529 "csqc_polygons_defaultmaterial_nocullface 0\n"
533 Cbuf_InsertText(cmd, "\n"
534 "sv_gameplayfix_blowupfallenzombies 0\n"
535 "sv_gameplayfix_findradiusdistancetobox 0\n"
536 "sv_gameplayfix_grenadebouncedownslopes 0\n"
537 "sv_gameplayfix_slidemoveprojectiles 0\n"
538 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
539 "sv_gameplayfix_setmodelrealbox 0\n"
540 "sv_gameplayfix_droptofloorstartsolid 0\n"
541 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
542 "sv_gameplayfix_noairborncorpse 0\n"
543 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
544 "sv_gameplayfix_easierwaterjump 0\n"
545 "sv_gameplayfix_delayprojectiles 0\n"
546 "sv_gameplayfix_multiplethinksperframe 0\n"
547 "sv_gameplayfix_fixedcheckwatertransition 0\n"
548 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
549 "sv_gameplayfix_swiminbmodels 0\n"
550 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
551 "sys_ticrate 0.01388889\n"
553 "r_shadow_bumpscale_basetexture 0\n"
554 "csqc_polygons_defaultmaterial_nocullface 0\n"
557 // 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.
558 // 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
559 // hipnotic mission pack has issues in their proximity mine sticking code, which causes them to bounce off.
562 Cbuf_InsertText(cmd, "\n"
563 "sv_gameplayfix_blowupfallenzombies 0\n"
564 "sv_gameplayfix_findradiusdistancetobox 0\n"
565 "sv_gameplayfix_grenadebouncedownslopes 0\n"
566 "sv_gameplayfix_slidemoveprojectiles 0\n"
567 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
568 "sv_gameplayfix_setmodelrealbox 0\n"
569 "sv_gameplayfix_droptofloorstartsolid 0\n"
570 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
571 "sv_gameplayfix_noairborncorpse 0\n"
572 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
573 "sv_gameplayfix_easierwaterjump 0\n"
574 "sv_gameplayfix_delayprojectiles 0\n"
575 "sv_gameplayfix_multiplethinksperframe 0\n"
576 "sv_gameplayfix_fixedcheckwatertransition 0\n"
577 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
578 "sv_gameplayfix_swiminbmodels 0\n"
579 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
582 "r_shadow_bumpscale_basetexture 0\n"
583 "csqc_polygons_defaultmaterial_nocullface 0\n"
586 // rogue mission pack has a guardian boss that does not wake up if findradius returns one of the entities around its spawn area
588 Cbuf_InsertText(cmd, "\n"
589 "sv_gameplayfix_blowupfallenzombies 0\n"
590 "sv_gameplayfix_findradiusdistancetobox 0\n"
591 "sv_gameplayfix_grenadebouncedownslopes 0\n"
592 "sv_gameplayfix_slidemoveprojectiles 0\n"
593 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
594 "sv_gameplayfix_setmodelrealbox 0\n"
595 "sv_gameplayfix_droptofloorstartsolid 0\n"
596 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
597 "sv_gameplayfix_noairborncorpse 0\n"
598 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
599 "sv_gameplayfix_easierwaterjump 0\n"
600 "sv_gameplayfix_delayprojectiles 0\n"
601 "sv_gameplayfix_multiplethinksperframe 0\n"
602 "sv_gameplayfix_fixedcheckwatertransition 0\n"
603 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
604 "sv_gameplayfix_swiminbmodels 0\n"
605 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
606 "sys_ticrate 0.01388889\n"
608 "r_shadow_bumpscale_basetexture 0\n"
609 "csqc_polygons_defaultmaterial_nocullface 0\n"
613 Cbuf_InsertText(cmd, "\n"
614 "sv_gameplayfix_blowupfallenzombies 0\n"
615 "sv_gameplayfix_findradiusdistancetobox 0\n"
616 "sv_gameplayfix_grenadebouncedownslopes 0\n"
617 "sv_gameplayfix_slidemoveprojectiles 0\n"
618 "sv_gameplayfix_upwardvelocityclearsongroundflag 0\n"
619 "sv_gameplayfix_setmodelrealbox 0\n"
620 "sv_gameplayfix_droptofloorstartsolid 0\n"
621 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 0\n"
622 "sv_gameplayfix_noairborncorpse 0\n"
623 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 0\n"
624 "sv_gameplayfix_easierwaterjump 0\n"
625 "sv_gameplayfix_delayprojectiles 0\n"
626 "sv_gameplayfix_multiplethinksperframe 0\n"
627 "sv_gameplayfix_fixedcheckwatertransition 0\n"
628 "sv_gameplayfix_q1bsptracelinereportstexture 0\n"
629 "sv_gameplayfix_swiminbmodels 0\n"
630 "sv_gameplayfix_downtracesupportsongroundflag 0\n"
631 "sys_ticrate 0.01388889\n"
633 "r_shadow_bumpscale_basetexture 4\n"
634 "csqc_polygons_defaultmaterial_nocullface 0\n"
638 Cbuf_InsertText(cmd, "\n"
639 "sv_gameplayfix_blowupfallenzombies 1\n"
640 "sv_gameplayfix_findradiusdistancetobox 1\n"
641 "sv_gameplayfix_grenadebouncedownslopes 1\n"
642 "sv_gameplayfix_slidemoveprojectiles 1\n"
643 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
644 "sv_gameplayfix_setmodelrealbox 1\n"
645 "sv_gameplayfix_droptofloorstartsolid 1\n"
646 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
647 "sv_gameplayfix_noairborncorpse 1\n"
648 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
649 "sv_gameplayfix_easierwaterjump 1\n"
650 "sv_gameplayfix_delayprojectiles 1\n"
651 "sv_gameplayfix_multiplethinksperframe 1\n"
652 "sv_gameplayfix_fixedcheckwatertransition 1\n"
653 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
654 "sv_gameplayfix_swiminbmodels 1\n"
655 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
656 "sys_ticrate 0.01388889\n"
657 "sv_gameplayfix_q2airaccelerate 1\n"
658 "sv_gameplayfix_stepmultipletimes 1\n"
659 "csqc_polygons_defaultmaterial_nocullface 1\n"
660 "con_chatsound_team_mask 13\n"
664 case GAME_VORETOURNAMENT:
665 // 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
666 Cbuf_InsertText(cmd, "\n"
667 "csqc_polygons_defaultmaterial_nocullface 1\n"
668 "con_chatsound_team_mask 13\n"
669 "sv_gameplayfix_customstats 1\n"
672 // Steel Storm: Burning Retribution csqc misinterprets CSQC_InputEvent if type is a value other than 0 or 1
673 case GAME_STEELSTORM:
674 Cbuf_InsertText(cmd, "\n"
675 "sv_gameplayfix_blowupfallenzombies 1\n"
676 "sv_gameplayfix_findradiusdistancetobox 1\n"
677 "sv_gameplayfix_grenadebouncedownslopes 1\n"
678 "sv_gameplayfix_slidemoveprojectiles 1\n"
679 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
680 "sv_gameplayfix_setmodelrealbox 1\n"
681 "sv_gameplayfix_droptofloorstartsolid 1\n"
682 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
683 "sv_gameplayfix_noairborncorpse 1\n"
684 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
685 "sv_gameplayfix_easierwaterjump 1\n"
686 "sv_gameplayfix_delayprojectiles 1\n"
687 "sv_gameplayfix_multiplethinksperframe 1\n"
688 "sv_gameplayfix_fixedcheckwatertransition 1\n"
689 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
690 "sv_gameplayfix_swiminbmodels 1\n"
691 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
692 "sys_ticrate 0.01388889\n"
693 "cl_csqc_generatemousemoveevents 0\n"
694 "csqc_polygons_defaultmaterial_nocullface 1\n"
698 Cbuf_InsertText(cmd, "\n"
699 "sv_gameplayfix_blowupfallenzombies 1\n"
700 "sv_gameplayfix_findradiusdistancetobox 1\n"
701 "sv_gameplayfix_grenadebouncedownslopes 1\n"
702 "sv_gameplayfix_slidemoveprojectiles 1\n"
703 "sv_gameplayfix_upwardvelocityclearsongroundflag 1\n"
704 "sv_gameplayfix_setmodelrealbox 1\n"
705 "sv_gameplayfix_droptofloorstartsolid 1\n"
706 "sv_gameplayfix_droptofloorstartsolid_nudgetocorrect 1\n"
707 "sv_gameplayfix_noairborncorpse 1\n"
708 "sv_gameplayfix_noairborncorpse_allowsuspendeditems 1\n"
709 "sv_gameplayfix_easierwaterjump 1\n"
710 "sv_gameplayfix_delayprojectiles 1\n"
711 "sv_gameplayfix_multiplethinksperframe 1\n"
712 "sv_gameplayfix_fixedcheckwatertransition 1\n"
713 "sv_gameplayfix_q1bsptracelinereportstexture 1\n"
714 "sv_gameplayfix_swiminbmodels 1\n"
715 "sv_gameplayfix_downtracesupportsongroundflag 1\n"
716 "sys_ticrate 0.01388889\n"
717 "csqc_polygons_defaultmaterial_nocullface 0\n"
729 static void Cmd_Exec_f (cmd_state_t *cmd)
734 if (Cmd_Argc(cmd) != 2)
736 Con_Print("exec <filename> : execute a script file\n");
740 s = FS_Search(Cmd_Argv(cmd, 1), true, true);
741 if(!s || !s->numfilenames)
743 Con_Printf("couldn't exec %s\n",Cmd_Argv(cmd, 1));
747 for(i = 0; i < s->numfilenames; ++i)
748 Cmd_Exec(cmd, s->filenames[i]);
758 Just prints the rest of the line to the console
761 static void Cmd_Echo_f (cmd_state_t *cmd)
765 for (i=1 ; i<Cmd_Argc(cmd) ; i++)
766 Con_Printf("%s ",Cmd_Argv(cmd, i));
771 // Support Doom3-style Toggle Console Command
776 Toggles a specified console variable amongst the values specified (default is 0 and 1)
779 static void Cmd_Toggle_f(cmd_state_t *cmd)
781 // Acquire Number of Arguments
782 int nNumArgs = Cmd_Argc(cmd);
785 // No Arguments Specified; Print Usage
786 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");
788 { // Correct Arguments Specified
789 // Acquire Potential CVar
790 cvar_t* cvCVar = Cvar_FindVar(cmd->cvars, Cmd_Argv(cmd, 1), cmd->cvars_flagsmask);
797 Cvar_SetValueQuick(cvCVar, 0);
799 Cvar_SetValueQuick(cvCVar, 1);
803 { // 0 and Specified Usage
804 if(cvCVar->integer == atoi(Cmd_Argv(cmd, 2) ) )
805 // CVar is Specified Value; // Reset to 0
806 Cvar_SetValueQuick(cvCVar, 0);
808 if(cvCVar->integer == 0)
809 // CVar is 0; Specify Value
810 Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
812 // CVar does not match; Reset to 0
813 Cvar_SetValueQuick(cvCVar, 0);
816 { // Variable Values Specified
820 for(nCnt = 2; nCnt < nNumArgs; nCnt++)
821 { // Cycle through Values
822 if( strcmp(cvCVar->string, Cmd_Argv(cmd, nCnt) ) == 0)
823 { // Current Value Located; Increment to Next
824 if( (nCnt + 1) == nNumArgs)
825 // Max Value Reached; Reset
826 Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
829 Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, nCnt + 1) );
838 // Value not Found; Reset to Original
839 Cvar_SetQuick(cvCVar, Cmd_Argv(cmd, 2) );
845 Con_Printf("ERROR : CVar '%s' not found\n", Cmd_Argv(cmd, 1) );
854 Creates a new command that executes a command string (possibly ; seperated)
857 static void Cmd_Alias_f (cmd_state_t *cmd)
860 char line[MAX_INPUTLINE];
865 if (Cmd_Argc(cmd) == 1)
867 Con_Print("Current alias commands:\n");
868 for (a = cmd->userdefined->alias ; a ; a=a->next)
869 Con_Printf("%s : %s", a->name, a->value);
873 s = Cmd_Argv(cmd, 1);
874 if (strlen(s) >= MAX_ALIAS_NAME)
876 Con_Print("Alias name is too long\n");
880 // if the alias already exists, reuse it
881 for (a = cmd->userdefined->alias ; a ; a=a->next)
883 if (!strcmp(s, a->name))
892 cmdalias_t *prev, *current;
894 a = (cmdalias_t *)Z_Malloc (sizeof(cmdalias_t));
895 strlcpy (a->name, s, sizeof (a->name));
896 // insert it at the right alphanumeric position
897 for( prev = NULL, current = cmd->userdefined->alias ; current && strcmp( current->name, a->name ) < 0 ; prev = current, current = current->next )
902 cmd->userdefined->alias = a;
908 // copy the rest of the command line
909 line[0] = 0; // start out with a null string
911 for (i=2 ; i < c ; i++)
914 strlcat (line, " ", sizeof (line));
915 strlcat (line, Cmd_Argv(cmd, i), sizeof (line));
917 strlcat (line, "\n", sizeof (line));
919 alloclen = strlen (line) + 1;
921 line[alloclen - 2] = '\n'; // to make sure a newline is appended even if too long
922 a->value = (char *)Z_Malloc (alloclen);
923 memcpy (a->value, line, alloclen);
930 Remove existing aliases.
933 static void Cmd_UnAlias_f (cmd_state_t *cmd)
939 if(Cmd_Argc(cmd) == 1)
941 Con_Print("unalias: Usage: unalias alias1 [alias2 ...]\n");
945 for(i = 1; i < Cmd_Argc(cmd); ++i)
947 s = Cmd_Argv(cmd, i);
949 for(a = cmd->userdefined->alias; a; p = a, a = a->next)
951 if(!strcmp(s, a->name))
953 if (a->initstate) // we can not remove init aliases
955 if(a == cmd->userdefined->alias)
956 cmd->userdefined->alias = a->next;
965 Con_Printf("unalias: %s alias not found\n", s);
970 =============================================================================
974 =============================================================================
977 static const char *Cmd_GetDirectCvarValue(cmd_state_t *cmd, const char *varname, cmdalias_t *alias, qboolean *is_multiple)
982 static char vabuf[1024]; // cmd_mutex
985 *is_multiple = false;
987 if(!varname || !*varname)
992 if(!strcmp(varname, "*"))
996 return Cmd_Args(cmd);
998 else if(!strcmp(varname, "#"))
1000 return va(vabuf, sizeof(vabuf), "%d", Cmd_Argc(cmd));
1002 else if(varname[strlen(varname) - 1] == '-')
1004 argno = strtol(varname, &endptr, 10);
1005 if(endptr == varname + strlen(varname) - 1)
1007 // whole string is a number, apart from the -
1008 const char *p = Cmd_Args(cmd);
1009 for(; argno > 1; --argno)
1010 if(!COM_ParseToken_Console(&p))
1015 *is_multiple = true;
1017 // kill pre-argument whitespace
1018 for (;*p && ISWHITESPACE(*p);p++)
1027 argno = strtol(varname, &endptr, 10);
1030 // whole string is a number
1031 // NOTE: we already made sure we don't have an empty cvar name!
1032 if(argno >= 0 && argno < Cmd_Argc(cmd))
1033 return Cmd_Argv(cmd, argno);
1038 if((cvar = Cvar_FindVar(cmd->cvars, varname, cmd->cvars_flagsmask)) && !(cvar->flags & CVAR_PRIVATE))
1039 return cvar->string;
1044 qboolean Cmd_QuoteString(char *out, size_t outlen, const char *in, const char *quoteset, qboolean putquotes)
1046 qboolean quote_quot = !!strchr(quoteset, '"');
1047 qboolean quote_backslash = !!strchr(quoteset, '\\');
1048 qboolean quote_dollar = !!strchr(quoteset, '$');
1057 *out++ = '"'; --outlen;
1063 if(*in == '"' && quote_quot)
1067 *out++ = '\\'; --outlen;
1068 *out++ = '"'; --outlen;
1070 else if(*in == '\\' && quote_backslash)
1074 *out++ = '\\'; --outlen;
1075 *out++ = '\\'; --outlen;
1077 else if(*in == '$' && quote_dollar)
1081 *out++ = '$'; --outlen;
1082 *out++ = '$'; --outlen;
1088 *out++ = *in; --outlen;
1103 static const char *Cmd_GetCvarValue(cmd_state_t *cmd, const char *var, size_t varlen, cmdalias_t *alias)
1105 static char varname[MAX_INPUTLINE]; // cmd_mutex
1106 static char varval[MAX_INPUTLINE]; // cmd_mutex
1107 const char *varstr = NULL;
1109 qboolean required = false;
1110 qboolean optional = false;
1111 static char asis[] = "asis"; // just to suppress const char warnings
1113 if(varlen >= MAX_INPUTLINE)
1114 varlen = MAX_INPUTLINE - 1;
1115 memcpy(varname, var, varlen);
1116 varname[varlen] = 0;
1117 varfunc = strchr(varname, ' ');
1129 Con_Printf(CON_WARN "Warning: Could not expand $ in alias %s\n", alias->name);
1131 Con_Printf(CON_WARN "Warning: Could not expand $\n");
1139 while((p = strchr(varfunc, '?')))
1142 memmove(p, p+1, strlen(p)); // with final NUL
1145 while((p = strchr(varfunc, '!')))
1148 memmove(p, p+1, strlen(p)); // with final NUL
1151 while((p = strchr(varfunc, ' ')))
1153 memmove(p, p+1, strlen(p)); // with final NUL
1155 // if no function is left, NULL it
1160 if(varname[0] == '$')
1161 varstr = Cmd_GetDirectCvarValue(cmd, Cmd_GetDirectCvarValue(cmd, varname + 1, alias, NULL), alias, NULL);
1164 qboolean is_multiple = false;
1165 // Exception: $* and $n- don't use the quoted form by default
1166 varstr = Cmd_GetDirectCvarValue(cmd, varname, alias, &is_multiple);
1177 Con_Printf(CON_ERROR "Error: Could not expand $%s in alias %s\n", varname, alias->name);
1179 Con_Printf(CON_ERROR "Error: Could not expand $%s\n", varname);
1189 Con_Printf(CON_WARN "Warning: Could not expand $%s in alias %s\n", varname, alias->name);
1191 Con_Printf(CON_WARN "Warning: Could not expand $%s\n", varname);
1192 dpsnprintf(varval, sizeof(varval), "$%s", varname);
1197 if(!varfunc || !strcmp(varfunc, "q")) // note: quoted form is default, use "asis" to override!
1199 // quote it so it can be used inside double quotes
1200 // we just need to replace " by \", and of course, double backslashes
1201 Cmd_QuoteString(varval, sizeof(varval), varstr, "\"\\", false);
1204 else if(!strcmp(varfunc, "asis"))
1209 Con_Printf("Unknown variable function %s\n", varfunc);
1215 Cmd_PreprocessString
1217 Preprocesses strings and replaces $*, $param#, $cvar accordingly. Also strips comments.
1219 static qboolean Cmd_PreprocessString(cmd_state_t *cmd, const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias ) {
1225 // don't crash if there's no room in the outtext buffer
1226 if( maxoutlen == 0 ) {
1229 maxoutlen--; // because of \0
1234 while( *in && outlen < maxoutlen ) {
1236 // this is some kind of expansion, see what comes after the $
1239 // The console does the following preprocessing:
1241 // - $$ is transformed to a single dollar sign.
1242 // - $var or ${var} are expanded to the contents of the named cvar,
1243 // with quotation marks and backslashes quoted so it can safely
1244 // be used inside quotation marks (and it should always be used
1246 // - ${var asis} inserts the cvar value as is, without doing this
1248 // - ${var ?} silently expands to the empty string if
1249 // $var does not exist
1250 // - ${var !} fails expansion and executes nothing if
1251 // $var does not exist
1252 // - prefix the cvar name with a dollar sign to do indirection;
1253 // for example, if $x has the value timelimit, ${$x} will return
1254 // the value of $timelimit
1255 // - when expanding an alias, the special variable name $* refers
1256 // to all alias parameters, and a number refers to that numbered
1257 // alias parameter, where the name of the alias is $0, the first
1258 // parameter is $1 and so on; as a special case, $* inserts all
1259 // parameters, without extra quoting, so one can use $* to just
1260 // pass all parameters around. All parameters starting from $n
1261 // can be referred to as $n- (so $* is equivalent to $1-).
1262 // - ${* q} and ${n- q} force quoting anyway
1264 // Note: when expanding an alias, cvar expansion is done in the SAME step
1265 // as alias expansion so that alias parameters or cvar values containing
1266 // dollar signs have no unwanted bad side effects. However, this needs to
1267 // be accounted for when writing complex aliases. For example,
1268 // alias foo "set x NEW; echo $x"
1269 // actually expands to
1270 // "set x NEW; echo OLD"
1271 // and will print OLD! To work around this, use a second alias:
1272 // alias foo "set x NEW; foo2"
1273 // alias foo2 "echo $x"
1275 // Also note: lines starting with alias are exempt from cvar expansion.
1276 // If you want cvar expansion, write "alias" instead:
1279 // alias foo "echo $x"
1280 // "alias" bar "echo $x"
1283 // foo will print 2, because the variable $x will be expanded when the alias
1284 // gets expanded. bar will print 1, because the variable $x was expanded
1285 // at definition time. foo can be equivalently defined as
1287 // "alias" foo "echo $$x"
1289 // because at definition time, $$ will get replaced to a single $.
1294 } else if(*in == '{') {
1295 varlen = strcspn(in + 1, "}");
1296 if(in[varlen + 1] == '}')
1298 val = Cmd_GetCvarValue(cmd, in + 1, varlen, alias);
1310 varlen = strspn(in, "#*0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-");
1311 val = Cmd_GetCvarValue(cmd, in, varlen, alias);
1318 // insert the cvar value
1319 while(*val && outlen < maxoutlen)
1320 outtext[outlen++] = *val++;
1325 // copy the unexpanded text
1326 outtext[outlen++] = '$';
1327 while(eat && outlen < maxoutlen)
1329 outtext[outlen++] = *in++;
1335 outtext[outlen++] = *in++;
1337 outtext[outlen] = 0;
1345 Called for aliases and fills in the alias into the cbuffer
1348 static void Cmd_ExecuteAlias (cmd_state_t *cmd, cmdalias_t *alias)
1350 static char buffer[ MAX_INPUTLINE ]; // cmd_mutex
1351 static char buffer2[ MAX_INPUTLINE ]; // cmd_mutex
1352 qboolean ret = Cmd_PreprocessString( cmd, alias->value, buffer, sizeof(buffer) - 2, alias );
1355 // insert at start of command buffer, so that aliases execute in order
1356 // (fixes bug introduced by Black on 20050705)
1358 // Note: Cbuf_PreprocessString will be called on this string AGAIN! So we
1359 // have to make sure that no second variable expansion takes place, otherwise
1360 // alias parameters containing dollar signs can have bad effects.
1361 Cmd_QuoteString(buffer2, sizeof(buffer2), buffer, "$", false);
1362 Cbuf_InsertText(cmd, buffer2);
1369 CmdList Added by EvilTypeGuy eviltypeguy@qeradiant.com
1370 Thanks to Matthias "Maddes" Buecher, http://www.inside3d.com/qip/
1374 static void Cmd_List_f (cmd_state_t *cmd)
1376 cmd_function_t *func;
1377 const char *partial;
1382 if (Cmd_Argc(cmd) > 1)
1384 partial = Cmd_Argv(cmd, 1);
1385 len = strlen(partial);
1386 ispattern = (strchr(partial, '*') || strchr(partial, '?'));
1396 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1398 if (partial && (ispattern ? !matchpattern_with_separator(func->name, partial, false, "", false) : strncmp(partial, func->name, len)))
1400 Con_Printf("%s : %s\n", func->name, func->description);
1403 for (func = cmd->engine_functions; func; func = func->next)
1405 if (partial && (ispattern ? !matchpattern_with_separator(func->name, partial, false, "", false) : strncmp(partial, func->name, len)))
1407 Con_Printf("%s : %s\n", func->name, func->description);
1414 Con_Printf("%i Command%s matching \"%s\"\n\n", count, (count > 1) ? "s" : "", partial);
1416 Con_Printf("%i Command%s beginning with \"%s\"\n\n", count, (count > 1) ? "s" : "", partial);
1419 Con_Printf("%i Command%s\n\n", count, (count > 1) ? "s" : "");
1422 static void Cmd_Apropos_f(cmd_state_t *cmd)
1424 cmd_function_t *func;
1427 const char *partial;
1432 if (Cmd_Argc(cmd) > 1)
1433 partial = Cmd_Args(cmd);
1436 Con_Printf("usage: %s <string>\n",Cmd_Argv(cmd, 0));
1440 ispattern = partial && (strchr(partial, '*') || strchr(partial, '?'));
1442 partial = va(vabuf, sizeof(vabuf), "*%s*", partial);
1445 for (cvar = cmd->cvars->vars; cvar; cvar = cvar->next)
1447 if (matchpattern_with_separator(cvar->name, partial, true, "", false) ||
1448 matchpattern_with_separator(cvar->description, partial, true, "", false))
1450 Con_Printf ("cvar ");
1451 Cvar_PrintHelp(cvar, cvar->name, true);
1454 for (int i = 0; i < cvar->aliasindex; i++)
1456 if (matchpattern_with_separator(cvar->aliases[i], partial, true, "", false))
1458 Con_Printf ("cvar ");
1459 Cvar_PrintHelp(cvar, cvar->aliases[i], true);
1464 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1466 if (!matchpattern_with_separator(func->name, partial, true, "", false))
1467 if (!matchpattern_with_separator(func->description, partial, true, "", false))
1469 Con_Printf("command ^2%s^7: %s\n", func->name, func->description);
1472 for (func = cmd->engine_functions; func; func = func->next)
1474 if (!matchpattern_with_separator(func->name, partial, true, "", false))
1475 if (!matchpattern_with_separator(func->description, partial, true, "", false))
1477 Con_Printf("command ^2%s^7: %s\n", func->name, func->description);
1480 for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1482 // procede here a bit differently as an alias value always got a final \n
1483 if (!matchpattern_with_separator(alias->name, partial, true, "", false))
1484 if (!matchpattern_with_separator(alias->value, partial, true, "\n", false)) // when \n is as separator wildcards don't match it
1486 Con_Printf("alias ^5%s^7: %s", alias->name, alias->value); // do not print an extra \n
1489 Con_Printf("%i result%s\n\n", count, (count > 1) ? "s" : "");
1499 cmd_iter_t *cmd_iter;
1500 for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
1502 cmd_state_t *cmd = cmd_iter->cmd;
1503 cmd->mempool = Mem_AllocPool("commands", 0, NULL);
1504 // space for commands and script files
1505 cmd->text.data = cmd->text_buf;
1506 cmd->text.maxsize = sizeof(cmd->text_buf);
1507 cmd->text.cursize = 0;
1508 cmd->null_string = "";
1510 // client console can see server cvars because the user may start a server
1511 cmd_client.cvars = &cvars_all;
1512 cmd_client.cvars_flagsmask = CVAR_CLIENT | CVAR_SERVER;
1513 cmd_client.cmd_flags = CMD_CLIENT | CMD_CLIENT_FROM_SERVER | CMD_SERVER_FROM_CLIENT;
1514 cmd_client.userdefined = &cmd_userdefined_all;
1515 // dedicated server console can only see server cvars, there is no client
1516 cmd_server.cvars = &cvars_all;
1517 cmd_server.cvars_flagsmask = CVAR_SERVER;
1518 cmd_server.cmd_flags = CMD_SERVER;
1519 cmd_server.userdefined = &cmd_userdefined_all;
1520 // server commands received from clients have no reason to access cvars, cvar expansion seems perilous.
1521 cmd_serverfromclient.cvars = &cvars_null;
1522 cmd_serverfromclient.cvars_flagsmask = 0;
1523 cmd_serverfromclient.cmd_flags = CMD_SERVER_FROM_CLIENT | CMD_USERINFO;
1524 cmd_serverfromclient.userdefined = &cmd_userdefined_null;
1527 // register our commands
1529 // client-only commands
1530 Cmd_AddCommand(CMD_CLIENT | CMD_CLIENT_FROM_SERVER, "cmd", Cmd_ForwardToServer_f, "send a console commandline to the server (used by some mods)");
1531 Cmd_AddCommand(CMD_SHARED, "wait", Cmd_Wait_f, "make script execution wait for next rendered frame");
1532 Cmd_AddCommand(CMD_CLIENT, "cprint", Cmd_Centerprint_f, "print something at the screen center");
1534 // maintenance commands used for upkeep of cvars and saved configs
1535 Cmd_AddCommand(CMD_SHARED, "stuffcmds", Cmd_StuffCmds_f, "execute commandline parameters (must be present in quake.rc script)");
1536 Cmd_AddCommand(CMD_SHARED, "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");
1537 Cmd_AddCommand(CMD_SHARED, "cvar_resettodefaults_all", Cvar_ResetToDefaults_All_f, "sets all cvars to their locked default values");
1538 Cmd_AddCommand(CMD_SHARED, "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)");
1539 Cmd_AddCommand(CMD_SHARED, "cvar_resettodefaults_saveonly", Cvar_ResetToDefaults_SaveOnly_f, "sets all saved cvars to their locked default values (variables that will be saved to config.cfg)");
1541 // general console commands used in multiple environments
1542 Cmd_AddCommand(CMD_SHARED, "exec", Cmd_Exec_f, "execute a script file");
1543 Cmd_AddCommand(CMD_SHARED, "echo",Cmd_Echo_f, "print a message to the console (useful in scripts)");
1544 Cmd_AddCommand(CMD_SHARED, "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");
1545 Cmd_AddCommand(CMD_SHARED, "unalias",Cmd_UnAlias_f, "remove an alias");
1546 Cmd_AddCommand(CMD_SHARED, "set", Cvar_Set_f, "create or change the value of a console variable");
1547 Cmd_AddCommand(CMD_SHARED, "seta", Cvar_SetA_f, "create or change the value of a console variable that will be saved to config.cfg");
1548 Cmd_AddCommand(CMD_SHARED, "unset", Cvar_Del_f, "delete a cvar (does not work for static ones like _cl_name, or read-only ones)");
1550 #ifdef FILLALLCVARSWITHRUBBISH
1551 Cmd_AddCommand(CMD_SHARED, "fillallcvarswithrubbish", Cvar_FillAll_f, "fill all cvars with a specified number of characters to provoke buffer overruns");
1552 #endif /* FILLALLCVARSWITHRUBBISH */
1554 // 2000-01-09 CmdList, CvarList commands By Matthias "Maddes" Buecher
1555 // Added/Modified by EvilTypeGuy eviltypeguy@qeradiant.com
1556 Cmd_AddCommand(CMD_SHARED, "cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix or matching the specified wildcard pattern");
1557 Cmd_AddCommand(CMD_SHARED, "cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix or matching the specified wildcard pattern");
1558 Cmd_AddCommand(CMD_SHARED, "apropos", Cmd_Apropos_f, "lists all console variables/commands/aliases containing the specified string in the name or description");
1559 Cmd_AddCommand(CMD_SHARED, "find", Cmd_Apropos_f, "lists all console variables/commands/aliases containing the specified string in the name or description");
1561 Cmd_AddCommand(CMD_SHARED, "defer", Cmd_Defer_f, "execute a command in the future");
1564 // Support Doom3-style Toggle Command
1565 Cmd_AddCommand(CMD_SHARED | CMD_CLIENT_FROM_SERVER, "toggle", Cmd_Toggle_f, "toggles a console variable's values (use for more info)");
1573 void Cmd_Shutdown(void)
1575 cmd_iter_t *cmd_iter;
1576 for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
1578 cmd_state_t *cmd = cmd_iter->cmd;
1582 // we usually have this locked when we get here from Host_Quit_f
1586 Mem_FreePool(&cmd->mempool);
1595 int Cmd_Argc (cmd_state_t *cmd)
1605 const char *Cmd_Argv(cmd_state_t *cmd, int arg)
1607 if (arg >= cmd->argc )
1608 return cmd->null_string;
1609 return cmd->argv[arg];
1617 const char *Cmd_Args (cmd_state_t *cmd)
1627 Parses the given string into command line tokens.
1630 // AK: This function should only be called from ExcuteString because the current design is a bit of an hack
1631 static void Cmd_TokenizeString (cmd_state_t *cmd, const char *text)
1640 // skip whitespace up to a /n
1641 while (*text && ISWHITESPACE(*text) && *text != '\r' && *text != '\n')
1648 if (*text == '\n' || *text == '\r')
1650 // a newline separates commands in the buffer
1651 if (*text == '\r' && text[1] == '\n')
1663 if (!COM_ParseToken_Console(&text))
1666 if (cmd->argc < MAX_ARGS)
1668 l = (int)strlen(com_token) + 1;
1669 if (cmd->tokenizebufferpos + l > CMD_TOKENIZELENGTH)
1671 Con_Printf("Cmd_TokenizeString: ran out of %i character buffer space for command arguments\n", CMD_TOKENIZELENGTH);
1674 memcpy (cmd->tokenizebuffer + cmd->tokenizebufferpos, com_token, l);
1675 cmd->argv[cmd->argc] = cmd->tokenizebuffer + cmd->tokenizebufferpos;
1676 cmd->tokenizebufferpos += l;
1688 void Cmd_AddCommand(int flags, const char *cmd_name, xcommand_t function, const char *description)
1690 cmd_function_t *func;
1691 cmd_function_t *prev, *current;
1693 xcommand_t save = NULL;
1696 for (i = 0; i < 3; i++)
1698 cmd = cmd_iter_all[i].cmd;
1699 if (flags & cmd->cmd_flags)
1701 if(cmd == &cmd_client && (flags & CMD_SERVER_FROM_CLIENT) && !(flags & CMD_CLIENT))
1704 function = Cmd_ForwardToServer_f;
1706 // fail if the command is a variable name
1707 if (Cvar_FindVar(cmd->cvars, cmd_name, ~0))
1709 Con_Printf("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
1715 // fail if the command already exists in this interpreter
1716 for (func = cmd->engine_functions; func; func = func->next)
1718 if (!strcmp(cmd_name, func->name))
1720 Con_Printf("Cmd_AddCommand: %s already defined\n", cmd_name);
1725 func = (cmd_function_t *)Mem_Alloc(cmd->mempool, sizeof(cmd_function_t));
1726 func->flags = flags;
1727 func->name = cmd_name;
1728 func->function = function;
1729 func->description = description;
1730 func->next = cmd->engine_functions;
1732 // insert it at the right alphanumeric position
1733 for (prev = NULL, current = cmd->engine_functions; current && strcmp(current->name, func->name) < 0; prev = current, current = current->next)
1739 cmd->engine_functions = func;
1741 func->next = current;
1745 // mark csqcfunc if the function already exists in the csqc_functions list
1746 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1748 if (!strcmp(cmd_name, func->name))
1750 func->csqcfunc = true; //[515]: csqc
1756 func = (cmd_function_t *)Mem_Alloc(cmd->mempool, sizeof(cmd_function_t));
1757 func->name = cmd_name;
1758 func->function = function;
1759 func->description = description;
1760 func->csqcfunc = true; //[515]: csqc
1761 func->next = cmd->userdefined->csqc_functions;
1763 // insert it at the right alphanumeric position
1764 for (prev = NULL, current = cmd->userdefined->csqc_functions; current && strcmp(current->name, func->name) < 0; prev = current, current = current->next)
1770 cmd->userdefined->csqc_functions = func;
1772 func->next = current;
1787 qboolean Cmd_Exists (cmd_state_t *cmd, const char *cmd_name)
1789 cmd_function_t *func;
1791 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1792 if (!strcmp(cmd_name, func->name))
1795 for (func=cmd->engine_functions ; func ; func=func->next)
1796 if (!strcmp (cmd_name,func->name))
1808 const char *Cmd_CompleteCommand (cmd_state_t *cmd, const char *partial)
1810 cmd_function_t *func;
1813 len = strlen(partial);
1819 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1820 if (!strncasecmp(partial, func->name, len))
1823 for (func = cmd->engine_functions; func; func = func->next)
1824 if (!strncasecmp(partial, func->name, len))
1831 Cmd_CompleteCountPossible
1833 New function for tab-completion system
1834 Added by EvilTypeGuy
1835 Thanks to Fett erich@heintz.com
1839 int Cmd_CompleteCountPossible (cmd_state_t *cmd, const char *partial)
1841 cmd_function_t *func;
1846 len = strlen(partial);
1851 // Loop through the command list and count all partial matches
1852 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1853 if (!strncasecmp(partial, func->name, len))
1856 for (func = cmd->engine_functions; func; func = func->next)
1857 if (!strncasecmp(partial, func->name, len))
1864 Cmd_CompleteBuildList
1866 New function for tab-completion system
1867 Added by EvilTypeGuy
1868 Thanks to Fett erich@heintz.com
1872 const char **Cmd_CompleteBuildList (cmd_state_t *cmd, const char *partial)
1874 cmd_function_t *func;
1877 size_t sizeofbuf = (Cmd_CompleteCountPossible (cmd, partial) + 1) * sizeof (const char *);
1880 len = strlen(partial);
1881 buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
1882 // Loop through the functions lists and print all matches
1883 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1884 if (!strncasecmp(partial, func->name, len))
1885 buf[bpos++] = func->name;
1886 for (func = cmd->engine_functions; func; func = func->next)
1887 if (!strncasecmp(partial, func->name, len))
1888 buf[bpos++] = func->name;
1894 // written by LadyHavoc
1895 void Cmd_CompleteCommandPrint (cmd_state_t *cmd, const char *partial)
1897 cmd_function_t *func;
1898 size_t len = strlen(partial);
1899 // Loop through the command list and print all matches
1900 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
1901 if (!strncasecmp(partial, func->name, len))
1902 Con_Printf("^2%s^7: %s\n", func->name, func->description);
1903 for (func = cmd->engine_functions; func; func = func->next)
1904 if (!strncasecmp(partial, func->name, len))
1905 Con_Printf("^2%s^7: %s\n", func->name, func->description);
1911 New function for tab-completion system
1912 Added by EvilTypeGuy
1913 Thanks to Fett erich@heintz.com
1917 const char *Cmd_CompleteAlias (cmd_state_t *cmd, const char *partial)
1922 len = strlen(partial);
1928 for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1929 if (!strncasecmp(partial, alias->name, len))
1935 // written by LadyHavoc
1936 void Cmd_CompleteAliasPrint (cmd_state_t *cmd, const char *partial)
1939 size_t len = strlen(partial);
1940 // Loop through the alias list and print all matches
1941 for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1942 if (!strncasecmp(partial, alias->name, len))
1943 Con_Printf("^5%s^7: %s", alias->name, alias->value);
1948 Cmd_CompleteAliasCountPossible
1950 New function for tab-completion system
1951 Added by EvilTypeGuy
1952 Thanks to Fett erich@heintz.com
1956 int Cmd_CompleteAliasCountPossible (cmd_state_t *cmd, const char *partial)
1964 len = strlen(partial);
1969 // Loop through the command list and count all partial matches
1970 for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1971 if (!strncasecmp(partial, alias->name, len))
1978 Cmd_CompleteAliasBuildList
1980 New function for tab-completion system
1981 Added by EvilTypeGuy
1982 Thanks to Fett erich@heintz.com
1986 const char **Cmd_CompleteAliasBuildList (cmd_state_t *cmd, const char *partial)
1991 size_t sizeofbuf = (Cmd_CompleteAliasCountPossible (cmd, partial) + 1) * sizeof (const char *);
1994 len = strlen(partial);
1995 buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
1996 // Loop through the alias list and print all matches
1997 for (alias = cmd->userdefined->alias; alias; alias = alias->next)
1998 if (!strncasecmp(partial, alias->name, len))
1999 buf[bpos++] = alias->name;
2005 // TODO: Make this more generic?
2006 void Cmd_ClearCSQCCommands (cmd_state_t *cmd)
2008 cmd_function_t *func;
2009 cmd_function_t **next = &cmd->userdefined->csqc_functions;
2019 extern cvar_t sv_cheats;
2025 A complete command line has been parsed, so try to execute it
2026 FIXME: lookupnoadd the token to speed search?
2029 void Cmd_ExecuteString (cmd_state_t *cmd, const char *text, cmd_source_t src, qboolean lockmutex)
2032 cmd_function_t *func;
2036 oldpos = cmd->tokenizebufferpos;
2039 Cmd_TokenizeString (cmd, text);
2041 // execute the command line
2043 goto done; // no tokens
2046 for (func = cmd->userdefined->csqc_functions; func; func = func->next)
2048 if (!strcasecmp(cmd->argv[0], func->name))
2050 if (func->csqcfunc && CL_VM_ConsoleCommand(text)) //[515]: csqc
2056 for (func = cmd->engine_functions; func; func=func->next)
2058 if (!strcasecmp (cmd->argv[0], func->name))
2064 func->function(cmd);
2066 Con_Printf("Command \"%s\" can not be executed\n", Cmd_Argv(cmd, 0));
2071 if((func->flags & CMD_CHEAT) && !sv_cheats.integer)
2072 SV_ClientPrintf("No cheats allowed. The server must have sv_cheats set to 1\n");
2074 func->function(cmd);
2082 // if it's a client command and no command was found, say so.
2083 if (cmd->source == src_client)
2085 Con_Printf("Client \"%s\" tried to execute \"%s\"\n", host_client->name, text);
2090 for (a=cmd->userdefined->alias ; a ; a=a->next)
2092 if (!strcasecmp (cmd->argv[0], a->name))
2094 Cmd_ExecuteAlias(cmd, a);
2100 if (!Cvar_Command(cmd) && host.framecount > 0)
2101 Con_Printf("Unknown command \"%s\"\n", Cmd_Argv(cmd, 0));
2103 cmd->tokenizebufferpos = oldpos;
2111 Cmd_ForwardStringToServer
2113 Sends an entire command string over to the server, unprocessed
2116 void Cmd_ForwardStringToServer (const char *s)
2119 if (cls.state != ca_connected)
2121 Con_Printf("Can't \"%s\", not connected\n", s);
2128 // LadyHavoc: thanks to Fuh for bringing the pure evil of SZ_Print to my
2129 // attention, it has been eradicated from here, its only (former) use in
2130 // all of darkplaces.
2131 if (cls.protocol == PROTOCOL_QUAKEWORLD)
2132 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
2134 MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
2135 if ((!strncmp(s, "say ", 4) || !strncmp(s, "say_team ", 9)) && cl_locs_enable.integer)
2137 // say/say_team commands can replace % character codes with status info
2140 if (*s == '%' && s[1])
2142 // handle proquake message macros
2146 case 'l': // current location
2147 CL_Locs_FindLocationName(temp, sizeof(temp), cl.movement_origin);
2149 case 'h': // current health
2150 dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_HEALTH]);
2152 case 'a': // current armor
2153 dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_ARMOR]);
2155 case 'x': // current rockets
2156 dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_ROCKETS]);
2158 case 'c': // current cells
2159 dpsnprintf(temp, sizeof(temp), "%i", cl.stats[STAT_CELLS]);
2161 // silly proquake macros
2162 case 'd': // loc at last death
2163 CL_Locs_FindLocationName(temp, sizeof(temp), cl.lastdeathorigin);
2165 case 't': // current time
2166 dpsnprintf(temp, sizeof(temp), "%.0f:%.0f", floor(cl.time / 60), cl.time - floor(cl.time / 60) * 60);
2168 case 'r': // rocket launcher status ("I have RL", "I need rockets", "I need RL")
2169 if (!(cl.stats[STAT_ITEMS] & IT_ROCKET_LAUNCHER))
2170 dpsnprintf(temp, sizeof(temp), "I need RL");
2171 else if (!cl.stats[STAT_ROCKETS])
2172 dpsnprintf(temp, sizeof(temp), "I need rockets");
2174 dpsnprintf(temp, sizeof(temp), "I have RL");
2176 case 'p': // powerup status (outputs "quad" "pent" and "eyes" according to status)
2177 if (cl.stats[STAT_ITEMS] & IT_QUAD)
2180 strlcat(temp, " ", sizeof(temp));
2181 strlcat(temp, "quad", sizeof(temp));
2183 if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
2186 strlcat(temp, " ", sizeof(temp));
2187 strlcat(temp, "pent", sizeof(temp));
2189 if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
2192 strlcat(temp, " ", sizeof(temp));
2193 strlcat(temp, "eyes", sizeof(temp));
2196 case 'w': // weapon status (outputs "SSG:NG:SNG:GL:RL:LG" with the text between : characters omitted if you lack the weapon)
2197 if (cl.stats[STAT_ITEMS] & IT_SUPER_SHOTGUN)
2198 strlcat(temp, "SSG", sizeof(temp));
2199 strlcat(temp, ":", sizeof(temp));
2200 if (cl.stats[STAT_ITEMS] & IT_NAILGUN)
2201 strlcat(temp, "NG", sizeof(temp));
2202 strlcat(temp, ":", sizeof(temp));
2203 if (cl.stats[STAT_ITEMS] & IT_SUPER_NAILGUN)
2204 strlcat(temp, "SNG", sizeof(temp));
2205 strlcat(temp, ":", sizeof(temp));
2206 if (cl.stats[STAT_ITEMS] & IT_GRENADE_LAUNCHER)
2207 strlcat(temp, "GL", sizeof(temp));
2208 strlcat(temp, ":", sizeof(temp));
2209 if (cl.stats[STAT_ITEMS] & IT_ROCKET_LAUNCHER)
2210 strlcat(temp, "RL", sizeof(temp));
2211 strlcat(temp, ":", sizeof(temp));
2212 if (cl.stats[STAT_ITEMS] & IT_LIGHTNING)
2213 strlcat(temp, "LG", sizeof(temp));
2216 // not a recognized macro, print it as-is...
2222 // write the resulting text
2223 SZ_Write(&cls.netcon->message, (unsigned char *)temp, (int)strlen(temp));
2227 MSG_WriteByte(&cls.netcon->message, *s);
2230 MSG_WriteByte(&cls.netcon->message, 0);
2232 else // any other command is passed on as-is
2233 SZ_Write(&cls.netcon->message, (const unsigned char *)s, (int)strlen(s) + 1);
2240 Sends the entire command line over to the server
2243 void Cmd_ForwardToServer_f (cmd_state_t *cmd)
2247 if (!strcasecmp(Cmd_Argv(cmd, 0), "cmd"))
2249 // we want to strip off "cmd", so just send the args
2250 s = Cmd_Argc(cmd) > 1 ? Cmd_Args(cmd) : "";
2254 // we need to keep the command name, so send Cmd_Argv(cmd, 0), a space and then Cmd_Args(cmd)
2255 s = va(vabuf, sizeof(vabuf), "%s %s", Cmd_Argv(cmd, 0), Cmd_Argc(cmd) > 1 ? Cmd_Args(cmd) : "");
2257 // don't send an empty forward message if the user tries "cmd" by itself
2260 Cmd_ForwardStringToServer(s);
2268 Returns the position (1 to argc-1) in the command's argument list
2269 where the given parameter apears, or 0 if not present
2273 int Cmd_CheckParm (cmd_state_t *cmd, const char *parm)
2279 Con_Printf ("Cmd_CheckParm: NULL");
2283 for (i = 1; i < Cmd_Argc (cmd); i++)
2284 if (!strcasecmp (parm, Cmd_Argv(cmd, i)))
2292 void Cmd_SaveInitState(void)
2294 cmd_iter_t *cmd_iter;
2295 for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
2297 cmd_state_t *cmd = cmd_iter->cmd;
2300 for (f = cmd->userdefined->csqc_functions; f; f = f->next)
2301 f->initstate = true;
2302 for (f = cmd->engine_functions; f; f = f->next)
2303 f->initstate = true;
2304 for (a = cmd->userdefined->alias; a; a = a->next)
2306 a->initstate = true;
2307 a->initialvalue = Mem_strdup(zonemempool, a->value);
2310 Cvar_SaveInitState(&cvars_all);
2313 void Cmd_RestoreInitState(void)
2315 cmd_iter_t *cmd_iter;
2316 for (cmd_iter = cmd_iter_all; cmd_iter->cmd; cmd_iter++)
2318 cmd_state_t *cmd = cmd_iter->cmd;
2319 cmd_function_t *f, **fp;
2320 cmdalias_t *a, **ap;
2321 for (fp = &cmd->userdefined->csqc_functions; (f = *fp);)
2327 // destroy this command, it didn't exist at init
2328 Con_DPrintf("Cmd_RestoreInitState: Destroying command %s\n", f->name);
2333 for (fp = &cmd->engine_functions; (f = *fp);)
2339 // destroy this command, it didn't exist at init
2340 Con_DPrintf("Cmd_RestoreInitState: Destroying command %s\n", f->name);
2345 for (ap = &cmd->userdefined->alias; (a = *ap);)
2349 // restore this alias, it existed at init
2350 if (strcmp(a->value ? a->value : "", a->initialvalue ? a->initialvalue : ""))
2352 Con_DPrintf("Cmd_RestoreInitState: Restoring alias %s\n", a->name);
2355 a->value = Mem_strdup(zonemempool, a->initialvalue);
2361 // free this alias, it didn't exist at init...
2362 Con_DPrintf("Cmd_RestoreInitState: Destroying alias %s\n", a->name);
2370 Cvar_RestoreInitState(&cvars_all);