git-svn-id: http://bladebattles.com/kurok/SVN@11 20cd92bb-ff49-0410-b73e-96a06e42c3b9
[kurok.git] / cmd.c
blobdb4892416423d87e3bef44c2042902169110569f
1 /*
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
22 #include "quakedef.h"
24 void Cmd_ForwardToServer (void);
26 #define MAX_ALIAS_NAME 32
28 typedef struct cmdalias_s
30 struct cmdalias_s *next;
31 char name[MAX_ALIAS_NAME];
32 char *value;
33 } cmdalias_t;
35 cmdalias_t *cmd_alias;
37 int trashtest;
38 int *trashspot;
40 qboolean cmd_wait;
42 //=============================================================================
45 ============
46 Cmd_Wait_f
48 Causes execution of the remainder of the command buffer to be delayed until
49 next frame. This allows commands like:
50 bind g "impulse 5 ; +attack ; wait ; -attack ; impulse 2"
51 ============
53 void Cmd_Wait_f (void)
55 cmd_wait = true;
59 =============================================================================
61 COMMAND BUFFER
63 =============================================================================
66 sizebuf_t cmd_text;
69 ============
70 Cbuf_Init
71 ============
73 void Cbuf_Init (void)
75 SZ_Alloc (&cmd_text, 8192); // space for commands and script files
80 ============
81 Cbuf_AddText
83 Adds command text at the end of the buffer
84 ============
86 void Cbuf_AddText (char *text)
88 int l;
90 l = Q_strlen (text);
92 if (cmd_text.cursize + l >= cmd_text.maxsize)
94 Con_Printf ("Cbuf_AddText: overflow\n");
95 return;
98 SZ_Write (&cmd_text, text, Q_strlen (text));
103 ============
104 Cbuf_InsertText
106 Adds command text immediately after the current command
107 Adds a \n to the text
108 FIXME: actually change the command buffer to do less copying
109 ============
111 void Cbuf_InsertText (char *text)
113 char *temp;
114 int templen;
116 // copy off any commands still remaining in the exec buffer
117 templen = cmd_text.cursize;
118 if (templen)
120 temp = Z_Malloc (templen);
121 Q_memcpy (temp, cmd_text.data, templen);
122 SZ_Clear (&cmd_text);
124 else
125 temp = NULL; // shut up compiler
127 // add the entire text of the file
128 Cbuf_AddText (text);
130 // add the copied off data
131 if (templen)
133 SZ_Write (&cmd_text, temp, templen);
134 Z_Free (temp);
139 ============
140 Cbuf_Execute
141 ============
143 void Cbuf_Execute (void)
145 int i;
146 char *text;
147 char line[1024];
148 int quotes;
150 while (cmd_text.cursize)
152 // find a \n or ; line break
153 text = (char *)cmd_text.data;
155 quotes = 0;
156 for (i=0 ; i< cmd_text.cursize ; i++)
158 if (text[i] == '"')
159 quotes++;
160 if ( !(quotes&1) && text[i] == ';')
161 break; // don't break if inside a quoted string
162 if (text[i] == '\n')
163 break;
167 memcpy (line, text, i);
168 line[i] = 0;
170 // delete the text from the command buffer and move remaining commands down
171 // this is necessary because commands (exec, alias) can insert data at the
172 // beginning of the text buffer
174 if (i == cmd_text.cursize)
175 cmd_text.cursize = 0;
176 else
178 i++;
179 cmd_text.cursize -= i;
180 Q_memcpy (text, text+i, cmd_text.cursize);
183 // execute the command line
184 Cmd_ExecuteString (line, src_command);
186 if (cmd_wait)
187 { // skip out while text still remains in buffer, leaving it
188 // for next frame
189 cmd_wait = false;
190 break;
196 ==============================================================================
198 SCRIPT COMMANDS
200 ==============================================================================
204 ===============
205 Cmd_StuffCmds_f
207 Adds command line parameters as script statements
208 Commands lead with a +, and continue until a - or another +
209 quake +prog jctest.qp +cmd amlev1
210 quake -nosound +cmd amlev1
211 ===============
213 void Cmd_StuffCmds_f (void)
215 int i, j;
216 int s;
217 char *text, *build, c;
219 if (Cmd_Argc () != 1)
221 Con_Printf ("stuffcmds : execute command line parameters\n");
222 return;
225 // build the combined string to parse from
226 s = 0;
227 for (i=1 ; i<com_argc ; i++)
229 if (!com_argv[i])
230 continue; // NEXTSTEP nulls out -NXHost
231 s += Q_strlen (com_argv[i]) + 1;
233 if (!s)
234 return;
236 text = Z_Malloc (s+1);
237 text[0] = 0;
238 for (i=1 ; i<com_argc ; i++)
240 if (!com_argv[i])
241 continue; // NEXTSTEP nulls out -NXHost
242 Q_strcat (text,com_argv[i]);
243 if (i != com_argc-1)
244 Q_strcat (text, " ");
247 // pull out the commands
248 build = Z_Malloc (s+1);
249 build[0] = 0;
251 for (i=0 ; i<s-1 ; i++)
253 if (text[i] == '+')
255 i++;
257 for (j=i ; (text[j] != '+') && (text[j] != '-') && (text[j] != 0) ; j++)
260 c = text[j];
261 text[j] = 0;
263 Q_strcat (build, text+i);
264 Q_strcat (build, "\n");
265 text[j] = c;
266 i = j-1;
270 if (build[0])
271 Cbuf_InsertText (build);
273 Z_Free (text);
274 Z_Free (build);
279 ===============
280 Cmd_Exec_f
281 ===============
283 void Cmd_Exec_f (void)
285 char *f;
286 int mark;
288 if (Cmd_Argc () != 2)
290 Con_Printf ("exec <filename> : execute a script file\n");
291 return;
294 mark = Hunk_LowMark ();
295 f = (char *)COM_LoadHunkFile (Cmd_Argv(1));
296 if (!f)
298 Con_Printf ("couldn't exec %s\n",Cmd_Argv(1));
299 return;
301 Con_Printf ("execing %s\n",Cmd_Argv(1));
303 Cbuf_InsertText (f);
304 Hunk_FreeToLowMark (mark);
309 ===============
310 Cmd_Echo_f
312 Just prints the rest of the line to the console
313 ===============
315 void Cmd_Echo_f (void)
317 int i;
319 for (i=1 ; i<Cmd_Argc() ; i++)
320 Con_Printf ("%s ",Cmd_Argv(i));
321 Con_Printf ("\n");
325 ===============
326 Cmd_Alias_f
328 Creates a new command that executes a command string (possibly ; seperated)
329 ===============
332 char *CopyString (char *in)
334 char *out;
336 out = Z_Malloc (strlen(in)+1);
337 strcpy (out, in);
338 return out;
341 void Cmd_Alias_f (void)
343 cmdalias_t *a;
344 char cmd[1024];
345 int i, c;
346 char *s;
348 if (Cmd_Argc() == 1)
350 Con_Printf ("Current alias commands:\n");
351 for (a = cmd_alias ; a ; a=a->next)
352 Con_Printf ("%s : %s\n", a->name, a->value);
353 return;
356 s = Cmd_Argv(1);
357 if (strlen(s) >= MAX_ALIAS_NAME)
359 Con_Printf ("Alias name is too long\n");
360 return;
363 // if the alias allready exists, reuse it
364 for (a = cmd_alias ; a ; a=a->next)
366 if (!strcmp(s, a->name))
368 Z_Free (a->value);
369 break;
373 if (!a)
375 a = Z_Malloc (sizeof(cmdalias_t));
376 a->next = cmd_alias;
377 cmd_alias = a;
379 strcpy (a->name, s);
381 // copy the rest of the command line
382 cmd[0] = 0; // start out with a null string
383 c = Cmd_Argc();
384 for (i=2 ; i< c ; i++)
386 strcat (cmd, Cmd_Argv(i));
387 if (i != c)
388 strcat (cmd, " ");
390 strcat (cmd, "\n");
392 a->value = CopyString (cmd);
396 =============================================================================
398 COMMAND EXECUTION
400 =============================================================================
403 typedef struct cmd_function_s
405 struct cmd_function_s *next;
406 char *name;
407 xcommand_t function;
408 } cmd_function_t;
411 #define MAX_ARGS 80
413 static int cmd_argc;
414 static char *cmd_argv[MAX_ARGS];
415 static char *cmd_null_string = "";
416 static char *cmd_args = NULL;
418 cmd_source_t cmd_source;
421 static cmd_function_t *cmd_functions; // possible commands to execute
424 ============
425 Cmd_Init
426 ============
428 void Cmd_Init (void)
431 // register our commands
433 Cmd_AddCommand ("stuffcmds",Cmd_StuffCmds_f);
434 Cmd_AddCommand ("exec",Cmd_Exec_f);
435 Cmd_AddCommand ("echo",Cmd_Echo_f);
436 Cmd_AddCommand ("alias",Cmd_Alias_f);
437 Cmd_AddCommand ("cmd", Cmd_ForwardToServer);
438 Cmd_AddCommand ("wait", Cmd_Wait_f);
442 ============
443 Cmd_Argc
444 ============
446 int Cmd_Argc (void)
448 return cmd_argc;
452 ============
453 Cmd_Argv
454 ============
456 char *Cmd_Argv (int arg)
458 if ( (unsigned)arg >= cmd_argc )
459 return cmd_null_string;
460 return cmd_argv[arg];
464 ============
465 Cmd_Args
466 ============
468 char *Cmd_Args (void)
470 return cmd_args;
475 ============
476 Cmd_TokenizeString
478 Parses the given string into command line tokens.
479 ============
481 void Cmd_TokenizeString (char *text)
483 int i;
485 // clear the args from the last string
486 for (i=0 ; i<cmd_argc ; i++)
487 Z_Free (cmd_argv[i]);
489 cmd_argc = 0;
490 cmd_args = NULL;
492 while (1)
494 // skip whitespace up to a /n
495 while (*text && *text <= ' ' && *text != '\n')
497 text++;
500 if (*text == '\n')
501 { // a newline seperates commands in the buffer
502 text++;
503 break;
506 if (!*text)
507 return;
509 if (cmd_argc == 1)
510 cmd_args = text;
512 text = COM_Parse (text);
513 if (!text)
514 return;
516 if (cmd_argc < MAX_ARGS)
518 cmd_argv[cmd_argc] = Z_Malloc (Q_strlen(com_token)+1);
519 Q_strcpy (cmd_argv[cmd_argc], com_token);
520 cmd_argc++;
528 ============
529 Cmd_AddCommand
530 ============
532 void Cmd_AddCommand (char *cmd_name, xcommand_t function)
534 cmd_function_t *cmd;
536 if (host_initialized) // because hunk allocation would get stomped
537 Sys_Error ("Cmd_AddCommand after host_initialized");
539 // fail if the command is a variable name
540 if (Cvar_VariableString(cmd_name)[0])
542 Con_Printf ("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
543 return;
546 // fail if the command already exists
547 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
549 if (!Q_strcmp (cmd_name, cmd->name))
551 Con_Printf ("Cmd_AddCommand: %s already defined\n", cmd_name);
552 return;
556 cmd = Hunk_Alloc (sizeof(cmd_function_t));
557 cmd->name = cmd_name;
558 cmd->function = function;
559 cmd->next = cmd_functions;
560 cmd_functions = cmd;
564 ============
565 Cmd_Exists
566 ============
568 qboolean Cmd_Exists (char *cmd_name)
570 cmd_function_t *cmd;
572 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
574 if (!Q_strcmp (cmd_name,cmd->name))
575 return true;
578 return false;
584 ============
585 Cmd_CompleteCommand
586 ============
588 char *Cmd_CompleteCommand (char *partial)
590 cmd_function_t *cmd;
591 int len;
593 len = Q_strlen(partial);
595 if (!len)
596 return NULL;
598 // check functions
599 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
600 if (!Q_strncmp (partial,cmd->name, len))
601 return cmd->name;
603 return NULL;
607 ============
608 Cmd_ExecuteString
610 A complete command line has been parsed, so try to execute it
611 FIXME: lookupnoadd the token to speed search?
612 ============
614 void Cmd_ExecuteString (char *text, cmd_source_t src)
616 cmd_function_t *cmd;
617 cmdalias_t *a;
619 cmd_source = src;
620 Cmd_TokenizeString (text);
622 // execute the command line
623 if (!Cmd_Argc())
624 return; // no tokens
626 // check functions
627 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
629 if (!Q_strcasecmp (cmd_argv[0],cmd->name))
631 cmd->function ();
632 return;
636 // check alias
637 for (a=cmd_alias ; a ; a=a->next)
639 if (!Q_strcasecmp (cmd_argv[0], a->name))
641 Cbuf_InsertText (a->value);
642 return;
646 // check cvars
647 if (!Cvar_Command ())
648 Con_Printf ("Unknown command \"%s\"\n", Cmd_Argv(0));
654 ===================
655 Cmd_ForwardToServer
657 Sends the entire command line over to the server
658 ===================
660 void Cmd_ForwardToServer (void)
662 if (cls.state != ca_connected)
664 Con_Printf ("Can't \"%s\", not connected\n", Cmd_Argv(0));
665 return;
668 if (cls.demoplayback)
669 return; // not really connected
671 MSG_WriteByte (&cls.message, clc_stringcmd);
672 if (Q_strcasecmp(Cmd_Argv(0), "cmd") != 0)
674 SZ_Print (&cls.message, Cmd_Argv(0));
675 SZ_Print (&cls.message, " ");
677 if (Cmd_Argc() > 1)
678 SZ_Print (&cls.message, Cmd_Args());
679 else
680 SZ_Print (&cls.message, "\n");
685 ================
686 Cmd_CheckParm
688 Returns the position (1 to argc-1) in the command's argument list
689 where the given parameter apears, or 0 if not present
690 ================
693 int Cmd_CheckParm (char *parm)
695 int i;
697 if (!parm)
698 Sys_Error ("Cmd_CheckParm: NULL");
700 for (i = 1; i < Cmd_Argc (); i++)
701 if (! Q_strcasecmp (parm, Cmd_Argv (i)))
702 return i;
704 return 0;