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
24 #define MAX_ALIAS_NAME 32
25 // this is the largest script file that can be executed in one step
26 // LordHavoc: inreased this from 8192 to 32768
27 #define CMDBUFSIZE 32768
28 // maximum number of parameters to a command
30 // maximum tokenizable commandline length (counting NUL terminations)
31 #define CMD_TOKENIZELENGTH (MAX_INPUTLINE + 80)
33 typedef struct cmdalias_s
35 struct cmdalias_s *next;
36 char name[MAX_ALIAS_NAME];
40 static cmdalias_t *cmd_alias;
42 static qboolean cmd_wait;
44 static mempool_t *cmd_mempool;
46 static char cmd_tokenizebuffer[CMD_TOKENIZELENGTH];
47 static int cmd_tokenizebufferpos = 0;
49 //=============================================================================
55 Causes execution of the remainder of the command buffer to be delayed until
56 next frame. This allows commands like:
57 bind g "impulse 5 ; +attack ; wait ; -attack ; impulse 2"
60 static void Cmd_Wait_f (void)
66 =============================================================================
70 =============================================================================
73 static sizebuf_t cmd_text;
74 static unsigned char cmd_text_buf[CMDBUFSIZE];
80 Adds command text at the end of the buffer
83 void Cbuf_AddText (const char *text)
87 l = (int)strlen (text);
89 if (cmd_text.cursize + l >= cmd_text.maxsize)
91 Con_Print("Cbuf_AddText: overflow\n");
95 SZ_Write (&cmd_text, (const unsigned char *)text, (int)strlen (text));
103 Adds command text immediately after the current command
104 Adds a \n to the text
105 FIXME: actually change the command buffer to do less copying
108 void Cbuf_InsertText (const char *text)
113 // copy off any commands still remaining in the exec buffer
114 templen = cmd_text.cursize;
117 temp = (char *)Mem_Alloc (tempmempool, templen);
118 memcpy (temp, cmd_text.data, templen);
119 SZ_Clear (&cmd_text);
124 // add the entire text of the file
127 // add the copied off data
130 SZ_Write (&cmd_text, (const unsigned char *)temp, templen);
140 static void Cmd_PreprocessString( const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias );
141 void Cbuf_Execute (void)
145 char line[MAX_INPUTLINE];
146 char preprocessed[MAX_INPUTLINE];
149 // LordHavoc: making sure the tokenizebuffer doesn't get filled up by repeated crashes
150 cmd_tokenizebufferpos = 0;
152 while (cmd_text.cursize)
154 // find a \n or ; line break
155 text = (char *)cmd_text.data;
158 for (i=0 ; i< cmd_text.cursize ; i++)
162 if ( !quotes && text[i] == ';')
163 break; // don't break if inside a quoted string
164 if (text[i] == '\r' || text[i] == '\n')
168 memcpy (line, text, i);
171 // delete the text from the command buffer and move remaining commands down
172 // this is necessary because commands (exec, alias) can insert data at the
173 // beginning of the text buffer
175 if (i == cmd_text.cursize)
176 cmd_text.cursize = 0;
180 cmd_text.cursize -= i;
181 memcpy (cmd_text.data, text+i, cmd_text.cursize);
184 // execute the command line
185 Cmd_PreprocessString( line, preprocessed, sizeof(preprocessed), NULL );
186 Cmd_ExecuteString (preprocessed, src_command);
189 { // skip out while text still remains in buffer, leaving it
198 ==============================================================================
202 ==============================================================================
209 Adds command line parameters as script statements
210 Commands lead with a +, and continue until a - or another +
211 quake +prog jctest.qp +cmd amlev1
212 quake -nosound +cmd amlev1
215 qboolean host_stuffcmdsrun = false;
216 void Cmd_StuffCmds_f (void)
219 // this is per command, and bounds checked (no buffer overflows)
220 char build[MAX_INPUTLINE];
222 if (Cmd_Argc () != 1)
224 Con_Print("stuffcmds : execute command line parameters\n");
228 host_stuffcmdsrun = true;
229 for (i = 0;i < com_argc;i++)
231 if (com_argv[i] && com_argv[i][0] == '+' && (com_argv[i][1] < '0' || com_argv[i][1] > '9'))
235 while (com_argv[i][j])
236 build[l++] = com_argv[i][j++];
238 for (;i < com_argc;i++)
242 if ((com_argv[i][0] == '+' || com_argv[i][0] == '-') && (com_argv[i][1] < '0' || com_argv[i][1] > '9'))
244 if (l + strlen(com_argv[i]) + 5 > sizeof(build))
248 for (j = 0;com_argv[i][j];j++)
249 build[l++] = com_argv[i][j];
254 Cbuf_InsertText (build);
266 static void Cmd_Exec_f (void)
270 if (Cmd_Argc () != 2)
272 Con_Print("exec <filename> : execute a script file\n");
276 f = (char *)FS_LoadFile (Cmd_Argv(1), tempmempool, false, NULL);
279 Con_Printf("couldn't exec %s\n",Cmd_Argv(1));
282 Con_DPrintf("execing %s\n",Cmd_Argv(1));
284 // if executing default.cfg for the first time, lock the cvar defaults
285 // it may seem backwards to insert this text BEFORE the default.cfg
286 // but Cbuf_InsertText inserts before, so this actually ends up after it.
287 if (!strcmp(Cmd_Argv(1), "default.cfg"))
288 Cbuf_InsertText("\ncvar_lockdefaults\n");
299 Just prints the rest of the line to the console
302 static void Cmd_Echo_f (void)
306 for (i=1 ; i<Cmd_Argc() ; i++)
307 Con_Printf("%s ",Cmd_Argv(i));
312 // Support Doom3-style Toggle Console Command
317 Toggles a specified console variable amongst the values specified (default is 0 and 1)
320 static void Cmd_Toggle_f(void)
322 // Acquire Number of Arguments
323 int nNumArgs = Cmd_Argc();
326 // No Arguments Specified; Print Usage
327 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");
329 { // Correct Arguments Specified
330 // Acquire Potential CVar
331 cvar_t* cvCVar = Cvar_FindVar( Cmd_Argv(1) );
338 Cvar_SetValueQuick(cvCVar, 0);
340 Cvar_SetValueQuick(cvCVar, 1);
344 { // 0 and Specified Usage
345 if(cvCVar->integer == atoi(Cmd_Argv(2) ) )
346 // CVar is Specified Value; // Reset to 0
347 Cvar_SetValueQuick(cvCVar, 0);
349 if(cvCVar->integer == 0)
350 // CVar is 0; Specify Value
351 Cvar_SetQuick(cvCVar, Cmd_Argv(2) );
353 // CVar does not match; Reset to 0
354 Cvar_SetValueQuick(cvCVar, 0);
357 { // Variable Values Specified
361 for(nCnt = 2; nCnt < nNumArgs; nCnt++)
362 { // Cycle through Values
363 if( strcmp(cvCVar->string, Cmd_Argv(nCnt) ) == 0)
364 { // Current Value Located; Increment to Next
365 if( (nCnt + 1) == nNumArgs)
366 // Max Value Reached; Reset
367 Cvar_SetQuick(cvCVar, Cmd_Argv(2) );
370 Cvar_SetQuick(cvCVar, Cmd_Argv(nCnt + 1) );
379 // Value not Found; Reset to Original
380 Cvar_SetQuick(cvCVar, Cmd_Argv(2) );
386 Con_Printf("ERROR : CVar '%s' not found\n", Cmd_Argv(2) );
395 Creates a new command that executes a command string (possibly ; seperated)
398 static void Cmd_Alias_f (void)
401 char cmd[MAX_INPUTLINE];
407 Con_Print("Current alias commands:\n");
408 for (a = cmd_alias ; a ; a=a->next)
409 Con_Printf("%s : %s\n", a->name, a->value);
414 if (strlen(s) >= MAX_ALIAS_NAME)
416 Con_Print("Alias name is too long\n");
420 // if the alias already exists, reuse it
421 for (a = cmd_alias ; a ; a=a->next)
423 if (!strcmp(s, a->name))
432 cmdalias_t *prev, *current;
434 a = (cmdalias_t *)Z_Malloc (sizeof(cmdalias_t));
435 strlcpy (a->name, s, sizeof (a->name));
436 // insert it at the right alphanumeric position
437 for( prev = NULL, current = cmd_alias ; current && strcmp( current->name, a->name ) < 0 ; prev = current, current = current->next )
448 // copy the rest of the command line
449 cmd[0] = 0; // start out with a null string
451 for (i=2 ; i< c ; i++)
453 strlcat (cmd, Cmd_Argv(i), sizeof (cmd));
455 strlcat (cmd, " ", sizeof (cmd));
457 strlcat (cmd, "\n", sizeof (cmd));
459 a->value = (char *)Z_Malloc (strlen (cmd) + 1);
460 strcpy (a->value, cmd);
464 =============================================================================
468 =============================================================================
471 typedef struct cmd_function_s
473 struct cmd_function_s *next;
475 const char *description;
481 static const char *cmd_argv[MAX_ARGS];
482 static const char *cmd_null_string = "";
483 static const char *cmd_args;
484 cmd_source_t cmd_source;
487 static cmd_function_t *cmd_functions; // possible commands to execute
492 Preprocesses strings and replaces $*, $param#, $cvar accordingly
494 static void Cmd_PreprocessString( const char *intext, char *outtext, unsigned maxoutlen, cmdalias_t *alias ) {
499 // don't crash if there's no room in the outtext buffer
500 if( maxoutlen == 0 ) {
503 maxoutlen--; // because of \0
509 while( *in && outlen < maxoutlen ) {
510 if( *in == '$' && !inquote ) {
511 // this is some kind of expansion, see what comes after the $
513 // replacements that can always be used:
514 // $$ is replaced with $, to allow escaping $
515 // $<cvarname> is replaced with the contents of the cvar
517 // the following can be used in aliases only:
518 // $* is replaced with all formal parameters (including name of the alias - this probably is not desirable)
519 // $0 is replaced with the name of this alias
520 // $<number> is replaced with an argument to this alias (or copied as-is if no such parameter exists), can be multiple digits
522 outtext[outlen++] = *in++;
523 } else if( *in == '*' && alias ) {
524 const char *linein = Cmd_Args();
526 // include all parameters
528 while( *linein && outlen < maxoutlen ) {
529 outtext[outlen++] = *linein++;
534 } else if( '0' <= *in && *in <= '9' && alias ) {
538 argnum = strtol( in, &nexttoken, 10 );
540 if( 0 <= argnum && argnum < Cmd_Argc() ) {
541 const char *param = Cmd_Argv( argnum );
542 while( *param && outlen < maxoutlen ) {
543 outtext[outlen++] = *param++;
546 } else if( argnum >= Cmd_Argc() ) {
547 Con_Printf( "Warning: Not enough parameters passed to alias '%s', at least %i expected:\n %s\n", alias->name, argnum, alias->value );
548 outtext[outlen++] = '$';
552 const char *tempin = in;
554 COM_ParseTokenConsole( &tempin );
555 // don't expand rcon_password or similar cvars (CVAR_PRIVATE flag)
556 if ((cvar = Cvar_FindVar(&com_token[0])) && !(cvar->flags & CVAR_PRIVATE)) {
557 const char *cvarcontent = cvar->string;
558 while( *cvarcontent && outlen < maxoutlen ) {
559 outtext[outlen++] = *cvarcontent++;
564 Con_Printf( "Warning: could not find cvar %s when expanding alias %s\n %s\n", com_token, alias->name, alias->value );
566 Con_Printf( "Warning: could not find cvar %s\n", com_token );
568 outtext[outlen++] = '$';
575 outtext[outlen++] = *in++;
585 Called for aliases and fills in the alias into the cbuffer
588 static void Cmd_ExecuteAlias (cmdalias_t *alias)
590 static char buffer[ MAX_INPUTLINE + 2 ];
591 Cmd_PreprocessString( alias->value, buffer, sizeof(buffer) - 2, alias );
592 // insert at start of command buffer, so that aliases execute in order
593 // (fixes bug introduced by Black on 20050705)
594 Cbuf_InsertText( buffer );
601 CmdList Added by EvilTypeGuy eviltypeguy@qeradiant.com
602 Thanks to Matthias "Maddes" Buecher, http://www.inside3d.com/qip/
606 static void Cmd_List_f (void)
614 partial = Cmd_Argv (1);
615 len = (int)strlen(partial);
624 for (cmd = cmd_functions; cmd; cmd = cmd->next)
626 if (partial && strncmp(partial, cmd->name, len))
628 Con_Printf("%s : %s\n", cmd->name, cmd->description);
633 Con_Printf("%i Command%s beginning with \"%s\"\n\n", count, (count > 1) ? "s" : "", partial);
635 Con_Printf("%i Command%s\n\n", count, (count > 1) ? "s" : "");
645 cmd_mempool = Mem_AllocPool("commands", 0, NULL);
646 // space for commands and script files
647 cmd_text.data = cmd_text_buf;
648 cmd_text.maxsize = sizeof(cmd_text_buf);
649 cmd_text.cursize = 0;
652 void Cmd_Init_Commands (void)
655 // register our commands
657 Cmd_AddCommand ("stuffcmds",Cmd_StuffCmds_f, "execute commandline parameters (must be present in quake.rc script)");
658 Cmd_AddCommand ("exec",Cmd_Exec_f, "execute a script file");
659 Cmd_AddCommand ("echo",Cmd_Echo_f, "print a message to the console (useful in scripts)");
660 Cmd_AddCommand ("alias",Cmd_Alias_f, "create a script function (parameters are passed in as $1 through $9, and $* for all parameters)");
661 Cmd_AddCommand ("cmd", Cmd_ForwardToServer, "send a console commandline to the server (used by some mods)");
662 Cmd_AddCommand ("wait", Cmd_Wait_f, "make script execution wait for next rendered frame");
663 Cmd_AddCommand ("set", Cvar_Set_f, "create or change the value of a console variable");
664 Cmd_AddCommand ("seta", Cvar_SetA_f, "create or change the value of a console variable that will be saved to config.cfg");
666 // 2000-01-09 CmdList, CvarList commands By Matthias "Maddes" Buecher
667 // Added/Modified by EvilTypeGuy eviltypeguy@qeradiant.com
668 Cmd_AddCommand ("cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix");
669 Cmd_AddCommand ("cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix");
671 Cmd_AddCommand ("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");
672 Cmd_AddCommand ("cvar_resettodefaults_all", Cvar_ResetToDefaults_All_f, "sets all cvars to their locked default values");
673 Cmd_AddCommand ("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)");
674 Cmd_AddCommand ("cvar_resettodefaults_saveonly", Cvar_ResetToDefaults_SaveOnly_f, "sets all saved cvars to their locked default values (variables that will be saved to config.cfg)");
677 // Support Doom3-style Toggle Command
678 Cmd_AddCommand( "toggle", Cmd_Toggle_f, "toggles a console variable's values (use for more info)");
686 void Cmd_Shutdown(void)
688 Mem_FreePool(&cmd_mempool);
706 const char *Cmd_Argv (int arg)
708 if (arg >= cmd_argc )
709 return cmd_null_string;
710 return cmd_argv[arg];
718 const char *Cmd_Args (void)
728 Parses the given string into command line tokens.
731 // AK: This function should only be called from ExcuteString because the current design is a bit of an hack
732 static void Cmd_TokenizeString (const char *text)
741 // skip whitespace up to a /n
742 while (*text && *text <= ' ' && *text != '\r' && *text != '\n')
749 if (*text == '\n' || *text == '\r')
751 // a newline separates commands in the buffer
752 if (*text == '\r' && text[1] == '\n')
764 if (!COM_ParseTokenConsole(&text))
767 if (cmd_argc < MAX_ARGS)
769 l = (int)strlen(com_token) + 1;
770 if (cmd_tokenizebufferpos + l > CMD_TOKENIZELENGTH)
772 Con_Printf("Cmd_TokenizeString: ran out of %i character buffer space for command arguements\n", CMD_TOKENIZELENGTH);
775 strcpy (cmd_tokenizebuffer + cmd_tokenizebufferpos, com_token);
776 cmd_argv[cmd_argc] = cmd_tokenizebuffer + cmd_tokenizebufferpos;
777 cmd_tokenizebufferpos += l;
789 void Cmd_AddCommand (const char *cmd_name, xcommand_t function, const char *description)
792 cmd_function_t *prev, *current;
794 // fail if the command is a variable name
795 if (Cvar_FindVar( cmd_name ))
797 Con_Printf("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
801 // fail if the command already exists
802 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
804 if (!strcmp (cmd_name, cmd->name))
808 Con_Printf("Cmd_AddCommand: %s already defined\n", cmd_name);
813 cmd->csqcfunc = true;
819 cmd = (cmd_function_t *)Mem_Alloc(cmd_mempool, sizeof(cmd_function_t));
820 cmd->name = cmd_name;
821 cmd->function = function;
822 cmd->description = description;
823 if(!function) //[515]: csqc
824 cmd->csqcfunc = true;
825 cmd->next = cmd_functions;
827 // insert it at the right alphanumeric position
828 for( prev = NULL, current = cmd_functions ; current && strcmp( current->name, cmd->name ) < 0 ; prev = current, current = current->next )
843 qboolean Cmd_Exists (const char *cmd_name)
847 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
848 if (!strcmp (cmd_name,cmd->name))
860 const char *Cmd_CompleteCommand (const char *partial)
865 len = strlen(partial);
871 for (cmd = cmd_functions; cmd; cmd = cmd->next)
872 if (!strncasecmp(partial, cmd->name, len))
879 Cmd_CompleteCountPossible
881 New function for tab-completion system
883 Thanks to Fett erich@heintz.com
887 int Cmd_CompleteCountPossible (const char *partial)
894 len = strlen(partial);
899 // Loop through the command list and count all partial matches
900 for (cmd = cmd_functions; cmd; cmd = cmd->next)
901 if (!strncasecmp(partial, cmd->name, len))
908 Cmd_CompleteBuildList
910 New function for tab-completion system
912 Thanks to Fett erich@heintz.com
916 const char **Cmd_CompleteBuildList (const char *partial)
921 size_t sizeofbuf = (Cmd_CompleteCountPossible (partial) + 1) * sizeof (const char *);
924 len = strlen(partial);
925 buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
926 // Loop through the alias list and print all matches
927 for (cmd = cmd_functions; cmd; cmd = cmd->next)
928 if (!strncasecmp(partial, cmd->name, len))
929 buf[bpos++] = cmd->name;
935 // written by LordHavoc
936 void Cmd_CompleteCommandPrint (const char *partial)
939 size_t len = strlen(partial);
940 // Loop through the command list and print all matches
941 for (cmd = cmd_functions; cmd; cmd = cmd->next)
942 if (!strncasecmp(partial, cmd->name, len))
943 Con_Printf("%s : %s\n", cmd->name, cmd->description);
949 New function for tab-completion system
951 Thanks to Fett erich@heintz.com
955 const char *Cmd_CompleteAlias (const char *partial)
960 len = strlen(partial);
966 for (alias = cmd_alias; alias; alias = alias->next)
967 if (!strncasecmp(partial, alias->name, len))
973 // written by LordHavoc
974 void Cmd_CompleteAliasPrint (const char *partial)
977 size_t len = strlen(partial);
978 // Loop through the alias list and print all matches
979 for (alias = cmd_alias; alias; alias = alias->next)
980 if (!strncasecmp(partial, alias->name, len))
981 Con_Printf("%s : %s\n", alias->name, alias->value);
986 Cmd_CompleteAliasCountPossible
988 New function for tab-completion system
990 Thanks to Fett erich@heintz.com
994 int Cmd_CompleteAliasCountPossible (const char *partial)
1002 len = strlen(partial);
1007 // Loop through the command list and count all partial matches
1008 for (alias = cmd_alias; alias; alias = alias->next)
1009 if (!strncasecmp(partial, alias->name, len))
1016 Cmd_CompleteAliasBuildList
1018 New function for tab-completion system
1019 Added by EvilTypeGuy
1020 Thanks to Fett erich@heintz.com
1024 const char **Cmd_CompleteAliasBuildList (const char *partial)
1029 size_t sizeofbuf = (Cmd_CompleteAliasCountPossible (partial) + 1) * sizeof (const char *);
1032 len = strlen(partial);
1033 buf = (const char **)Mem_Alloc(tempmempool, sizeofbuf + sizeof (const char *));
1034 // Loop through the alias list and print all matches
1035 for (alias = cmd_alias; alias; alias = alias->next)
1036 if (!strncasecmp(partial, alias->name, len))
1037 buf[bpos++] = alias->name;
1043 void Cmd_ClearCsqcFuncs (void)
1045 cmd_function_t *cmd;
1046 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
1047 cmd->csqcfunc = false;
1050 qboolean CL_VM_ConsoleCommand (const char *cmd);
1055 A complete command line has been parsed, so try to execute it
1056 FIXME: lookupnoadd the token to speed search?
1059 void Cmd_ExecuteString (const char *text, cmd_source_t src)
1062 cmd_function_t *cmd;
1065 oldpos = cmd_tokenizebufferpos;
1068 Cmd_TokenizeString (text);
1070 // execute the command line
1073 cmd_tokenizebufferpos = oldpos;
1074 return; // no tokens
1078 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
1080 if (!strcasecmp (cmd_argv[0],cmd->name))
1082 if(cmd->function && !cmd->csqcfunc)
1085 if(CL_VM_ConsoleCommand (text)) //[515]: csqc
1090 cmd_tokenizebufferpos = oldpos;
1096 for (a=cmd_alias ; a ; a=a->next)
1098 if (!strcasecmp (cmd_argv[0], a->name))
1100 Cmd_ExecuteAlias(a);
1101 cmd_tokenizebufferpos = oldpos;
1107 if (!Cvar_Command () && host_framecount > 0)
1108 Con_Printf("Unknown command \"%s\"\n", Cmd_Argv(0));
1110 cmd_tokenizebufferpos = oldpos;
1116 Cmd_ForwardStringToServer
1118 Sends an entire command string over to the server, unprocessed
1121 void Cmd_ForwardStringToServer (const char *s)
1123 if (cls.state != ca_connected)
1125 Con_Printf("Can't \"%s\", not connected\n", s);
1132 // LordHavoc: thanks to Fuh for bringing the pure evil of SZ_Print to my
1133 // attention, it has been eradicated from here, its only (former) use in
1134 // all of darkplaces.
1135 if (cls.protocol == PROTOCOL_QUAKEWORLD)
1136 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
1138 MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
1139 SZ_Write(&cls.netcon->message, (const unsigned char *)s, (int)strlen(s) + 1);
1146 Sends the entire command line over to the server
1149 void Cmd_ForwardToServer (void)
1152 if (!strcasecmp(Cmd_Argv(0), "cmd"))
1154 // we want to strip off "cmd", so just send the args
1155 s = Cmd_Argc() > 1 ? Cmd_Args() : "";
1159 // we need to keep the command name, so send Cmd_Argv(0), a space and then Cmd_Args()
1160 s = va("%s %s", Cmd_Argv(0), Cmd_Argc() > 1 ? Cmd_Args() : "");
1162 // don't send an empty forward message if the user tries "cmd" by itself
1165 Cmd_ForwardStringToServer(s);
1173 Returns the position (1 to argc-1) in the command's argument list
1174 where the given parameter apears, or 0 if not present
1178 int Cmd_CheckParm (const char *parm)
1184 Con_Printf ("Cmd_CheckParm: NULL");
1188 for (i = 1; i < Cmd_Argc (); i++)
1189 if (!strcasecmp (parm, Cmd_Argv (i)))