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