]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/main.qh
Merge branch 'master' into terencehill/lms_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / main.qh
1 #pragma once
2
3 #include <common/constants.qh>
4 #include <common/weapons/_all.qh>
5
6 bool autocvar_cl_db_saveasdump;
7 bool autocvar_cl_spawn_event_particles;
8 bool autocvar_cl_spawn_event_sound = 1;
9 // float autocvar_cl_spawn_point_model;
10 bool autocvar_cl_spawn_point_particles;
11 float autocvar_cl_spawn_point_dist_max = 1200;
12 bool autocvar_cl_unpress_zoom_on_spawn = true;
13 bool autocvar_cl_unpress_zoom_on_death = true;
14 bool autocvar_cl_unpress_zoom_on_weapon_switch = true;
15 bool autocvar_cl_unpress_attack_on_weapon_switch = false;
16 bool autocvar_hud_showbinds;
17 bool autocvar_hud_showbinds_limit;
18 bool autocvar__hud_showbinds_reload;
19 bool autocvar_developer_csqcentities;
20 bool autocvar_cl_race_cptimes_onlyself; // TODO: move to race gamemode
21 bool autocvar_cl_race_cptimes_showself = false;
22
23 // Map coordinate base calculations need these
24 vector mi_center;
25 vector mi_scale;
26 // Minimap
27 string minimapname;
28
29 bool postinit;
30 entity gametype;
31 // temporary hack
32 #define ISGAMETYPE(NAME) (gametype == MAPINFO_TYPE_##NAME)
33
34 float FONT_USER = 8;
35
36
37 void PostInit();
38
39 void Ent_Remove(entity this);
40
41 void Gamemode_Init();
42
43 entity players;
44 entity teams;
45 float team_count; // real teams
46
47 void AuditLists();
48
49 float RegisterPlayer(entity player);
50
51 void RemovePlayer(entity player);
52
53 void MoveToLast(entity e);
54
55 float RegisterTeam(entity Team);
56
57 void RemoveTeam(entity Team);
58
59 entity GetTeam(int Team, bool add);
60
61 bool SetTeam(entity pl, int Team);
62
63 vector hud_fontsize;
64
65 float RANKINGS_RECEIVED_CNT;
66 float RANKINGS_DISPLAY_CNT;
67 string grecordholder[RANKINGS_CNT];
68 float grecordtime[RANKINGS_CNT];
69
70 entity playerslots[255]; // 255 is engine limit on maxclients
71 entity teamslots[17];    // 17 teams (including "spectator team")
72 .bool gotscores;
73 .entity owner;
74 .bool ready;
75 .bool eliminated;
76
77 IntrusiveList g_drawables;
78 IntrusiveList g_drawables_2d;
79 IntrusiveList g_radarlinks;
80 IntrusiveList g_radaricons;
81 STATIC_INIT(main)
82 {
83         g_drawables = IL_NEW();
84         g_drawables_2d = IL_NEW();
85         g_radarlinks = IL_NEW();
86         g_radaricons = IL_NEW();
87 }
88
89 .void(entity) draw;
90 .void(entity) draw2d;
91 .void(entity) entremove;
92 float drawframetime;
93 vector view_origin, view_forward, view_right, view_up;
94
95 .float renderflags; // engine field
96
97 bool button_zoom;
98 bool spectatorbutton_zoom;
99 bool button_attack2;
100
101 float current_viewzoom;
102 float zoomin_effect;
103 bool warmup_stage;
104
105 void Fog_Force();
106
107 string _getcommandkey(string text, string command, bool forcename);
108 #define getcommandkey(cmd_name, command) _getcommandkey(cmd_name, command, false)
109 #define getcommandkey_forcename(cmd_name, command) _getcommandkey(cmd_name, command, true)
110
111 string vote_called_vote;
112 bool ready_waiting;
113 bool ready_waiting_for_me;
114 bool vote_waiting;
115 bool vote_waiting_for_me;
116
117 float current_zoomfraction;
118
119 int cs_project_is_b0rked;
120 int vid_width, vid_height;
121 float vid_pixelheight;
122
123 float camera_active;            // Demo camera is active if set to true
124 float chase_active_backup;
125 float camera_roll;
126 vector camera_direction;
127
128 const float ALPHA_MIN_VISIBLE = 0.003;
129
130 float armorblockpercent;
131 float damagepush_speedfactor;
132
133 //hooks
134 int calledhooks;
135 const int HOOK_START =    1;
136 const int HOOK_END =      2;
137
138 .float ping, ping_packetloss, ping_movementloss;
139
140 float g_trueaim_minrange;
141
142 int hud;
143 float view_quality;
144
145 int num_spectators;
146 const int MAX_SPECTATORS = 7;
147 int spectatorlist[MAX_SPECTATORS];
148
149 int framecount;
150
151 float GetSpeedUnitFactor(int speed_unit);
152 string GetSpeedUnit(int speed_unit);
153
154 .int enttype; // entity type sent from server
155 .int sv_entnum; // entity number sent from server
156
157 .int team;
158 .int team_size;
159
160 int binddb;
161
162 // Spectating
163 // -1 - observing
164 // 0 - playing
165 // >0 - id of spectated player
166 float spectatee_status;
167 float spectatee_status_changed_time;
168
169 #define player_currententnum (spectatee_status > 0 ? spectatee_status : player_localnum + 1)
170
171 // short mapname
172 string shortmapname;
173
174 // database for misc stuff
175 int tempdb;
176 int ClientProgsDB;
177 vector hook_shotorigin[4]; // WEAPONTODO
178 vector lightning_shotorigin[4]; // TODO: unused
179
180 float serverprevtime, serverdeltatime;
181
182 float ticrate;
183
184 int serverflags;