]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/client.qh
Add waypoint editor quickmenu entry in the default quickmenu if waypoint editor is...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / client.qh
1 #pragma once
2
3 #include "utils.qh"
4 #include <server/intermission.qh>
5 //#include <common/resources/resources.qh>
6 #include <common/replicate.qh>
7 #include <common/sounds/all.qh>
8
9 bool autocvar__notarget;
10 int autocvar_g_balance_armor_start;
11 float autocvar_g_balance_pause_armor_rot_spawn;
12 float autocvar_g_balance_pause_fuel_rot_spawn;
13 float autocvar_g_balance_pause_health_regen_spawn;
14 float autocvar_g_balance_pause_health_rot_spawn;
15 bool autocvar_g_botclip_collisions;
16 bool autocvar_g_fullbrightplayers;
17 bool autocvar_g_playerclip_collisions;
18 float autocvar_g_player_alpha;
19 float autocvar_g_player_brightness;
20 float autocvar_g_player_damageforcescale = 2;
21 float autocvar_g_respawn_delay_small;
22 int autocvar_g_respawn_delay_small_count;
23 float autocvar_g_respawn_delay_large;
24 int autocvar_g_respawn_delay_large_count;
25 float autocvar_g_respawn_delay_max;
26 bool autocvar_g_respawn_delay_forced;
27 bool autocvar_g_respawn_ghosts;
28 float autocvar_g_respawn_ghosts_alpha = 1;
29 float autocvar_g_respawn_ghosts_fadetime = 1.5;
30 float autocvar_g_respawn_ghosts_time = 4.5;
31 float autocvar_g_respawn_ghosts_speed;
32 int autocvar_g_respawn_waves;
33 bool autocvar_g_nodepthtestplayers;
34 string autocvar_g_mutatormsg;
35 float autocvar_sv_foginterval;
36 float autocvar_sv_maxidle;
37 int autocvar_sv_maxidle_minplayers = 2;
38 float autocvar_sv_maxidle_playertospectator = 60;
39 bool autocvar_sv_maxidle_alsokickspectators;
40 int autocvar_sv_maxidle_slots;
41 bool autocvar_sv_maxidle_slots_countbots;
42 bool autocvar_g_forced_respawn;
43 int autocvar_g_maxplayers;
44 float autocvar_g_maxplayers_spectator_blocktime;
45 string autocvar_g_xonoticversion;
46 float autocvar_gameversion;
47 float autocvar_gameversion_min;
48 float autocvar_gameversion_max;
49 string autocvar_hostname;
50 int autocvar_spawn_debug;
51 string autocvar_sv_motd;
52 int autocvar_sv_name_maxlength = 64;
53 string autocvar_sv_quickmenu_file;
54 bool autocvar_sv_servermodelsonly;
55 bool autocvar_sv_showspectators;
56 int autocvar_sv_spectate;
57 bool autocvar_sv_teamnagger;
58 float autocvar_sv_player_scale;
59
60 // WEAPONTODO
61 .string weaponorder_byimpulse;
62
63 .entity clientdata;
64
65 .float jointime; // time of connecting
66 .float startplaytime; // time of switching from spectator to player
67 .float alivetime; // time of being alive
68 .float motd_actived_time; // used for both motd and campaign_message
69
70 .bool wasplayer;
71
72 .int spectatee_status;
73 .bool zoomstate;
74
75 .bool just_joined;
76
77 .int pressedkeys;
78
79 .int playerid;
80
81 .string playermodel;
82 .string playerskin;
83
84 void ClientState_attach(entity this);
85
86 IntrusiveList g_players;
87 STATIC_INIT(g_players) { g_players = IL_NEW(); }
88
89 CLASS(Client, Object)
90     /** Client name */
91     ATTRIB(Client, netname, string, this.netname);
92     ATTRIB(Client, colormap, int, this.colormap);
93     ATTRIB(Client, team, int, this.team);
94     ATTRIB(Client, clientcolors, int, this.clientcolors);
95     /** Client IP */
96     ATTRIB(Client, netaddress, string, this.netaddress);
97     ATTRIB(Client, playermodel, string, this.playermodel);
98     ATTRIB(Client, playerskin, string, this.playerskin);
99
100     /** fingerprint of CA key the player used to authenticate */
101     ATTRIB(Client, crypto_keyfp, string, this.crypto_keyfp);
102     /** fingerprint of CA key the server used to authenticate to the player */
103     ATTRIB(Client, crypto_mykeyfp, string, this.crypto_mykeyfp);
104     /** fingerprint of ID used by the player entity, or string_null if not identified */
105     ATTRIB(Client, crypto_idfp, string, this.crypto_idfp);
106     /** set if the player's ID has been signed */
107     ATTRIB(Client, crypto_idfp_signed, bool, this.crypto_idfp_signed);
108     /** the string "AES128" if encrypting, and string_null if plaintext */
109     ATTRIB(Client, crypto_encryptmethod, string, this.crypto_encryptmethod);
110     /** the string "HMAC-SHA256" if signing, and string_null if plaintext */
111     ATTRIB(Client, crypto_signmethod, string, this.crypto_signmethod);
112
113     // engine client fields
114     ATTRIB(Client, impulse, int, this.impulse);
115
116     ATTRIB(Client, button0, int, this.button0);
117     ATTRIB(Client, button2, int, this.button2);
118     ATTRIB(Client, button3, int, this.button3);
119     ATTRIB(Client, button4, int, this.button4);
120     ATTRIB(Client, button5, int, this.button5);
121     ATTRIB(Client, button6, int, this.button6);
122     ATTRIB(Client, button7, int, this.button7);
123     ATTRIB(Client, button8, int, this.button8);
124     ATTRIB(Client, button9, int, this.button9);
125     ATTRIB(Client, button10, int, this.button10);
126     ATTRIB(Client, button11, int, this.button11);
127     ATTRIB(Client, button12, int, this.button12);
128     ATTRIB(Client, button13, int, this.button13);
129     ATTRIB(Client, button14, int, this.button14);
130     ATTRIB(Client, button15, int, this.button15);
131     ATTRIB(Client, button16, int, this.button16);
132     ATTRIB(Client, buttonuse, int, this.buttonuse);
133     ATTRIB(Client, buttonchat, int, this.buttonchat);
134
135     ATTRIB(Client, cursor_active, int, this.cursor_active);
136     ATTRIB(Client, cursor_screen, vector, this.cursor_screen);
137     ATTRIB(Client, cursor_trace_start, vector, this.cursor_trace_start);
138     ATTRIB(Client, cursor_trace_endpos, vector, this.cursor_trace_endpos);
139     ATTRIB(Client, cursor_trace_ent, entity, this.cursor_trace_ent);
140
141     ATTRIB(Client, ping, float, this.ping);
142     ATTRIB(Client, ping_packetloss, float, this.ping_packetloss);
143     ATTRIB(Client, ping_movementloss, float, this.ping_movementloss);
144
145     ATTRIB(Client, v_angle, vector, this.v_angle);
146     ATTRIB(Client, movement, vector, this.movement);
147
148     // custom
149
150     ATTRIB(Client, playerid, int, this.playerid);
151
152     ATTRIB(Client, parm_idlesince, int, this.parm_idlesince);
153     ATTRIB(Client, muted, bool, this.muted);
154     ATTRIB(Client, idlekick_lasttimeleft, float, this.idlekick_lasttimeleft);
155     ATTRIB(Client, pm_frametime, float, this.pm_frametime);
156     ATTRIB(Client, pressedkeys, int, this.pressedkeys);
157     ATTRIB(Client, movement_old, vector, this.movement_old);
158     ATTRIB(Client, buttons_old, int, this.buttons_old);
159     ATTRIB(Client, teamkill_complain, float, this.teamkill_complain);
160     ATTRIB(Client, teamkill_soundtime, float, this.teamkill_soundtime);
161     ATTRIB(Client, teamkill_soundsource, entity, this.teamkill_soundsource);
162     ATTRIB(Client, usekeypressed, bool, this.usekeypressed);
163     ATTRIB(Client, motd_actived_time, float, this.motd_actived_time);
164     ATTRIB(Client, jointime, float, this.jointime);
165     ATTRIB(Client, spectatortime, float, this.spectatortime);
166     ATTRIB(Client, startplaytime, float, this.startplaytime);
167     ATTRIB(Client, version_nagtime, float, this.version_nagtime);
168     ATTRIB(Client, netname_previous, string, this.netname_previous);
169     ATTRIB(Client, allowed_timeouts, int, this.allowed_timeouts);
170     ATTRIB(Client, active_minigame, entity, this.active_minigame);
171     ATTRIB(Client, taunt_soundtime, float, this.taunt_soundtime);
172     ATTRIB(Client, killcount, int, this.killcount);
173     ATTRIB(Client, version_mismatch, bool, this.version_mismatch);
174     ATTRIB(Client, version, int, this.version);
175     ATTRIB(Client, spectatee_status, int, this.spectatee_status);
176     ATTRIB(Client, zoomstate, bool, this.zoomstate);
177     ATTRIB(Client, just_joined, bool, this.just_joined);
178     ATTRIB(Client, race_completed, bool, this.race_completed);
179     ATTRIB(Client, latency_sum, float, this.latency_sum);
180     ATTRIB(Client, latency_cnt, int, this.latency_cnt);
181     ATTRIB(Client, latency_time, float, this.latency_time);
182     ATTRIB(Client, v_angle_old, vector, this.v_angle_old);
183     ATTRIB(Client, model_randomizer, float, this.model_randomizer);
184     ATTRIB(Client, accuracy, entity, this.accuracy);
185     ATTRIB(Client, hasweapon_complain_spam, float, this.hasweapon_complain_spam);
186     ATTRIB(Client, scorekeeper, entity, this.scorekeeper);
187     ATTRIB(Client, specialcommand_pos, int, this.specialcommand_pos);
188     ATTRIB(Client, hitplotfh, int, this.hitplotfh);
189     ATTRIB(Client, clientdata, entity, this.clientdata);
190     ATTRIB(Client, cmd_floodcount, int, this.cmd_floodcount);
191     ATTRIB(Client, cmd_floodtime, float, this.cmd_floodtime);
192     ATTRIB(Client, wasplayer, bool, this.wasplayer);
193     ATTRIB(Client, weaponorder_byimpulse, string, this.weaponorder_byimpulse);
194     ATTRIB(Client, autojoin_checked, int, this.wasplayer);
195
196     // networked cvars
197
198 // not currently handled by ClientState
199 #if 0
200     ATTRIBARRAY(Client, msg_choice_choices, int, 20); // TODO: actually NOTIF_CHOICE_MAX
201     ATTRIB(Client, cvar_cl_allow_uid2name, int, this.cvar_cl_allow_uid2name);
202     ATTRIB(Client, cvar_cl_allow_uidtracking, int, this.cvar_cl_allow_uidtracking);
203     ATTRIB(Client, cvar_cl_autotaunt, float, this.cvar_cl_autotaunt);
204     ATTRIB(Client, cvar_cl_voice_directional, int, this.cvar_cl_voice_directional);
205     ATTRIB(Client, cvar_cl_voice_directional_taunt_attenuation, float, this.cvar_cl_voice_directional_taunt_attenuation);
206     ATTRIB(Client, cvar_cl_physics, string, this.cvar_cl_physics);
207     ATTRIB(Client, cvar_cl_buffs_autoreplace, bool, this.cvar_cl_buffs_autoreplace);
208     ATTRIB(Client, cvar_cl_nade_type, int, this.cvar_cl_nade_type);
209     ATTRIB(Client, cvar_cl_pokenade_type, string, this.cvar_cl_pokenade_type);
210     ATTRIB(Client, cvar_cl_spawn_near_teammate, bool, this.cvar_cl_spawn_near_teammate);
211     ATTRIB(Client, cvar_cl_gunalign, int, this.cvar_cl_gunalign);
212     ATTRIB(Client, cvar_cl_handicap, float, this.cvar_cl_handicap);
213     ATTRIB(Client, cvar_cl_clippedspectating, bool, this.cvar_cl_clippedspectating);
214     ATTRIB(Client, cvar_cl_autoscreenshot, int, this.cvar_cl_autoscreenshot);
215     ATTRIB(Client, cvar_cl_jetpack_jump, bool, this.cvar_cl_jetpack_jump);
216     ATTRIB(Client, cvar_cl_noantilag, bool, this.cvar_cl_noantilag);
217     ATTRIB(Client, cvar_cl_movement_track_canjump, bool, this.cvar_cl_movement_track_canjump);
218     ATTRIB(Client, cvar_cl_weaponimpulsemode, int, this.cvar_cl_weaponimpulsemode);
219     ATTRIB(Client, cvar_g_xonoticversion, string, this.cvar_g_xonoticversion);
220     ATTRIB(Client, cvar_cl_autoswitch, bool, this.cvar_cl_autoswitch);
221     ATTRIB(Client, cvar_cl_casings, bool, this.cvar_cl_casings);
222     ATTRIB(Client, cvar_r_drawviewmodel, bool, this.cvar_r_drawviewmodel);
223     ATTRIB(Client, cvar_cl_dodging_timeout, float, this.cvar_cl_dodging_timeout);
224     ATTRIB(Client, cvar_cl_dodging, float, this.cvar_cl_dodging);
225     ATTRIB(Client, cvar_cl_multijump, bool, this.cvar_cl_multijump);
226     ATTRIB(Client, cvar_cl_accuracy_data_share, bool, this.cvar_cl_accuracy_data_share);
227     ATTRIB(Client, cvar_cl_accuracy_data_receive, bool, this.cvar_cl_accuracy_data_receive);
228     ATTRIBARRAY(Client, cvar_cl_weaponpriorities, string, 10);
229     ATTRIB(Client, cvar_cl_weaponpriority, string, this.cvar_cl_weaponpriority);
230     ATTRIB(Client, cvar_cl_cts_noautoswitch, bool, this.cvar_cl_cts_noautoswitch);
231     ATTRIB(Client, cvar_cl_weapon_switch_reload, bool, this.cvar_cl_weapon_switch_reload);
232     ATTRIB(Client, cvar_cl_weapon_switch_fallback_to_impulse, bool, this.cvar_cl_weapon_switch_fallback_to_impulse);
233 #endif
234
235     METHOD(Client, m_unwind, bool(Client this));
236
237     STATIC_METHOD(Client, Add, void(Client this, int _team));
238     STATIC_METHOD(Client, Remove, void(Client this));
239
240     INIT(Client) {
241         if (this.m_unwind(this)) return this;
242         make_impure(this);
243         this.classname = "player_joining";
244         static int playerid_last;
245         this.playerid = ++playerid_last;
246         ClientState_attach(this);
247     }
248     DESTRUCTOR(Client) {
249         Client_Remove(this);
250     }
251     CONSTRUCTOR(Client, string name) {
252         CONSTRUCT(Client);
253         this.netname = name;
254         this.netaddress = "local";
255         this.playermodel = cvar_defstring("sv_defaultplayermodel");
256     }
257 ENDCLASS(Client)
258
259 CLASS(Observer, Client)
260     INIT(Observer) {
261         this.classname = STR_OBSERVER;
262     }
263     DESTRUCTOR(Observer) { }
264 ENDCLASS(Observer)
265
266 CLASS(Spectator, Client)
267     INIT(Spectator) {
268         this.classname = STR_SPECTATOR;
269     }
270     DESTRUCTOR(Spectator) { }
271 ENDCLASS(Spectator)
272
273 CLASS(Player, Client)
274
275     // custom
276
277     ATTRIB(Player, dual_weapons, vector, this.dual_weapons); // TODO: actually WepSet!
278     ATTRIB(Player, itemkeys, int, this.itemkeys);
279     ATTRIB(Player, ballistics_density, float, this.ballistics_density);
280
281     INIT(Player) {
282         this.classname = STR_PLAYER;
283         IL_PUSH(g_players, this);
284     }
285     DESTRUCTOR(Player) {
286         IL_REMOVE(g_players, this);
287     }
288 ENDCLASS(Player)
289
290 METHOD(Client, m_unwind, bool(Client this))
291 {
292     TC(Client, this);
293     #define UNWIND(class) MACRO_BEGIN if (this.instanceOf##class) { METHOD_REFERENCE(class, dtorimpl)(this); } MACRO_END
294     switch (this.classname) {
295         case "Observer":
296             UNWIND(Spectator);
297             UNWIND(Player);
298             return true;
299         case "Spectator":
300             UNWIND(Observer);
301             UNWIND(Player);
302             return true;
303         case "Player":
304             UNWIND(Observer);
305             UNWIND(Spectator);
306             return true;
307     }
308     #undef UNWIND
309     return false;
310 }
311
312 int autocvar__independent_players;
313 bool independent_players;
314 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
315 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
316 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER), ((e).frags = FRAGS_PLAYER_OUT_OF_GAME))
317
318 .int killcount;
319
320 //flood fields
321 .float nickspamtime; // time of last nick change
322 .float nickspamcount;
323
324 void SendWelcomemessage_msg_type(entity this, bool force_centerprint, int msg_type);
325
326 // respawning
327 .int respawn_flags;
328 .float respawn_time;
329 .float respawn_time_max;
330
331 .float respawn_countdown; // next number to count
332
333 const int RESPAWN_FORCE = BIT(0);
334 const int RESPAWN_SILENT = BIT(1);
335 const int RESPAWN_DENY = BIT(2);
336
337 float blockSpectators; // if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
338 .float spectatortime; // point in time since the client is spectating or observing
339
340 .bool player_blocked;
341
342 const int SVC_SETVIEW = 5; // TODO: move to dpdefs where this belongs!
343
344 // TODO: standardise resource regeneration
345 .float pauseregen_finished;
346 .float pauserothealth_finished;
347 .float pauserotarmor_finished;
348 .float pauserotfuel_finished;
349
350 // g_<gametype>_str:
351 // If 0, default is used.
352 // If <0, 0 is used.
353 // Otherwise, g_str (default value) is used.
354 // For consistency, negative values there are mapped to zero too.
355 #define GAMETYPE_DEFAULTED_SETTING(str) \
356     ((gametype_setting_tmp = cvar(strcat("g_", GetGametype(), "_" #str))), \
357     (gametype_setting_tmp < 0) ? 0 \
358     : (gametype_setting_tmp == 0 || autocvar_g_respawn_delay_forced) ? max(0, autocvar_g_##str) \
359     : gametype_setting_tmp)
360
361 void calculate_player_respawn_time(entity this);
362
363 bool PlayerInList(entity player, string list);
364
365 void ClientData_Touch(entity e);
366
367 int nJoinAllowed(entity this, entity ignore);
368
369 void PlayerUseKey(entity this);
370
371 void FixClientCvars(entity e);
372
373 // called when a client connects, useful for updating sounds and such of static objects
374 .void(entity this, entity player) init_for_player;
375
376 IntrusiveList g_initforplayer;
377 STATIC_INIT(g_initforplayer) { g_initforplayer = IL_NEW(); }
378
379 void play_countdown(entity this, float finished, Sound samp);
380 void player_powerups_remove_all(entity this);
381
382 // NOTE: current type is Resource (avoiding circular includes!)
383 void RotRegen(entity this, entity current, float limit_mod,
384         float regenstable, float regenfactor, float regenlinear, float regenframetime,
385         float rotstable, float rotfactor, float rotlinear, float rotframetime);
386
387 bool Spectate(entity this, entity pl);
388
389 void ClientInit_Spawn();
390
391 void PutObserverInServer(entity this, bool is_forced, bool use_spawnpoint);
392
393 void SetSpectatee(entity this, entity spectatee);
394 void SetSpectatee_status(entity this, int spectatee_num);
395
396 void FixPlayermodel(entity player);
397
398 void ClientInit_misc(entity this);
399
400 int GetPlayerLimit();
401
402 const int MIN_SPEC_TIME = 1;
403 bool joinAllowed(entity this);
404 void Join(entity this);
405
406 #define SPECTATE_COPY() ACCUMULATE void SpectateCopy(entity this, entity spectatee)
407 #define SPECTATE_COPYFIELD(fld) SPECTATE_COPY() { this.(fld) = spectatee.(fld); }
408
409 const int MAX_SPECTATORS = 7;