2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
cvar.h
|
|
|
|
|
|
|
|
Configuration variable definitions and prototypes
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#ifndef __QF_cvar_h
|
|
|
|
#define __QF_cvar_h
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-11-08 23:27:00 +00:00
|
|
|
/** \defgroup cvar Configuration variables
|
2006-12-05 11:40:00 +00:00
|
|
|
\ingroup utils
|
2004-11-08 23:27:00 +00:00
|
|
|
*/
|
2020-02-11 06:20:49 +00:00
|
|
|
///@{
|
2004-11-08 23:27:00 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
#include "QF/cexpr.h"
|
2021-11-25 08:46:16 +00:00
|
|
|
#include "QF/listener.h"
|
2001-03-27 23:36:02 +00:00
|
|
|
#include "QF/qtypes.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakeio.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-11-23 01:40:54 +00:00
|
|
|
typedef struct cvar_s {
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
const char *name;
|
|
|
|
const char *description;
|
|
|
|
const char *default_value;
|
|
|
|
unsigned flags;
|
|
|
|
exprval_t value;
|
|
|
|
int (*validator) (const struct cvar_s *var);
|
2021-11-25 08:46:16 +00:00
|
|
|
struct cvar_listener_set_s *listeners;
|
2001-02-19 21:15:25 +00:00
|
|
|
} cvar_t;
|
|
|
|
|
2021-11-25 08:46:16 +00:00
|
|
|
typedef struct cvar_listener_set_s LISTENER_SET_TYPE (cvar_t)
|
|
|
|
cvar_listener_set_t;
|
|
|
|
typedef void (*cvar_listener_t) (void *data, const cvar_t *cvar);
|
|
|
|
|
2022-04-24 15:23:28 +00:00
|
|
|
typedef int (*cvar_select_t) (const cvar_t *cvar, void *data);
|
|
|
|
|
2010-11-23 01:40:54 +00:00
|
|
|
typedef struct cvar_alias_s {
|
2011-09-07 12:08:37 +00:00
|
|
|
char *name; ///< The name of the alias.
|
|
|
|
cvar_t *cvar; ///< The cvar to which this alias refers
|
2001-02-19 21:15:25 +00:00
|
|
|
} cvar_alias_t;
|
|
|
|
|
2011-09-07 12:08:37 +00:00
|
|
|
/** \name cvar_flags
|
|
|
|
Zoid| A good CVAR_ROM example is userpath. The code should read "cvar_t
|
|
|
|
*fs_userpath = CvarGet("fs_userpath", ".", CVAR_ROM); The user can
|
|
|
|
override that with +set fs_userpath \<blah\> since the command line +set
|
|
|
|
gets created _before_ the C code for fs_basepath setup is called. The
|
|
|
|
code goes "look, the user made fs_basepath already", uses the users value,
|
|
|
|
but sets CVAR_ROM as per the call.
|
|
|
|
*/
|
2020-02-11 06:20:49 +00:00
|
|
|
///@{
|
2011-09-07 12:08:37 +00:00
|
|
|
#define CVAR_NONE 0 ///< normal cvar
|
|
|
|
#define CVAR_ARCHIVE 1 ///< set to cause it to be saved to
|
|
|
|
///< config.cfg
|
|
|
|
#define CVAR_USERINFO 2 ///< sent to server on connect or change
|
|
|
|
#define CVAR_SERVERINFO 4 ///< sent in response to front end requests
|
|
|
|
#define CVAR_NOTIFY 32 ///< Will notify players when changed.
|
|
|
|
///< (not implemented)
|
|
|
|
#define CVAR_ROM 64 ///< display only, cannot be set
|
|
|
|
#define CVAR_USER_CREATED 128 ///< created by a set command
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
#define CVAR_REGISTERED 256 ///< var has been registered
|
2011-09-07 12:08:37 +00:00
|
|
|
#define CVAR_LATCH 2048 ///< will change only when C code next does
|
|
|
|
///< a Cvar_Get(), so it can't be changed
|
|
|
|
///< (not implemented)
|
2020-02-11 06:20:49 +00:00
|
|
|
///@}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
void Cvar_Register (cvar_t *var, cvar_listener_t listener, void *data);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
cvar_t *Cvar_FindAlias (const char *alias_name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2011-07-05 11:50:02 +00:00
|
|
|
cvar_t *Cvar_MakeAlias (const char *name, cvar_t *cvar);
|
2011-07-05 12:59:47 +00:00
|
|
|
cvar_t *Cvar_RemoveAlias (const char *name);
|
2021-11-25 08:46:16 +00:00
|
|
|
void Cvar_AddListener (cvar_t *cvar, cvar_listener_t listener, void *data);
|
|
|
|
void Cvar_RemoveListener (cvar_t *cvar, cvar_listener_t listener, void *data);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// equivelants to "<name> <variable>" typed at the console
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
void Cvar_Set (const char *var, const char *value);
|
|
|
|
void Cvar_SetVar (cvar_t *var, const char *value);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// allows you to change a Cvar's flags without a full Cvar_Get
|
|
|
|
void Cvar_SetFlags (cvar_t *var, int cvarflags);
|
|
|
|
|
|
|
|
// returns 0 if not defined or non numeric
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
float Cvar_Value (const char *var_name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// returns an empty string if not defined
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
const char *Cvar_String (const char *var_name);
|
|
|
|
const char *Cvar_VarString (const cvar_t *var);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
qboolean Cvar_Command (void);
|
|
|
|
|
|
|
|
// Writes lines containing "set variable value" for all variables
|
|
|
|
// with the archive flag set to true.
|
2002-08-27 07:16:28 +00:00
|
|
|
void Cvar_WriteVariables (QFile *f);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2021-11-15 13:04:29 +00:00
|
|
|
struct plitem_s;
|
|
|
|
void Cvar_SaveConfig (struct plitem_s *config);
|
|
|
|
void Cvar_LoadConfig (struct plitem_s *config);
|
|
|
|
|
2012-08-13 06:03:40 +00:00
|
|
|
// attempts to match a partial variable name for command line completion
|
|
|
|
// returns NULL if nothing fits
|
2018-10-09 03:35:01 +00:00
|
|
|
const char *Cvar_CompleteVariable (const char *partial) __attribute__((pure));
|
2012-08-13 06:03:40 +00:00
|
|
|
|
2001-06-28 04:05:14 +00:00
|
|
|
// Added by EvilTypeGuy - functions for tab completion system
|
|
|
|
// Thanks to Fett erich@heintz.com
|
|
|
|
// Thanks to taniwha
|
2018-10-09 03:35:01 +00:00
|
|
|
int Cvar_CompleteCountPossible (const char *partial) __attribute__((pure));
|
2001-07-15 07:04:17 +00:00
|
|
|
const char **Cvar_CompleteBuildList (const char *partial);
|
2001-06-28 04:05:14 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
// Returns a pointer to the Cvar, NULL if not found
|
2001-07-15 07:04:17 +00:00
|
|
|
cvar_t *Cvar_FindVar (const char *var_name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-04-24 15:23:28 +00:00
|
|
|
const cvar_t **Cvar_Select (cvar_select_t select, void *data);
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
void Cvar_Init_Hash (void);
|
2001-04-11 06:05:39 +00:00
|
|
|
void Cvar_Init (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2020-02-11 06:20:49 +00:00
|
|
|
///@}
|
2004-11-08 23:27:00 +00:00
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#endif//__QF_cvar_h
|