-
Notifications
You must be signed in to change notification settings - Fork 2
/
game_config.h
102 lines (82 loc) · 2.45 KB
/
game_config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* --------------------------------------------------------------------
EXTREME TUXRACER
Copyright (C) 2010 Extreme Tuxracer Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
---------------------------------------------------------------------*/
#ifndef GAME_CONFIG_H
#define GAME_CONFIG_H
#include "bh.h"
#define CONFIG_DIR ".etr"
#define CONFIG_FILE "options"
#define PLAYER_FILE "players"
using namespace std;
typedef struct {
// defined at runtime:
string prog_dir;
string config_dir;
string data_dir;
string common_course_dir;
string common_cup_dir;
string obj_dir;
string terr_dir;
string char_dir;
string env_dir2;
string tex_dir;
string sounds_dir;
string music_dir;
string screenshot_dir;
string font_dir;
string keyframe_dir;
string trans_dir;
string player_dir;
string configfile;
// ------------------------------------
// main config params:
bool fullscreen;
int res_type;
int perf_level;
int language;
int sound_volume;
int music_volume;
int forward_clip_distance;
int backward_clip_distance;
int fov;
int bpp_mode;
int tree_detail_distance;
int tux_sphere_divisions;
int tux_shadow_sphere_divisions;
int course_detail_level; // only for quadtree
int audio_freq;
int audio_buffer_size;
int use_papercut_font;
bool ice_cursor;
bool full_skybox;
int restart_on_res_change; // only Windows
int use_quad_scale; // scaling type for menus
string menu_music;
string credits_music;
string config_music;
// these params are not saved in options file
bool ui_snow;
bool display_fps;
bool show_hud;
int view_mode;
int x_resolution;
int y_resolution;
double scale; // scale factor for screen, see 'use_quad_scale'
} TParam;
void InitConfig (char *arg0);
void SaveConfigFile ();
extern TParam param;
// ********************************************************************
// configuration screen
// ********************************************************************
void RegisterGameConfig ();
#endif