dxx-rebirth/common/main/cvar.h

60 lines
1.3 KiB
C
Raw Normal View History

2015-02-11 07:35:44 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*
*/
/*
*
* Console variables
*
*/
#ifndef _CVAR_H
#define _CVAR_H 1
#include "pstypes.h"
#include "physfsx.h"
typedef struct cvar_s
{
char *name;
char *string;
bool archive;
fix value;
int intval;
struct cvar_s *next;
} cvar_t;
void cvar_init(void);
/* Register a CVar with the name and string and optionally archive elements set */
void cvar_registervariable (cvar_t *cvar);
/* Set a CVar's value */
void cvar_set_cvar(cvar_t *cvar, char *value);
void cvar_set_cvarf(cvar_t *cvar, char *fmt, ...);
#define cvar_setint(cvar, x) cvar_set_cvarf((cvar), "%d", (x))
#define cvar_setfl(cvar, x) cvar_set_cvarf((cvar), "%f", (x))
#define cvar_toggle(cvar) cvar_setint((cvar), !(cvar)->intval)
/* Equivalent to typing <var_name> <value> at the console */
void cvar_set(char *cvar_name, char *value);
/* Get the pointer to a cvar by name */
cvar_t *cvar_find(char *cvar_name);
/* Try to autocomplete a cvar name */
char *cvar_complete(char *text);
/* Get a CVar's value */
fix cvar(char *cvar_name);
/* Write archive cvars to file */
void cvar_write(PHYSFS_file *file);
#endif /* _CVAR_H_ */