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