ddnet/src/engine/e_config.c
2008-03-14 23:39:52 +00:00

109 lines
2.8 KiB
C

/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "e_system.h"
#include "e_config.h"
#include "e_linereader.h"
#include "e_engine.h"
CONFIGURATION config;
void config_reset()
{
#define MACRO_CONFIG_INT(name,def,min,max) config.name = def;
#define MACRO_CONFIG_STR(name,len,def) str_copy(config.name, def, len);
#include "e_config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
void strip_spaces(char **p)
{
char *s = *p;
char *end;
while (*s == ' ')
++s;
end = s + strlen(s);
while (end > s && *(end - 1) == ' ')
*--end = 0;
}
void config_set(const char *line)
{
const char *c = strchr(line, '=');
if (c)
{
char var[256];
char val[256];
char *var_str = var;
char *val_str = val;
str_copy(val, c+1, sizeof(val));
mem_copy(var, line, c - line);
var[c - line] = 0;
strip_spaces(&var_str);
strip_spaces(&val_str);
#define MACRO_CONFIG_INT(name,def,min,max) { if (strcmp(#name, var_str) == 0) config_set_ ## name (&config, atoi(val_str)); }
#define MACRO_CONFIG_STR(name,len,def) { if (strcmp(#name, var_str) == 0) { config_set_ ## name (&config, val_str); } }
#include "e_config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
}
void config_load(const char *filename)
{
/*
IOHANDLE file;
dbg_msg("config/load", "loading %s", filename);
file = io_open(filename, IOFLAG_READ);
if(file)
{
char *line;
LINEREADER lr;
linereader_init(&lr, file);
while ((line = linereader_get(&lr)))
config_set(line);
io_close(file);
}*/
}
void config_save()
{
char linebuf[512];
#define MACRO_CONFIG_INT(name,def,min,max) { str_format(linebuf, sizeof(linebuf), "%s %i", #name, config.name); engine_config_write_line(linebuf); }
#define MACRO_CONFIG_STR(name,len,def) { str_format(linebuf, sizeof(linebuf), "%s %s", #name, config.name); engine_config_write_line(linebuf); }
#include "e_config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
#define MACRO_CONFIG_INT(name,def,min,max) int config_get_ ## name (CONFIGURATION *c) { return c->name; }
#define MACRO_CONFIG_STR(name,len,def) const char *config_get_ ## name (CONFIGURATION *c) { return c->name; }
#include "e_config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
#define MACRO_CONFIG_INT(name,def,min,max) void config_set_ ## name (CONFIGURATION *c, int val) { if(min != max) { if (val < min) val = min; if (max != 0 && val > max) val = max; } c->name = val; }
#define MACRO_CONFIG_STR(name,len,def) void config_set_ ## name (CONFIGURATION *c, const char *str) { str_copy(c->name, str, len-1); c->name[sizeof(c->name)-1] = 0; }
#include "e_config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR