2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
cmd.c
|
|
|
|
|
|
|
|
script command processing module
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
2001-09-28 06:26:31 +00:00
|
|
|
static const char rcsid[] =
|
|
|
|
"$Id$";
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/cmd.h"
|
2001-08-22 22:03:16 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/hash.h"
|
|
|
|
#include "QF/qargs.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/sizebuf.h"
|
|
|
|
#include "QF/sys.h"
|
2001-05-30 04:34:06 +00:00
|
|
|
#include "QF/vfs.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/zone.h"
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
#include "compat.h"
|
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
typedef struct cmdalias_s {
|
|
|
|
struct cmdalias_s *next;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *name;
|
|
|
|
const char *value;
|
2001-02-21 19:35:06 +00:00
|
|
|
} cmdalias_t;
|
|
|
|
|
|
|
|
cmdalias_t *cmd_alias;
|
2001-02-22 04:46:59 +00:00
|
|
|
cmd_source_t cmd_source;
|
2001-02-21 19:35:06 +00:00
|
|
|
qboolean cmd_wait;
|
|
|
|
|
2001-10-03 21:25:43 +00:00
|
|
|
cvar_t *cmd_warncmd;
|
2001-10-27 04:34:53 +00:00
|
|
|
cvar_t *cmd_highchars;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
hashtab_t *cmd_alias_hash;
|
|
|
|
hashtab_t *cmd_hash;
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_Wait_f
|
|
|
|
|
|
|
|
Causes execution of the remainder of the command buffer to be delayed until
|
|
|
|
next frame. This allows commands like:
|
|
|
|
bind g "impulse 5 ; +attack ; wait ; -attack ; impulse 2"
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cmd_Wait_f (void)
|
|
|
|
{
|
|
|
|
cmd_wait = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
COMMAND BUFFER
|
|
|
|
*/
|
|
|
|
|
|
|
|
sizebuf_t cmd_text;
|
|
|
|
byte cmd_text_buf[8192];
|
|
|
|
|
|
|
|
void
|
|
|
|
Cbuf_Init (void)
|
|
|
|
{
|
|
|
|
cmd_text.data = cmd_text_buf;
|
|
|
|
cmd_text.maxsize = sizeof (cmd_text_buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cbuf_AddText
|
|
|
|
|
|
|
|
Adds command text at the end of the buffer
|
|
|
|
*/
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cbuf_AddText (const char *text)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
int l;
|
|
|
|
|
|
|
|
l = strlen (text);
|
|
|
|
|
2001-12-03 23:40:22 +00:00
|
|
|
if (cmd_text.cursize + l < cmd_text.maxsize) {
|
2001-12-04 03:43:47 +00:00
|
|
|
SZ_Write (&cmd_text, text, l);
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-12-03 23:40:22 +00:00
|
|
|
Sys_Printf ("Cbuf_AddText: overflow\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cbuf_InsertText
|
|
|
|
|
2002-01-12 04:34:53 +00:00
|
|
|
Adds command text to the beginning of the buffer.
|
2001-02-21 19:35:06 +00:00
|
|
|
Adds a \n to the text
|
|
|
|
*/
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cbuf_InsertText (const char *text)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
int textlen;
|
|
|
|
|
|
|
|
textlen = strlen (text);
|
|
|
|
if (cmd_text.cursize + 1 + textlen >= cmd_text.maxsize) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Cbuf_InsertText: overflow\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cmd_text.cursize) {
|
|
|
|
memcpy (cmd_text.data, text, textlen);
|
|
|
|
cmd_text.cursize = textlen;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Move up to make room for inserted text
|
|
|
|
memmove (cmd_text.data + textlen + 1, cmd_text.data, cmd_text.cursize);
|
|
|
|
cmd_text.cursize += textlen + 1;
|
|
|
|
|
|
|
|
// Insert new text
|
|
|
|
memcpy (cmd_text.data, text, textlen);
|
|
|
|
cmd_text.data[textlen] = '\n';
|
|
|
|
}
|
|
|
|
|
2002-03-03 04:42:32 +00:00
|
|
|
static const char *
|
|
|
|
extract_line (void)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *text;
|
|
|
|
int quotes;
|
2002-03-03 04:42:32 +00:00
|
|
|
static char *line;
|
|
|
|
static int line_size;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
// find a \n or ; line break
|
|
|
|
text = (char *) cmd_text.data;
|
|
|
|
quotes = 0;
|
|
|
|
for (i = 0; i < cmd_text.cursize; i++) {
|
|
|
|
if (text[i] == '"')
|
|
|
|
quotes++;
|
|
|
|
if (!(quotes & 1) && text[i] == ';')
|
|
|
|
break; // don't break if inside a quoted
|
|
|
|
// string
|
|
|
|
if (text[i] == '\n' || text[i] == '\r')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-03-03 04:42:32 +00:00
|
|
|
if (i + 1 > line_size) {
|
|
|
|
line_size = ((i + 1) + 1023) & ~1023;
|
|
|
|
line = realloc (line, line_size);
|
|
|
|
if (!line)
|
|
|
|
Sys_Error ("extract_line: memory alloc failur");
|
|
|
|
}
|
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
memcpy (line, text, i);
|
|
|
|
line[i] = '\0';
|
|
|
|
// delete the text from the command buffer and move remaining commands
|
2001-08-15 07:50:21 +00:00
|
|
|
// down this is necessary because commands (exec, alias) can insert
|
|
|
|
// data at the beginning of the text buffer
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (i == cmd_text.cursize)
|
|
|
|
cmd_text.cursize = 0;
|
|
|
|
else {
|
|
|
|
i++;
|
|
|
|
cmd_text.cursize -= i;
|
|
|
|
memcpy (text, text + i, cmd_text.cursize);
|
|
|
|
}
|
2002-03-03 04:42:32 +00:00
|
|
|
return line;
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cbuf_Execute (void)
|
|
|
|
{
|
2002-03-03 04:42:32 +00:00
|
|
|
const char *line;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
while (cmd_text.cursize) {
|
2002-03-03 04:42:32 +00:00
|
|
|
line = extract_line ();
|
2001-02-21 19:35:06 +00:00
|
|
|
// execute the command line
|
2001-09-21 04:22:46 +00:00
|
|
|
// Sys_DPrintf("+%s\n",line),
|
2001-02-22 04:46:59 +00:00
|
|
|
Cmd_ExecuteString (line, src_command);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (cmd_wait) { // skip out while text still remains
|
|
|
|
// in buffer, leaving it
|
|
|
|
// for next frame
|
|
|
|
cmd_wait = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cbuf_Execute_Sets (void)
|
|
|
|
{
|
2002-03-03 04:42:32 +00:00
|
|
|
const char *line;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
while (cmd_text.cursize) {
|
2002-03-03 04:42:32 +00:00
|
|
|
line = extract_line ();
|
2001-02-21 19:35:06 +00:00
|
|
|
// execute the command line
|
|
|
|
if (strnequal (line, "set", 3) && isspace ((int) line[3])) {
|
2001-09-21 04:22:46 +00:00
|
|
|
// Sys_DPrintf ("+%s\n",line);
|
2001-02-22 04:46:59 +00:00
|
|
|
Cmd_ExecuteString (line, src_command);
|
2001-05-17 20:05:36 +00:00
|
|
|
} else if (strnequal (line, "setrom", 6) && isspace ((int) line[6])) {
|
2001-09-21 04:22:46 +00:00
|
|
|
// Sys_DPrintf ("+%s\n",line);
|
2001-02-22 04:46:59 +00:00
|
|
|
Cmd_ExecuteString (line, src_command);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SCRIPT COMMANDS
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_StuffCmds_f
|
|
|
|
|
|
|
|
Adds command line parameters as script statements
|
|
|
|
Commands lead with a +, and continue until a - or another +
|
|
|
|
quake +prog jctest.qp +cmd amlev1
|
|
|
|
quake -nosound +cmd amlev1
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cmd_StuffCmds_f (void)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int s;
|
|
|
|
char *build, c;
|
|
|
|
|
|
|
|
s = strlen (com_cmdline);
|
|
|
|
if (!s)
|
|
|
|
return;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// pull out the commands
|
2001-02-21 19:35:06 +00:00
|
|
|
build = malloc (s + 1);
|
2001-10-24 22:50:06 +00:00
|
|
|
if (!build)
|
|
|
|
Sys_Error ("Cmd_StuffCmds_f: Memory Allocation Failure\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
build[0] = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < s - 1; i++) {
|
|
|
|
if (com_cmdline[i] == '+') {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
for (j = i; !((com_cmdline[j] == '+')
|
|
|
|
|| (com_cmdline[j] == '-'
|
|
|
|
&& (j==0 || com_cmdline[j - 1] == ' '))
|
|
|
|
|| (com_cmdline[j] == 0)); j++);
|
|
|
|
|
|
|
|
c = com_cmdline[j];
|
|
|
|
com_cmdline[j] = 0;
|
|
|
|
|
|
|
|
strncat (build, com_cmdline + i, s - strlen (build));
|
|
|
|
strncat (build, "\n", s - strlen (build));
|
|
|
|
com_cmdline[j] = c;
|
|
|
|
i = j - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-21 04:22:46 +00:00
|
|
|
// Sys_Printf("[\n%s]\n",build);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (build[0])
|
|
|
|
Cbuf_InsertText (build);
|
|
|
|
|
|
|
|
free (build);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_Exec_File (const char *path)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
char *f;
|
|
|
|
int len;
|
2001-05-30 03:21:19 +00:00
|
|
|
VFile *file;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (!path || !*path)
|
|
|
|
return;
|
|
|
|
if ((file = Qopen (path, "r")) != NULL) {
|
|
|
|
len = COM_filelength (file);
|
2001-11-14 20:16:57 +00:00
|
|
|
f = (char *) malloc (len + 1);
|
2001-02-21 19:35:06 +00:00
|
|
|
if (f) {
|
|
|
|
f[len] = 0;
|
|
|
|
Qread (file, f, len);
|
|
|
|
Qclose (file);
|
|
|
|
Cbuf_InsertText (f);
|
2001-11-14 20:16:57 +00:00
|
|
|
free (f);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cmd_Exec_f (void)
|
|
|
|
{
|
|
|
|
char *f;
|
|
|
|
int mark;
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("exec <filename> : execute a script file\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-01-12 04:34:53 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
mark = Hunk_LowMark ();
|
|
|
|
f = (char *) COM_LoadHunkFile (Cmd_Argv (1));
|
|
|
|
if (!f) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("couldn't exec %s\n", Cmd_Argv (1));
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-01-12 04:34:53 +00:00
|
|
|
Cbuf_InsertText (f);
|
|
|
|
Hunk_FreeToLowMark (mark);
|
|
|
|
|
2001-10-03 21:25:43 +00:00
|
|
|
if (!Cvar_Command () && (cmd_warncmd->int_val
|
2001-02-21 19:35:06 +00:00
|
|
|
|| (developer && developer->int_val)))
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("execing %s\n", Cmd_Argv (1));
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_Echo_f
|
|
|
|
|
|
|
|
Just prints the rest of the line to the console
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cmd_Echo_f (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 1; i < Cmd_Argc (); i++)
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("%s ", Cmd_Argv (i));
|
|
|
|
Sys_Printf ("\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_Alias_f
|
|
|
|
|
|
|
|
Creates a new command that executes a command string (possibly ; seperated)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cmd_Alias_f (void)
|
|
|
|
{
|
2001-07-06 17:45:32 +00:00
|
|
|
cmdalias_t *alias;
|
|
|
|
char *cmd;
|
2001-02-21 19:35:06 +00:00
|
|
|
int i, c;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *s;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc () == 1) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Current alias commands:\n");
|
2001-07-06 17:45:32 +00:00
|
|
|
for (alias = cmd_alias; alias; alias = alias->next)
|
2001-11-13 23:51:21 +00:00
|
|
|
Sys_Printf ("alias %s \"%s\"\n", alias->name, alias->value);
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = Cmd_Argv (1);
|
2001-02-22 00:15:03 +00:00
|
|
|
// if the alias already exists, reuse it
|
2001-07-06 17:45:32 +00:00
|
|
|
alias = (cmdalias_t*)Hash_Find (cmd_alias_hash, s);
|
|
|
|
if (alias) {
|
2001-07-15 07:04:17 +00:00
|
|
|
free ((char*)alias->value);
|
2001-07-06 17:45:32 +00:00
|
|
|
} else {
|
|
|
|
cmdalias_t **a;
|
|
|
|
|
|
|
|
alias = calloc (1, sizeof (cmdalias_t));
|
|
|
|
alias->name = strdup (s);
|
|
|
|
Hash_Add (cmd_alias_hash, alias);
|
|
|
|
for (a = &cmd_alias; *a; a = &(*a)->next)
|
|
|
|
if (strcmp ((*a)->name, alias->name) >=0)
|
|
|
|
break;
|
|
|
|
alias->next = *a;
|
|
|
|
*a = alias;
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// copy the rest of the command line
|
2001-07-10 18:25:54 +00:00
|
|
|
cmd = malloc (strlen (Cmd_Args (1)) + 2);// can never be longer
|
2001-10-24 22:50:06 +00:00
|
|
|
if (!cmd)
|
|
|
|
Sys_Error ("Cmd_Alias_f: Memory Allocation Failure\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
cmd[0] = 0; // start out with a null string
|
|
|
|
c = Cmd_Argc ();
|
|
|
|
for (i = 2; i < c; i++) {
|
2001-07-06 17:45:32 +00:00
|
|
|
strcat (cmd, Cmd_Argv (i));
|
|
|
|
if (i != c - 1)
|
|
|
|
strcat (cmd, " ");
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
2001-07-06 17:45:32 +00:00
|
|
|
alias->value = cmd;
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cmd_UnAlias_f (void)
|
|
|
|
{
|
2001-07-06 17:45:32 +00:00
|
|
|
cmdalias_t *alias;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *s;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("unalias <alias>: erase an existing alias\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = Cmd_Argv (1);
|
2001-07-06 17:45:32 +00:00
|
|
|
alias = Hash_Del (cmd_alias_hash, s);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-07-06 17:45:32 +00:00
|
|
|
if (alias) {
|
|
|
|
cmdalias_t **a;
|
|
|
|
|
|
|
|
for (a = &cmd_alias; *a != alias; a = &(*a)->next)
|
|
|
|
;
|
|
|
|
*a = alias->next;
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
free ((char*)alias->name);
|
|
|
|
free ((char*)alias->value);
|
2001-07-06 17:45:32 +00:00
|
|
|
free (alias);
|
|
|
|
} else {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Unknown alias \"%s\"\n", s);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-30 01:01:39 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
COMMAND EXECUTION
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct cmd_function_s {
|
|
|
|
struct cmd_function_s *next;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *name;
|
2001-02-21 19:35:06 +00:00
|
|
|
xcommand_t function;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *description;
|
2001-02-21 19:35:06 +00:00
|
|
|
} cmd_function_t;
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_ARGS 80
|
|
|
|
|
|
|
|
static int cmd_argc;
|
|
|
|
static char *cmd_argv[MAX_ARGS];
|
2001-07-15 07:04:17 +00:00
|
|
|
static const char *cmd_null_string = "";
|
|
|
|
static const char *cmd_args[MAX_ARGS];
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
static cmd_function_t *cmd_functions; // possible commands to execute
|
|
|
|
|
|
|
|
int
|
|
|
|
Cmd_Argc (void)
|
|
|
|
{
|
|
|
|
return cmd_argc;
|
|
|
|
}
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *
|
2001-02-21 19:35:06 +00:00
|
|
|
Cmd_Argv (int arg)
|
|
|
|
{
|
|
|
|
if (arg >= cmd_argc)
|
|
|
|
return cmd_null_string;
|
|
|
|
return cmd_argv[arg];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_Args
|
|
|
|
|
|
|
|
Returns a single string containing argv(1) to argv(argc()-1)
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *
|
2001-07-10 18:25:54 +00:00
|
|
|
Cmd_Args (int start)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
2001-07-15 07:04:17 +00:00
|
|
|
if (start >= cmd_argc || !cmd_args[start])
|
2001-02-21 19:35:06 +00:00
|
|
|
return "";
|
2001-07-10 18:25:54 +00:00
|
|
|
return cmd_args[start];
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_TokenizeString
|
|
|
|
|
|
|
|
Parses the given string into command line tokens.
|
|
|
|
*/
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_TokenizeString (const char *text)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
2001-12-03 21:06:57 +00:00
|
|
|
static char *argv_buf;
|
|
|
|
static size_t argv_buf_size;
|
2001-02-21 19:35:06 +00:00
|
|
|
int argv_idx;
|
2001-12-03 21:06:57 +00:00
|
|
|
|
2001-12-04 03:13:02 +00:00
|
|
|
if (!argv_buf_size) {
|
|
|
|
argv_buf_size = 1024; //FIXME dynamic
|
|
|
|
argv_buf = malloc (argv_buf_size);
|
2001-12-03 21:06:57 +00:00
|
|
|
if (!argv_buf)
|
2001-12-06 20:18:24 +00:00
|
|
|
Sys_Error ("Cmd_TokenizeString: could not allocate %ld bytes",
|
|
|
|
(long)argv_buf_size);
|
2001-12-03 21:06:57 +00:00
|
|
|
}
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
argv_idx = 0;
|
|
|
|
|
|
|
|
cmd_argc = 0;
|
2001-07-10 18:25:54 +00:00
|
|
|
memset (cmd_args, 0, sizeof (cmd_args));
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
while (1) {
|
2001-08-22 22:03:16 +00:00
|
|
|
// skip whitespace up to a \n
|
2001-02-21 19:35:06 +00:00
|
|
|
while (*text && *(unsigned char *) text <= ' ' && *text != '\n') {
|
|
|
|
text++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*text == '\n') { // a newline seperates commands in
|
|
|
|
// the buffer
|
|
|
|
text++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*text)
|
|
|
|
return;
|
|
|
|
|
2001-07-10 18:25:54 +00:00
|
|
|
if (cmd_argc < MAX_ARGS)
|
|
|
|
cmd_args[cmd_argc] = text;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
text = COM_Parse (text);
|
|
|
|
if (!text)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (cmd_argc < MAX_ARGS) {
|
2001-12-04 03:13:02 +00:00
|
|
|
size_t len = strlen (com_token) + 1;
|
|
|
|
|
|
|
|
if (argv_idx + len > argv_buf_size) {
|
|
|
|
Sys_Printf ("Cmd_TokenizeString: overflow\n");
|
|
|
|
return;
|
|
|
|
}
|
2001-02-21 19:35:06 +00:00
|
|
|
cmd_argv[cmd_argc] = argv_buf + argv_idx;
|
|
|
|
strcpy (cmd_argv[cmd_argc], com_token);
|
2001-12-04 03:13:02 +00:00
|
|
|
argv_idx += len;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
cmd_argc++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_AddCommand (const char *cmd_name, xcommand_t function, const char *description)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
cmd_function_t **c;
|
|
|
|
|
|
|
|
// fail if the command is a variable name
|
|
|
|
if (Cvar_FindVar (cmd_name)) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Cmd_AddCommand: %s already defined as a var\n", cmd_name);
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// fail if the command already exists
|
|
|
|
cmd = (cmd_function_t*)Hash_Find (cmd_hash, cmd_name);
|
|
|
|
if (cmd) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Cmd_AddCommand: %s already defined\n", cmd_name);
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = malloc (sizeof (cmd_function_t));
|
2001-10-24 22:50:06 +00:00
|
|
|
if (!cmd)
|
|
|
|
Sys_Error ("Cmd_AddCommand: Memory_Allocation_Failure\n");
|
2001-02-21 19:35:06 +00:00
|
|
|
cmd->name = cmd_name;
|
|
|
|
cmd->function = function;
|
|
|
|
cmd->description = description;
|
|
|
|
Hash_Add (cmd_hash, cmd);
|
|
|
|
for (c = &cmd_functions; *c; c = &(*c)->next)
|
|
|
|
if (strcmp ((*c)->name, cmd->name) >=0)
|
|
|
|
break;
|
|
|
|
cmd->next = *c;
|
|
|
|
*c = cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_Exists (const char *cmd_name)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
|
|
|
|
cmd = (cmd_function_t*)Hash_Find (cmd_hash, cmd_name);
|
|
|
|
if (cmd) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *
|
|
|
|
Cmd_CompleteCommand (const char *partial)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
2001-06-28 04:05:14 +00:00
|
|
|
cmd_function_t *cmd;
|
|
|
|
int len;
|
|
|
|
cmdalias_t *a;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
len = strlen (partial);
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return NULL;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// check for exact match
|
2001-02-21 19:35:06 +00:00
|
|
|
for (cmd = cmd_functions; cmd; cmd = cmd->next)
|
|
|
|
if (!strcasecmp (partial, cmd->name))
|
|
|
|
return cmd->name;
|
|
|
|
for (a = cmd_alias; a; a = a->next)
|
|
|
|
if (!strcasecmp (partial, a->name))
|
|
|
|
return a->name;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// check for partial match
|
2001-02-21 19:35:06 +00:00
|
|
|
for (cmd = cmd_functions; cmd; cmd = cmd->next)
|
|
|
|
if (!strncasecmp (partial, cmd->name, len))
|
|
|
|
return cmd->name;
|
|
|
|
for (a = cmd_alias; a; a = a->next)
|
|
|
|
if (!strncasecmp (partial, a->name, len))
|
|
|
|
return a->name;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-06-28 04:05:14 +00:00
|
|
|
/*
|
|
|
|
Cmd_CompleteCountPossible
|
|
|
|
|
|
|
|
New function for tab-completion system
|
|
|
|
Added by EvilTypeGuy
|
|
|
|
Thanks to Fett erich@heintz.com
|
|
|
|
Thanks to taniwha
|
|
|
|
*/
|
|
|
|
int
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_CompleteCountPossible (const char *partial)
|
2001-06-28 04:05:14 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
int len;
|
|
|
|
int h;
|
|
|
|
|
|
|
|
h = 0;
|
|
|
|
len = strlen(partial);
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Loop through the command list and count all partial matches
|
|
|
|
for (cmd = cmd_functions; cmd; cmd = cmd->next)
|
|
|
|
if (!strncasecmp(partial, cmd->name, len))
|
|
|
|
h++;
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_CompleteBuildList
|
|
|
|
|
|
|
|
New function for tab-completion system
|
|
|
|
Added by EvilTypeGuy
|
|
|
|
Thanks to Fett erich@heintz.com
|
|
|
|
Thanks to taniwha
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
const char **
|
|
|
|
Cmd_CompleteBuildList (const char *partial)
|
2001-06-28 04:05:14 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
int len = 0;
|
|
|
|
int bpos = 0;
|
|
|
|
int sizeofbuf = (Cmd_CompleteCountPossible (partial) + 1) * sizeof (char *);
|
2001-07-15 07:04:17 +00:00
|
|
|
const char **buf;
|
2001-06-28 04:05:14 +00:00
|
|
|
|
|
|
|
len = strlen(partial);
|
|
|
|
buf = malloc(sizeofbuf + sizeof (char *));
|
2001-10-24 22:50:06 +00:00
|
|
|
if (!buf)
|
|
|
|
Sys_Error ("Cmd_CompleteBuildList: Memory Allocation Failure\n");
|
2001-06-28 04:05:14 +00:00
|
|
|
// Loop through the alias list and print all matches
|
|
|
|
for (cmd = cmd_functions; cmd; cmd = cmd->next)
|
|
|
|
if (!strncasecmp(partial, cmd->name, len))
|
|
|
|
buf[bpos++] = cmd->name;
|
|
|
|
|
|
|
|
buf[bpos] = NULL;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_CompleteAlias
|
|
|
|
|
|
|
|
New function for tab-completion system
|
|
|
|
Added by EvilTypeGuy
|
|
|
|
Thanks to Fett erich@heintz.com
|
|
|
|
Thanks to taniwha
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *
|
|
|
|
Cmd_CompleteAlias (const char * partial)
|
2001-06-28 04:05:14 +00:00
|
|
|
{
|
|
|
|
cmdalias_t *alias;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = strlen(partial);
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Check functions
|
|
|
|
for (alias = cmd_alias; alias; alias = alias->next)
|
|
|
|
if (!strncasecmp(partial, alias->name, len))
|
|
|
|
return alias->name;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_CompleteAliasCountPossible
|
|
|
|
|
|
|
|
New function for tab-completion system
|
|
|
|
Added by EvilTypeGuy
|
|
|
|
Thanks to Fett erich@heintz.com
|
|
|
|
Thanks to taniwha
|
|
|
|
*/
|
|
|
|
int
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_CompleteAliasCountPossible (const char *partial)
|
2001-06-28 04:05:14 +00:00
|
|
|
{
|
|
|
|
cmdalias_t *alias;
|
|
|
|
int len;
|
|
|
|
int h;
|
|
|
|
|
|
|
|
h = 0;
|
|
|
|
|
|
|
|
len = strlen(partial);
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Loop through the command list and count all partial matches
|
|
|
|
for (alias = cmd_alias; alias; alias = alias->next)
|
|
|
|
if (!strncasecmp(partial, alias->name, len))
|
|
|
|
h++;
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_CompleteAliasBuildList
|
|
|
|
|
|
|
|
New function for tab-completion system
|
|
|
|
Added by EvilTypeGuy
|
|
|
|
Thanks to Fett erich@heintz.com
|
|
|
|
Thanks to taniwha
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
const char **
|
|
|
|
Cmd_CompleteAliasBuildList (const char *partial)
|
2001-06-28 04:05:14 +00:00
|
|
|
{
|
|
|
|
cmdalias_t *alias;
|
|
|
|
int len = 0;
|
|
|
|
int bpos = 0;
|
2001-08-22 22:03:16 +00:00
|
|
|
int sizeofbuf = (Cmd_CompleteAliasCountPossible (partial) + 1) *
|
|
|
|
sizeof (char *);
|
2001-07-15 07:04:17 +00:00
|
|
|
const char **buf;
|
2001-06-28 04:05:14 +00:00
|
|
|
|
|
|
|
len = strlen(partial);
|
|
|
|
buf = malloc(sizeofbuf + sizeof (char *));
|
2001-10-24 22:50:06 +00:00
|
|
|
if (!buf)
|
|
|
|
Sys_Error ("Cmd_CompleteAliasBuildList: Memory Allocation Failure\n");
|
2001-06-28 04:05:14 +00:00
|
|
|
// Loop through the alias list and print all matches
|
|
|
|
for (alias = cmd_alias; alias; alias = alias->next)
|
|
|
|
if (!strncasecmp(partial, alias->name, len))
|
|
|
|
buf[bpos++] = alias->name;
|
|
|
|
|
|
|
|
buf[bpos] = NULL;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
Cmd_ExpandVariables
|
|
|
|
|
|
|
|
Expand $fov-like expressions
|
|
|
|
FIXME: better handling of buffer overflows?
|
|
|
|
*/
|
|
|
|
// dest must point to a 1024-byte buffer
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_ExpandVariables (const char *data, char *dest)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
unsigned int c;
|
|
|
|
char buf[1024];
|
|
|
|
int i, len;
|
2001-10-27 04:34:53 +00:00
|
|
|
cvar_t *bestvar;
|
2001-02-21 19:35:06 +00:00
|
|
|
int quotes = 0;
|
|
|
|
|
|
|
|
len = 0;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// parse a regular word
|
2001-02-21 19:35:06 +00:00
|
|
|
while ((c = *data) != 0) {
|
|
|
|
if (c == '"')
|
|
|
|
quotes++;
|
2001-10-27 04:34:53 +00:00
|
|
|
if (c == '$' && *(data+1) == '{' && !(quotes & 1)) {
|
|
|
|
data+=2;
|
|
|
|
// Copy the text between the braces to a temp buffer
|
2001-02-21 19:35:06 +00:00
|
|
|
i = 0;
|
|
|
|
buf[0] = 0;
|
|
|
|
bestvar = NULL;
|
2001-10-27 04:34:53 +00:00
|
|
|
while ((c = *data) != 0 && c != '}') {
|
2001-02-21 19:35:06 +00:00
|
|
|
data++;
|
|
|
|
buf[i++] = c;
|
|
|
|
buf[i] = 0;
|
|
|
|
if (i >= sizeof (buf) - 1)
|
|
|
|
break;
|
|
|
|
}
|
2001-10-27 04:34:53 +00:00
|
|
|
data++;
|
|
|
|
bestvar = Cvar_FindVar(buf);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (bestvar) {
|
|
|
|
// check buffer size
|
|
|
|
if (len + strlen (bestvar->string) >= 1024 - 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
strcpy (&dest[len], bestvar->string);
|
|
|
|
len += strlen (bestvar->string);
|
|
|
|
i = strlen (bestvar->name);
|
|
|
|
while (buf[i])
|
|
|
|
dest[len++] = buf[i++];
|
|
|
|
} else {
|
|
|
|
// no matching cvar name was found
|
|
|
|
dest[len++] = '$';
|
2001-10-27 04:34:53 +00:00
|
|
|
dest[len++] = '{';
|
|
|
|
if (len + strlen (buf) >= 1024)
|
2001-02-21 19:35:06 +00:00
|
|
|
break;
|
|
|
|
strcpy (&dest[len], buf);
|
|
|
|
len += strlen (buf);
|
2001-10-27 04:34:53 +00:00
|
|
|
dest[len++] = '}';
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dest[len] = c;
|
|
|
|
data++;
|
|
|
|
len++;
|
|
|
|
if (len >= 1024 - 1)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
dest[len] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_ExecuteString
|
|
|
|
|
|
|
|
A complete command line has been parsed, so try to execute it
|
|
|
|
*/
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_ExecuteString (const char *text, cmd_source_t src)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
cmdalias_t *a;
|
|
|
|
char buf[1024];
|
|
|
|
|
2001-02-22 04:46:59 +00:00
|
|
|
cmd_source = src;
|
|
|
|
|
2001-10-27 04:34:53 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
#if 0
|
|
|
|
Cmd_TokenizeString (text);
|
|
|
|
#else
|
2001-10-27 04:34:53 +00:00
|
|
|
if (cmd_highchars->value) {
|
|
|
|
char buf2[1024];
|
|
|
|
|
|
|
|
strncpy(buf, text, sizeof(buf) - 1);
|
2001-12-05 09:24:19 +00:00
|
|
|
buf[sizeof(buf) - 1] = 0;
|
2001-10-27 04:34:53 +00:00
|
|
|
Cmd_ParseSpecial (buf);
|
|
|
|
Cmd_ExpandVariables (buf, buf2);
|
|
|
|
Cmd_TokenizeString (buf2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Cmd_ExpandVariables (text, buf);
|
|
|
|
Cmd_TokenizeString (buf);
|
|
|
|
}
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// execute the command line
|
2001-02-21 19:35:06 +00:00
|
|
|
if (!Cmd_Argc ())
|
|
|
|
return; // no tokens
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// check functions
|
2001-02-21 19:35:06 +00:00
|
|
|
cmd = (cmd_function_t*)Hash_Find (cmd_hash, cmd_argv[0]);
|
|
|
|
if (cmd) {
|
2001-03-31 00:35:08 +00:00
|
|
|
if (cmd->function)
|
2001-02-21 19:35:06 +00:00
|
|
|
cmd->function ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// Tonik: check cvars
|
2001-02-21 19:35:06 +00:00
|
|
|
if (Cvar_Command ())
|
|
|
|
return;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// check alias
|
2001-02-21 19:35:06 +00:00
|
|
|
a = (cmdalias_t*)Hash_Find (cmd_alias_hash, cmd_argv[0]);
|
|
|
|
if (a) {
|
2001-11-13 23:51:21 +00:00
|
|
|
Cbuf_InsertText ("\n");
|
2001-11-20 20:07:15 +00:00
|
|
|
Cbuf_InsertText (a->value);
|
2001-02-21 19:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-10-03 21:25:43 +00:00
|
|
|
if (cmd_warncmd->int_val || developer->int_val)
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("Unknown command \"%s\"\n", Cmd_Argv (0));
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_CheckParm
|
|
|
|
|
|
|
|
Returns the position (1 to argc-1) in the command's argument list
|
|
|
|
where the given parameter apears, or 0 if not present
|
|
|
|
*/
|
|
|
|
int
|
2001-07-15 07:04:17 +00:00
|
|
|
Cmd_CheckParm (const char *parm)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!parm)
|
|
|
|
Sys_Error ("Cmd_CheckParm: NULL");
|
|
|
|
|
|
|
|
for (i = 1; i < Cmd_Argc (); i++)
|
|
|
|
if (!strcasecmp (parm, Cmd_Argv (i)))
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cmd_CmdList_f (void)
|
|
|
|
{
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
int i;
|
|
|
|
int show_description = 0;
|
|
|
|
|
|
|
|
if (Cmd_Argc() > 1)
|
|
|
|
show_description = 1;
|
|
|
|
for (cmd = cmd_functions, i = 0; cmd; cmd = cmd->next, i++) {
|
|
|
|
if (show_description) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("%-20s :\n%s\n", cmd->name, cmd->description);
|
2001-02-21 19:35:06 +00:00
|
|
|
} else {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("%s\n", cmd->name);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("------------\n%d commands\n", i);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
2001-07-30 01:01:39 +00:00
|
|
|
void
|
|
|
|
Cmd_Help_f (void)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
cvar_t *var;
|
|
|
|
cmd_function_t *cmd;
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("usage: help <cvar/command>\n");
|
2001-07-30 01:01:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = Cmd_Argv (1);
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
for (cmd = cmd_functions; cmd && strcasecmp (name, cmd->name);
|
|
|
|
cmd = cmd->next)
|
2001-07-30 01:01:39 +00:00
|
|
|
;
|
|
|
|
if (cmd) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("%s\n", cmd->description);
|
2001-07-30 01:01:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var = Cvar_FindVar (name);
|
|
|
|
if (!var)
|
|
|
|
var = Cvar_FindAlias (name);
|
|
|
|
if (var) {
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("%s\n", var->description);
|
2001-07-30 01:01:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-09-21 04:22:46 +00:00
|
|
|
Sys_Printf ("variable/command not found\n");
|
2001-07-30 01:01:39 +00:00
|
|
|
}
|
|
|
|
|
2001-11-10 01:13:29 +00:00
|
|
|
void
|
|
|
|
Cmd_Hash_Stats_f (void)
|
|
|
|
{
|
|
|
|
Sys_Printf ("alias hash table:\n");
|
|
|
|
Hash_Stats (cmd_alias_hash);
|
|
|
|
Sys_Printf ("command hash table:\n");
|
|
|
|
Hash_Stats (cmd_hash);
|
|
|
|
}
|
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
static void
|
2001-03-05 05:11:26 +00:00
|
|
|
cmd_alias_free (void *_a, void *unused)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmdalias_t *a = (cmdalias_t*)_a;
|
2001-07-15 07:04:17 +00:00
|
|
|
free ((char*)a->name);
|
|
|
|
free ((char*)a->value);
|
2001-02-21 19:35:06 +00:00
|
|
|
free (a);
|
|
|
|
}
|
|
|
|
|
2001-06-04 04:52:14 +00:00
|
|
|
static const char *
|
2001-03-05 05:11:26 +00:00
|
|
|
cmd_alias_get_key (void *_a, void *unused)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmdalias_t *a = (cmdalias_t*)_a;
|
|
|
|
return a->name;
|
|
|
|
}
|
|
|
|
|
2001-06-04 04:52:14 +00:00
|
|
|
static const char *
|
2001-03-05 05:11:26 +00:00
|
|
|
cmd_get_key (void *c, void *unused)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
|
|
|
cmd_function_t *cmd = (cmd_function_t*)c;
|
|
|
|
return cmd->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Cmd_Init_Hash
|
|
|
|
|
|
|
|
initialise the command and alias hash tables
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
Cmd_Init_Hash (void)
|
|
|
|
{
|
2001-11-12 03:47:30 +00:00
|
|
|
cmd_hash = Hash_NewTable (1021, cmd_get_key, 0, 0);
|
|
|
|
cmd_alias_hash = Hash_NewTable (1021, cmd_alias_get_key, cmd_alias_free,
|
2001-08-22 22:03:16 +00:00
|
|
|
0);
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cmd_Init (void)
|
|
|
|
{
|
2001-08-22 22:03:16 +00:00
|
|
|
// register our commands
|
|
|
|
Cmd_AddCommand ("stuffcmds", Cmd_StuffCmds_f, "Execute the commands given "
|
|
|
|
"at startup again");
|
2001-02-21 19:35:06 +00:00
|
|
|
Cmd_AddCommand ("exec", Cmd_Exec_f, "Execute a script file");
|
|
|
|
Cmd_AddCommand ("echo", Cmd_Echo_f, "Print text to console");
|
2001-08-22 22:03:16 +00:00
|
|
|
Cmd_AddCommand ("alias", Cmd_Alias_f, "Used to create a reference to a "
|
|
|
|
"command or list of commands.\n"
|
|
|
|
"When used without parameters, displays all current "
|
|
|
|
"aliases.\n"
|
|
|
|
"Note: Enclose multiple commands within quotes and "
|
|
|
|
"seperate each command with a semi-colon.");
|
2001-02-21 19:35:06 +00:00
|
|
|
Cmd_AddCommand ("unalias", Cmd_UnAlias_f, "Remove the selected alias");
|
|
|
|
Cmd_AddCommand ("wait", Cmd_Wait_f, "Wait a game tic");
|
|
|
|
Cmd_AddCommand ("cmdlist", Cmd_CmdList_f, "List all commands");
|
2001-08-22 22:03:16 +00:00
|
|
|
Cmd_AddCommand ("help", Cmd_Help_f, "Display help for a command or "
|
|
|
|
"variable");
|
2001-11-12 03:47:30 +00:00
|
|
|
//Cmd_AddCommand ("cmd_hash_stats", Cmd_Hash_Stats_f, "Display statistics "
|
|
|
|
// "alias and command hash tables");
|
2001-10-15 22:41:42 +00:00
|
|
|
cmd_warncmd = Cvar_Get ("cmd_warncmd", "0", CVAR_NONE, NULL, "Toggles the "
|
2001-10-27 04:34:53 +00:00
|
|
|
"display of error messages for unknown commands");
|
|
|
|
cmd_highchars = Cvar_Get ("cmd_highchars", "0", CVAR_NONE, NULL, "Toggles availability of special "
|
|
|
|
"characters by proceeding letters by $ or #. See "
|
|
|
|
"the documentation for details.");
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
|
|
|
|
2001-12-03 21:06:57 +00:00
|
|
|
char *com_token;
|
|
|
|
static size_t com_token_size;
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
write_com_token (size_t pos, char c)
|
|
|
|
{
|
|
|
|
if (pos + 1 <= com_token_size) {
|
|
|
|
write:
|
|
|
|
com_token[pos] = c;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
com_token_size = (pos + 1024) & ~1023;
|
|
|
|
com_token = realloc (com_token, com_token_size);
|
|
|
|
if (!com_token)
|
2001-12-06 20:18:24 +00:00
|
|
|
Sys_Error ("COM_Parse: could not allocate %ld bytes",
|
|
|
|
(long)com_token_size);
|
2001-12-03 21:06:57 +00:00
|
|
|
goto write;
|
|
|
|
}
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
COM_Parse
|
|
|
|
|
|
|
|
Parse a token out of a string
|
|
|
|
*/
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *
|
2001-12-03 21:06:57 +00:00
|
|
|
COM_Parse (const char *_data)
|
2001-02-21 19:35:06 +00:00
|
|
|
{
|
2001-12-03 21:06:57 +00:00
|
|
|
const byte *data = (const byte *)_data;
|
2001-02-21 19:35:06 +00:00
|
|
|
unsigned int c;
|
2001-12-03 21:06:57 +00:00
|
|
|
size_t len = 0;
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-12-03 21:06:57 +00:00
|
|
|
write_com_token (len, 0);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
return NULL;
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// skip whitespace
|
|
|
|
skipwhite:
|
2001-02-21 19:35:06 +00:00
|
|
|
while ((c = *data) <= ' ') {
|
|
|
|
if (c == 0)
|
|
|
|
return NULL; // end of file;
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// skip // comments
|
2001-02-21 19:35:06 +00:00
|
|
|
if (c == '/' && data[1] == '/') {
|
|
|
|
while (*data && *data != '\n')
|
|
|
|
data++;
|
|
|
|
goto skipwhite;
|
|
|
|
}
|
|
|
|
|
2001-08-22 22:03:16 +00:00
|
|
|
// handle quoted strings specially
|
2001-02-21 19:35:06 +00:00
|
|
|
if (c == '\"') {
|
|
|
|
data++;
|
|
|
|
while (1) {
|
|
|
|
c = *data++;
|
|
|
|
if (c == '\"' || !c) {
|
2001-12-03 21:06:57 +00:00
|
|
|
write_com_token (len, 0);
|
|
|
|
return c ? data : data - 1;
|
2001-02-21 19:35:06 +00:00
|
|
|
}
|
2001-12-03 21:06:57 +00:00
|
|
|
write_com_token (len, c);
|
2001-02-21 19:35:06 +00:00
|
|
|
len++;
|
|
|
|
}
|
|
|
|
}
|
2001-08-22 22:03:16 +00:00
|
|
|
// parse a regular word
|
2001-02-21 19:35:06 +00:00
|
|
|
do {
|
2001-12-03 21:06:57 +00:00
|
|
|
write_com_token (len, c);
|
2001-02-21 19:35:06 +00:00
|
|
|
data++;
|
|
|
|
len++;
|
|
|
|
|
|
|
|
c = *data;
|
|
|
|
} while (c > 32);
|
|
|
|
|
2001-12-03 21:06:57 +00:00
|
|
|
write_com_token (len, 0);
|
2001-02-21 19:35:06 +00:00
|
|
|
return data;
|
|
|
|
}
|
2001-10-27 04:34:53 +00:00
|
|
|
|
|
|
|
struct stable_s {char a, b;} stable1[] =
|
|
|
|
{
|
2001-11-05 07:23:51 +00:00
|
|
|
{'\\',0x0D}, // Fake message
|
|
|
|
{'[', 0x90}, // Gold braces
|
2001-10-27 04:34:53 +00:00
|
|
|
{']', 0x91},
|
2001-11-05 07:23:51 +00:00
|
|
|
{'(', 0x80}, // Scroll bar characters
|
2001-10-27 04:34:53 +00:00
|
|
|
{'=', 0x81},
|
|
|
|
{')', 0x82},
|
|
|
|
{'|', 0x83},
|
2001-11-05 07:23:51 +00:00
|
|
|
{'<', 0x9D}, // Vertical line characters
|
2001-10-27 04:34:53 +00:00
|
|
|
{'-', 0X9E},
|
|
|
|
{'>', 0x9F},
|
2001-11-05 07:23:51 +00:00
|
|
|
{'.', 0x8E}, // Gold dot
|
|
|
|
{',', 0x0E}, // White dot
|
|
|
|
{'G', 0x86}, // Ocrana leds from ocrana.wad
|
|
|
|
{'R', 0x87},
|
|
|
|
{'Y', 0x88},
|
|
|
|
{'B', 0x89},
|
|
|
|
{'a', 0x7F}, // White arrow
|
|
|
|
{'A', 0x8D}, // Brown arrow
|
|
|
|
{'0', 0x92}, // Gold numbers
|
2001-10-27 04:34:53 +00:00
|
|
|
{'1', 0x93},
|
|
|
|
{'2', 0x94},
|
|
|
|
{'3', 0x95},
|
|
|
|
{'4', 0x96},
|
|
|
|
{'5', 0x97},
|
|
|
|
{'6', 0x98},
|
|
|
|
{'7', 0x99},
|
|
|
|
{'8', 0x9A},
|
|
|
|
{'9', 0x9B},
|
2001-11-05 07:23:51 +00:00
|
|
|
{'n', '\n'}, // Newline!
|
2001-10-27 04:34:53 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void Cmd_ParseSpecial (char *s)
|
|
|
|
{
|
|
|
|
char *d;
|
|
|
|
int i, i2;
|
|
|
|
char c = 0;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
d = s;
|
|
|
|
|
|
|
|
while (*s) {
|
|
|
|
if ((*s == '\\') && ((s[1] == '#') || (s[1] == '$') || (s[1] == '\\'))) {
|
|
|
|
d[i++] = s[1];
|
|
|
|
s+=2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((*s == '$') && (s[1] != '\0')) {
|
|
|
|
for (i2 = 0; stable1[i2].a; i2++) {
|
|
|
|
if (s[1] == stable1[i2].a) {
|
|
|
|
c = stable1[i2].b;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (c) {
|
|
|
|
d[i++] = c;
|
|
|
|
s += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((*s == '#') && (s[1] != '\0')) {
|
|
|
|
d[i++] = s[1] ^ 128;
|
|
|
|
s += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
d[i++] = *s++;
|
|
|
|
}
|
|
|
|
d[i] = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|