2009-06-28 18:02:02 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 1999-2005 Id Software, Inc.
|
|
|
|
|
|
|
|
This file is part of Quake III Arena source code.
|
|
|
|
|
|
|
|
Quake III Arena source code 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.
|
|
|
|
|
|
|
|
Quake III Arena source code 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 Quake III Arena source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* name: l_libvar.h
|
|
|
|
*
|
|
|
|
* desc: botlib vars
|
|
|
|
*
|
|
|
|
* $Archive: /source/code/botlib/l_libvar.h $
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
//library variable
|
|
|
|
typedef struct libvar_s
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
char *string;
|
|
|
|
int flags;
|
|
|
|
qboolean modified; // set each time the cvar is changed
|
|
|
|
float value;
|
|
|
|
struct libvar_s *next;
|
|
|
|
} libvar_t;
|
|
|
|
|
|
|
|
//removes all library variables
|
|
|
|
void LibVarDeAllocAll(void);
|
|
|
|
//gets the library variable with the given name
|
2019-01-05 02:16:41 +00:00
|
|
|
libvar_t *LibVarGet(const char *var_name);
|
2009-06-28 18:02:02 +00:00
|
|
|
//gets the string of the library variable with the given name
|
2019-01-05 02:16:41 +00:00
|
|
|
char *LibVarGetString(const char *var_name);
|
2009-06-28 18:02:02 +00:00
|
|
|
//gets the value of the library variable with the given name
|
2019-01-05 02:16:41 +00:00
|
|
|
float LibVarGetValue(const char *var_name);
|
2009-06-28 18:02:02 +00:00
|
|
|
//creates the library variable if not existing already and returns it
|
2019-01-05 02:16:41 +00:00
|
|
|
libvar_t *LibVar(const char *var_name, const char *value);
|
2009-06-28 18:02:02 +00:00
|
|
|
//creates the library variable if not existing already and returns the value
|
2019-01-05 02:16:41 +00:00
|
|
|
float LibVarValue(const char *var_name, const char *value);
|
2009-06-28 18:02:02 +00:00
|
|
|
//creates the library variable if not existing already and returns the value string
|
2019-01-05 02:16:41 +00:00
|
|
|
char *LibVarString(const char *var_name, const char *value);
|
2009-06-28 18:02:02 +00:00
|
|
|
//sets the library variable
|
2019-01-05 02:16:41 +00:00
|
|
|
void LibVarSet(const char *var_name, const char *value);
|
2009-06-28 18:02:02 +00:00
|
|
|
//returns true if the library variable has been modified
|
2019-01-05 02:16:41 +00:00
|
|
|
qboolean LibVarChanged(const char *var_name);
|
2009-06-28 18:02:02 +00:00
|
|
|
//sets the library variable to unmodified
|
2019-01-05 02:16:41 +00:00
|
|
|
void LibVarSetNotModified(const char *var_name);
|
2009-06-28 18:02:02 +00:00
|
|
|
|