about summary refs log tree commit diff
path: root/src/engine/config_variables.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-15 10:24:49 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-15 10:24:49 +0000
commita2566b3ebd93e0bbc55a920a7be08054a9377f11 (patch)
tree44a4612805d894168fe4b3b4c065fccc1a1686e9 /src/engine/config_variables.h
parentac9873056aa1fe529b098f19ff31e9ffa0e016a2 (diff)
downloadzcatch-a2566b3ebd93e0bbc55a920a7be08054a9377f11.tar.gz
zcatch-a2566b3ebd93e0bbc55a920a7be08054a9377f11.zip
cleaned up code structure a bit
Diffstat (limited to 'src/engine/config_variables.h')
-rw-r--r--src/engine/config_variables.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/engine/config_variables.h b/src/engine/config_variables.h
deleted file mode 100644
index 4a63e731..00000000
--- a/src/engine/config_variables.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
-#include "../game/game_variables.h"
-
-
-MACRO_CONFIG_STR(player_name, 32, "nameless tee")
-MACRO_CONFIG_STR(clan_name, 32, "")
-MACRO_CONFIG_STR(password, 32, "")
-MACRO_CONFIG_STR(rcon_password, 32, "")
-
-MACRO_CONFIG_INT(cl_cpu_throttle, 0, 0, 1)
-/*MACRO_CONFIG_STR(cl_connect, 32, "")*/
-MACRO_CONFIG_INT(cl_editor, 0, 0, 1)
-
-MACRO_CONFIG_STR(b_filter_string, 64, "")
-
-MACRO_CONFIG_INT(b_filter_full, 0, 0, 1)
-MACRO_CONFIG_INT(b_filter_empty, 0, 0, 1)
-MACRO_CONFIG_INT(b_filter_pw, 0, 0, 1)
-MACRO_CONFIG_INT(b_sort, 0, 0, 256)
-MACRO_CONFIG_INT(b_max_requests, 10, 0, 1000)
-
-MACRO_CONFIG_INT(snd_rate, 48000, 0, 0)
-MACRO_CONFIG_INT(snd_enable, 1, 0, 1)
-MACRO_CONFIG_INT(snd_volume, 100, 0, 100)
-
-MACRO_CONFIG_INT(gfx_screen_width, 800, 0, 0)
-MACRO_CONFIG_INT(gfx_screen_height, 600, 0, 0)
-MACRO_CONFIG_INT(gfx_fullscreen, 1, 0, 1)
-MACRO_CONFIG_INT(gfx_color_depth, 24, 16, 24)
-MACRO_CONFIG_INT(gfx_vsync, 1, 0, 1)
-MACRO_CONFIG_INT(gfx_display_all_modes, 0, 0, 1)
-MACRO_CONFIG_INT(gfx_texture_compression, 0, 0, 1)
-MACRO_CONFIG_INT(gfx_high_detail, 1, 0, 1)
-MACRO_CONFIG_INT(gfx_texture_quality, 1, 0, 1)
-MACRO_CONFIG_INT(gfx_fsaa_samples, 0, 0, 16)
-MACRO_CONFIG_INT(gfx_refresh_rate, 0, 0, 0)
-
-MACRO_CONFIG_INT(key_screenshot, 267, 32, 512)
-MACRO_CONFIG_INT(inp_mousesens, 100, 5, 100000)
-
-MACRO_CONFIG_STR(masterserver, 128, "master.teewars.com")
-
-MACRO_CONFIG_STR(sv_name, 128, "unnamed server")
-MACRO_CONFIG_STR(sv_bindaddr, 128, "")
-MACRO_CONFIG_INT(sv_port, 8303, 0, 0)
-MACRO_CONFIG_INT(sv_external_port, 0, 0, 0)
-MACRO_CONFIG_INT(sv_sendheartbeats, 1, 0, 1)
-MACRO_CONFIG_STR(sv_map, 128, "dm1")
-MACRO_CONFIG_INT(sv_map_reload, 0, 0, 1)
-MACRO_CONFIG_INT(sv_max_clients, 8, 1, 12)
-MACRO_CONFIG_INT(sv_bandwidth_mode, 0, 0, 2)
-
-MACRO_CONFIG_INT(debug, 0, 0, 1)
-MACRO_CONFIG_INT(dbg_stress, 0, 0, 0)
-MACRO_CONFIG_STR(dbg_stress_server, 32, "localhost")
-