]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_client.qc
Merge branch 'master' into Mario/fullbright_skins
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cl_client.qc
1 #include "cl_client.qh"
2
3 #include "anticheat.qh"
4 #include "cl_impulse.qh"
5 #include "cl_player.qh"
6 #include "ipban.qh"
7 #include "miscfunctions.qh"
8 #include "portals.qh"
9 #include "teamplay.qh"
10 #include "playerdemo.qh"
11 #include "spawnpoints.qh"
12 #include "g_damage.qh"
13 #include "g_hook.qh"
14 #include "command/common.qh"
15 #include "cheats.qh"
16 #include "g_world.qh"
17 #include "race.qh"
18 #include "antilag.qh"
19 #include "campaign.qh"
20 #include "command/common.qh"
21
22 #include "bot/bot.qh"
23 #include "bot/navigation.qh"
24
25 #include "../common/ent_cs.qh"
26 #include <common/state.qh>
27
28 #include <common/effects/qc/globalsound.qh>
29
30 #include "../common/triggers/teleporters.qh"
31
32 #include "../common/vehicles/all.qh"
33
34 #include "weapons/hitplot.qh"
35 #include "weapons/weaponsystem.qh"
36
37 #include "../common/net_notice.qh"
38 #include "../common/physics/player.qh"
39
40 #include "../common/items/all.qc"
41
42 #include "../common/mutators/mutator/waypoints/all.qh"
43
44 #include "../common/triggers/subs.qh"
45 #include "../common/triggers/triggers.qh"
46 #include "../common/triggers/trigger/secret.qh"
47
48 #include "../common/minigames/sv_minigames.qh"
49
50 #include "../common/items/inventory.qh"
51
52 #include "../common/monsters/sv_monsters.qh"
53
54 #include "../lib/warpzone/server.qh"
55
56 STATIC_METHOD(Client, Add, void(Client this, int _team))
57 {
58     WITHSELF(this, ClientConnect());
59     TRANSMUTE(Player, this);
60     this.frame = 12; // 7
61     this.team = _team;
62     WITHSELF(this, PutClientInServer());
63 }
64
65 void PutObserverInServer(entity this);
66 void ClientDisconnect();
67
68 STATIC_METHOD(Client, Remove, void(Client this))
69 {
70     TRANSMUTE(Observer, this);
71     WITHSELF(this, PutClientInServer());
72     WITHSELF(this, ClientDisconnect());
73 }
74
75 void send_CSQC_teamnagger() {
76         WriteHeader(MSG_BROADCAST, TE_CSQC_TEAMNAGGER);
77 }
78
79 bool ClientData_Send(entity this, entity to, int sf)
80 {
81         assert(to == this.owner, return false);
82
83         entity e = to;
84         if (IS_SPEC(e)) e = e.enemy;
85
86         sf = 0;
87         if (e.race_completed)       sf |= 1; // forced scoreboard
88         if (to.spectatee_status)    sf |= 2; // spectator ent number follows
89         if (e.zoomstate)            sf |= 4; // zoomed
90         if (e.porto_v_angle_held)   sf |= 8; // angles held
91
92         WriteHeader(MSG_ENTITY, ENT_CLIENT_CLIENTDATA);
93         WriteByte(MSG_ENTITY, sf);
94
95         if (sf & 2)
96         {
97                 WriteByte(MSG_ENTITY, to.spectatee_status);
98         }
99         if (sf & 8)
100         {
101                 WriteAngle(MSG_ENTITY, e.v_angle.x);
102                 WriteAngle(MSG_ENTITY, e.v_angle.y);
103         }
104         return true;
105 }
106
107 void ClientData_Attach(entity this)
108 {
109         Net_LinkEntity(this.clientdata = new_pure(clientdata), false, 0, ClientData_Send);
110         this.clientdata.drawonlytoclient = this;
111         this.clientdata.owner = this;
112 }
113
114 void ClientData_Detach(entity this)
115 {
116         remove(this.clientdata);
117         this.clientdata = NULL;
118 }
119
120 void ClientData_Touch(entity e)
121 {
122         e.clientdata.SendFlags = 1;
123
124         // make it spectatable
125         FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != e && IS_SPEC(it) && it.enemy == e, LAMBDA(it.clientdata.SendFlags = 1));
126 }
127
128 .string netname_previous;
129
130 void SetSpectatee(entity player, entity spectatee);
131
132
133 /*
134 =============
135 CheckPlayerModel
136
137 Checks if the argument string can be a valid playermodel.
138 Returns a valid one in doubt.
139 =============
140 */
141 string FallbackPlayerModel;
142 string CheckPlayerModel(string plyermodel) {
143         if(FallbackPlayerModel != cvar_defstring("_cl_playermodel"))
144         {
145                 // note: we cannot summon Don Strunzone here, some player may
146                 // still have the model string set. In case anyone manages how
147                 // to change a cvar default, we'll have a small leak here.
148                 FallbackPlayerModel = strzone(cvar_defstring("_cl_playermodel"));
149         }
150         // only in right path
151         if( substring(plyermodel,0,14) != "models/player/")
152                 return FallbackPlayerModel;
153         // only good file extensions
154         if(substring(plyermodel,-4,4) != ".zym")
155         if(substring(plyermodel,-4,4) != ".dpm")
156         if(substring(plyermodel,-4,4) != ".iqm")
157         if(substring(plyermodel,-4,4) != ".md3")
158         if(substring(plyermodel,-4,4) != ".psk")
159                 return FallbackPlayerModel;
160         // forbid the LOD models
161         if(substring(plyermodel, -9,5) == "_lod1")
162                 return FallbackPlayerModel;
163         if(substring(plyermodel, -9,5) == "_lod2")
164                 return FallbackPlayerModel;
165         if(plyermodel != strtolower(plyermodel))
166                 return FallbackPlayerModel;
167         // also, restrict to server models
168         if(autocvar_sv_servermodelsonly)
169         {
170                 if(!fexists(plyermodel))
171                         return FallbackPlayerModel;
172         }
173         return plyermodel;
174 }
175
176 void setplayermodel(entity e, string modelname)
177 {
178         precache_model(modelname);
179         _setmodel(e, modelname);
180         player_setupanimsformodel(e);
181         if(!autocvar_g_debug_globalsounds)
182                 UpdatePlayerSounds(e);
183 }
184
185 void FixPlayermodel(entity player);
186 /** putting a client as observer in the server */
187 void PutObserverInServer(entity this)
188 {
189     bool mutator_returnvalue = MUTATOR_CALLHOOK(MakePlayerObserver, this);
190         PlayerState_detach(this);
191
192         if (IS_PLAYER(this) && this.health >= 1) {
193         // despawn effect
194                 Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
195     }
196
197     {
198         entity spot = SelectSpawnPoint(this, true);
199         if (!spot) LOG_FATAL("No spawnpoints for observers?!?");
200         this.angles = spot.angles;
201         this.angles_z = 0;
202         this.fixangle = true;
203         // offset it so that the spectator spawns higher off the ground, looks better this way
204         setorigin(this, spot.origin + STAT(PL_VIEW_OFS, NULL));
205         this.prevorigin = this.origin;
206         if (IS_REAL_CLIENT(this))
207         {
208             msg_entity = this;
209             WriteByte(MSG_ONE, SVC_SETVIEW);
210             WriteEntity(MSG_ONE, this);
211         }
212         // give the spectator some space between walls for MOVETYPE_FLY_WORLDONLY
213         // so that your view doesn't go into the ceiling with MOVETYPE_FLY_WORLDONLY, previously "PL_VIEW_OFS"
214         if(!autocvar_g_debug_globalsounds)
215         {
216                 // needed for player sounds
217                 this.model = "";
218                 FixPlayermodel(this);
219         } 
220         setmodel(this, MDL_Null);
221         setsize(this, STAT(PL_CROUCH_MIN, NULL), STAT(PL_CROUCH_MAX, NULL));
222         this.view_ofs = '0 0 0';
223     }
224
225     RemoveGrapplingHook(this);
226         Portal_ClearAll(this);
227         Unfreeze(this);
228
229         if (this.alivetime)
230         {
231                 if (!warmup_stage)
232                         PS_GR_P_ADDVAL(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
233                 this.alivetime = 0;
234         }
235
236         if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
237
238         WaypointSprite_PlayerDead(this);
239
240         if (mutator_returnvalue) {
241             // mutator prevents resetting teams+score
242         } else {
243                 this.team = -1;  // move this as it is needed to log the player spectating in eventlog
244         this.frags = FRAGS_SPECTATOR;
245         PlayerScore_Clear(this);  // clear scores when needed
246     }
247
248         if (this.killcount != FRAGS_SPECTATOR)
249         {
250                 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_SPECTATE, this.netname);
251                 if(!intermission_running)
252                 if(autocvar_g_chat_nospectators == 1 || (!(warmup_stage || gameover) && autocvar_g_chat_nospectators == 2))
253                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_CHAT_NOSPECTATORS);
254
255                 if(this.just_joined == false) {
256                         LogTeamchange(this.playerid, -1, 4);
257                 } else
258                         this.just_joined = false;
259         }
260
261         accuracy_resend(this);
262
263         this.spectatortime = time;
264         this.bot_attack = false;
265     this.hud = HUD_NORMAL;
266         TRANSMUTE(Observer, this);
267         this.iscreature = false;
268         this.teleportable = TELEPORT_SIMPLE;
269         this.damagedbycontents = false;
270         this.health = FRAGS_SPECTATOR;
271         this.takedamage = DAMAGE_NO;
272         this.solid = SOLID_NOT;
273         this.movetype = MOVETYPE_FLY_WORLDONLY; // user preference is controlled by playerprethink
274         this.flags = FL_CLIENT | FL_NOTARGET;
275         this.armorvalue = 666;
276         this.effects = 0;
277         this.armorvalue = autocvar_g_balance_armor_start;
278         this.pauserotarmor_finished = 0;
279         this.pauserothealth_finished = 0;
280         this.pauseregen_finished = 0;
281         this.damageforcescale = 0;
282         this.death_time = 0;
283         this.respawn_flags = 0;
284         this.respawn_time = 0;
285         this.stat_respawn_time = 0;
286         this.alpha = 0;
287         this.scale = 0;
288         this.fade_time = 0;
289         this.pain_frame = 0;
290         this.pain_finished = 0;
291         this.strength_finished = 0;
292         this.invincible_finished = 0;
293         this.superweapons_finished = 0;
294         this.pushltime = 0;
295         this.istypefrag = 0;
296         setthink(this, func_null);
297         this.nextthink = 0;
298         this.hook_time = 0;
299         this.deadflag = DEAD_NO;
300         this.crouch = false;
301         this.revival_time = 0;
302
303         this.items = 0;
304         this.weapons = '0 0 0';
305         this.drawonlytoclient = this;
306
307         this.weaponname = "";
308         this.weaponmodel = "";
309         for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
310         {
311                 this.weaponentities[slot] = NULL;
312         }
313         this.exteriorweaponentity = NULL;
314         this.killcount = FRAGS_SPECTATOR;
315         this.velocity = '0 0 0';
316         this.avelocity = '0 0 0';
317         this.punchangle = '0 0 0';
318         this.punchvector = '0 0 0';
319         this.oldvelocity = this.velocity;
320         this.fire_endtime = -1;
321         this.event_damage = func_null;
322 }
323
324 int player_getspecies(entity this)
325 {
326         get_model_parameters(this.model, this.skin);
327         int s = get_model_parameters_species;
328         get_model_parameters(string_null, 0);
329         if (s < 0) return SPECIES_HUMAN;
330         return s;
331 }
332
333 .float model_randomizer;
334 void FixPlayermodel(entity player)
335 {
336         string defaultmodel = "";
337         int defaultskin = 0;
338         if(autocvar_sv_defaultcharacter)
339         {
340                 if(teamplay)
341                 {
342                         string s = Static_Team_ColorName_Lower(player.team);
343                         if (s != "neutral")
344                         {
345                                 defaultmodel = cvar_string(strcat("sv_defaultplayermodel_", s));
346                                 defaultskin = cvar(strcat("sv_defaultplayerskin_", s));
347                         }
348                 }
349
350                 if(defaultmodel == "")
351                 {
352                         defaultmodel = autocvar_sv_defaultplayermodel;
353                         defaultskin = autocvar_sv_defaultplayerskin;
354                 }
355
356                 int n = tokenize_console(defaultmodel);
357                 if(n > 0)
358                 {
359                         defaultmodel = argv(floor(n * player.model_randomizer));
360                         // However, do NOT randomize if the player-selected model is in the list.
361                         for (int i = 0; i < n; ++i)
362                                 if ((argv(i) == player.playermodel && defaultskin == stof(player.playerskin)) || argv(i) == strcat(player.playermodel, ":", player.playerskin))
363                                         defaultmodel = argv(i);
364                 }
365
366                 int i = strstrofs(defaultmodel, ":", 0);
367                 if(i >= 0)
368                 {
369                         defaultskin = stof(substring(defaultmodel, i+1, -1));
370                         defaultmodel = substring(defaultmodel, 0, i);
371                 }
372         }
373         if(autocvar_sv_defaultcharacterskin && !defaultskin)
374         {
375                 if(teamplay)
376                 {
377                         string s = Static_Team_ColorName_Lower(player.team);
378                         if (s != "neutral")
379                                 defaultskin = cvar(strcat("sv_defaultplayerskin_", s));
380                 }
381
382                 if(!defaultskin)
383                         defaultskin = autocvar_sv_defaultplayerskin;
384         }
385
386         MUTATOR_CALLHOOK(FixPlayermodel, defaultmodel, defaultskin, player);
387         defaultmodel = M_ARGV(0, string);
388         defaultskin = M_ARGV(1, int);
389
390         bool chmdl = false;
391         int oldskin;
392         if(defaultmodel != "")
393         {
394                 if (defaultmodel != player.model)
395                 {
396                         vector m1 = player.mins;
397                         vector m2 = player.maxs;
398                         setplayermodel (player, defaultmodel);
399                         setsize (player, m1, m2);
400                         chmdl = true;
401                 }
402
403                 oldskin = player.skin;
404                 player.skin = defaultskin;
405         } else {
406                 if (player.playermodel != player.model || player.playermodel == "")
407                 {
408                         player.playermodel = CheckPlayerModel(player.playermodel); // this is never "", so no endless loop
409                         vector m1 = player.mins;
410                         vector m2 = player.maxs;
411                         setplayermodel (player, player.playermodel);
412                         setsize (player, m1, m2);
413                         chmdl = true;
414                 }
415
416                 if(!autocvar_sv_defaultcharacterskin)
417                 {
418                         oldskin = player.skin;
419                         player.skin = stof(player.playerskin);
420                 }
421                 else
422                 {
423                         oldskin = player.skin;
424                         player.skin = defaultskin;
425                 }
426         }
427
428         if(chmdl || oldskin != player.skin) // model or skin has changed
429         {
430                 player.species = player_getspecies(player); // update species
431                 if(!autocvar_g_debug_globalsounds)
432                         UpdatePlayerSounds(player); // update skin sounds
433         }
434
435         if(!teamplay)
436                 if(strlen(autocvar_sv_defaultplayercolors))
437                         if(player.clientcolors != stof(autocvar_sv_defaultplayercolors))
438                                 setcolor(player, stof(autocvar_sv_defaultplayercolors));
439 }
440
441
442 /** Called when a client spawns in the server */
443 void PutClientInServer()
444 {ENGINE_EVENT();
445         if (IS_BOT_CLIENT(this)) {
446                 TRANSMUTE(Player, this);
447         } else if (IS_REAL_CLIENT(this)) {
448                 msg_entity = this;
449                 WriteByte(MSG_ONE, SVC_SETVIEW);
450                 WriteEntity(MSG_ONE, this);
451         }
452         if (gameover) {
453                 TRANSMUTE(Observer, this);
454         }
455
456         SetSpectatee(this, NULL);
457
458         // reset player keys
459         this.itemkeys = 0;
460
461         MUTATOR_CALLHOOK(PutClientInServer, this);
462
463         if (IS_OBSERVER(this)) {
464                 PutObserverInServer(this);
465         } else if (IS_PLAYER(this)) {
466                 PlayerState_attach(this);
467                 accuracy_resend(this);
468
469                 if (this.team < 0)
470                         JoinBestTeam(this, false, true);
471
472                 entity spot = SelectSpawnPoint(this, false);
473                 if (!spot) {
474                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_NOSPAWNS);
475                         return; // spawn failed
476                 }
477
478                 TRANSMUTE(Player, this);
479                 this.wasplayer = true;
480                 this.iscreature = true;
481                 this.teleportable = TELEPORT_NORMAL;
482                 this.damagedbycontents = true;
483                 this.movetype = MOVETYPE_WALK;
484                 this.solid = SOLID_SLIDEBOX;
485                 this.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_SOLID;
486                 if (autocvar_g_playerclip_collisions)
487                         this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
488                 if (IS_BOT_CLIENT(this) && autocvar_g_botclip_collisions)
489                         this.dphitcontentsmask |= DPCONTENTS_BOTCLIP;
490                 this.frags = FRAGS_PLAYER;
491                 if (INDEPENDENT_PLAYERS) MAKE_INDEPENDENT_PLAYER(this);
492                 this.flags = FL_CLIENT | FL_PICKUPITEMS;
493                 if (autocvar__notarget)
494                         this.flags |= FL_NOTARGET;
495                 this.takedamage = DAMAGE_AIM;
496                 this.effects = EF_TELEPORT_BIT | EF_RESTARTANIM_BIT;
497                 this.dmg = 2; // WTF
498
499                 if (warmup_stage) {
500                         this.ammo_shells = warmup_start_ammo_shells;
501                         this.ammo_nails = warmup_start_ammo_nails;
502                         this.ammo_rockets = warmup_start_ammo_rockets;
503                         this.ammo_cells = warmup_start_ammo_cells;
504                         this.ammo_plasma = warmup_start_ammo_plasma;
505                         this.ammo_fuel = warmup_start_ammo_fuel;
506                         this.health = warmup_start_health;
507                         this.armorvalue = warmup_start_armorvalue;
508                         this.weapons = WARMUP_START_WEAPONS;
509                 } else {
510                         this.ammo_shells = start_ammo_shells;
511                         this.ammo_nails = start_ammo_nails;
512                         this.ammo_rockets = start_ammo_rockets;
513                         this.ammo_cells = start_ammo_cells;
514                         this.ammo_plasma = start_ammo_plasma;
515                         this.ammo_fuel = start_ammo_fuel;
516                         this.health = start_health;
517                         this.armorvalue = start_armorvalue;
518                         this.weapons = start_weapons;
519                 }
520
521                 this.superweapons_finished = (this.weapons & WEPSET_SUPERWEAPONS) ? time + autocvar_g_balance_superweapons_time : 0;
522
523                 this.items = start_items;
524
525                 this.spawnshieldtime = time + autocvar_g_spawnshieldtime;
526                 this.pauserotarmor_finished = time + autocvar_g_balance_pause_armor_rot_spawn;
527                 this.pauserothealth_finished = time + autocvar_g_balance_pause_health_rot_spawn;
528                 this.pauserotfuel_finished = time + autocvar_g_balance_pause_fuel_rot_spawn;
529                 this.pauseregen_finished = time + autocvar_g_balance_pause_health_regen_spawn;
530                 // extend the pause of rotting if client was reset at the beginning of the countdown
531                 if (!autocvar_sv_ready_restart_after_countdown && time < game_starttime) { // TODO why is this cvar NOTted?
532                         float f = game_starttime - time;
533                         this.spawnshieldtime += f;
534                         this.pauserotarmor_finished += f;
535                         this.pauserothealth_finished += f;
536                         this.pauseregen_finished += f;
537                 }
538                 this.damageforcescale = 2;
539                 this.death_time = 0;
540                 this.respawn_flags = 0;
541                 this.respawn_time = 0;
542                 this.stat_respawn_time = 0;
543                 this.scale = autocvar_sv_player_scale;
544                 this.fade_time = 0;
545                 this.pain_frame = 0;
546                 this.pain_finished = 0;
547                 this.pushltime = 0;
548                 setthink(this, func_null); // players have no think function
549                 this.nextthink = 0;
550                 this.dmg_team = 0;
551                 this.ballistics_density = autocvar_g_ballistics_density_player;
552
553                 this.deadflag = DEAD_NO;
554
555                 this.angles = spot.angles;
556                 this.angles_z = 0; // never spawn tilted even if the spot says to
557                 if (IS_BOT_CLIENT(this))
558                         this.v_angle = this.angles;
559                 this.fixangle = true; // turn this way immediately
560                 this.oldvelocity = this.velocity = '0 0 0';
561                 this.avelocity = '0 0 0';
562                 this.punchangle = '0 0 0';
563                 this.punchvector = '0 0 0';
564
565                 this.strength_finished = 0;
566                 this.invincible_finished = 0;
567                 this.fire_endtime = -1;
568                 this.revival_time = 0;
569                 this.air_finished = time + 12;
570
571                 entity spawnevent = new_pure(spawnevent);
572                 spawnevent.owner = this;
573                 Net_LinkEntity(spawnevent, false, 0.5, SpawnEvent_Send);
574
575                 // Cut off any still running player sounds.
576                 stopsound(this, CH_PLAYER_SINGLE);
577
578                 this.model = "";
579                 FixPlayermodel(this);
580                 this.drawonlytoclient = NULL;
581
582                 this.crouch = false;
583                 this.view_ofs = STAT(PL_VIEW_OFS, NULL);
584                 setsize(this, STAT(PL_MIN, NULL), STAT(PL_MAX, NULL));
585                 this.spawnorigin = spot.origin;
586                 setorigin(this, spot.origin + '0 0 1' * (1 - this.mins.z - 24));
587                 // don't reset back to last position, even if new position is stuck in solid
588                 this.oldorigin = this.origin;
589                 this.prevorigin = this.origin;
590                 this.lastteleporttime = time; // prevent insane speeds due to changing origin
591                 this.conveyor = NULL; // prevent conveyors at the previous location from moving a freshly spawned player
592                 this.hud = HUD_NORMAL;
593
594                 this.event_damage = PlayerDamage;
595
596                 this.bot_attack = true;
597                 this.monster_attack = true;
598
599                 PHYS_INPUT_BUTTON_ATCK(this) = PHYS_INPUT_BUTTON_JUMP(this) = PHYS_INPUT_BUTTON_ATCK2(this) = false;
600
601                 if (this.killcount == FRAGS_SPECTATOR) {
602                         PlayerScore_Clear(this);
603                         this.killcount = 0;
604                 }
605
606                 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
607                 {
608                         CL_SpawnWeaponentity(this, weaponentities[slot]);
609                 }
610                 this.alpha = default_player_alpha;
611                 this.colormod = '1 1 1' * autocvar_g_player_brightness;
612                 this.exteriorweaponentity.alpha = default_weapon_alpha;
613
614                 this.speedrunning = false;
615
616                 target_voicescript_clear(this);
617
618                 // reset fields the weapons may use
619                 FOREACH(Weapons, true, LAMBDA(
620                         it.wr_resetplayer(it, this);
621                         // reload all reloadable weapons
622                         if (it.spawnflags & WEP_FLAG_RELOADABLE) {
623                                 this.weapon_load[it.m_id] = it.reloading_ammo;
624                         }
625                 ));
626
627                 {
628                         string s = spot.target;
629                         spot.target = string_null;
630                         SUB_UseTargets(spot, this, NULL);
631                         spot.target = s;
632                 }
633
634                 Unfreeze(this);
635
636                 MUTATOR_CALLHOOK(PlayerSpawn, this, spot);
637
638                 if (autocvar_spawn_debug)
639                 {
640                         sprint(this, strcat("spawnpoint origin:  ", vtos(spot.origin), "\n"));
641                         remove(spot); // usefull for checking if there are spawnpoints, that let drop through the floor
642                 }
643
644                 PS(this).m_switchweapon = w_getbestweapon(this);
645                 this.cnt = -1; // W_LastWeapon will not complain
646                 PS(this).m_weapon = WEP_Null;
647                 this.weaponname = "";
648                 PS(this).m_switchingweapon = WEP_Null;
649
650                 if (!warmup_stage && !this.alivetime)
651                         this.alivetime = time;
652
653                 antilag_clear(this, CS(this));
654         }
655 }
656
657 void ClientInit_misc(entity this);
658
659 .float ebouncefactor, ebouncestop; // electro's values
660 // TODO do we need all these fields, or should we stop autodetecting runtime
661 // changes and just have a console command to update this?
662 bool ClientInit_SendEntity(entity this, entity to, int sf)
663 {
664         WriteHeader(MSG_ENTITY, _ENT_CLIENT_INIT);
665         return = true;
666         msg_entity = to;
667         // MSG_INIT replacement
668         // TODO: make easier to use
669         Registry_send_all();
670         W_PROP_reload(MSG_ONE, to);
671         ClientInit_misc(this);
672         MUTATOR_CALLHOOK(Ent_Init);
673 }
674 void ClientInit_misc(entity this)
675 {
676         int channel = MSG_ONE;
677         WriteHeader(channel, ENT_CLIENT_INIT);
678         WriteByte(channel, g_nexball_meter_period * 32);
679         WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[0]));
680         WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[1]));
681         WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[2]));
682         WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[3]));
683         WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[0]));
684         WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[1]));
685         WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[2]));
686         WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[3]));
687
688         if(sv_foginterval && world.fog != "")
689                 WriteString(channel, world.fog);
690         else
691                 WriteString(channel, "");
692         WriteByte(channel, this.count * 255.0); // g_balance_armor_blockpercent
693         WriteByte(channel, serverflags); // client has to know if it should zoom or not
694         WriteCoord(channel, autocvar_g_trueaim_minrange);
695 }
696
697 void ClientInit_CheckUpdate(entity this)
698 {
699         this.nextthink = time;
700         if(this.count != autocvar_g_balance_armor_blockpercent)
701         {
702                 this.count = autocvar_g_balance_armor_blockpercent;
703                 this.SendFlags |= 1;
704         }
705 }
706
707 void ClientInit_Spawn()
708 {
709         entity e = new_pure(clientinit);
710         setthink(e, ClientInit_CheckUpdate);
711         Net_LinkEntity(e, false, 0, ClientInit_SendEntity);
712
713         ClientInit_CheckUpdate(e);
714 }
715
716 /*
717 =============
718 SetNewParms
719 =============
720 */
721 void SetNewParms ()
722 {
723         // initialize parms for a new player
724         parm1 = -(86400 * 366);
725
726         MUTATOR_CALLHOOK(SetNewParms);
727 }
728
729 /*
730 =============
731 SetChangeParms
732 =============
733 */
734 void SetChangeParms ()
735 {ENGINE_EVENT();
736         // save parms for level change
737         parm1 = this.parm_idlesince - time;
738
739         MUTATOR_CALLHOOK(SetChangeParms);
740 }
741
742 /*
743 =============
744 DecodeLevelParms
745 =============
746 */
747 void DecodeLevelParms(entity this)
748 {
749         // load parms
750         this.parm_idlesince = parm1;
751         if (this.parm_idlesince == -(86400 * 366))
752                 this.parm_idlesince = time;
753
754         // whatever happens, allow 60 seconds of idling directly after connect for map loading
755         this.parm_idlesince = max(this.parm_idlesince, time - sv_maxidle + 60);
756
757         MUTATOR_CALLHOOK(DecodeLevelParms);
758 }
759
760 /*
761 =============
762 ClientKill
763
764 Called when a client types 'kill' in the console
765 =============
766 */
767
768 .float clientkill_nexttime;
769 void ClientKill_Now_TeamChange(entity this)
770 {
771         if(this.killindicator_teamchange == -1)
772         {
773                 JoinBestTeam( this, false, true );
774         }
775         else if(this.killindicator_teamchange == -2)
776         {
777                 if(blockSpectators)
778                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
779                 PutObserverInServer(this);
780         }
781         else
782                 WITHSELF(this, SV_ChangeTeam(this.killindicator_teamchange - 1));
783         this.killindicator_teamchange = 0;
784 }
785
786 void ClientKill_Now(entity this)
787 {
788         if(this.vehicle)
789         {
790             vehicles_exit(this.vehicle, VHEF_RELEASE);
791             if(!this.killindicator_teamchange)
792             {
793             this.vehicle_health = -1;
794             Damage(this, this, this, 1 , DEATH_KILL.m_id, this.origin, '0 0 0');
795             }
796         }
797
798         if(this.killindicator && !wasfreed(this.killindicator))
799                 remove(this.killindicator);
800
801         this.killindicator = NULL;
802
803         if(this.killindicator_teamchange)
804                 ClientKill_Now_TeamChange(this);
805
806         if(IS_PLAYER(this))
807                 Damage(this, this, this, 100000, DEATH_KILL.m_id, this.origin, '0 0 0');
808
809         // now I am sure the player IS dead
810 }
811 void KillIndicator_Think(entity this)
812 {
813         if (gameover)
814         {
815                 this.owner.killindicator = NULL;
816                 remove(this);
817                 return;
818         }
819
820         if (this.owner.alpha < 0 && !this.owner.vehicle)
821         {
822                 this.owner.killindicator = NULL;
823                 remove(this);
824                 return;
825         }
826
827         if(this.cnt <= 0)
828         {
829                 ClientKill_Now(this.owner);
830                 return;
831         }
832     else if(g_cts && this.health == 1) // health == 1 means that it's silent
833     {
834         this.nextthink = time + 1;
835         this.cnt -= 1;
836     }
837         else
838         {
839                 if(this.cnt <= 10)
840                         setmodel(this, MDL_NUM(this.cnt));
841                 if(IS_REAL_CLIENT(this.owner))
842                 {
843                         if(this.cnt <= 10)
844                                 { Send_Notification(NOTIF_ONE, this.owner, MSG_ANNCE, Announcer_PickNumber(CNT_KILL, this.cnt)); }
845                 }
846                 this.nextthink = time + 1;
847                 this.cnt -= 1;
848         }
849 }
850
851 float clientkilltime;
852 void ClientKill_TeamChange (entity this, float targetteam) // 0 = don't change, -1 = auto, -2 = spec
853 {
854         float killtime;
855         float starttime;
856         entity e;
857
858         if (gameover)
859                 return;
860
861         killtime = autocvar_g_balance_kill_delay;
862
863         if(g_race_qualifying || g_cts)
864                 killtime = 0;
865
866     if(MUTATOR_CALLHOOK(ClientKill, this, killtime))
867         return;
868
869         this.killindicator_teamchange = targetteam;
870
871     if(!this.killindicator)
872         {
873                 if(!IS_DEAD(this))
874                 {
875                         killtime = max(killtime, this.clientkill_nexttime - time);
876                         this.clientkill_nexttime = time + killtime + autocvar_g_balance_kill_antispam;
877                 }
878
879                 if(killtime <= 0 || !IS_PLAYER(this) || IS_DEAD(this))
880                 {
881                         ClientKill_Now(this);
882                 }
883                 else
884                 {
885                         starttime = max(time, clientkilltime);
886
887                         this.killindicator = spawn();
888                         this.killindicator.owner = this;
889                         this.killindicator.scale = 0.5;
890                         setattachment(this.killindicator, this, "");
891                         setorigin(this.killindicator, '0 0 52');
892                         setthink(this.killindicator, KillIndicator_Think);
893                         this.killindicator.nextthink = starttime + (this.lip) * 0.05;
894                         clientkilltime = max(clientkilltime, this.killindicator.nextthink + 0.05);
895                         this.killindicator.cnt = ceil(killtime);
896                         this.killindicator.count = bound(0, ceil(killtime), 10);
897                         //sprint(this, strcat("^1You'll be dead in ", ftos(this.killindicator.cnt), " seconds\n"));
898
899                         for(e = NULL; (e = find(e, classname, "body")) != NULL; )
900                         {
901                                 if(e.enemy != this)
902                                         continue;
903                                 e.killindicator = spawn();
904                                 e.killindicator.owner = e;
905                                 e.killindicator.scale = 0.5;
906                                 setattachment(e.killindicator, e, "");
907                                 setorigin(e.killindicator, '0 0 52');
908                                 setthink(e.killindicator, KillIndicator_Think);
909                                 e.killindicator.nextthink = starttime + (e.lip) * 0.05;
910                                 clientkilltime = max(clientkilltime, e.killindicator.nextthink + 0.05);
911                                 e.killindicator.cnt = ceil(killtime);
912                         }
913                         this.lip = 0;
914                 }
915         }
916         if(this.killindicator)
917         {
918                 if(targetteam == 0) // just die
919                 {
920                         this.killindicator.colormod = '0 0 0';
921                         if(IS_REAL_CLIENT(this))
922                         if(this.killindicator.cnt > 0)
923                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_TEAMCHANGE_SUICIDE, this.killindicator.cnt);
924                 }
925                 else if(targetteam == -1) // auto
926                 {
927                         this.killindicator.colormod = '0 1 0';
928                         if(IS_REAL_CLIENT(this))
929                         if(this.killindicator.cnt > 0)
930                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_TEAMCHANGE_AUTO, this.killindicator.cnt);
931                 }
932                 else if(targetteam == -2) // spectate
933                 {
934                         this.killindicator.colormod = '0.5 0.5 0.5';
935                         if(IS_REAL_CLIENT(this))
936                         if(this.killindicator.cnt > 0)
937                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_TEAMCHANGE_SPECTATE, this.killindicator.cnt);
938                 }
939                 else
940                 {
941                         this.killindicator.colormod = Team_ColorRGB(targetteam);
942                         if(IS_REAL_CLIENT(this))
943                         if(this.killindicator.cnt > 0)
944                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, APP_TEAM_NUM(targetteam, CENTER_TEAMCHANGE), this.killindicator.cnt);
945                 }
946         }
947
948 }
949
950 void ClientKill ()
951 {ENGINE_EVENT();
952         if(gameover) return;
953         if(this.player_blocked) return;
954         if(STAT(FROZEN, this)) return;
955
956         ClientKill_TeamChange(this, 0);
957 }
958
959 void FixClientCvars(entity e)
960 {
961         // send prediction settings to the client
962         stuffcmd(e, "\nin_bindmap 0 0\n");
963         if(autocvar_g_antilag == 3) // client side hitscan
964                 stuffcmd(e, "cl_cmd settemp cl_prydoncursor_notrace 0\n");
965         if(autocvar_sv_gentle)
966                 stuffcmd(e, "cl_cmd settemp cl_gentle 1\n");
967
968         MUTATOR_CALLHOOK(FixClientCvars, e);
969 }
970
971 float PlayerInIDList(entity p, string idlist)
972 {
973         float n, i;
974         string s;
975
976         // NOTE: we do NOT check crypto_idfp_signed here, an unsigned ID is fine too for this
977         if (!p.crypto_idfp)
978                 return 0;
979
980         // this function allows abbreviated player IDs too!
981         n = tokenize_console(idlist);
982         for(i = 0; i < n; ++i)
983         {
984                 s = argv(i);
985                 if(s == substring(p.crypto_idfp, 0, strlen(s)))
986                         return 1;
987         }
988
989         return 0;
990 }
991
992 #ifdef DP_EXT_PRECONNECT
993 /*
994 =============
995 ClientPreConnect
996
997 Called once (not at each match start) when a client begins a connection to the server
998 =============
999 */
1000 void ClientPreConnect ()
1001 {ENGINE_EVENT();
1002         if(autocvar_sv_eventlog)
1003         {
1004                 GameLogEcho(sprintf(":connect:%d:%d:%s",
1005                         this.playerid,
1006                         etof(this),
1007                         ((IS_REAL_CLIENT(this)) ? this.netaddress : "bot")
1008                 ));
1009         }
1010 }
1011 #endif
1012
1013 /**
1014 =============
1015 ClientConnect
1016
1017 Called when a client connects to the server
1018 =============
1019 */
1020 void ClientConnect()
1021 {ENGINE_EVENT();
1022         if (Ban_MaybeEnforceBanOnce(this)) return;
1023         assert(!IS_CLIENT(this), return);
1024         this.flags |= FL_CLIENT;
1025         assert(player_count >= 0, player_count = 0);
1026
1027 #ifdef WATERMARK
1028         Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_WATERMARK, WATERMARK);
1029 #endif
1030         this.version_nagtime = time + 10 + random() * 10;
1031         TRANSMUTE(Client, this);
1032
1033         // identify the right forced team
1034         if (autocvar_g_campaign)
1035         {
1036                 if (IS_REAL_CLIENT(this)) // only players, not bots
1037                 {
1038                         switch (autocvar_g_campaign_forceteam)
1039                         {
1040                                 case 1: this.team_forced = NUM_TEAM_1; break;
1041                                 case 2: this.team_forced = NUM_TEAM_2; break;
1042                                 case 3: this.team_forced = NUM_TEAM_3; break;
1043                                 case 4: this.team_forced = NUM_TEAM_4; break;
1044                                 default: this.team_forced = 0;
1045                         }
1046                 }
1047         }
1048         else if (PlayerInIDList(this, autocvar_g_forced_team_red))    this.team_forced = NUM_TEAM_1;
1049         else if (PlayerInIDList(this, autocvar_g_forced_team_blue))   this.team_forced = NUM_TEAM_2;
1050         else if (PlayerInIDList(this, autocvar_g_forced_team_yellow)) this.team_forced = NUM_TEAM_3;
1051         else if (PlayerInIDList(this, autocvar_g_forced_team_pink))   this.team_forced = NUM_TEAM_4;
1052         else switch (autocvar_g_forced_team_otherwise)
1053         {
1054                 default: this.team_forced = 0; break;
1055                 case "red": this.team_forced = NUM_TEAM_1; break;
1056                 case "blue": this.team_forced = NUM_TEAM_2; break;
1057                 case "yellow": this.team_forced = NUM_TEAM_3; break;
1058                 case "pink": this.team_forced = NUM_TEAM_4; break;
1059                 case "spectate":
1060                 case "spectator":
1061                         this.team_forced = -1;
1062                         break;
1063         }
1064         if (!teamplay && this.team_forced > 0) this.team_forced = 0;
1065
1066     {
1067         int id = this.playerid;
1068         this.playerid = 0; // silent
1069             JoinBestTeam(this, false, false); // if the team number is valid, keep it
1070             this.playerid = id;
1071     }
1072
1073         if (autocvar_sv_spectate || autocvar_g_campaign || this.team_forced < 0) {
1074                 TRANSMUTE(Observer, this);
1075         } else {
1076                 if (!teamplay || autocvar_g_balance_teams) {
1077                         TRANSMUTE(Player, this);
1078                         campaign_bots_may_start = true;
1079                 } else {
1080                         TRANSMUTE(Observer, this); // do it anyway
1081                 }
1082         }
1083
1084         PlayerStats_GameReport_AddEvent(sprintf("kills-%d", this.playerid));
1085
1086         // always track bots, don't ask for cl_allow_uidtracking
1087     if (IS_BOT_CLIENT(this)) PlayerStats_GameReport_AddPlayer(this);
1088
1089         if (autocvar_sv_eventlog)
1090                 GameLogEcho(strcat(":join:", ftos(this.playerid), ":", ftos(etof(this)), ":", ((IS_REAL_CLIENT(this)) ? this.netaddress : "bot"), ":", this.netname));
1091
1092         LogTeamchange(this.playerid, this.team, 1);
1093
1094         this.just_joined = true;  // stop spamming the eventlog with additional lines when the client connects
1095
1096         this.netname_previous = strzone(this.netname);
1097
1098         Send_Notification(NOTIF_ALL, NULL, MSG_INFO, ((teamplay && IS_PLAYER(this)) ? APP_TEAM_ENT(this, INFO_JOIN_CONNECT_TEAM) : INFO_JOIN_CONNECT), this.netname);
1099
1100         stuffcmd(this, clientstuff, "\n");
1101         stuffcmd(this, "cl_particles_reloadeffects\n"); // TODO do we still need this?
1102
1103         FixClientCvars(this);
1104
1105         // get version info from player
1106         stuffcmd(this, "cmd clientversion $gameversion\n");
1107
1108         // notify about available teams
1109         if (teamplay)
1110         {
1111                 CheckAllowedTeams(this);
1112                 int t = 0;
1113                 if (c1 >= 0) t |= BIT(0);
1114                 if (c2 >= 0) t |= BIT(1);
1115                 if (c3 >= 0) t |= BIT(2);
1116                 if (c4 >= 0) t |= BIT(3);
1117                 stuffcmd(this, sprintf("set _teams_available %d\n", t));
1118         }
1119         else
1120         {
1121                 stuffcmd(this, "set _teams_available 0\n");
1122         }
1123
1124         bot_relinkplayerlist();
1125
1126         this.spectatortime = time;
1127         if (blockSpectators)
1128         {
1129                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
1130         }
1131
1132         this.jointime = time;
1133         this.allowed_timeouts = autocvar_sv_timeout_number;
1134
1135         if (IS_REAL_CLIENT(this))
1136         {
1137                 if (!autocvar_g_campaign)
1138                 {
1139                         this.motd_actived_time = -1;
1140                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
1141                 }
1142
1143                 if (g_weaponarena_weapons == WEPSET(TUBA))
1144                         stuffcmd(this, "cl_cmd settemp chase_active 1\n");
1145         }
1146
1147         if (!sv_foginterval && world.fog != "")
1148                 stuffcmd(this, strcat("\nfog ", world.fog, "\nr_fog_exp2 0\nr_drawfog 1\n"));
1149
1150         if (autocvar_sv_teamnagger && !(autocvar_bot_vs_human && (c3==-1 && c4==-1)))
1151                 if (!g_ca && !g_cts && !g_race) // teamnagger is currently bad for ca, race & cts
1152                         send_CSQC_teamnagger();
1153
1154         CSQCMODEL_AUTOINIT(this);
1155
1156         this.model_randomizer = random();
1157
1158         if (IS_REAL_CLIENT(this))
1159                 sv_notice_join(this);
1160
1161         FOREACH_ENTITY_FLOAT(init_for_player_needed, true, {
1162                 it.init_for_player(it, this);
1163         });
1164
1165         MUTATOR_CALLHOOK(ClientConnect, this);
1166 }
1167 /*
1168 =============
1169 ClientDisconnect
1170
1171 Called when a client disconnects from the server
1172 =============
1173 */
1174 .entity chatbubbleentity;
1175 void ReadyCount();
1176 void ClientDisconnect()
1177 {ENGINE_EVENT();
1178         assert(IS_CLIENT(this), return);
1179
1180         PlayerStats_GameReport_FinalizePlayer(this);
1181         if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
1182         if (this.active_minigame) part_minigame(this);
1183         if (IS_PLAYER(this)) Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
1184
1185         if (autocvar_sv_eventlog)
1186                 GameLogEcho(strcat(":part:", ftos(this.playerid)));
1187
1188         Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_DISCONNECT, this.netname);
1189
1190     MUTATOR_CALLHOOK(ClientDisconnect, this);
1191
1192         ClientState_detach(this);
1193
1194         Portal_ClearAll(this);
1195
1196         Unfreeze(this);
1197
1198         RemoveGrapplingHook(this);
1199
1200         // Here, everything has been done that requires this player to be a client.
1201
1202         this.flags &= ~FL_CLIENT;
1203
1204         if (this.chatbubbleentity) remove(this.chatbubbleentity);
1205         if (this.killindicator) remove(this.killindicator);
1206
1207         WaypointSprite_PlayerGone(this);
1208
1209         bot_relinkplayerlist();
1210
1211         if (this.netname_previous) strunzone(this.netname_previous);
1212         if (this.clientstatus) strunzone(this.clientstatus);
1213         if (this.weaponorder_byimpulse) strunzone(this.weaponorder_byimpulse);
1214         if (this.personal) remove(this.personal);
1215
1216         this.playerid = 0;
1217         ReadyCount();
1218         if (vote_called && IS_REAL_CLIENT(this)) VoteCount(false);
1219 }
1220
1221 void ChatBubbleThink(entity this)
1222 {
1223         this.nextthink = time;
1224         if ((this.owner.alpha < 0) || this.owner.chatbubbleentity != this)
1225         {
1226                 if(this.owner) // but why can that ever be NULL?
1227                         this.owner.chatbubbleentity = NULL;
1228                 remove(this);
1229                 return;
1230         }
1231
1232         this.mdl = "";
1233
1234         if ( !IS_DEAD(this.owner) && IS_PLAYER(this.owner) )
1235         {
1236                 if ( this.owner.active_minigame )
1237                         this.mdl = "models/sprites/minigame_busy.iqm";
1238                 else if (PHYS_INPUT_BUTTON_CHAT(this.owner))
1239                         this.mdl = "models/misc/chatbubble.spr";
1240         }
1241
1242         if ( this.model != this.mdl )
1243                 _setmodel(this, this.mdl);
1244
1245 }
1246
1247 void UpdateChatBubble(entity this)
1248 {
1249         if (this.alpha < 0)
1250                 return;
1251         // spawn a chatbubble entity if needed
1252         if (!this.chatbubbleentity)
1253         {
1254                 this.chatbubbleentity = new(chatbubbleentity);
1255                 this.chatbubbleentity.owner = this;
1256                 this.chatbubbleentity.exteriormodeltoclient = this;
1257                 setthink(this.chatbubbleentity, ChatBubbleThink);
1258                 this.chatbubbleentity.nextthink = time;
1259                 setmodel(this.chatbubbleentity, MDL_CHAT); // precision set below
1260                 //setorigin(this.chatbubbleentity, this.origin + '0 0 15' + this.maxs_z * '0 0 1');
1261                 setorigin(this.chatbubbleentity, '0 0 15' + this.maxs_z * '0 0 1');
1262                 setattachment(this.chatbubbleentity, this, "");  // sticks to moving player better, also conserves bandwidth
1263                 this.chatbubbleentity.mdl = this.chatbubbleentity.model;
1264                 //this.chatbubbleentity.model = "";
1265                 this.chatbubbleentity.effects = EF_LOWPRECISION;
1266         }
1267 }
1268
1269
1270 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1271 // added to the model skins
1272 /*void UpdateColorModHack()
1273 {
1274         float c;
1275         c = this.clientcolors & 15;
1276         // LordHavoc: only bothering to support white, green, red, yellow, blue
1277              if (!teamplay) this.colormod = '0 0 0';
1278         else if (c ==  0) this.colormod = '1.00 1.00 1.00';
1279         else if (c ==  3) this.colormod = '0.10 1.73 0.10';
1280         else if (c ==  4) this.colormod = '1.73 0.10 0.10';
1281         else if (c == 12) this.colormod = '1.22 1.22 0.10';
1282         else if (c == 13) this.colormod = '0.10 0.10 1.73';
1283         else this.colormod = '1 1 1';
1284 }*/
1285
1286 void respawn(entity this)
1287 {
1288         if(this.alpha >= 0 && autocvar_g_respawn_ghosts)
1289         {
1290                 this.solid = SOLID_NOT;
1291                 this.takedamage = DAMAGE_NO;
1292                 this.movetype = MOVETYPE_FLY;
1293                 this.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
1294                 this.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3;
1295                 this.effects |= CSQCMODEL_EF_RESPAWNGHOST;
1296                 Send_Effect(EFFECT_RESPAWN_GHOST, this.origin, '0 0 0', 1);
1297                 if(autocvar_g_respawn_ghosts_maxtime)
1298                         SUB_SetFade (this, time + autocvar_g_respawn_ghosts_maxtime / 2 + random () * (autocvar_g_respawn_ghosts_maxtime - autocvar_g_respawn_ghosts_maxtime / 2), 1.5);
1299         }
1300
1301         CopyBody(this, 1);
1302
1303         this.effects |= EF_NODRAW; // prevent another CopyBody
1304         WITHSELF(this, PutClientInServer());
1305 }
1306
1307 void play_countdown(entity this, float finished, Sound samp)
1308 {
1309     TC(Sound, samp);
1310         if(IS_REAL_CLIENT(this))
1311                 if(floor(finished - time - frametime) != floor(finished - time))
1312                         if(finished - time < 6)
1313                                 sound (this, CH_INFO, samp, VOL_BASE, ATTEN_NORM);
1314 }
1315
1316 void player_powerups(entity this)
1317 {
1318         // add a way to see what the items were BEFORE all of these checks for the mutator hook
1319         int items_prev = this.items;
1320
1321         if((this.items & IT_USING_JETPACK) && !IS_DEAD(this) && !gameover)
1322                 this.modelflags |= MF_ROCKET;
1323         else
1324                 this.modelflags &= ~MF_ROCKET;
1325
1326         this.effects &= ~(EF_RED | EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT | EF_FLAME | EF_NODEPTHTEST);
1327
1328         if((this.alpha < 0 || IS_DEAD(this)) && !this.vehicle) // don't apply the flags if the player is gibbed
1329                 return;
1330
1331         Fire_ApplyDamage(this);
1332         Fire_ApplyEffect(this);
1333
1334         if (!g_instagib)
1335         {
1336                 if (this.items & ITEM_Strength.m_itemid)
1337                 {
1338                         play_countdown(this, this.strength_finished, SND_POWEROFF);
1339                         this.effects = this.effects | (EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT);
1340                         if (time > this.strength_finished)
1341                         {
1342                                 this.items = this.items - (this.items & ITEM_Strength.m_itemid);
1343                                 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERDOWN_STRENGTH, this.netname);
1344                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERDOWN_STRENGTH);
1345                         }
1346                 }
1347                 else
1348                 {
1349                         if (time < this.strength_finished)
1350                         {
1351                                 this.items = this.items | ITEM_Strength.m_itemid;
1352                                 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERUP_STRENGTH, this.netname);
1353                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERUP_STRENGTH);
1354                         }
1355                 }
1356                 if (this.items & ITEM_Shield.m_itemid)
1357                 {
1358                         play_countdown(this, this.invincible_finished, SND_POWEROFF);
1359                         this.effects = this.effects | (EF_RED | EF_ADDITIVE | EF_FULLBRIGHT);
1360                         if (time > this.invincible_finished)
1361                         {
1362                                 this.items = this.items - (this.items & ITEM_Shield.m_itemid);
1363                                 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERDOWN_SHIELD, this.netname);
1364                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERDOWN_SHIELD);
1365                         }
1366                 }
1367                 else
1368                 {
1369                         if (time < this.invincible_finished)
1370                         {
1371                                 this.items = this.items | ITEM_Shield.m_itemid;
1372                                 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERUP_SHIELD, this.netname);
1373                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERUP_SHIELD);
1374                         }
1375                 }
1376                 if (this.items & IT_SUPERWEAPON)
1377                 {
1378                         if (!(this.weapons & WEPSET_SUPERWEAPONS))
1379                         {
1380                                 this.superweapons_finished = 0;
1381                                 this.items = this.items - (this.items & IT_SUPERWEAPON);
1382                                 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_LOST, this.netname);
1383                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_LOST);
1384                         }
1385                         else if (this.items & IT_UNLIMITED_SUPERWEAPONS)
1386                         {
1387                                 // don't let them run out
1388                         }
1389                         else
1390                         {
1391                                 play_countdown(this, this.superweapons_finished, SND_POWEROFF);
1392                                 if (time > this.superweapons_finished)
1393                                 {
1394                                         this.items = this.items - (this.items & IT_SUPERWEAPON);
1395                                         this.weapons &= ~WEPSET_SUPERWEAPONS;
1396                                         //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_BROKEN, this.netname);
1397                                         Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_BROKEN);
1398                                 }
1399                         }
1400                 }
1401                 else if(this.weapons & WEPSET_SUPERWEAPONS)
1402                 {
1403                         if (time < this.superweapons_finished || (this.items & IT_UNLIMITED_SUPERWEAPONS))
1404                         {
1405                                 this.items = this.items | IT_SUPERWEAPON;
1406                                 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_PICKUP, this.netname);
1407                                 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_PICKUP);
1408                         }
1409                         else
1410                         {
1411                                 this.superweapons_finished = 0;
1412                                 this.weapons &= ~WEPSET_SUPERWEAPONS;
1413                         }
1414                 }
1415                 else
1416                 {
1417                         this.superweapons_finished = 0;
1418                 }
1419         }
1420
1421         if(autocvar_g_nodepthtestplayers)
1422                 this.effects = this.effects | EF_NODEPTHTEST;
1423
1424         if(autocvar_g_fullbrightplayers)
1425                 this.effects = this.effects | EF_FULLBRIGHT;
1426
1427         if (time >= game_starttime)
1428         if (time < this.spawnshieldtime)
1429                 this.effects = this.effects | (EF_ADDITIVE | EF_FULLBRIGHT);
1430
1431         MUTATOR_CALLHOOK(PlayerPowerups, this, items_prev);
1432 }
1433
1434 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
1435 {
1436         if(current > stable)
1437                 return current;
1438         else if(current > stable - 0.25) // when close enough, "snap"
1439                 return stable;
1440         else
1441                 return min(stable, current + (stable - current) * regenfactor * regenframetime);
1442 }
1443
1444 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
1445 {
1446         if(current < stable)
1447                 return current;
1448         else if(current < stable + 0.25) // when close enough, "snap"
1449                 return stable;
1450         else
1451                 return max(stable, current + (stable - current) * rotfactor * rotframetime);
1452 }
1453
1454 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit)
1455 {
1456         if(current > rotstable)
1457         {
1458                 if(rotframetime > 0)
1459                 {
1460                         current = CalcRot(current, rotstable, rotfactor, rotframetime);
1461                         current = max(rotstable, current - rotlinear * rotframetime);
1462                 }
1463         }
1464         else if(current < regenstable)
1465         {
1466                 if(regenframetime > 0)
1467                 {
1468                         current = CalcRegen(current, regenstable, regenfactor, regenframetime);
1469                         current = min(regenstable, current + regenlinear * regenframetime);
1470                 }
1471         }
1472
1473         if(current > limit)
1474                 current = limit;
1475
1476         return current;
1477 }
1478
1479 void player_regen(entity this)
1480 {
1481         float max_mod, regen_mod, rot_mod, limit_mod;
1482         max_mod = regen_mod = rot_mod = limit_mod = 1;
1483
1484         float regen_health = autocvar_g_balance_health_regen;
1485         float regen_health_linear = autocvar_g_balance_health_regenlinear;
1486         float regen_health_rot = autocvar_g_balance_health_rot;
1487         float regen_health_rotlinear = autocvar_g_balance_health_rotlinear;
1488         float regen_health_stable = autocvar_g_balance_health_regenstable;
1489         float regen_health_rotstable = autocvar_g_balance_health_rotstable;
1490         bool mutator_returnvalue = MUTATOR_CALLHOOK(PlayerRegen, this, max_mod, regen_mod, rot_mod, limit_mod, regen_health, regen_health_linear, regen_health_rot,
1491                 regen_health_rotlinear, regen_health_stable, regen_health_rotstable);
1492         max_mod = M_ARGV(1, float);
1493         regen_mod = M_ARGV(2, float);
1494         rot_mod = M_ARGV(3, float);
1495         limit_mod = M_ARGV(4, float);
1496         regen_health = M_ARGV(5, float);
1497         regen_health_linear = M_ARGV(6, float);
1498         regen_health_rot = M_ARGV(7, float);
1499         regen_health_rotlinear = M_ARGV(8, float);
1500         regen_health_stable = M_ARGV(9, float);
1501         regen_health_rotstable = M_ARGV(10, float);
1502
1503
1504         if(!mutator_returnvalue)
1505         if(!STAT(FROZEN, this))
1506         {
1507                 float mina, maxa, limith, limita;
1508                 maxa = autocvar_g_balance_armor_rotstable;
1509                 mina = autocvar_g_balance_armor_regenstable;
1510                 limith = autocvar_g_balance_health_limit;
1511                 limita = autocvar_g_balance_armor_limit;
1512
1513                 regen_health_rotstable = regen_health_rotstable * max_mod;
1514                 regen_health_stable = regen_health_stable * max_mod;
1515                 limith = limith * limit_mod;
1516                 limita = limita * limit_mod;
1517
1518                 this.armorvalue = CalcRotRegen(this.armorvalue, mina, autocvar_g_balance_armor_regen, autocvar_g_balance_armor_regenlinear, regen_mod * frametime * (time > this.pauseregen_finished), maxa, autocvar_g_balance_armor_rot, autocvar_g_balance_armor_rotlinear, rot_mod * frametime * (time > this.pauserotarmor_finished), limita);
1519                 this.health = CalcRotRegen(this.health, regen_health_stable, regen_health, regen_health_linear, regen_mod * frametime * (time > this.pauseregen_finished), regen_health_rotstable, regen_health_rot, regen_health_rotlinear, rot_mod * frametime * (time > this.pauserothealth_finished), limith);
1520         }
1521
1522         // if player rotted to death...  die!
1523         // check this outside above checks, as player may still be able to rot to death
1524         if(this.health < 1)
1525         {
1526                 if(this.vehicle)
1527                         vehicles_exit(this.vehicle, VHEF_RELEASE);
1528                 if(this.event_damage)
1529                         this.event_damage(this, this, this, 1, DEATH_ROT.m_id, this.origin, '0 0 0');
1530         }
1531
1532         if (!(this.items & IT_UNLIMITED_WEAPON_AMMO))
1533         {
1534                 float minf, maxf, limitf;
1535
1536                 maxf = autocvar_g_balance_fuel_rotstable;
1537                 minf = autocvar_g_balance_fuel_regenstable;
1538                 limitf = autocvar_g_balance_fuel_limit;
1539
1540                 this.ammo_fuel = CalcRotRegen(this.ammo_fuel, minf, autocvar_g_balance_fuel_regen, autocvar_g_balance_fuel_regenlinear, frametime * (time > this.pauseregen_finished) * ((this.items & ITEM_JetpackRegen.m_itemid) != 0), maxf, autocvar_g_balance_fuel_rot, autocvar_g_balance_fuel_rotlinear, frametime * (time > this.pauserotfuel_finished), limitf);
1541         }
1542 }
1543
1544 bool zoomstate_set;
1545 void SetZoomState(entity this, float z)
1546 {
1547         if(z != this.zoomstate)
1548         {
1549                 this.zoomstate = z;
1550                 ClientData_Touch(this);
1551         }
1552         zoomstate_set = true;
1553 }
1554
1555 void GetPressedKeys(entity this)
1556 {
1557         MUTATOR_CALLHOOK(GetPressedKeys, this);
1558         int keys = this.pressedkeys;
1559         keys = BITSET(keys, KEY_FORWARD,        this.movement.x > 0);
1560         keys = BITSET(keys, KEY_BACKWARD,       this.movement.x < 0);
1561         keys = BITSET(keys, KEY_RIGHT,          this.movement.y > 0);
1562         keys = BITSET(keys, KEY_LEFT,           this.movement.y < 0);
1563
1564         keys = BITSET(keys, KEY_JUMP,           PHYS_INPUT_BUTTON_JUMP(this));
1565         keys = BITSET(keys, KEY_CROUCH,         PHYS_INPUT_BUTTON_CROUCH(this));
1566         keys = BITSET(keys, KEY_ATCK,           PHYS_INPUT_BUTTON_ATCK(this));
1567         keys = BITSET(keys, KEY_ATCK2,          PHYS_INPUT_BUTTON_ATCK2(this));
1568         this.pressedkeys = keys;
1569 }
1570
1571 /*
1572 ======================
1573 spectate mode routines
1574 ======================
1575 */
1576
1577 void SpectateCopy(entity this, entity spectatee)
1578 {
1579     TC(Client, this); TC(Client, spectatee);
1580
1581         MUTATOR_CALLHOOK(SpectateCopy, spectatee, this);
1582         PS(this) = PS(spectatee);
1583         this.armortype = spectatee.armortype;
1584         this.armorvalue = spectatee.armorvalue;
1585         this.ammo_cells = spectatee.ammo_cells;
1586         this.ammo_plasma = spectatee.ammo_plasma;
1587         this.ammo_shells = spectatee.ammo_shells;
1588         this.ammo_nails = spectatee.ammo_nails;
1589         this.ammo_rockets = spectatee.ammo_rockets;
1590         this.ammo_fuel = spectatee.ammo_fuel;
1591         this.clip_load = spectatee.clip_load;
1592         this.clip_size = spectatee.clip_size;
1593         this.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
1594         this.health = spectatee.health;
1595         this.impulse = 0;
1596         this.items = spectatee.items;
1597         this.last_pickup = spectatee.last_pickup;
1598         this.hit_time = spectatee.hit_time;
1599         this.strength_finished = spectatee.strength_finished;
1600         this.invincible_finished = spectatee.invincible_finished;
1601         this.pressedkeys = spectatee.pressedkeys;
1602         this.weapons = spectatee.weapons;
1603         this.vortex_charge = spectatee.vortex_charge;
1604         this.vortex_chargepool_ammo = spectatee.vortex_chargepool_ammo;
1605         this.hagar_load = spectatee.hagar_load;
1606         this.arc_heat_percent = spectatee.arc_heat_percent;
1607         this.minelayer_mines = spectatee.minelayer_mines;
1608         this.punchangle = spectatee.punchangle;
1609         this.view_ofs = spectatee.view_ofs;
1610         this.velocity = spectatee.velocity;
1611         this.dmg_take = spectatee.dmg_take;
1612         this.dmg_save = spectatee.dmg_save;
1613         this.dmg_inflictor = spectatee.dmg_inflictor;
1614         this.v_angle = spectatee.v_angle;
1615         this.angles = spectatee.v_angle;
1616         STAT(FROZEN, this) = STAT(FROZEN, spectatee);
1617         this.revive_progress = spectatee.revive_progress;
1618         if(!PHYS_INPUT_BUTTON_USE(this))
1619                 this.fixangle = true;
1620         setorigin(this, spectatee.origin);
1621         setsize(this, spectatee.mins, spectatee.maxs);
1622         SetZoomState(this, spectatee.zoomstate);
1623
1624     anticheat_spectatecopy(this, spectatee);
1625         this.hud = spectatee.hud;
1626         if(spectatee.vehicle)
1627     {
1628         this.fixangle = false;
1629         //this.velocity = spectatee.vehicle.velocity;
1630         this.vehicle_health = spectatee.vehicle_health;
1631         this.vehicle_shield = spectatee.vehicle_shield;
1632         this.vehicle_energy = spectatee.vehicle_energy;
1633         this.vehicle_ammo1 = spectatee.vehicle_ammo1;
1634         this.vehicle_ammo2 = spectatee.vehicle_ammo2;
1635         this.vehicle_reload1 = spectatee.vehicle_reload1;
1636         this.vehicle_reload2 = spectatee.vehicle_reload2;
1637
1638         msg_entity = this;
1639
1640         WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
1641             WriteAngle(MSG_ONE,  spectatee.v_angle.x);
1642             WriteAngle(MSG_ONE,  spectatee.v_angle.y);
1643             WriteAngle(MSG_ONE,  spectatee.v_angle.z);
1644
1645         //WriteByte (MSG_ONE, SVC_SETVIEW);
1646         //    WriteEntity(MSG_ONE, this);
1647         //makevectors(spectatee.v_angle);
1648         //setorigin(this, spectatee.origin - v_forward * 400 + v_up * 300);*/
1649     }
1650 }
1651
1652 bool SpectateUpdate(entity this)
1653 {
1654         if(!this.enemy)
1655             return false;
1656
1657         if(!IS_PLAYER(this.enemy) || this == this.enemy)
1658         {
1659                 SetSpectatee(this, NULL);
1660                 return false;
1661         }
1662
1663         SpectateCopy(this, this.enemy);
1664
1665         return true;
1666 }
1667
1668 bool SpectateSet(entity this)
1669 {
1670         if(!IS_PLAYER(this.enemy))
1671                 return false;
1672
1673         msg_entity = this;
1674         WriteByte(MSG_ONE, SVC_SETVIEW);
1675         WriteEntity(MSG_ONE, this.enemy);
1676         this.movetype = MOVETYPE_NONE;
1677         accuracy_resend(this);
1678
1679         if(!SpectateUpdate(this))
1680                 PutObserverInServer(this);
1681
1682         return true;
1683 }
1684
1685 void SetSpectatee(entity this, entity spectatee)
1686 {
1687         entity old_spectatee = this.enemy;
1688
1689         this.enemy = spectatee;
1690
1691         // WEAPONTODO
1692         // these are required to fix the spectator bug with arc
1693         if(old_spectatee && old_spectatee.arc_beam) { old_spectatee.arc_beam.SendFlags |= ARC_SF_SETTINGS; }
1694         if(this.enemy && this.enemy.arc_beam) { this.enemy.arc_beam.SendFlags |= ARC_SF_SETTINGS; }
1695 }
1696
1697 bool Spectate(entity this, entity pl)
1698 {
1699         if(MUTATOR_CALLHOOK(SpectateSet, this, pl))
1700                 return false;
1701         pl = M_ARGV(1, entity);
1702
1703         SetSpectatee(this, pl);
1704         return SpectateSet(this);
1705 }
1706
1707 bool SpectateNext(entity this)
1708 {
1709         other = find(this.enemy, classname, STR_PLAYER);
1710
1711         if (MUTATOR_CALLHOOK(SpectateNext, this, other))
1712                 other = M_ARGV(1, entity);
1713         else if (!other)
1714                 other = find(other, classname, STR_PLAYER);
1715
1716         if(other) { SetSpectatee(this, other); }
1717
1718         return SpectateSet(this);
1719 }
1720
1721 bool SpectatePrev(entity this)
1722 {
1723         // NOTE: chain order is from the highest to the lower entnum (unlike find)
1724         other = findchain(classname, STR_PLAYER);
1725         if (!other) // no player
1726                 return false;
1727
1728         entity first = other;
1729         // skip players until current spectated player
1730         if(this.enemy)
1731         while(other && other != this.enemy)
1732                 other = other.chain;
1733
1734         switch (MUTATOR_CALLHOOK(SpectatePrev, this, other, first))
1735         {
1736                 case MUT_SPECPREV_FOUND:
1737                     other = M_ARGV(1, entity);
1738                     break;
1739                 case MUT_SPECPREV_RETURN:
1740                     other = M_ARGV(1, entity);
1741                     return true;
1742                 case MUT_SPECPREV_CONTINUE:
1743                 default:
1744                 {
1745                         if(other.chain)
1746                                 other = other.chain;
1747                         else
1748                                 other = first;
1749                         break;
1750                 }
1751         }
1752
1753         SetSpectatee(this, other);
1754         return SpectateSet(this);
1755 }
1756
1757 /*
1758 =============
1759 ShowRespawnCountdown()
1760
1761 Update a respawn countdown display.
1762 =============
1763 */
1764 void ShowRespawnCountdown(entity this)
1765 {
1766         float number;
1767         if(!IS_DEAD(this)) // just respawned?
1768                 return;
1769         else
1770         {
1771                 number = ceil(this.respawn_time - time);
1772                 if(number <= 0)
1773                         return;
1774                 if(number <= this.respawn_countdown)
1775                 {
1776                         this.respawn_countdown = number - 1;
1777                         if(ceil(this.respawn_time - (time + 0.5)) == number) // only say it if it is the same number even in 0.5s; to prevent overlapping sounds
1778                                 { Send_Notification(NOTIF_ONE, this, MSG_ANNCE, Announcer_PickNumber(CNT_RESPAWN, number)); }
1779                 }
1780         }
1781 }
1782
1783 void LeaveSpectatorMode(entity this)
1784 {
1785         if(this.caplayer)
1786                 return;
1787         if(nJoinAllowed(this, this))
1788         {
1789                 if(!teamplay || autocvar_g_campaign || autocvar_g_balance_teams || (this.wasplayer && autocvar_g_changeteam_banned) || this.team_forced > 0)
1790                 {
1791                         TRANSMUTE(Player, this);
1792
1793                         if(autocvar_g_campaign || autocvar_g_balance_teams)
1794                                 { JoinBestTeam(this, false, true); }
1795
1796                         if(autocvar_g_campaign)
1797                                 { campaign_bots_may_start = true; }
1798
1799                         Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_PREVENT_JOIN);
1800
1801                         WITHSELF(this, PutClientInServer());
1802
1803                         if(IS_PLAYER(this)) { Send_Notification(NOTIF_ALL, NULL, MSG_INFO, ((teamplay && this.team != -1) ? APP_TEAM_ENT(this, INFO_JOIN_PLAY_TEAM) : INFO_JOIN_PLAY), this.netname); }
1804                 }
1805                 else
1806                         stuffcmd(this, "menu_showteamselect\n");
1807         }
1808         else
1809         {
1810                 // Player may not join because g_maxplayers is set
1811                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_PREVENT);
1812         }
1813 }
1814
1815 /**
1816  * Determines whether the player is allowed to join. This depends on cvar
1817  * g_maxplayers, if it isn't used this function always return true, otherwise
1818  * it checks whether the number of currently playing players exceeds g_maxplayers.
1819  * @return int number of free slots for players, 0 if none
1820  */
1821 bool nJoinAllowed(entity this, entity ignore)
1822 {
1823         if(!ignore)
1824         // this is called that way when checking if anyone may be able to join (to build qcstatus)
1825         // so report 0 free slots if restricted
1826         {
1827                 if(autocvar_g_forced_team_otherwise == "spectate")
1828                         return false;
1829                 if(autocvar_g_forced_team_otherwise == "spectator")
1830                         return false;
1831         }
1832
1833         if(this.team_forced < 0)
1834                 return false; // forced spectators can never join
1835
1836         // TODO simplify this
1837         int totalClients = 0;
1838         int currentlyPlaying = 0;
1839         FOREACH_CLIENT(true, LAMBDA(
1840                 if(it != ignore)
1841                         ++totalClients;
1842                 if(IS_REAL_CLIENT(it))
1843                 if(IS_PLAYER(it) || it.caplayer)
1844                         ++currentlyPlaying;
1845         ));
1846
1847         if (!autocvar_g_maxplayers)
1848                 return maxclients - totalClients;
1849
1850         if(currentlyPlaying < autocvar_g_maxplayers)
1851                 return min(maxclients - totalClients, autocvar_g_maxplayers - currentlyPlaying);
1852
1853         return false;
1854 }
1855
1856 /**
1857  * Checks whether the client is an observer or spectator, if so, he will get kicked after
1858  * g_maxplayers_spectator_blocktime seconds
1859  */
1860 void checkSpectatorBlock(entity this)
1861 {
1862         if(IS_SPEC(this) || IS_OBSERVER(this))
1863         if(!this.caplayer)
1864         if(IS_REAL_CLIENT(this))
1865         {
1866                 if( time > (this.spectatortime + autocvar_g_maxplayers_spectator_blocktime) ) {
1867                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_QUIT_KICK_SPECTATING);
1868                         dropclient(this);
1869                 }
1870         }
1871 }
1872
1873 void PrintWelcomeMessage(entity this)
1874 {
1875         if(this.motd_actived_time == 0)
1876         {
1877                 if (autocvar_g_campaign) {
1878                         if ((IS_PLAYER(this) && PHYS_INPUT_BUTTON_INFO(this)) || (!IS_PLAYER(this))) {
1879                                 this.motd_actived_time = time;
1880                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, campaign_message);
1881                         }
1882                 } else {
1883                         if (PHYS_INPUT_BUTTON_INFO(this)) {
1884                                 this.motd_actived_time = time;
1885                                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
1886                         }
1887                 }
1888         }
1889         else if(this.motd_actived_time > 0) // showing MOTD or campaign message
1890         {
1891                 if (autocvar_g_campaign) {
1892                         if (PHYS_INPUT_BUTTON_INFO(this))
1893                                 this.motd_actived_time = time;
1894                         else if ((time - this.motd_actived_time > 2) && IS_PLAYER(this)) { // hide it some seconds after BUTTON_INFO has been released
1895                                 this.motd_actived_time = 0;
1896                                 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
1897                         }
1898                 } else {
1899                         if (PHYS_INPUT_BUTTON_INFO(this))
1900                                 this.motd_actived_time = time;
1901                         else if (time - this.motd_actived_time > 2) { // hide it some seconds after BUTTON_INFO has been released
1902                                 this.motd_actived_time = 0;
1903                                 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
1904                         }
1905                 }
1906         }
1907         else //if(this.motd_actived_time < 0) // just connected, motd is active
1908         {
1909                 if(PHYS_INPUT_BUTTON_INFO(this)) // BUTTON_INFO hides initial MOTD
1910                         this.motd_actived_time = -2; // wait until BUTTON_INFO gets released
1911                 else if(this.motd_actived_time == -2 || IS_PLAYER(this) || IS_SPEC(this))
1912                 {
1913                         // instanctly hide MOTD
1914                         this.motd_actived_time = 0;
1915                         Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
1916                 }
1917         }
1918 }
1919
1920 void ObserverThink(entity this)
1921 {
1922         if ( this.impulse )
1923         {
1924                 MinigameImpulse(this, this.impulse);
1925                 this.impulse = 0;
1926         }
1927         float prefered_movetype;
1928         if (this.flags & FL_JUMPRELEASED) {
1929                 if (PHYS_INPUT_BUTTON_JUMP(this) && !this.version_mismatch) {
1930                         this.flags &= ~FL_JUMPRELEASED;
1931                         this.flags |= FL_SPAWNING;
1932                 } else if(PHYS_INPUT_BUTTON_ATCK(this) && !this.version_mismatch) {
1933                         this.flags &= ~FL_JUMPRELEASED;
1934                         if(SpectateNext(this)) {
1935                                 TRANSMUTE(Spectator, this);
1936                         }
1937                 } else {
1938                         prefered_movetype = ((!PHYS_INPUT_BUTTON_USE(this) ? this.cvar_cl_clippedspectating : !this.cvar_cl_clippedspectating) ? MOVETYPE_FLY_WORLDONLY : MOVETYPE_NOCLIP);
1939                         if (this.movetype != prefered_movetype)
1940                                 this.movetype = prefered_movetype;
1941                 }
1942         } else {
1943                 if (!(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this))) {
1944                         this.flags |= FL_JUMPRELEASED;
1945                         if(this.flags & FL_SPAWNING)
1946                         {
1947                                 this.flags &= ~FL_SPAWNING;
1948                                 LeaveSpectatorMode(this);
1949                                 return;
1950                         }
1951                 }
1952         }
1953 }
1954
1955 void SpectatorThink(entity this)
1956 {
1957         if ( this.impulse )
1958         {
1959                 if(MinigameImpulse(this, this.impulse))
1960                         this.impulse = 0;
1961         }
1962         if (this.flags & FL_JUMPRELEASED) {
1963                 if (PHYS_INPUT_BUTTON_JUMP(this) && !this.version_mismatch) {
1964                         this.flags &= ~FL_JUMPRELEASED;
1965                         this.flags |= FL_SPAWNING;
1966                 } else if(PHYS_INPUT_BUTTON_ATCK(this) || this.impulse == 10 || this.impulse == 15 || this.impulse == 18 || (this.impulse >= 200 && this.impulse <= 209)) {
1967                         this.flags &= ~FL_JUMPRELEASED;
1968                         if(SpectateNext(this)) {
1969                                 TRANSMUTE(Spectator, this);
1970                         } else {
1971                                 TRANSMUTE(Observer, this);
1972                                 WITHSELF(this, PutClientInServer());
1973                         }
1974                         this.impulse = 0;
1975                 } else if(this.impulse == 12 || this.impulse == 16  || this.impulse == 19 || (this.impulse >= 220 && this.impulse <= 229)) {
1976                         this.flags &= ~FL_JUMPRELEASED;
1977                         if(SpectatePrev(this)) {
1978                                 TRANSMUTE(Spectator, this);
1979                         } else {
1980                                 TRANSMUTE(Observer, this);
1981                                 WITHSELF(this, PutClientInServer());
1982                         }
1983                         this.impulse = 0;
1984                 } else if (PHYS_INPUT_BUTTON_ATCK2(this)) {
1985                         this.flags &= ~FL_JUMPRELEASED;
1986                         TRANSMUTE(Observer, this);
1987                         WITHSELF(this, PutClientInServer());
1988                 } else {
1989                         if(!SpectateUpdate(this))
1990                                 PutObserverInServer(this);
1991                 }
1992         } else {
1993                 if (!(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_ATCK2(this))) {
1994                         this.flags |= FL_JUMPRELEASED;
1995                         if(this.flags & FL_SPAWNING)
1996                         {
1997                                 this.flags &= ~FL_SPAWNING;
1998                                 LeaveSpectatorMode(this);
1999                                 return;
2000                         }
2001                 }
2002                 if(!SpectateUpdate(this))
2003                         PutObserverInServer(this);
2004         }
2005
2006         this.flags |= FL_CLIENT | FL_NOTARGET;
2007 }
2008
2009 void vehicles_enter (entity pl, entity veh);
2010 void PlayerUseKey(entity this)
2011 {
2012         if (!IS_PLAYER(this))
2013                 return;
2014
2015         if(this.vehicle)
2016         {
2017                 if(!gameover)
2018                 {
2019                         vehicles_exit(this.vehicle, VHEF_NORMAL);
2020                         return;
2021                 }
2022         }
2023         else if(autocvar_g_vehicles_enter)
2024         {
2025                 if(!STAT(FROZEN, this))
2026                 if(!IS_DEAD(this))
2027                 if(!gameover)
2028                 {
2029                         entity head, closest_target = NULL;
2030                         head = WarpZone_FindRadius(this.origin, autocvar_g_vehicles_enter_radius, true);
2031
2032                         while(head) // find the closest acceptable target to enter
2033                         {
2034                                 if(head.vehicle_flags & VHF_ISVEHICLE)
2035                                 if(!IS_DEAD(head))
2036                                 if(!head.owner || ((head.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(head.owner, this)))
2037                                 if(head.takedamage != DAMAGE_NO)
2038                                 {
2039                                         if(closest_target)
2040                                         {
2041                                                 if(vlen2(this.origin - head.origin) < vlen2(this.origin - closest_target.origin))
2042                                                 { closest_target = head; }
2043                                         }
2044                                         else { closest_target = head; }
2045                                 }
2046
2047                                 head = head.chain;
2048                         }
2049
2050                         if(closest_target) { vehicles_enter(this, closest_target); return; }
2051                 }
2052         }
2053
2054         // a use key was pressed; call handlers
2055         MUTATOR_CALLHOOK(PlayerUseKey, this);
2056 }
2057
2058
2059 /*
2060 =============
2061 PlayerPreThink
2062
2063 Called every frame for each client before the physics are run
2064 =============
2065 */
2066 .float usekeypressed;
2067 .float last_vehiclecheck;
2068 .int items_added;
2069 void PlayerPreThink ()
2070 {ENGINE_EVENT();
2071         WarpZone_PlayerPhysics_FixVAngle(this);
2072
2073     STAT(GAMESTARTTIME, this) = game_starttime;
2074         STAT(ROUNDSTARTTIME, this) = round_starttime;
2075         STAT(ALLOW_OLDVORTEXBEAM, this) = autocvar_g_allow_oldvortexbeam;
2076         STAT(LEADLIMIT, this) = autocvar_leadlimit;
2077
2078         STAT(WEAPONSINMAP, this) = weaponsInMap;
2079
2080         if (frametime) {
2081                 // physics frames: update anticheat stuff
2082                 anticheat_prethink(this);
2083         }
2084
2085         if (blockSpectators && frametime) {
2086                 // WORKAROUND: only use dropclient in server frames (frametime set).
2087                 // Never use it in cl_movement frames (frametime zero).
2088                 checkSpectatorBlock(this);
2089     }
2090
2091         zoomstate_set = false;
2092
2093         // Check for nameless players
2094         if (isInvisibleString(this.netname)) {
2095                 this.netname = strzone(sprintf("Player#%d", this.playerid));
2096                 // stuffcmd(this, strcat("name ", this.netname, "\n")); // maybe?
2097         }
2098         if (this.netname != this.netname_previous) {
2099                 if (autocvar_sv_eventlog) {
2100                         GameLogEcho(strcat(":name:", ftos(this.playerid), ":", this.netname));
2101         }
2102                 if (this.netname_previous) strunzone(this.netname_previous);
2103                 this.netname_previous = strzone(this.netname);
2104         }
2105
2106         // version nagging
2107         if (this.version_nagtime && this.cvar_g_xonoticversion && time > this.version_nagtime) {
2108         this.version_nagtime = 0;
2109         if (strstrofs(this.cvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(this.cvar_g_xonoticversion, "autobuild", 0) >= 0) {
2110             // git client
2111         } else if (strstrofs(autocvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(autocvar_g_xonoticversion, "autobuild", 0) >= 0) {
2112             // git server
2113             Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_BETA, autocvar_g_xonoticversion, this.cvar_g_xonoticversion);
2114         } else {
2115             int r = vercmp(this.cvar_g_xonoticversion, autocvar_g_xonoticversion);
2116             if (r < 0) { // old client
2117                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OUTDATED, autocvar_g_xonoticversion, this.cvar_g_xonoticversion);
2118             } else if (r > 0) { // old server
2119                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OLD, autocvar_g_xonoticversion, this.cvar_g_xonoticversion);
2120             }
2121         }
2122     }
2123
2124         // GOD MODE info
2125         if (!(this.flags & FL_GODMODE) && this.max_armorvalue)
2126         {
2127                 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_GODMODE_OFF, this.max_armorvalue);
2128                 this.max_armorvalue = 0;
2129         }
2130
2131         if (STAT(FROZEN, this) == 2)
2132         {
2133                 this.revive_progress = bound(0, this.revive_progress + frametime * this.revive_speed, 1);
2134                 this.health = max(1, this.revive_progress * start_health);
2135                 this.iceblock.alpha = bound(0.2, 1 - this.revive_progress, 1);
2136
2137                 if (this.revive_progress >= 1)
2138                         Unfreeze(this);
2139         }
2140         else if (STAT(FROZEN, this) == 3)
2141         {
2142                 this.revive_progress = bound(0, this.revive_progress - frametime * this.revive_speed, 1);
2143                 this.health = max(0, autocvar_g_nades_ice_health + (start_health-autocvar_g_nades_ice_health) * this.revive_progress );
2144
2145                 if (this.health < 1)
2146                 {
2147                         if (this.vehicle)
2148                                 vehicles_exit(this.vehicle, VHEF_RELEASE);
2149                         if(this.event_damage)
2150                                 this.event_damage(this, this, this.frozen_by, 1, DEATH_NADE_ICE_FREEZE.m_id, this.origin, '0 0 0');
2151                 }
2152                 else if (this.revive_progress <= 0)
2153                         Unfreeze(this);
2154         }
2155
2156         MUTATOR_CALLHOOK(PlayerPreThink, this);
2157
2158         if(autocvar_g_vehicles_enter)
2159         if(time > this.last_vehiclecheck)
2160         if(IS_PLAYER(this))
2161         if(!gameover)
2162         if(!STAT(FROZEN, this))
2163         if(!this.vehicle)
2164         if(!IS_DEAD(this))
2165         {
2166                 entity veh;
2167                 for(veh = NULL; (veh = findflags(veh, vehicle_flags, VHF_ISVEHICLE)); )
2168                 if(vdist(veh.origin - this.origin, <, autocvar_g_vehicles_enter_radius))
2169                 if(!IS_DEAD(veh))
2170                 if(veh.takedamage != DAMAGE_NO)
2171                 if((veh.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(veh.owner, this))
2172                         Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_GUNNER);
2173                 else if(!veh.owner)
2174                 if(!veh.team || SAME_TEAM(this, veh))
2175                         Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER);
2176                 else if(autocvar_g_vehicles_steal)
2177                         Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_STEAL);
2178
2179                 this.last_vehiclecheck = time + 1;
2180         }
2181
2182         if(!this.cvar_cl_newusekeysupported) // FIXME remove this - it was a stupid idea to begin with, we can JUST use the button
2183         {
2184                 if(PHYS_INPUT_BUTTON_USE(this) && !this.usekeypressed)
2185                         PlayerUseKey(this);
2186                 this.usekeypressed = PHYS_INPUT_BUTTON_USE(this);
2187         }
2188
2189         if (IS_REAL_CLIENT(this))
2190                 PrintWelcomeMessage(this);
2191
2192         if (IS_PLAYER(this)) {
2193                 CheckRules_Player(this);
2194
2195                 if (intermission_running) {
2196                         IntermissionThink(this);
2197                         return;
2198                 }
2199
2200                 if (timeout_status == TIMEOUT_ACTIVE) {
2201             // don't allow the player to turn around while game is paused
2202                         // FIXME turn this into CSQC stuff
2203                         this.v_angle = this.lastV_angle;
2204                         this.angles = this.lastV_angle;
2205                         this.fixangle = true;
2206                 }
2207
2208                 if (frametime) player_powerups(this);
2209
2210                 if (IS_DEAD(this)) {
2211                         if (this.personal && g_race_qualifying) {
2212                                 if (time > this.respawn_time) {
2213                                         STAT(RESPAWN_TIME, this) = this.respawn_time = time + 1; // only retry once a second
2214                                         respawn(this);
2215                                         this.impulse = CHIMPULSE_SPEEDRUN.impulse;
2216                                 }
2217                         } else {
2218                                 if (frametime) player_anim(this);
2219                                 bool button_pressed = (PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this) || PHYS_INPUT_BUTTON_ATCK2(this) || PHYS_INPUT_BUTTON_HOOK(this) || PHYS_INPUT_BUTTON_USE(this));
2220
2221                                 if (this.deadflag == DEAD_DYING) {
2222                                         if ((this.respawn_flags & RESPAWN_FORCE) && !(this.respawn_time < this.respawn_time_max)) {
2223                                                 this.deadflag = DEAD_RESPAWNING;
2224                                         } else if (!button_pressed) {
2225                                                 this.deadflag = DEAD_DEAD;
2226                     }
2227                                 } else if (this.deadflag == DEAD_DEAD) {
2228                                         if (button_pressed) {
2229                                                 this.deadflag = DEAD_RESPAWNABLE;
2230                                         } else if (time >= this.respawn_time_max && (this.respawn_flags & RESPAWN_FORCE)) {
2231                                                 this.deadflag = DEAD_RESPAWNING;
2232                     }
2233                                 } else if (this.deadflag == DEAD_RESPAWNABLE) {
2234                                         if (!button_pressed) {
2235                                                 this.deadflag = DEAD_RESPAWNING;
2236                     }
2237                                 } else if (this.deadflag == DEAD_RESPAWNING) {
2238                                         if (time > this.respawn_time) {
2239                                                 this.respawn_time = time + 1; // only retry once a second
2240                                                 this.respawn_time_max = this.respawn_time;
2241                                                 respawn(this);
2242                                         }
2243                                 }
2244
2245                                 ShowRespawnCountdown(this);
2246
2247                                 if (this.respawn_flags & RESPAWN_SILENT)
2248                                         STAT(RESPAWN_TIME, this) = 0;
2249                                 else if ((this.respawn_flags & RESPAWN_FORCE) && this.respawn_time < this.respawn_time_max)
2250                                 {
2251                                         if (time < this.respawn_time)
2252                                                 STAT(RESPAWN_TIME, this) = this.respawn_time;
2253                                         else if (this.deadflag != DEAD_RESPAWNING)
2254                                                 STAT(RESPAWN_TIME, this) = -this.respawn_time_max;
2255                                 }
2256                                 else
2257                                         STAT(RESPAWN_TIME, this) = this.respawn_time;
2258                         }
2259
2260                         // if respawning, invert stat_respawn_time to indicate this, the client translates it
2261                         if (this.deadflag == DEAD_RESPAWNING && STAT(RESPAWN_TIME, this) > 0)
2262                                 STAT(RESPAWN_TIME, this) *= -1;
2263
2264                         return;
2265                 }
2266
2267                 this.prevorigin = this.origin;
2268
2269                 bool do_crouch = PHYS_INPUT_BUTTON_CROUCH(this);
2270         .entity weaponentity = weaponentities[0]; // TODO: unhardcode
2271                 if (this.hook.state) {
2272                         do_crouch = false;
2273                 } else if (this.vehicle) {
2274                         do_crouch = false;
2275                 } else if (STAT(FROZEN, this)) {
2276                         do_crouch = false;
2277         } else if ((PS(this).m_weapon == WEP_SHOTGUN || PS(this).m_weapon == WEP_SHOCKWAVE) && this.(weaponentity).wframe == WFRAME_FIRE2 && time < this.(weaponentity).weapon_nextthink) {
2278                     // WEAPONTODO: predict
2279                         do_crouch = false;
2280         }
2281
2282                 if (do_crouch) {
2283                         if (!this.crouch) {
2284                                 this.crouch = true;
2285                                 this.view_ofs = STAT(PL_CROUCH_VIEW_OFS, this);
2286                                 setsize(this, STAT(PL_CROUCH_MIN, this), STAT(PL_CROUCH_MAX, this));
2287                                 // setanim(this, this.anim_duck, false, true, true); // this anim is BROKEN anyway
2288                         }
2289                 } else if (this.crouch) {
2290             tracebox(this.origin, STAT(PL_MIN, this), STAT(PL_MAX, this), this.origin, false, this);
2291             if (!trace_startsolid) {
2292                 this.crouch = false;
2293                 this.view_ofs = STAT(PL_VIEW_OFS, this);
2294                 setsize(this, STAT(PL_MIN, this), STAT(PL_MAX, this));
2295             }
2296                 }
2297
2298                 FixPlayermodel(this);
2299
2300                 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2301                 //if(frametime)
2302                 {
2303                         this.items &= ~this.items_added;
2304
2305                         W_WeaponFrame(this);
2306
2307                         this.items_added = 0;
2308                         if (this.items & ITEM_Jetpack.m_itemid && (this.items & ITEM_JetpackRegen.m_itemid || this.ammo_fuel >= 0.01))
2309                 this.items_added |= IT_FUEL;
2310
2311                         this.items |= this.items_added;
2312                 }
2313
2314                 player_regen(this);
2315
2316                 // WEAPONTODO: Add a weapon request for this
2317                 // rot vortex charge to the charge limit
2318                 if (WEP_CVAR(vortex, charge_rot_rate) && this.vortex_charge > WEP_CVAR(vortex, charge_limit) && this.vortex_charge_rottime < time)
2319                         this.vortex_charge = bound(WEP_CVAR(vortex, charge_limit), this.vortex_charge - WEP_CVAR(vortex, charge_rot_rate) * frametime / W_TICSPERFRAME, 1);
2320
2321                 if (frametime) player_anim(this);
2322
2323                 // secret status
2324                 secrets_setstatus(this);
2325
2326                 // monsters status
2327                 monsters_setstatus(this);
2328
2329                 this.dmg_team = max(0, this.dmg_team - autocvar_g_teamdamage_resetspeed * frametime);
2330         }
2331         else if (gameover) {
2332                 if (intermission_running) IntermissionThink(this);
2333                 return;
2334         }
2335         else if (IS_OBSERVER(this)) {
2336                 ObserverThink(this);
2337         }
2338         else if (IS_SPEC(this)) {
2339                 SpectatorThink(this);
2340         }
2341
2342         // WEAPONTODO: Add weapon request for this
2343         if (!zoomstate_set) {
2344                 SetZoomState(this,
2345                         PHYS_INPUT_BUTTON_ZOOM(this) || PHYS_INPUT_BUTTON_ZOOMSCRIPT(this)
2346                         || (PHYS_INPUT_BUTTON_ATCK2(this) && PS(this).m_weapon == WEP_VORTEX)
2347                         || (PHYS_INPUT_BUTTON_ATCK2(this) && PS(this).m_weapon == WEP_RIFLE && WEP_CVAR(rifle, secondary) == 0)
2348                 );
2349     }
2350
2351         int oldspectatee_status = this.spectatee_status;
2352         if (IS_SPEC(this)) {
2353                 this.spectatee_status = etof(this.enemy);
2354         } else if (IS_OBSERVER(this)) {
2355                 this.spectatee_status = etof(this);
2356         } else {
2357                 this.spectatee_status = 0;
2358     }
2359         if (this.spectatee_status != oldspectatee_status) {
2360                 ClientData_Touch(this);
2361                 if (g_race || g_cts) race_InitSpectator();
2362         }
2363
2364         if (this.teamkill_soundtime && time > this.teamkill_soundtime)
2365         {
2366                 this.teamkill_soundtime = 0;
2367
2368                 entity e = this.teamkill_soundsource;
2369                 entity oldpusher = e.pusher;
2370                 e.pusher = this;
2371                 PlayerSound(e, playersound_teamshoot, CH_VOICE, VOICETYPE_LASTATTACKER_ONLY);
2372                 e.pusher = oldpusher;
2373         }
2374
2375         if (this.taunt_soundtime && time > this.taunt_soundtime) {
2376                 this.taunt_soundtime = 0;
2377                 PlayerSound(this, playersound_taunt, CH_VOICE, VOICETYPE_AUTOTAUNT);
2378         }
2379
2380         target_voicescript_next(this);
2381
2382         // WEAPONTODO: Move into weaponsystem somehow
2383         // if a player goes unarmed after holding a loaded weapon, empty his clip size and remove the crosshair ammo ring
2384         if (PS(this).m_weapon == WEP_Null)
2385                 this.clip_load = this.clip_size = 0;
2386 }
2387
2388 void DrownPlayer(entity this)
2389 {
2390         if(IS_DEAD(this))
2391                 return;
2392
2393         if (this.waterlevel != WATERLEVEL_SUBMERGED)
2394         {
2395                 if(this.air_finished < time)
2396                         PlayerSound(this, playersound_gasp, CH_PLAYER, VOICETYPE_PLAYERSOUND);
2397                 this.air_finished = time + autocvar_g_balance_contents_drowndelay;
2398                 this.dmg = 2;
2399         }
2400         else if (this.air_finished < time)
2401         {       // drown!
2402                 if (this.pain_finished < time)
2403                 {
2404                         Damage (this, NULL, NULL, autocvar_g_balance_contents_playerdamage_drowning * autocvar_g_balance_contents_damagerate, DEATH_DROWN.m_id, this.origin, '0 0 0');
2405                         this.pain_finished = time + 0.5;
2406                 }
2407         }
2408 }
2409
2410 /*
2411 =============
2412 PlayerPostThink
2413
2414 Called every frame for each client after the physics are run
2415 =============
2416 */
2417 .float idlekick_lasttimeleft;
2418 void PlayerPostThink ()
2419 {ENGINE_EVENT();
2420         if (sv_maxidle > 0)
2421         if (frametime) // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2422         if (IS_REAL_CLIENT(this))
2423         if (IS_PLAYER(this) || sv_maxidle_spectatorsareidle)
2424         {
2425                 if (time - this.parm_idlesince < 1) // instead of (time == this.parm_idlesince) to support sv_maxidle <= 10
2426                 {
2427                         if (this.idlekick_lasttimeleft)
2428                         {
2429                                 this.idlekick_lasttimeleft = 0;
2430                                 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_IDLING);
2431                         }
2432                 }
2433                 else
2434                 {
2435                         float timeleft = ceil(sv_maxidle - (time - this.parm_idlesince));
2436                         if (timeleft == min(10, sv_maxidle - 1)) { // - 1 to support sv_maxidle <= 10
2437                                 if (!this.idlekick_lasttimeleft)
2438                                         Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_DISCONNECT_IDLING, timeleft);
2439                         }
2440                         if (timeleft <= 0) {
2441                                 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_KICK_IDLING, this.netname);
2442                                 dropclient(this);
2443                                 return;
2444                         }
2445                         else if (timeleft <= 10) {
2446                                 if (timeleft != this.idlekick_lasttimeleft) {
2447                                     Send_Notification(NOTIF_ONE, this, MSG_ANNCE, Announcer_PickNumber(CNT_IDLE, timeleft));
2448                 }
2449                                 this.idlekick_lasttimeleft = timeleft;
2450                         }
2451                 }
2452         }
2453
2454         CheatFrame(this);
2455
2456         //CheckPlayerJump();
2457
2458         if (IS_PLAYER(this)) {
2459                 DrownPlayer(this);
2460                 CheckRules_Player(this);
2461                 UpdateChatBubble(this);
2462                 if (this.impulse) ImpulseCommands(this);
2463                 if (intermission_running) return; // intermission or finale
2464                 GetPressedKeys(this);
2465         }
2466
2467         if (this.waypointsprite_attachedforcarrier) {
2468             vector v = healtharmor_maxdamage(this.health, this.armorvalue, autocvar_g_balance_armor_blockpercent, DEATH_WEAPON.m_id);
2469                 WaypointSprite_UpdateHealth(this.waypointsprite_attachedforcarrier, '1 0 0' * v);
2470     }
2471
2472         playerdemo_write(this);
2473
2474         CSQCMODEL_AUTOUPDATE(this);
2475 }