4 // ==========================
5 // Balance Config Generator
6 // ==========================
8 void Dump_Weapon_Settings();
10 bool wep_config_alsoprint;
12 const int MAX_WEP_CONFIG = 256;
14 string wep_config_queue[MAX_WEP_CONFIG];
16 #define WEP_CONFIG_QUEUE(a) { \
17 wep_config_queue[WEP_CONFIG_COUNT] = a; \
20 #define WEP_CONFIG_WRITETOFILE(a) MACRO_BEGIN { \
21 fputs(wep_config_file, a); \
22 if(wep_config_alsoprint) { LOG_INFO(a); } \
26 #define WEP_CONFIG_WRITE_CVARS(wepname, name, T) WEP_CONFIG_WRITE_PROPS_##T(wepname, name)
28 #define WEP_CONFIG_WRITE_PROPS_string(wepname, name) \
30 sprintf("set g_balance_%s_%s \"%s\"\n", #wepname, #name, \
31 cvar_string(sprintf("g_balance_%s_%s", #wepname, #name)))) }
33 #define WEP_CONFIG_WRITE_PROPS_float(wepname, name) \
35 sprintf("set g_balance_%s_%s %g\n", #wepname, #name, \
36 cvar(sprintf("g_balance_%s_%s", #wepname, #name)))) }