2002-08-03 06:04:00 +00:00
|
|
|
/*
|
|
|
|
#FILENAME#
|
|
|
|
|
|
|
|
#DESCRIPTION#
|
|
|
|
|
|
|
|
Copyright (C) 2002 #AUTHOR#
|
|
|
|
|
|
|
|
Author: #AUTHOR#
|
|
|
|
Date: #DATE#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2002-08-08 09:20:00 +00:00
|
|
|
$Id$
|
2002-08-03 06:04:00 +00:00
|
|
|
*/
|
|
|
|
|
2002-10-16 04:59:34 +00:00
|
|
|
#include "QF/cbuf.h" // For cbuf_active
|
2003-02-16 19:46:34 +00:00
|
|
|
#include "QF/gib_buffer.h" // For GIB_DATA()
|
2002-10-25 06:33:16 +00:00
|
|
|
#include "QF/dstring.h" // For ->str
|
2002-10-16 04:59:34 +00:00
|
|
|
|
2002-08-03 06:04:00 +00:00
|
|
|
typedef struct gib_builtin_s {
|
|
|
|
struct dstring_s *name;
|
|
|
|
void (*func) (void);
|
|
|
|
} gib_builtin_t;
|
|
|
|
|
2003-01-28 21:16:21 +00:00
|
|
|
extern char gib_null_string[];
|
|
|
|
|
2002-10-16 04:59:34 +00:00
|
|
|
#define GIB_Argc() (cbuf_active->args->argc)
|
2003-01-28 21:16:21 +00:00
|
|
|
#define GIB_Argv(x) ((x) < cbuf_active->args->argc ? cbuf_active->args->argv[(x)]->str : gib_null_string)
|
|
|
|
#define GIB_Args(x) ((x) < cbuf_active->args->argc ? cbuf_active->args->args[(x)] : gib_null_string)
|
2002-10-16 04:59:34 +00:00
|
|
|
#define GIB_Argd(x) ((x) < cbuf_active->args->argc ? cbuf_active->args->argv[(x)] : NULL)
|
2003-01-28 21:16:21 +00:00
|
|
|
#define GIB_Argm(x) ((x) < cbuf_active->args->argc ? (gib_tree_t *)cbuf_active->args->argm[(x)] : NULL)
|
2002-10-16 04:59:34 +00:00
|
|
|
|
2003-02-14 08:06:01 +00:00
|
|
|
#define GIB_USAGE(x) (GIB_Error ("syntax", "%s: invalid syntax\nusage: %s %s", GIB_Argv(0), GIB_Argv(0), (x)))
|
|
|
|
|
|
|
|
#define GIB_CanReturn() (GIB_DATA(cbuf_active)->waitret)
|
2002-11-16 20:56:04 +00:00
|
|
|
|
2002-08-24 05:14:46 +00:00
|
|
|
void GIB_Arg_Strip_Delim (unsigned int arg);
|
2002-12-13 23:36:05 +00:00
|
|
|
dstring_t *GIB_Return (const char *str);
|
2003-02-14 08:06:01 +00:00
|
|
|
void GIB_Error (const char *type, const char *fmt, ...);
|
2003-01-28 21:16:21 +00:00
|
|
|
void GIB_Builtin_Add (const char *name, void (*func) (void));
|
2002-08-03 06:04:00 +00:00
|
|
|
gib_builtin_t *GIB_Builtin_Find (const char *name);
|
2002-11-14 05:28:54 +00:00
|
|
|
void GIB_Builtin_Init (qboolean sandbox);
|