2010-02-15 23:26:55 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-2001 Id Software, Inc.
|
|
|
|
Copyright (C) 2002-2009 John Fitzgibbons and others
|
2014-09-22 08:55:46 +00:00
|
|
|
Copyright (C) 2010-2014 QuakeSpasm developers
|
2010-02-15 23:26:55 +00:00
|
|
|
|
|
|
|
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 the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
bspfile.h, cdaudio.h, client.h, cmd.h, common.h, console.h, crc.h, cvar.h,
d_ifacea.h, draw.h, gl_texmgr.h, glquake.h, image.h, input.h, keys.h, mathlib.h,
menu.h, modelgen.h, net.h, net_dgrm.h, net_loop.h, net_sdlnet.h, net_udp.h,
net_wins.h, platform.h, pr_comp.h, progdefs.h, progs.h, protocol.h, quakedef.h,
render.h, resource.h, sbar.h, screen.h, server.h, sound.h, spritegn.h, sys.h,
vid.h, view.h, wad.h, world.h, zone.h: added include guards to the headers.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@84 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-21 00:01:08 +00:00
|
|
|
|
|
|
|
#ifndef __CVAR_H__
|
|
|
|
#define __CVAR_H__
|
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
/*
|
2011-12-29 12:28:21 +00:00
|
|
|
cvar_t variables are used to hold scalar or string variables that can
|
|
|
|
be changed or displayed at the console or prog code as well as accessed
|
|
|
|
directly in C code.
|
2010-02-15 23:26:55 +00:00
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
it is sufficient to initialize a cvar_t with just the first two fields,
|
|
|
|
or you can add a ,true flag for variables that you want saved to the
|
|
|
|
configuration file when the game is quit:
|
2010-02-15 23:26:55 +00:00
|
|
|
|
|
|
|
cvar_t r_draworder = {"r_draworder","1"};
|
|
|
|
cvar_t scr_screensize = {"screensize","1",true};
|
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
Cvars must be registered before use, or they will have a 0 value instead
|
|
|
|
of the float interpretation of the string.
|
|
|
|
Generally, all cvar_t declarations should be registered in the apropriate
|
|
|
|
init function before any console commands are executed:
|
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
Cvar_RegisterVariable (&host_framerate);
|
|
|
|
|
|
|
|
|
|
|
|
C code usually just references a cvar in place:
|
|
|
|
if ( r_draworder.value )
|
|
|
|
|
|
|
|
It could optionally ask for the value to be looked up for a string name:
|
|
|
|
if (Cvar_VariableValue ("r_draworder"))
|
|
|
|
|
|
|
|
Interpreted prog code can access cvars with the cvar(name) or
|
|
|
|
cvar_set (name, value) internal functions:
|
|
|
|
teamplay = cvar("teamplay");
|
|
|
|
cvar_set ("registered", "1");
|
|
|
|
|
|
|
|
The user can access cvars from the console in two ways:
|
2011-12-29 12:28:21 +00:00
|
|
|
r_draworder prints the current value
|
2010-02-15 23:26:55 +00:00
|
|
|
r_draworder 0 sets the current value to 0
|
2011-12-29 12:28:21 +00:00
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
Cvars are restricted from having the same names as commands to keep this
|
|
|
|
interface from being ambiguous.
|
2011-12-29 12:28:21 +00:00
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-17 02:12:53 +00:00
|
|
|
#define CVAR_NONE 0
|
2011-12-28 22:01:33 +00:00
|
|
|
#define CVAR_ARCHIVE (1U << 0) // if set, causes it to be saved to config
|
2017-09-17 02:12:53 +00:00
|
|
|
#define CVAR_NOTIFY (1U << 1) // changes will be broadcasted to all players (q1)
|
2011-12-29 12:28:21 +00:00
|
|
|
#define CVAR_SERVERINFO (1U << 2) // added to serverinfo will be sent to clients (q1/net_dgrm.c and qwsv)
|
2011-12-28 22:01:33 +00:00
|
|
|
#define CVAR_USERINFO (1U << 3) // added to userinfo, will be sent to server (qwcl)
|
|
|
|
#define CVAR_CHANGED (1U << 4)
|
2017-09-17 02:12:53 +00:00
|
|
|
#define CVAR_ROM (1U << 6)
|
|
|
|
#define CVAR_LOCKED (1U << 8) // locked temporarily
|
2011-12-28 22:01:33 +00:00
|
|
|
#define CVAR_REGISTERED (1U << 10) // the var is added to the list of variables
|
|
|
|
#define CVAR_CALLBACK (1U << 16) // var has a callback
|
2017-09-17 02:12:53 +00:00
|
|
|
#define CVAR_USERDEFINED (1U << 17) // cvar was created by the user/mod, and needs to be saved a bit differently.
|
|
|
|
#define CVAR_AUTOCVAR (1U << 18) // cvar changes need to feed back to qc global changes.
|
|
|
|
#define CVAR_SETA (1U << 19) // cvar will be saved with seta.
|
2011-12-28 22:01:33 +00:00
|
|
|
|
|
|
|
|
2011-12-24 14:04:01 +00:00
|
|
|
typedef void (*cvarcallback_t) (struct cvar_s *);
|
host_cmd.c, console.c, gl_draw.c, image.c, gl_model.c, r_sprite.c, cl_parse.c,
gl_warp.c, host.c, gl_mesh.c, gl_sky.c, gl_texmgr.c, cvar.c, sv_main.c, cvar.h,
gl_screen.c, r_brush.c, gl_vidsdl.c, zone.c, cl_main.c, cmd.c, snd_dma.c,
snd_mem.c, common.c, sv_phys.c: Added explicit casts to eliminate -Wc++-compat
warnings.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@170 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-05-31 07:42:36 +00:00
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
typedef struct cvar_s
|
|
|
|
{
|
2010-08-29 02:22:55 +00:00
|
|
|
const char *name;
|
|
|
|
const char *string;
|
2011-12-28 22:01:33 +00:00
|
|
|
unsigned int flags;
|
|
|
|
float value;
|
2010-08-29 02:22:55 +00:00
|
|
|
const char *default_string; //johnfitz -- remember defaults for reset function
|
2011-12-29 12:28:21 +00:00
|
|
|
cvarcallback_t callback;
|
|
|
|
struct cvar_s *next;
|
2010-02-15 23:26:55 +00:00
|
|
|
} cvar_t;
|
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
void Cvar_RegisterVariable (cvar_t *variable);
|
2020-09-02 08:43:25 +00:00
|
|
|
void Cvar_RegisterAlias (cvar_t *variable, const char *altname);
|
2011-12-29 12:28:21 +00:00
|
|
|
// registers a cvar that already has the name, string, and optionally
|
|
|
|
// the archive elements set.
|
|
|
|
|
2017-09-17 02:12:53 +00:00
|
|
|
cvar_t *Cvar_Create (const char *name, const char *value);
|
|
|
|
//creates+registers a cvar, otherwise just returns it.
|
|
|
|
|
2011-12-28 22:01:33 +00:00
|
|
|
void Cvar_SetCallback (cvar_t *var, cvarcallback_t func);
|
|
|
|
// set a callback function to the var
|
|
|
|
|
|
|
|
void Cvar_Set (const char *var_name, const char *value);
|
2010-02-15 23:26:55 +00:00
|
|
|
// equivelant to "<name> <variable>" typed at the console
|
|
|
|
|
2010-08-29 02:22:55 +00:00
|
|
|
void Cvar_SetValue (const char *var_name, const float value);
|
2010-02-15 23:26:55 +00:00
|
|
|
// expands value to a string and calls Cvar_Set
|
|
|
|
|
2011-12-28 22:01:33 +00:00
|
|
|
void Cvar_SetROM (const char *var_name, const char *value);
|
|
|
|
void Cvar_SetValueROM (const char *var_name, const float value);
|
|
|
|
// sets a CVAR_ROM variable from within the engine
|
|
|
|
|
2011-12-29 09:37:28 +00:00
|
|
|
void Cvar_SetQuick (cvar_t *var, const char *value);
|
|
|
|
void Cvar_SetValueQuick (cvar_t *var, const float value);
|
|
|
|
// these two accept a cvar pointer instead of a var name,
|
|
|
|
// but are otherwise identical to the "non-Quick" versions.
|
|
|
|
// the cvar MUST be registered.
|
|
|
|
|
2010-08-29 02:22:55 +00:00
|
|
|
float Cvar_VariableValue (const char *var_name);
|
2010-02-15 23:26:55 +00:00
|
|
|
// returns 0 if not defined or non numeric
|
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
const char *Cvar_VariableString (const char *var_name);
|
2010-02-15 23:26:55 +00:00
|
|
|
// returns an empty string if not defined
|
|
|
|
|
|
|
|
qboolean Cvar_Command (void);
|
|
|
|
// called by Cmd_ExecuteString when Cmd_Argv(0) doesn't match a known
|
|
|
|
// command. Returns true if the command was a variable reference that
|
|
|
|
// was handled. (print or change)
|
|
|
|
|
2011-12-28 22:01:33 +00:00
|
|
|
void Cvar_WriteVariables (FILE *f);
|
2010-02-15 23:26:55 +00:00
|
|
|
// Writes lines containing "set variable value" for all variables
|
2011-12-29 12:28:21 +00:00
|
|
|
// with the CVAR_ARCHIVE flag set
|
2010-02-15 23:26:55 +00:00
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
cvar_t *Cvar_FindVar (const char *var_name);
|
|
|
|
cvar_t *Cvar_FindVarAfter (const char *prev_name, unsigned int with_flags);
|
2010-02-15 23:26:55 +00:00
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
void Cvar_LockVar (const char *var_name);
|
|
|
|
void Cvar_UnlockVar (const char *var_name);
|
|
|
|
void Cvar_UnlockAll (void);
|
chase.c, cl_input.c, cl_parse.c, client.h, common.c, common.h, console.h,
cvar.h, draw.h, gl_draw.c, gl_fog.c, gl_mesh.c, gl_model.c, gl_model.h,
gl_rmain.c, gl_rmisc.c, gl_screen.c, gl_sky.c, gl_texmgr.c, glquake.h,
host.c, keys.c, keys.h, main.c, menu.c, menu.h, pr_cmds.c, quakedef.h,
r_alias.c, r_brush.c, r_part.c, r_sprite.c, r_world.c, sbar.c, sbar.h,
screen.h, snd_dma.c, snd_mem.c, snd_mix.c, sv_main.c, sys_sdl.c, vid.h,
view.h, world.c, world.h: Loads of warning fixes about missing function
prototypes, missing parens around &, missing braces leading to ambiguous
else statements and unused and uninitialized variables. There are still a
couple of unitialised variables here and there, but not much. The warnings
about strict aliasing violations need taking care of.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@21 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-16 12:01:07 +00:00
|
|
|
|
2011-12-29 12:28:21 +00:00
|
|
|
void Cvar_Init (void);
|
|
|
|
|
|
|
|
const char *Cvar_CompleteVariable (const char *partial);
|
|
|
|
// attempts to match a partial variable name for command line completion
|
|
|
|
// returns NULL if nothing fits
|
chase.c, cl_input.c, cl_parse.c, client.h, common.c, common.h, console.h,
cvar.h, draw.h, gl_draw.c, gl_fog.c, gl_mesh.c, gl_model.c, gl_model.h,
gl_rmain.c, gl_rmisc.c, gl_screen.c, gl_sky.c, gl_texmgr.c, glquake.h,
host.c, keys.c, keys.h, main.c, menu.c, menu.h, pr_cmds.c, quakedef.h,
r_alias.c, r_brush.c, r_part.c, r_sprite.c, r_world.c, sbar.c, sbar.h,
screen.h, snd_dma.c, snd_mem.c, snd_mix.c, sv_main.c, sys_sdl.c, vid.h,
view.h, world.c, world.h: Loads of warning fixes about missing function
prototypes, missing parens around &, missing braces leading to ambiguous
else statements and unused and uninitialized variables. There are still a
couple of unitialised variables here and there, but not much. The warnings
about strict aliasing violations need taking care of.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@21 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-16 12:01:07 +00:00
|
|
|
|
bspfile.h, cdaudio.h, client.h, cmd.h, common.h, console.h, crc.h, cvar.h,
d_ifacea.h, draw.h, gl_texmgr.h, glquake.h, image.h, input.h, keys.h, mathlib.h,
menu.h, modelgen.h, net.h, net_dgrm.h, net_loop.h, net_sdlnet.h, net_udp.h,
net_wins.h, platform.h, pr_comp.h, progdefs.h, progs.h, protocol.h, quakedef.h,
render.h, resource.h, sbar.h, screen.h, server.h, sound.h, spritegn.h, sys.h,
vid.h, view.h, wad.h, world.h, zone.h: added include guards to the headers.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@84 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-21 00:01:08 +00:00
|
|
|
#endif /* __CVAR_H__ */
|
|
|
|
|