ddnet/src/engine/config.cpp

79 lines
2.1 KiB
C++
Raw Normal View History

2007-06-01 11:08:33 +00:00
#include <baselib/system.h>
2007-06-01 12:02:27 +00:00
#include <fstream>
#include <iostream>
2007-06-01 11:08:33 +00:00
#include <cstring>
#include <cstdio>
#include "config.h"
2007-06-01 12:02:27 +00:00
using namespace std;
2007-06-01 11:08:33 +00:00
configuration config;
void config_reset()
{
#define MACRO_CONFIG_INT(name,def,min,max) config.name = def;
#define MACRO_CONFIG_STR(name,len,def) strncpy(config.name, def, len);
2007-06-01 11:17:10 +00:00
#include "config_variables.h"
2007-06-01 11:08:33 +00:00
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
void config_load(const char *filename)
{
dbg_msg("config/load", "loading %s", filename);
2007-06-01 12:02:27 +00:00
ifstream file(filename);
string line;
if (file)
{
while (getline(file, line))
{
int eq_index = line.find_first_of('=');
if (eq_index != string::npos)
{
string variable = line.substr(0, eq_index);
string value = line.substr(eq_index + 1);
#define MACRO_CONFIG_INT(name,def,min,max) { if (strcmp(#name, variable.c_str()) == 0) config_set_ ## name (&config, atoi(value.c_str())); }
#define MACRO_CONFIG_STR(name,len,def) { if (strcmp(#name, variable.c_str()) == 0) { config_set_ ## name (&config, value.c_str()); cout << variable << '=' << value << endl; } }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
}
file.close();
}
2007-06-01 11:08:33 +00:00
}
2007-06-01 11:17:10 +00:00
void config_save(const char *filename)
{
dbg_msg("config/save", "saving config to %s", filename);
2007-06-01 12:02:27 +00:00
ofstream file(filename);
#define MACRO_CONFIG_INT(name,def,min,max) { file << # name << '=' << config.name << endl; }
#define MACRO_CONFIG_STR(name,len,def) { file << # name << '=' << config.name << endl; }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
file.close();
2007-06-01 11:17:10 +00:00
}
#define MACRO_CONFIG_INT(name,def,min,max) void config_set_ ## name (configuration *c, int val) { if (val < min) val = min; if (max != 0 && val > max) val = max; c->name = val; }
2007-06-01 12:02:27 +00:00
#define MACRO_CONFIG_STR(name,len,def) void config_set_ ## name (configuration *c, const char *str) { strncpy(c->name, str, len-1); c->name[sizeof(c->name)-1] = 0; cout << "config_str" << endl; }
2007-06-01 11:17:10 +00:00
#include "config_variables.h"
2007-06-01 11:08:33 +00:00
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR