]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_client.qc
Merge branch 'master' into TimePath/waypointsprites
[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 {
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 {
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 {
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 {
190         entity  spot;
191     self.hud = HUD_NORMAL;
192
193         if(IS_PLAYER(self)) { Send_Effect("spawn_event_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, "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 {
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         if(defaultmodel != "")
366         {
367                 if (defaultmodel != self.model)
368                 {
369                         m1 = self.mins;
370                         m2 = self.maxs;
371                         setplayermodel (self, defaultmodel);
372                         setsize (self, m1, m2);
373                         chmdl = true;
374                 }
375
376                 oldskin = self.skin;
377                 self.skin = defaultskin;
378         } else {
379                 if (self.playermodel != self.model || self.playermodel == "")
380                 {
381                         self.playermodel = CheckPlayerModel(self.playermodel); // this is never "", so no endless loop
382                         m1 = self.mins;
383                         m2 = self.maxs;
384                         setplayermodel (self, self.playermodel);
385                         setsize (self, m1, m2);
386                         chmdl = true;
387                 }
388
389                 oldskin = self.skin;
390                 self.skin = stof(self.playerskin);
391         }
392
393         if(chmdl || oldskin != self.skin) // model or skin has changed
394         {
395                 self.species = player_getspecies(); // update species
396                 UpdatePlayerSounds(); // update skin sounds
397         }
398
399         if(!teamplay)
400                 if(strlen(autocvar_sv_defaultplayercolors))
401                         if(self.clientcolors != stof(autocvar_sv_defaultplayercolors))
402                                 setcolor(self, stof(autocvar_sv_defaultplayercolors));
403 }
404
405 /*
406 =============
407 PutClientInServer
408
409 Called when a client spawns in the server
410 =============
411 */
412 void PutClientInServer (void)
413 {
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, oldself;
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;
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();
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                 oldself = self;
632                 self = spot;
633                         activator = oldself;
634                                 string s;
635                                 s = self.target;
636                                 self.target = string_null;
637                                 SUB_UseTargets();
638                                 self.target = s;
639                         activator = world;
640                 self = oldself;
641
642                 Unfreeze(self);
643
644                 MUTATOR_CALLHOOK(PlayerSpawn, spot);
645
646                 if(autocvar_spawn_debug)
647                 {
648                         sprint(self, strcat("spawnpoint origin:  ", vtos(spot.origin), "\n"));
649                         remove(spot);   // usefull for checking if there are spawnpoints, that let drop through the floor
650                 }
651
652                 self.switchweapon = w_getbestweapon(self);
653                 self.cnt = -1; // W_LastWeapon will not complain
654                 self.weapon = 0;
655                 self.weaponname = "";
656                 self.switchingweapon = 0;
657
658                 if(!warmup_stage)
659                         if(!self.alivetime)
660                                 self.alivetime = time;
661
662                 antilag_clear(self);
663         }
664         else if(IS_OBSERVER(self))
665         {
666                 PutObserverInServer ();
667         }
668 }
669
670 .float ebouncefactor, ebouncestop; // electro's values
671 // TODO do we need all these fields, or should we stop autodetecting runtime
672 // changes and just have a console command to update this?
673 float ClientInit_SendEntity(entity to, int sf)
674 {
675         WriteByte(MSG_ENTITY, ENT_CLIENT_INIT);
676         WriteByte(MSG_ENTITY, g_nexball_meter_period * 32);
677         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[0]));
678         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[1]));
679         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[2]));
680         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[3]));
681         WriteInt24_t(MSG_ENTITY, compressShotOrigin(arc_shotorigin[0]));
682         WriteInt24_t(MSG_ENTITY, compressShotOrigin(arc_shotorigin[1]));
683         WriteInt24_t(MSG_ENTITY, compressShotOrigin(arc_shotorigin[2]));
684         WriteInt24_t(MSG_ENTITY, compressShotOrigin(arc_shotorigin[3]));
685
686         if(sv_foginterval && world.fog != "")
687                 WriteString(MSG_ENTITY, world.fog);
688         else
689                 WriteString(MSG_ENTITY, "");
690         WriteByte(MSG_ENTITY, self.count * 255.0); // g_balance_armor_blockpercent
691         WriteCoord(MSG_ENTITY, self.bouncefactor); // g_balance_mortar_bouncefactor // WEAPONTODO
692         WriteCoord(MSG_ENTITY, self.bouncestop); // g_balance_mortar_bouncestop
693         WriteCoord(MSG_ENTITY, self.ebouncefactor); // g_balance_mortar_bouncefactor
694         WriteCoord(MSG_ENTITY, self.ebouncestop); // g_balance_mortar_bouncestop
695         WriteByte(MSG_ENTITY, WEP_CVAR(vortex, secondary)); // client has to know if it should zoom or not // WEAPONTODO
696         WriteByte(MSG_ENTITY, WEP_CVAR(rifle, secondary)); // client has to know if it should zoom or not // WEAPONTODO
697         WriteByte(MSG_ENTITY, serverflags); // client has to know if it should zoom or not
698         WriteByte(MSG_ENTITY, WEP_CVAR(minelayer, limit)); // minelayer max mines // WEAPONTODO
699         WriteByte(MSG_ENTITY, WEP_CVAR_SEC(hagar, load_max)); // hagar max loadable rockets // WEAPONTODO
700         WriteCoord(MSG_ENTITY, autocvar_g_trueaim_minrange);
701         WriteByte(MSG_ENTITY, WEP_CVAR(porto, secondary)); // WEAPONTODO
702         return true;
703 }
704
705 void ClientInit_CheckUpdate()
706 {
707         self.nextthink = time;
708         if(self.count != autocvar_g_balance_armor_blockpercent)
709         {
710                 self.count = autocvar_g_balance_armor_blockpercent;
711                 self.SendFlags |= 1;
712         }
713         if(self.bouncefactor != autocvar_g_balance_mortar_bouncefactor) // WEAPONTODO
714         {
715                 self.bouncefactor = autocvar_g_balance_mortar_bouncefactor;
716                 self.SendFlags |= 1;
717         }
718         if(self.bouncestop != autocvar_g_balance_mortar_bouncestop)
719         {
720                 self.bouncestop = autocvar_g_balance_mortar_bouncestop;
721                 self.SendFlags |= 1;
722         }
723         if(self.ebouncefactor != autocvar_g_balance_electro_secondary_bouncefactor)
724         {
725                 self.ebouncefactor = autocvar_g_balance_electro_secondary_bouncefactor;
726                 self.SendFlags |= 1;
727         }
728         if(self.ebouncestop != autocvar_g_balance_electro_secondary_bouncestop)
729         {
730                 self.ebouncestop = autocvar_g_balance_electro_secondary_bouncestop;
731                 self.SendFlags |= 1;
732         }
733 }
734
735 void ClientInit_Spawn()
736 {
737         entity o;
738         entity e;
739         e = spawn();
740         e.classname = "clientinit";
741         e.think = ClientInit_CheckUpdate;
742         Net_LinkEntity(e, false, 0, ClientInit_SendEntity);
743
744         o = self;
745         self = e;
746         ClientInit_CheckUpdate();
747         self = o;
748 }
749
750 /*
751 =============
752 SetNewParms
753 =============
754 */
755 void SetNewParms (void)
756 {
757         // initialize parms for a new player
758         parm1 = -(86400 * 366);
759 }
760
761 /*
762 =============
763 SetChangeParms
764 =============
765 */
766 void SetChangeParms (void)
767 {
768         // save parms for level change
769         parm1 = self.parm_idlesince - time;
770 }
771
772 /*
773 =============
774 DecodeLevelParms
775 =============
776 */
777 void DecodeLevelParms (void)
778 {
779         // load parms
780         self.parm_idlesince = parm1;
781         if(self.parm_idlesince == -(86400 * 366))
782                 self.parm_idlesince = time;
783
784         // whatever happens, allow 60 seconds of idling directly after connect for map loading
785         self.parm_idlesince = max(self.parm_idlesince, time - sv_maxidle + 60);
786 }
787
788 /*
789 =============
790 ClientKill
791
792 Called when a client types 'kill' in the console
793 =============
794 */
795
796 .float clientkill_nexttime;
797 void ClientKill_Now_TeamChange()
798 {
799         if(self.killindicator_teamchange == -1)
800         {
801                 JoinBestTeam( self, false, true );
802         }
803         else if(self.killindicator_teamchange == -2)
804         {
805                 if(blockSpectators)
806                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
807                 PutObserverInServer();
808         }
809         else
810                 SV_ChangeTeam(self.killindicator_teamchange - 1);
811         self.killindicator_teamchange = 0;
812 }
813
814 void ClientKill_Now()
815 {
816         if(self.vehicle)
817         {
818             vehicles_exit(VHEF_RELEASE);
819             if(!self.killindicator_teamchange)
820             {
821             self.vehicle_health = -1;
822             Damage(self, self, self, 1 , DEATH_KILL, self.origin, '0 0 0');
823             }
824         }
825
826         if(self.killindicator && !wasfreed(self.killindicator))
827                 remove(self.killindicator);
828
829         self.killindicator = world;
830
831         if(self.killindicator_teamchange)
832                 ClientKill_Now_TeamChange();
833
834         if(IS_PLAYER(self))
835                 Damage(self, self, self, 100000, DEATH_KILL, self.origin, '0 0 0');
836
837         // now I am sure the player IS dead
838 }
839 void KillIndicator_Think()
840 {
841         if (gameover)
842         {
843                 self.owner.killindicator = world;
844                 remove(self);
845                 return;
846         }
847
848         if (self.owner.alpha < 0 && !self.owner.vehicle)
849         {
850                 self.owner.killindicator = world;
851                 remove(self);
852                 return;
853         }
854
855         if(self.cnt <= 0)
856         {
857                 self = self.owner;
858                 ClientKill_Now(); // no oldself needed
859                 return;
860         }
861     else if(g_cts && self.health == 1) // health == 1 means that it's silent
862     {
863         self.nextthink = time + 1;
864         self.cnt -= 1;
865     }
866         else
867         {
868                 if(self.cnt <= 10)
869                         setmodel(self, strcat("models/sprites/", ftos(self.cnt), ".spr32"));
870                 if(IS_REAL_CLIENT(self.owner))
871                 {
872                         if(self.cnt <= 10)
873                                 { Send_Notification(NOTIF_ONE, self.owner, MSG_ANNCE, Announcer_PickNumber(CNT_KILL, self.cnt)); }
874                 }
875                 self.nextthink = time + 1;
876                 self.cnt -= 1;
877         }
878 }
879
880 float clientkilltime;
881 void ClientKill_TeamChange (float targetteam) // 0 = don't change, -1 = auto, -2 = spec
882 {
883         float killtime;
884         float starttime;
885         entity e;
886
887         if (gameover)
888                 return;
889
890         killtime = autocvar_g_balance_kill_delay;
891
892         if(g_race_qualifying || g_cts)
893                 killtime = 0;
894
895     if(g_cts && self.killindicator && self.killindicator.health == 1) // self.killindicator.health == 1 means that the kill indicator was spawned by CTS_ClientKill
896     {
897                 remove(self.killindicator);
898                 self.killindicator = world;
899
900         ClientKill_Now(); // allow instant kill in this case
901         return;
902     }
903
904         self.killindicator_teamchange = targetteam;
905
906     if(!self.killindicator)
907         {
908                 if(self.deadflag == DEAD_NO)
909                 {
910                         killtime = max(killtime, self.clientkill_nexttime - time);
911                         self.clientkill_nexttime = time + killtime + autocvar_g_balance_kill_antispam;
912                 }
913
914                 if(killtime <= 0 || !IS_PLAYER(self) || self.deadflag != DEAD_NO)
915                 {
916                         ClientKill_Now();
917                 }
918                 else
919                 {
920                         starttime = max(time, clientkilltime);
921
922                         self.killindicator = spawn();
923                         self.killindicator.owner = self;
924                         self.killindicator.scale = 0.5;
925                         setattachment(self.killindicator, self, "");
926                         setorigin(self.killindicator, '0 0 52');
927                         self.killindicator.think = KillIndicator_Think;
928                         self.killindicator.nextthink = starttime + (self.lip) * 0.05;
929                         clientkilltime = max(clientkilltime, self.killindicator.nextthink + 0.05);
930                         self.killindicator.cnt = ceil(killtime);
931                         self.killindicator.count = bound(0, ceil(killtime), 10);
932                         //sprint(self, strcat("^1You'll be dead in ", ftos(self.killindicator.cnt), " seconds\n"));
933
934                         for(e = world; (e = find(e, classname, "body")) != world; )
935                         {
936                                 if(e.enemy != self)
937                                         continue;
938                                 e.killindicator = spawn();
939                                 e.killindicator.owner = e;
940                                 e.killindicator.scale = 0.5;
941                                 setattachment(e.killindicator, e, "");
942                                 setorigin(e.killindicator, '0 0 52');
943                                 e.killindicator.think = KillIndicator_Think;
944                                 e.killindicator.nextthink = starttime + (e.lip) * 0.05;
945                                 clientkilltime = max(clientkilltime, e.killindicator.nextthink + 0.05);
946                                 e.killindicator.cnt = ceil(killtime);
947                         }
948                         self.lip = 0;
949                 }
950         }
951         if(self.killindicator)
952         {
953                 if(targetteam == 0) // just die
954                 {
955                         self.killindicator.colormod = '0 0 0';
956                         if(IS_REAL_CLIENT(self))
957                         if(self.killindicator.cnt > 0)
958                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_TEAMCHANGE_SUICIDE, self.killindicator.cnt);
959                 }
960                 else if(targetteam == -1) // auto
961                 {
962                         self.killindicator.colormod = '0 1 0';
963                         if(IS_REAL_CLIENT(self))
964                         if(self.killindicator.cnt > 0)
965                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_TEAMCHANGE_AUTO, self.killindicator.cnt);
966                 }
967                 else if(targetteam == -2) // spectate
968                 {
969                         self.killindicator.colormod = '0.5 0.5 0.5';
970                         if(IS_REAL_CLIENT(self))
971                         if(self.killindicator.cnt > 0)
972                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_TEAMCHANGE_SPECTATE, self.killindicator.cnt);
973                 }
974                 else
975                 {
976                         self.killindicator.colormod = Team_ColorRGB(targetteam);
977                         if(IS_REAL_CLIENT(self))
978                         if(self.killindicator.cnt > 0)
979                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, APP_TEAM_NUM_4(targetteam, CENTER_TEAMCHANGE_), self.killindicator.cnt);
980                 }
981         }
982
983 }
984
985 void ClientKill (void)
986 {
987         if(gameover) return;
988         if(self.player_blocked) return;
989         if(self.frozen) return;
990
991         ClientKill_TeamChange(0);
992 }
993
994 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
995 {
996     e.killindicator = spawn();
997     e.killindicator.owner = e;
998     e.killindicator.think = KillIndicator_Think;
999     e.killindicator.nextthink = time + (e.lip) * 0.05;
1000     e.killindicator.cnt = ceil(autocvar_g_cts_finish_kill_delay);
1001     e.killindicator.health = 1; // this is used to indicate that it should be silent
1002     e.lip = 0;
1003 }
1004
1005 void FixClientCvars(entity e)
1006 {
1007         // send prediction settings to the client
1008         stuffcmd(e, "\nin_bindmap 0 0\n");
1009         if(g_race || g_cts)
1010                 stuffcmd(e, "cl_cmd settemp cl_movecliptokeyboard 2\n");
1011         if(autocvar_g_antilag == 3) // client side hitscan
1012                 stuffcmd(e, "cl_cmd settemp cl_prydoncursor_notrace 0\n");
1013         if(autocvar_sv_gentle)
1014                 stuffcmd(e, "cl_cmd settemp cl_gentle 1\n");
1015 }
1016
1017 float PlayerInIDList(entity p, string idlist)
1018 {
1019         float n, i;
1020         string s;
1021
1022         // NOTE: we do NOT check crypto_idfp_signed here, an unsigned ID is fine too for this
1023         if (!p.crypto_idfp)
1024                 return 0;
1025
1026         // this function allows abbreviated player IDs too!
1027         n = tokenize_console(idlist);
1028         for(i = 0; i < n; ++i)
1029         {
1030                 s = argv(i);
1031                 if(s == substring(p.crypto_idfp, 0, strlen(s)))
1032                         return 1;
1033         }
1034
1035         return 0;
1036 }
1037
1038 #ifdef DP_EXT_PRECONNECT
1039 /*
1040 =============
1041 ClientPreConnect
1042
1043 Called once (not at each match start) when a client begins a connection to the server
1044 =============
1045 */
1046 void ClientPreConnect (void)
1047 {
1048         if(autocvar_sv_eventlog)
1049         {
1050                 GameLogEcho(sprintf(":connect:%d:%d:%s",
1051                         self.playerid,
1052                         num_for_edict(self),
1053                         ((IS_REAL_CLIENT(self)) ? self.netaddress : "bot")
1054                 ));
1055         }
1056 }
1057 #endif
1058
1059 /*
1060 =============
1061 ClientConnect
1062
1063 Called when a client connects to the server
1064 =============
1065 */
1066 void DecodeLevelParms (void);
1067 //void dom_player_join_team(entity pl);
1068 void set_dom_state(entity e);
1069 void ClientConnect (void)
1070 {
1071         float t;
1072
1073         if(IS_CLIENT(self))
1074         {
1075                 print("Warning: ClientConnect, but already connected!\n");
1076                 return;
1077         }
1078
1079         if(Ban_MaybeEnforceBanOnce(self))
1080                 return;
1081
1082         DecodeLevelParms();
1083
1084 #ifdef WATERMARK
1085         Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_WATERMARK, WATERMARK);
1086 #endif
1087
1088         self.classname = "player_joining";
1089
1090         self.flags = FL_CLIENT;
1091         self.version_nagtime = time + 10 + random() * 10;
1092
1093         if(player_count<0)
1094         {
1095                 dprint("BUG player count is lower than zero, this cannot happen!\n");
1096                 player_count = 0;
1097         }
1098
1099         if(IS_REAL_CLIENT(self)) { PlayerStats_PlayerBasic_CheckUpdate(self); }
1100
1101         PlayerScore_Attach(self);
1102         ClientData_Attach();
1103         accuracy_init(self);
1104         Inventory_new(self);
1105
1106         bot_clientconnect();
1107
1108         playerdemo_init();
1109
1110         anticheat_init();
1111
1112         // identify the right forced team
1113         if(autocvar_g_campaign)
1114         {
1115                 if(IS_REAL_CLIENT(self)) // only players, not bots
1116                 {
1117                         switch(autocvar_g_campaign_forceteam)
1118                         {
1119                                 case 1: self.team_forced = NUM_TEAM_1; break;
1120                                 case 2: self.team_forced = NUM_TEAM_2; break;
1121                                 case 3: self.team_forced = NUM_TEAM_3; break;
1122                                 case 4: self.team_forced = NUM_TEAM_4; break;
1123                                 default: self.team_forced = 0;
1124                         }
1125                 }
1126         }
1127         else if(PlayerInIDList(self, autocvar_g_forced_team_red))
1128                 self.team_forced = NUM_TEAM_1;
1129         else if(PlayerInIDList(self, autocvar_g_forced_team_blue))
1130                 self.team_forced = NUM_TEAM_2;
1131         else if(PlayerInIDList(self, autocvar_g_forced_team_yellow))
1132                 self.team_forced = NUM_TEAM_3;
1133         else if(PlayerInIDList(self, autocvar_g_forced_team_pink))
1134                 self.team_forced = NUM_TEAM_4;
1135         else if(autocvar_g_forced_team_otherwise == "red")
1136                 self.team_forced = NUM_TEAM_1;
1137         else if(autocvar_g_forced_team_otherwise == "blue")
1138                 self.team_forced = NUM_TEAM_2;
1139         else if(autocvar_g_forced_team_otherwise == "yellow")
1140                 self.team_forced = NUM_TEAM_3;
1141         else if(autocvar_g_forced_team_otherwise == "pink")
1142                 self.team_forced = NUM_TEAM_4;
1143         else if(autocvar_g_forced_team_otherwise == "spectate")
1144                 self.team_forced = -1;
1145         else if(autocvar_g_forced_team_otherwise == "spectator")
1146                 self.team_forced = -1;
1147         else
1148                 self.team_forced = 0;
1149
1150         if(!teamplay)
1151                 if(self.team_forced > 0)
1152                         self.team_forced = 0;
1153
1154         JoinBestTeam(self, false, false); // if the team number is valid, keep it
1155
1156         if((autocvar_sv_spectate == 1) || autocvar_g_campaign || self.team_forced < 0) {
1157                 self.classname = "observer";
1158         } else {
1159                 if(teamplay)
1160                 {
1161                         if(autocvar_g_balance_teams)
1162                         {
1163                                 self.classname = "player";
1164                                 campaign_bots_may_start = 1;
1165                         }
1166                         else
1167                         {
1168                                 self.classname = "observer"; // do it anyway
1169                         }
1170                 }
1171                 else
1172                 {
1173                         self.classname = "player";
1174                         campaign_bots_may_start = 1;
1175                 }
1176         }
1177
1178         self.playerid = (playerid_last = playerid_last + 1);
1179
1180         PlayerStats_GameReport_AddEvent(sprintf("kills-%d", self.playerid));
1181
1182     if(IS_BOT_CLIENT(self))
1183         PlayerStats_GameReport_AddPlayer(self);
1184
1185         if(autocvar_sv_eventlog)
1186                 GameLogEcho(strcat(":join:", ftos(self.playerid), ":", ftos(num_for_edict(self)), ":", ((IS_REAL_CLIENT(self)) ? self.netaddress : "bot"), ":", self.netname));
1187
1188         LogTeamchange(self.playerid, self.team, 1);
1189
1190         self.just_joined = true;  // stop spamming the eventlog with additional lines when the client connects
1191
1192         self.netname_previous = strzone(self.netname);
1193
1194         if(IS_PLAYER(self) && teamplay)
1195                 Send_Notification(NOTIF_ALL, world, MSG_INFO, APP_TEAM_ENT_4(self, INFO_JOIN_CONNECT_TEAM_), self.netname);
1196         else
1197                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_JOIN_CONNECT, self.netname);
1198
1199         stuffcmd(self, strcat(clientstuff, "\n"));
1200         stuffcmd(self, "cl_particles_reloadeffects\n"); // TODO do we still need this?
1201
1202         FixClientCvars(self);
1203
1204         // spawnfunc_waypoint sprites
1205         WaypointSprite_InitClient(self);
1206
1207         // Wazat's grappling hook
1208         SetGrappleHookBindings();
1209
1210         // Jetpack binds
1211         stuffcmd(self, "alias +jetpack +button10\n");
1212         stuffcmd(self, "alias -jetpack -button10\n");
1213
1214         // get version info from player
1215         stuffcmd(self, "cmd clientversion $gameversion\n");
1216
1217         // get other cvars from player
1218         GetCvars(0);
1219
1220         // notify about available teams
1221         if(teamplay)
1222         {
1223                 CheckAllowedTeams(self);
1224                 t = 0; if(c1 >= 0) t |= 1; if(c2 >= 0) t |= 2; if(c3 >= 0) t |= 4; if(c4 >= 0) t |= 8;
1225                 stuffcmd(self, strcat("set _teams_available ", ftos(t), "\n"));
1226         }
1227         else
1228                 stuffcmd(self, "set _teams_available 0\n");
1229
1230         attach_entcs();
1231
1232         bot_relinkplayerlist();
1233
1234         self.spectatortime = time;
1235         if(blockSpectators)
1236         {
1237                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
1238         }
1239
1240         self.jointime = time;
1241         self.allowed_timeouts = autocvar_sv_timeout_number;
1242
1243         if(IS_REAL_CLIENT(self))
1244         {
1245                 if(!autocvar_g_campaign)
1246                 {
1247                         self.motd_actived_time = -1;
1248                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_MOTD, getwelcomemessage());
1249                 }
1250
1251                 if(autocvar_g_bugrigs || (g_weaponarena_weapons == WEPSET_TUBA))
1252                         stuffcmd(self, "cl_cmd settemp chase_active 1\n");
1253         }
1254
1255         if(!sv_foginterval && world.fog != "")
1256                 stuffcmd(self, strcat("\nfog ", world.fog, "\nr_fog_exp2 0\nr_drawfog 1\n"));
1257
1258         W_HitPlotOpen(self);
1259
1260         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
1261                 send_CSQC_teamnagger();
1262
1263         CheatInitClient();
1264
1265         CSQCMODEL_AUTOINIT();
1266
1267         self.model_randomizer = random();
1268
1269         if(IS_REAL_CLIENT(self))
1270                 sv_notice_join();
1271
1272         for (entity e = world; (e = findfloat(e, init_for_player_needed, 1)); ) {
1273                 entity oldself = self;
1274                 self = e;
1275                 e.init_for_player(oldself);
1276                 self = oldself;
1277         }
1278
1279         MUTATOR_CALLHOOK(ClientConnect, self);
1280 }
1281 /*
1282 =============
1283 ClientDisconnect
1284
1285 Called when a client disconnects from the server
1286 =============
1287 */
1288 .entity chatbubbleentity;
1289 void ReadyCount();
1290 void ClientDisconnect (void)
1291 {
1292         if(self.vehicle)
1293             vehicles_exit(VHEF_RELEASE);
1294
1295         if (!IS_CLIENT(self))
1296         {
1297                 print("Warning: ClientDisconnect without ClientConnect\n");
1298                 return;
1299         }
1300
1301         PlayerStats_GameReport_FinalizePlayer(self);
1302
1303         if ( self.active_minigame )
1304                 part_minigame(self);
1305
1306         if(IS_PLAYER(self)) { Send_Effect("spawn_event_neutral", self.origin, '0 0 0', 1); }
1307
1308         CheatShutdownClient();
1309
1310         W_HitPlotClose(self);
1311
1312         anticheat_report();
1313         anticheat_shutdown();
1314
1315         playerdemo_shutdown();
1316
1317         bot_clientdisconnect();
1318
1319         if(self.entcs)
1320                 detach_entcs();
1321
1322         if(autocvar_sv_eventlog)
1323                 GameLogEcho(strcat(":part:", ftos(self.playerid)));
1324
1325         Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_QUIT_DISCONNECT, self.netname);
1326
1327         MUTATOR_CALLHOOK(ClientDisconnect);
1328
1329         Portal_ClearAll(self);
1330
1331         Unfreeze(self);
1332
1333         RemoveGrapplingHook(self);
1334
1335         // Here, everything has been done that requires this player to be a client.
1336
1337         self.flags &= ~FL_CLIENT;
1338
1339         if (self.chatbubbleentity)
1340                 remove (self.chatbubbleentity);
1341
1342         if (self.killindicator)
1343                 remove (self.killindicator);
1344
1345         WaypointSprite_PlayerGone();
1346
1347         bot_relinkplayerlist();
1348
1349         accuracy_free(self);
1350         Inventory_delete(self);
1351         ClientData_Detach();
1352         PlayerScore_Detach(self);
1353
1354         if(self.netname_previous)
1355                 strunzone(self.netname_previous);
1356         if(self.clientstatus)
1357                 strunzone(self.clientstatus);
1358         if(self.weaponorder_byimpulse)
1359                 strunzone(self.weaponorder_byimpulse);
1360
1361         ClearPlayerSounds();
1362
1363         if(self.personal)
1364                 remove(self.personal);
1365
1366         self.playerid = 0;
1367         ReadyCount();
1368
1369         // free cvars
1370         GetCvars(-1);
1371 }
1372
1373 .float BUTTON_CHAT;
1374 void ChatBubbleThink()
1375 {
1376         self.nextthink = time;
1377         if ((self.owner.alpha < 0) || self.owner.chatbubbleentity != self)
1378         {
1379                 if(self.owner) // but why can that ever be world?
1380                         self.owner.chatbubbleentity = world;
1381                 remove(self);
1382                 return;
1383         }
1384         
1385         self.mdl = "";
1386         
1387         if ( !self.owner.deadflag && IS_PLAYER(self.owner) )
1388         {
1389                 if ( self.owner.active_minigame )
1390                         self.mdl = "models/sprites/minigame_busy.iqm";
1391                 else if ( self.owner.BUTTON_CHAT )
1392                         self.mdl = "models/misc/chatbubble.spr";
1393         }
1394         
1395         if ( self.model != self.mdl )
1396                 setmodel(self, self.mdl);
1397
1398 }
1399
1400 void UpdateChatBubble()
1401 {
1402         if (self.alpha < 0)
1403                 return;
1404         // spawn a chatbubble entity if needed
1405         if (!self.chatbubbleentity)
1406         {
1407                 self.chatbubbleentity = spawn();
1408                 self.chatbubbleentity.owner = self;
1409                 self.chatbubbleentity.exteriormodeltoclient = self;
1410                 self.chatbubbleentity.think = ChatBubbleThink;
1411                 self.chatbubbleentity.nextthink = time;
1412                 setmodel(self.chatbubbleentity, "models/misc/chatbubble.spr"); // precision set below
1413                 //setorigin(self.chatbubbleentity, self.origin + '0 0 15' + self.maxs_z * '0 0 1');
1414                 setorigin(self.chatbubbleentity, '0 0 15' + self.maxs_z * '0 0 1');
1415                 setattachment(self.chatbubbleentity, self, "");  // sticks to moving player better, also conserves bandwidth
1416                 self.chatbubbleentity.mdl = self.chatbubbleentity.model;
1417                 //self.chatbubbleentity.model = "";
1418                 self.chatbubbleentity.effects = EF_LOWPRECISION;
1419         }
1420 }
1421
1422
1423 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1424 // added to the model skins
1425 /*void UpdateColorModHack()
1426 {
1427         float c;
1428         c = self.clientcolors & 15;
1429         // LordHavoc: only bothering to support white, green, red, yellow, blue
1430              if (!teamplay) self.colormod = '0 0 0';
1431         else if (c ==  0) self.colormod = '1.00 1.00 1.00';
1432         else if (c ==  3) self.colormod = '0.10 1.73 0.10';
1433         else if (c ==  4) self.colormod = '1.73 0.10 0.10';
1434         else if (c == 12) self.colormod = '1.22 1.22 0.10';
1435         else if (c == 13) self.colormod = '0.10 0.10 1.73';
1436         else self.colormod = '1 1 1';
1437 }*/
1438
1439 void respawn(void)
1440 {
1441         if(self.alpha >= 0 && autocvar_g_respawn_ghosts)
1442         {
1443                 self.solid = SOLID_NOT;
1444                 self.takedamage = DAMAGE_NO;
1445                 self.movetype = MOVETYPE_FLY;
1446                 self.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
1447                 self.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3;
1448                 self.effects |= CSQCMODEL_EF_RESPAWNGHOST;
1449                 Send_Effect("respawn_ghost", self.origin, '0 0 0', 1);
1450                 if(autocvar_g_respawn_ghosts_maxtime)
1451                         SUB_SetFade (self, time + autocvar_g_respawn_ghosts_maxtime / 2 + random () * (autocvar_g_respawn_ghosts_maxtime - autocvar_g_respawn_ghosts_maxtime / 2), 1.5);
1452         }
1453
1454         CopyBody(1);
1455
1456         self.effects |= EF_NODRAW; // prevent another CopyBody
1457         PutClientInServer();
1458 }
1459
1460 void play_countdown(float finished, string samp)
1461 {
1462         if(IS_REAL_CLIENT(self))
1463                 if(floor(finished - time - frametime) != floor(finished - time))
1464                         if(finished - time < 6)
1465                                 sound (self, CH_INFO, samp, VOL_BASE, ATTEN_NORM);
1466 }
1467
1468 void player_powerups (void)
1469 {
1470         // add a way to see what the items were BEFORE all of these checks for the mutator hook
1471         int items_prev = self.items;
1472
1473         if((self.items & IT_USING_JETPACK) && !self.deadflag && !gameover)
1474                 self.modelflags |= MF_ROCKET;
1475         else
1476                 self.modelflags &= ~MF_ROCKET;
1477
1478         self.effects &= ~(EF_RED | EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT | EF_FLAME | EF_NODEPTHTEST);
1479
1480         if((self.alpha < 0 || self.deadflag) && !self.vehicle) // don't apply the flags if the player is gibbed
1481                 return;
1482
1483         Fire_ApplyDamage(self);
1484         Fire_ApplyEffect(self);
1485
1486         if (!g_instagib)
1487         {
1488                 if (self.items & ITEM_Strength.m_itemid)
1489                 {
1490                         play_countdown(self.strength_finished, "misc/poweroff.wav");
1491                         self.effects = self.effects | (EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT);
1492                         if (time > self.strength_finished)
1493                         {
1494                                 self.items = self.items - (self.items & ITEM_Strength.m_itemid);
1495                                 //Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_POWERDOWN_STRENGTH, self.netname);
1496                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_POWERDOWN_STRENGTH);
1497                         }
1498                 }
1499                 else
1500                 {
1501                         if (time < self.strength_finished)
1502                         {
1503                                 self.items = self.items | ITEM_Strength.m_itemid;
1504                                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_POWERUP_STRENGTH, self.netname);
1505                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_POWERUP_STRENGTH);
1506                         }
1507                 }
1508                 if (self.items & ITEM_Shield.m_itemid)
1509                 {
1510                         play_countdown(self.invincible_finished, "misc/poweroff.wav");
1511                         self.effects = self.effects | (EF_RED | EF_ADDITIVE | EF_FULLBRIGHT);
1512                         if (time > self.invincible_finished)
1513                         {
1514                                 self.items = self.items - (self.items & ITEM_Shield.m_itemid);
1515                                 //Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_POWERDOWN_SHIELD, self.netname);
1516                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_POWERDOWN_SHIELD);
1517                         }
1518                 }
1519                 else
1520                 {
1521                         if (time < self.invincible_finished)
1522                         {
1523                                 self.items = self.items | ITEM_Shield.m_itemid;
1524                                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_POWERUP_SHIELD, self.netname);
1525                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_POWERUP_SHIELD);
1526                         }
1527                 }
1528                 if (self.items & IT_SUPERWEAPON)
1529                 {
1530                         if (!(self.weapons & WEPSET_SUPERWEAPONS))
1531                         {
1532                                 self.superweapons_finished = 0;
1533                                 self.items = self.items - (self.items & IT_SUPERWEAPON);
1534                                 //Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_SUPERWEAPON_LOST, self.netname);
1535                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_SUPERWEAPON_LOST);
1536                         }
1537                         else if (self.items & IT_UNLIMITED_SUPERWEAPONS)
1538                         {
1539                                 // don't let them run out
1540                         }
1541                         else
1542                         {
1543                                 play_countdown(self.superweapons_finished, "misc/poweroff.wav");
1544                                 if (time > self.superweapons_finished)
1545                                 {
1546                                         self.items = self.items - (self.items & IT_SUPERWEAPON);
1547                                         self.weapons &= ~WEPSET_SUPERWEAPONS;
1548                                         //Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_SUPERWEAPON_BROKEN, self.netname);
1549                                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_SUPERWEAPON_BROKEN);
1550                                 }
1551                         }
1552                 }
1553                 else if(self.weapons & WEPSET_SUPERWEAPONS)
1554                 {
1555                         if (time < self.superweapons_finished || (self.items & IT_UNLIMITED_SUPERWEAPONS))
1556                         {
1557                                 self.items = self.items | IT_SUPERWEAPON;
1558                                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_SUPERWEAPON_PICKUP, self.netname);
1559                                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_SUPERWEAPON_PICKUP);
1560                         }
1561                         else
1562                         {
1563                                 self.superweapons_finished = 0;
1564                                 self.weapons &= ~WEPSET_SUPERWEAPONS;
1565                         }
1566                 }
1567                 else
1568                 {
1569                         self.superweapons_finished = 0;
1570                 }
1571         }
1572
1573         if(autocvar_g_nodepthtestplayers)
1574                 self.effects = self.effects | EF_NODEPTHTEST;
1575
1576         if(autocvar_g_fullbrightplayers)
1577                 self.effects = self.effects | EF_FULLBRIGHT;
1578
1579         if (time >= game_starttime)
1580         if (time < self.spawnshieldtime)
1581                 self.effects = self.effects | (EF_ADDITIVE | EF_FULLBRIGHT);
1582
1583         MUTATOR_CALLHOOK(PlayerPowerups, self, items_prev);
1584 }
1585
1586 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
1587 {
1588         if(current > stable)
1589                 return current;
1590         else if(current > stable - 0.25) // when close enough, "snap"
1591                 return stable;
1592         else
1593                 return min(stable, current + (stable - current) * regenfactor * regenframetime);
1594 }
1595
1596 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
1597 {
1598         if(current < stable)
1599                 return current;
1600         else if(current < stable + 0.25) // when close enough, "snap"
1601                 return stable;
1602         else
1603                 return max(stable, current + (stable - current) * rotfactor * rotframetime);
1604 }
1605
1606 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit)
1607 {
1608         if(current > rotstable)
1609         {
1610                 if(rotframetime > 0)
1611                 {
1612                         current = CalcRot(current, rotstable, rotfactor, rotframetime);
1613                         current = max(rotstable, current - rotlinear * rotframetime);
1614                 }
1615         }
1616         else if(current < regenstable)
1617         {
1618                 if(regenframetime > 0)
1619                 {
1620                         current = CalcRegen(current, regenstable, regenfactor, regenframetime);
1621                         current = min(regenstable, current + regenlinear * regenframetime);
1622                 }
1623         }
1624
1625         if(current > limit)
1626                 current = limit;
1627
1628         return current;
1629 }
1630
1631 void player_regen (void)
1632 {
1633         float max_mod, regen_mod, rot_mod, limit_mod;
1634         max_mod = regen_mod = rot_mod = limit_mod = 1;
1635         if(!MUTATOR_CALLHOOK(PlayerRegen, max_mod, regen_mod, rot_mod, limit_mod))
1636         if(!self.frozen)
1637         {
1638                 float minh, mina, maxh, maxa, limith, limita;
1639                 maxh = autocvar_g_balance_health_rotstable;
1640                 maxa = autocvar_g_balance_armor_rotstable;
1641                 minh = autocvar_g_balance_health_regenstable;
1642                 mina = autocvar_g_balance_armor_regenstable;
1643                 limith = autocvar_g_balance_health_limit;
1644                 limita = autocvar_g_balance_armor_limit;
1645
1646                 max_mod = regen_mod_max;
1647                 regen_mod = regen_mod_regen;
1648                 rot_mod = regen_mod_rot;
1649                 limit_mod = regen_mod_limit;
1650
1651                 maxh = maxh * max_mod;
1652                 minh = minh * max_mod;
1653                 limith = limith * limit_mod;
1654                 limita = limita * limit_mod;
1655
1656                 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);
1657                 self.health = CalcRotRegen(self.health, minh, autocvar_g_balance_health_regen, autocvar_g_balance_health_regenlinear, regen_mod * frametime * (time > self.pauseregen_finished), maxh, autocvar_g_balance_health_rot, autocvar_g_balance_health_rotlinear, rot_mod * frametime * (time > self.pauserothealth_finished), limith);
1658         }
1659
1660         // if player rotted to death...  die!
1661         // check this outside above checks, as player may still be able to rot to death
1662         if(self.health < 1)
1663         {
1664                 if(self.vehicle)
1665                         vehicles_exit(VHEF_RELEASE);
1666                 self.event_damage(self, self, 1, DEATH_ROT, self.origin, '0 0 0');
1667         }
1668
1669         if (!(self.items & IT_UNLIMITED_WEAPON_AMMO))
1670         {
1671                 float minf, maxf, limitf;
1672
1673                 maxf = autocvar_g_balance_fuel_rotstable;
1674                 minf = autocvar_g_balance_fuel_regenstable;
1675                 limitf = autocvar_g_balance_fuel_limit;
1676
1677                 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);
1678         }
1679 }
1680
1681 float zoomstate_set;
1682 void SetZoomState(float z)
1683 {
1684         if(z != self.zoomstate)
1685         {
1686                 self.zoomstate = z;
1687                 ClientData_Touch(self);
1688         }
1689         zoomstate_set = 1;
1690 }
1691
1692 void GetPressedKeys(void) {
1693         MUTATOR_CALLHOOK(GetPressedKeys);
1694         #define X(var,bit,flag) (flag ? var |= bit : var &= ~bit)
1695         X(self.pressedkeys, KEY_FORWARD,        self.movement_x > 0);
1696         X(self.pressedkeys, KEY_BACKWARD,       self.movement_x < 0);
1697         X(self.pressedkeys, KEY_RIGHT,          self.movement_y > 0);
1698         X(self.pressedkeys, KEY_LEFT,           self.movement_y < 0);
1699
1700         X(self.pressedkeys, KEY_JUMP,           PHYS_INPUT_BUTTON_JUMP(self));
1701         X(self.pressedkeys, KEY_CROUCH,         PHYS_INPUT_BUTTON_CROUCH(self));
1702         X(self.pressedkeys, KEY_ATCK,           PHYS_INPUT_BUTTON_ATCK(self));
1703         X(self.pressedkeys, KEY_ATCK2,          PHYS_INPUT_BUTTON_ATCK2(self));
1704         #undef X
1705 }
1706
1707 /*
1708 ======================
1709 spectate mode routines
1710 ======================
1711 */
1712
1713 void SpectateCopy(entity spectatee) {
1714         MUTATOR_CALLHOOK(SpectateCopy, spectatee, self);
1715         self.armortype = spectatee.armortype;
1716         self.armorvalue = spectatee.armorvalue;
1717         self.ammo_cells = spectatee.ammo_cells;
1718         self.ammo_plasma = spectatee.ammo_plasma;
1719         self.ammo_shells = spectatee.ammo_shells;
1720         self.ammo_nails = spectatee.ammo_nails;
1721         self.ammo_rockets = spectatee.ammo_rockets;
1722         self.ammo_fuel = spectatee.ammo_fuel;
1723         self.clip_load = spectatee.clip_load;
1724         self.clip_size = spectatee.clip_size;
1725         self.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
1726         self.health = spectatee.health;
1727         self.impulse = 0;
1728         self.items = spectatee.items;
1729         self.last_pickup = spectatee.last_pickup;
1730         self.hit_time = spectatee.hit_time;
1731         self.metertime = spectatee.metertime;
1732         self.strength_finished = spectatee.strength_finished;
1733         self.invincible_finished = spectatee.invincible_finished;
1734         self.pressedkeys = spectatee.pressedkeys;
1735         self.weapons = spectatee.weapons;
1736         self.switchweapon = spectatee.switchweapon;
1737         self.switchingweapon = spectatee.switchingweapon;
1738         self.weapon = spectatee.weapon;
1739         self.vortex_charge = spectatee.vortex_charge;
1740         self.vortex_chargepool_ammo = spectatee.vortex_chargepool_ammo;
1741         self.hagar_load = spectatee.hagar_load;
1742         self.arc_heat_percent = spectatee.arc_heat_percent;
1743         self.minelayer_mines = spectatee.minelayer_mines;
1744         self.punchangle = spectatee.punchangle;
1745         self.view_ofs = spectatee.view_ofs;
1746         self.velocity = spectatee.velocity;
1747         self.dmg_take = spectatee.dmg_take;
1748         self.dmg_save = spectatee.dmg_save;
1749         self.dmg_inflictor = spectatee.dmg_inflictor;
1750         self.v_angle = spectatee.v_angle;
1751         self.angles = spectatee.v_angle;
1752         self.frozen = spectatee.frozen;
1753         self.revive_progress = spectatee.revive_progress;
1754         if(!self.BUTTON_USE)
1755                 self.fixangle = true;
1756         setorigin(self, spectatee.origin);
1757         setsize(self, spectatee.mins, spectatee.maxs);
1758         SetZoomState(spectatee.zoomstate);
1759
1760     anticheat_spectatecopy(spectatee);
1761         self.hud = spectatee.hud;
1762         if(spectatee.vehicle)
1763     {
1764         self.fixangle = false;
1765         //self.velocity = spectatee.vehicle.velocity;
1766         self.vehicle_health = spectatee.vehicle_health;
1767         self.vehicle_shield = spectatee.vehicle_shield;
1768         self.vehicle_energy = spectatee.vehicle_energy;
1769         self.vehicle_ammo1 = spectatee.vehicle_ammo1;
1770         self.vehicle_ammo2 = spectatee.vehicle_ammo2;
1771         self.vehicle_reload1 = spectatee.vehicle_reload1;
1772         self.vehicle_reload2 = spectatee.vehicle_reload2;
1773
1774         msg_entity = self;
1775
1776         WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
1777             WriteAngle(MSG_ONE,  spectatee.v_angle.x);
1778             WriteAngle(MSG_ONE,  spectatee.v_angle.y);
1779             WriteAngle(MSG_ONE,  spectatee.v_angle.z);
1780
1781         //WriteByte (MSG_ONE, SVC_SETVIEW);
1782         //    WriteEntity(MSG_ONE, self);
1783         //makevectors(spectatee.v_angle);
1784         //setorigin(self, spectatee.origin - v_forward * 400 + v_up * 300);*/
1785     }
1786 }
1787
1788 float SpectateUpdate()
1789 {
1790         if(!self.enemy)
1791             return 0;
1792
1793         if(!IS_PLAYER(self.enemy) || self == self.enemy)
1794         {
1795                 SetSpectator(self, world);
1796                 return 0;
1797         }
1798
1799         SpectateCopy(self.enemy);
1800
1801         return 1;
1802 }
1803
1804 float SpectateSet()
1805 {
1806         if(self.enemy.classname != "player")
1807                 return false;
1808         /*if(self.enemy.vehicle)
1809         {
1810
1811                 msg_entity = self;
1812                 WriteByte(MSG_ONE, SVC_SETVIEW);
1813                 WriteEntity(MSG_ONE, self.enemy);
1814                 //stuffcmd(self, "set viewsize $tmpviewsize \n");
1815
1816                 self.movetype = MOVETYPE_NONE;
1817                 accuracy_resend(self);
1818         }
1819         else
1820         {*/
1821                 msg_entity = self;
1822                 WriteByte(MSG_ONE, SVC_SETVIEW);
1823                 WriteEntity(MSG_ONE, self.enemy);
1824                 //stuffcmd(self, "set viewsize $tmpviewsize \n");
1825                 self.movetype = MOVETYPE_NONE;
1826                 accuracy_resend(self);
1827
1828                 if(!SpectateUpdate())
1829                         PutObserverInServer();
1830         //}
1831         return true;
1832 }
1833
1834 void SetSpectator(entity player, entity spectatee)
1835 {
1836         entity old_spectatee = player.enemy;
1837
1838         player.enemy = spectatee;
1839
1840         // WEAPONTODO
1841         // these are required to fix the spectator bug with arc
1842         if(old_spectatee && old_spectatee.arc_beam) { old_spectatee.arc_beam.SendFlags |= ARC_SF_SETTINGS; }
1843         if(player.enemy && player.enemy.arc_beam) { player.enemy.arc_beam.SendFlags |= ARC_SF_SETTINGS; }
1844 }
1845
1846 float Spectate(entity pl)
1847 {
1848         if(g_ca && !autocvar_g_ca_spectate_enemies && self.caplayer)
1849         if(pl.team != self.team)
1850                 return 0;
1851
1852         SetSpectator(self, pl);
1853         return SpectateSet();
1854 }
1855
1856 // Returns next available player to spectate if g_ca_spectate_enemies == 0
1857 entity CA_SpectateNext(entity start) {
1858         if (start.team == self.team) {
1859                 return start;
1860         }
1861
1862         other = start;
1863         // continue from current player
1864         while(other && other.team != self.team) {
1865                 other = find(other, classname, "player");
1866         }
1867
1868         if (!other) {
1869                 // restart from begining
1870                 other = find(other, classname, "player");
1871                 while(other && other.team != self.team) {
1872                         other = find(other, classname, "player");
1873                 }
1874         }
1875
1876         return other;
1877 }
1878
1879 float SpectateNext()
1880 {
1881         other = find(self.enemy, classname, "player");
1882
1883         if (g_ca && !autocvar_g_ca_spectate_enemies && self.caplayer) {
1884                 // CA and ca players when spectating enemies is forbidden
1885                 other = CA_SpectateNext(other);
1886         } else {
1887                 // other modes and ca spectators or spectating enemies is allowed
1888                 if (!other)
1889                         other = find(other, classname, "player");
1890         }
1891
1892         if(other) { SetSpectator(self, other); }
1893
1894         return SpectateSet();
1895 }
1896
1897 float SpectatePrev()
1898 {
1899         // NOTE: chain order is from the highest to the lower entnum (unlike find)
1900         other = findchain(classname, "player");
1901         if (!other) // no player
1902                 return false;
1903
1904         entity first = other;
1905         // skip players until current spectated player
1906         if(self.enemy)
1907         while(other && other != self.enemy)
1908                 other = other.chain;
1909
1910         if (g_ca && !autocvar_g_ca_spectate_enemies && self.caplayer)
1911         {
1912                 do { other = other.chain; }
1913                 while(other && other.team != self.team);
1914
1915                 if (!other)
1916                 {
1917                         other = first;
1918                         while(other.team != self.team)
1919                                 other = other.chain;
1920                         if(other == self.enemy)
1921                                 return true;
1922                 }
1923         }
1924         else
1925         {
1926                 if(other.chain)
1927                         other = other.chain;
1928                 else
1929                         other = first;
1930         }
1931         SetSpectator(self, other);
1932         return SpectateSet();
1933 }
1934
1935 /*
1936 =============
1937 ShowRespawnCountdown()
1938
1939 Update a respawn countdown display.
1940 =============
1941 */
1942 void ShowRespawnCountdown()
1943 {
1944         float number;
1945         if(self.deadflag == DEAD_NO) // just respawned?
1946                 return;
1947         else
1948         {
1949                 number = ceil(self.respawn_time - time);
1950                 if(number <= 0)
1951                         return;
1952                 if(number <= self.respawn_countdown)
1953                 {
1954                         self.respawn_countdown = number - 1;
1955                         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
1956                                 { Send_Notification(NOTIF_ONE, self, MSG_ANNCE, Announcer_PickNumber(CNT_RESPAWN, number)); }
1957                 }
1958         }
1959 }
1960
1961 void LeaveSpectatorMode()
1962 {
1963         if(self.caplayer)
1964                 return;
1965         if(nJoinAllowed(self))
1966         {
1967                 if(!teamplay || autocvar_g_campaign || autocvar_g_balance_teams || (self.wasplayer && autocvar_g_changeteam_banned) || self.team_forced > 0)
1968                 {
1969                         self.classname = "player";
1970                         nades_RemoveBonus(self);
1971
1972                         if(autocvar_g_campaign || autocvar_g_balance_teams)
1973                                 { JoinBestTeam(self, false, true); }
1974
1975                         if(autocvar_g_campaign)
1976                                 { campaign_bots_may_start = 1; }
1977
1978                         Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_PREVENT_JOIN);
1979
1980                         PutClientInServer();
1981
1982                         if(IS_PLAYER(self)) { Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_JOIN_PLAY, self.netname); }
1983                 }
1984                 else
1985                         stuffcmd(self, "menu_showteamselect\n");
1986         }
1987         else
1988         {
1989                 // Player may not join because g_maxplayers is set
1990                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_JOIN_PREVENT);
1991         }
1992 }
1993
1994 /**
1995  * Determines whether the player is allowed to join. This depends on cvar
1996  * g_maxplayers, if it isn't used this function always return true, otherwise
1997  * it checks whether the number of currently playing players exceeds g_maxplayers.
1998  * @return int number of free slots for players, 0 if none
1999  */
2000 float nJoinAllowed(entity ignore) {
2001         if(!ignore)
2002         // this is called that way when checking if anyone may be able to join (to build qcstatus)
2003         // so report 0 free slots if restricted
2004         {
2005                 if(autocvar_g_forced_team_otherwise == "spectate")
2006                         return 0;
2007                 if(autocvar_g_forced_team_otherwise == "spectator")
2008                         return 0;
2009         }
2010
2011         if(self.team_forced < 0)
2012                 return 0; // forced spectators can never join
2013
2014         // TODO simplify this
2015         entity e;
2016         float totalClients = 0;
2017         FOR_EACH_CLIENT(e)
2018                 if(e != ignore)
2019                         totalClients += 1;
2020
2021         if (!autocvar_g_maxplayers)
2022                 return maxclients - totalClients;
2023
2024         float currentlyPlaying = 0;
2025         FOR_EACH_REALCLIENT(e)
2026                 if(IS_PLAYER(e) || e.caplayer)
2027                         currentlyPlaying += 1;
2028
2029         if(currentlyPlaying < autocvar_g_maxplayers)
2030                 return min(maxclients - totalClients, autocvar_g_maxplayers - currentlyPlaying);
2031
2032         return 0;
2033 }
2034
2035 /**
2036  * Checks whether the client is an observer or spectator, if so, he will get kicked after
2037  * g_maxplayers_spectator_blocktime seconds
2038  */
2039 void checkSpectatorBlock() {
2040         if(IS_SPEC(self) || IS_OBSERVER(self))
2041         if(!self.caplayer)
2042         if(IS_REAL_CLIENT(self))
2043         {
2044                 if( time > (self.spectatortime + autocvar_g_maxplayers_spectator_blocktime) ) {
2045                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_QUIT_KICK_SPECTATING);
2046                         dropclient(self);
2047                 }
2048         }
2049 }
2050
2051 void PrintWelcomeMessage()
2052 {
2053         if(self.motd_actived_time == 0)
2054         {
2055                 if (autocvar_g_campaign) {
2056                         if ((IS_PLAYER(self) && self.BUTTON_INFO) || (!IS_PLAYER(self))) {
2057                                 self.motd_actived_time = time;
2058                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_MOTD, campaign_message);
2059                         }
2060                 } else {
2061                         if (self.BUTTON_INFO) {
2062                                 self.motd_actived_time = time;
2063                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_MOTD, getwelcomemessage());
2064                         }
2065                 }
2066         }
2067         else if(self.motd_actived_time > 0) // showing MOTD or campaign message
2068         {
2069                 if (autocvar_g_campaign) {
2070                         if (self.BUTTON_INFO)
2071                                 self.motd_actived_time = time;
2072                         else if ((time - self.motd_actived_time > 2) && IS_PLAYER(self)) { // hide it some seconds after BUTTON_INFO has been released
2073                                 self.motd_actived_time = 0;
2074                                 Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_MOTD);
2075                         }
2076                 } else {
2077                         if (self.BUTTON_INFO)
2078                                 self.motd_actived_time = time;
2079                         else if (time - self.motd_actived_time > 2) { // hide it some seconds after BUTTON_INFO has been released
2080                                 self.motd_actived_time = 0;
2081                                 Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_MOTD);
2082                         }
2083                 }
2084         }
2085         else //if(self.motd_actived_time < 0) // just connected, motd is active
2086         {
2087                 if(self.BUTTON_INFO) // BUTTON_INFO hides initial MOTD
2088                         self.motd_actived_time = -2; // wait until BUTTON_INFO gets released
2089                 else if(self.motd_actived_time == -2 || IS_PLAYER(self))
2090                 {
2091                         // instanctly hide MOTD
2092                         self.motd_actived_time = 0;
2093                         Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_MOTD);
2094                 }
2095         }
2096 }
2097
2098 void ObserverThink()
2099 {
2100         if ( self.impulse )
2101         {
2102                 MinigameImpulse(self.impulse);
2103                 self.impulse = 0;
2104         }
2105         float prefered_movetype;
2106         if (self.flags & FL_JUMPRELEASED) {
2107                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2108                         self.flags &= ~FL_JUMPRELEASED;
2109                         self.flags |= FL_SPAWNING;
2110                 } else if(self.BUTTON_ATCK && !self.version_mismatch) {
2111                         self.flags &= ~FL_JUMPRELEASED;
2112                         if(SpectateNext()) {
2113                                 self.classname = "spectator";
2114                         }
2115                 } else {
2116                         prefered_movetype = ((!self.BUTTON_USE ? self.cvar_cl_clippedspectating : !self.cvar_cl_clippedspectating) ? MOVETYPE_FLY_WORLDONLY : MOVETYPE_NOCLIP);
2117                         if (self.movetype != prefered_movetype)
2118                                 self.movetype = prefered_movetype;
2119                 }
2120         } else {
2121                 if (!(self.BUTTON_ATCK || self.BUTTON_JUMP)) {
2122                         self.flags |= FL_JUMPRELEASED;
2123                         if(self.flags & FL_SPAWNING)
2124                         {
2125                                 self.flags &= ~FL_SPAWNING;
2126                                 LeaveSpectatorMode();
2127                                 return;
2128                         }
2129                 }
2130         }
2131 }
2132
2133 void SpectatorThink()
2134 {
2135         if ( self.impulse )
2136         {
2137                 if(MinigameImpulse(self.impulse))
2138                         self.impulse = 0;
2139         }
2140         if (self.flags & FL_JUMPRELEASED) {
2141                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2142                         self.flags &= ~FL_JUMPRELEASED;
2143                         self.flags |= FL_SPAWNING;
2144                 } else if(self.BUTTON_ATCK || self.impulse == 10 || self.impulse == 15 || self.impulse == 18 || (self.impulse >= 200 && self.impulse <= 209)) {
2145                         self.flags &= ~FL_JUMPRELEASED;
2146                         if(SpectateNext()) {
2147                                 self.classname = "spectator";
2148                         } else {
2149                                 self.classname = "observer";
2150                                 PutClientInServer();
2151                         }
2152                         self.impulse = 0;
2153                 } else if(self.impulse == 12 || self.impulse == 16  || self.impulse == 19 || (self.impulse >= 220 && self.impulse <= 229)) {
2154                         self.flags &= ~FL_JUMPRELEASED;
2155                         if(SpectatePrev()) {
2156                                 self.classname = "spectator";
2157                         } else {
2158                                 self.classname = "observer";
2159                                 PutClientInServer();
2160                         }
2161                         self.impulse = 0;
2162                 } else if (self.BUTTON_ATCK2) {
2163                         self.flags &= ~FL_JUMPRELEASED;
2164                         self.classname = "observer";
2165                         PutClientInServer();
2166                 } else {
2167                         if(!SpectateUpdate())
2168                                 PutObserverInServer();
2169                 }
2170         } else {
2171                 if (!(self.BUTTON_ATCK || self.BUTTON_ATCK2)) {
2172                         self.flags |= FL_JUMPRELEASED;
2173                         if(self.flags & FL_SPAWNING)
2174                         {
2175                                 self.flags &= ~FL_SPAWNING;
2176                                 LeaveSpectatorMode();
2177                                 return;
2178                         }
2179                 }
2180                 if(!SpectateUpdate())
2181                         PutObserverInServer();
2182         }
2183
2184         self.flags |= FL_CLIENT | FL_NOTARGET;
2185 }
2186
2187 void vehicles_enter (entity pl, entity veh);
2188 void PlayerUseKey()
2189 {
2190         if (!IS_PLAYER(self))
2191                 return;
2192
2193         if(self.vehicle)
2194         {
2195                 if(!gameover)
2196                 {
2197                         vehicles_exit(VHEF_NORMAL);
2198                         return;
2199                 }
2200         }
2201         else if(autocvar_g_vehicles_enter)
2202         {
2203                 if(!self.frozen)
2204                 if(self.deadflag == DEAD_NO)
2205                 if(!gameover)
2206                 {
2207                         entity head, closest_target = world;
2208                         head = WarpZone_FindRadius(self.origin, autocvar_g_vehicles_enter_radius, TRUE);
2209
2210                         while(head) // find the closest acceptable target to enter
2211                         {
2212                                 if(head.vehicle_flags & VHF_ISVEHICLE)
2213                                 if(head.deadflag == DEAD_NO)
2214                                 if(!head.owner || ((head.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(head.owner, self)))
2215                                 if(head.takedamage != DAMAGE_NO)
2216                                 {
2217                                         if(closest_target)
2218                                         {
2219                                                 if(vlen(self.origin - head.origin) < vlen(self.origin - closest_target.origin))
2220                                                 { closest_target = head; }
2221                                         }
2222                                         else { closest_target = head; }
2223                                 }
2224
2225                                 head = head.chain;
2226                         }
2227
2228                         if(closest_target) { vehicles_enter(self, closest_target); return; }
2229                 }
2230         }
2231
2232         // a use key was pressed; call handlers
2233         MUTATOR_CALLHOOK(PlayerUseKey);
2234 }
2235
2236 float isInvisibleString(string s)
2237 {
2238         float i, n, c;
2239         s = strdecolorize(s);
2240         for((i = 0), (n = strlen(s)); i < n; ++i)
2241         {
2242                 c = str2chr(s, i);
2243                 switch(c)
2244                 {
2245                         case 0:
2246                         case 32: // space
2247                                 break;
2248                         case 192: // charmap space
2249                                 if (!autocvar_utf8_enable)
2250                                         break;
2251                                 return false;
2252                         case 160: // space in unicode fonts
2253                         case 0xE000 + 192: // utf8 charmap space
2254                                 if (autocvar_utf8_enable)
2255                                         break;
2256                         default:
2257                                 return false;
2258                 }
2259         }
2260         return true;
2261 }
2262
2263 /*
2264 =============
2265 PlayerPreThink
2266
2267 Called every frame for each client before the physics are run
2268 =============
2269 */
2270 .float usekeypressed;
2271 void() nexball_setstatus;
2272 .float last_vehiclecheck;
2273 .int items_added;
2274 void PlayerPreThink (void)
2275 {
2276         WarpZone_PlayerPhysics_FixVAngle();
2277
2278         self.stat_game_starttime = game_starttime;
2279         self.stat_round_starttime = round_starttime;
2280         self.stat_allow_oldvortexbeam = autocvar_g_allow_oldvortexbeam;
2281         self.stat_leadlimit = autocvar_leadlimit;
2282
2283         self.weaponsinmap = weaponsInMap;
2284
2285         if(frametime)
2286         {
2287                 // physics frames: update anticheat stuff
2288                 anticheat_prethink();
2289         }
2290
2291         if(blockSpectators && frametime)
2292                 // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2293                 checkSpectatorBlock();
2294
2295         zoomstate_set = 0;
2296
2297         // Savage: Check for nameless players
2298         if (isInvisibleString(self.netname)) {
2299                 string new_name = strzone(strcat("Player@", self.netaddress));
2300                 if(autocvar_sv_eventlog)
2301                         GameLogEcho(strcat(":name:", ftos(self.playerid), ":", new_name));
2302                 if(self.netname_previous)
2303                         strunzone(self.netname_previous);
2304                 self.netname_previous = strzone(new_name);
2305                 self.netname = self.netname_previous;
2306                 // stuffcmd(self, strcat("name ", self.netname, "\n"));
2307         } else if(self.netname_previous != self.netname) {
2308                 if(autocvar_sv_eventlog)
2309                         GameLogEcho(strcat(":name:", ftos(self.playerid), ":", self.netname));
2310                 if(self.netname_previous)
2311                         strunzone(self.netname_previous);
2312                 self.netname_previous = strzone(self.netname);
2313         }
2314
2315         // version nagging
2316         if(self.version_nagtime)
2317                 if(self.cvar_g_xonoticversion)
2318                         if(time > self.version_nagtime)
2319                         {
2320                                 // don't notify git users
2321                                 if(strstr(self.cvar_g_xonoticversion, "git", 0) < 0 && strstr(self.cvar_g_xonoticversion, "autobuild", 0) < 0)
2322                                 {
2323                                         if(strstr(autocvar_g_xonoticversion, "git", 0) >= 0 || strstr(autocvar_g_xonoticversion, "autobuild", 0) >= 0)
2324                                         {
2325                                                 // notify release users if connecting to git
2326                                                 dprint("^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");
2327                                                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_VERSION_BETA, autocvar_g_xonoticversion, self.cvar_g_xonoticversion);
2328                                         }
2329                                         else
2330                                         {
2331                                                 float r;
2332                                                 r = vercmp(self.cvar_g_xonoticversion, autocvar_g_xonoticversion);
2333                                                 if(r < 0)
2334                                                 {
2335                                                         // give users new version
2336                                                         dprint("^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");
2337                                                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_VERSION_OUTDATED, autocvar_g_xonoticversion, self.cvar_g_xonoticversion);
2338                                                 }
2339                                                 else if(r > 0)
2340                                                 {
2341                                                         // notify users about old server version
2342                                                         print("^1NOTE^7 to ", self.netname, "^7 - the server is running ^3Xonotic ", autocvar_g_xonoticversion, "^7, you have ^3Xonotic ", self.cvar_g_xonoticversion, "^1\n");
2343                                                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_VERSION_OLD, autocvar_g_xonoticversion, self.cvar_g_xonoticversion);
2344                                                 }
2345                                         }
2346                                 }
2347                                 self.version_nagtime = 0;
2348                         }
2349
2350         // GOD MODE info
2351         if(!(self.flags & FL_GODMODE)) if(self.max_armorvalue)
2352         {
2353                 Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_GODMODE_OFF, self.max_armorvalue);
2354                 self.max_armorvalue = 0;
2355         }
2356
2357         if(self.frozen == 2)
2358         {
2359                 self.revive_progress = bound(0, self.revive_progress + frametime * self.revive_speed, 1);
2360                 self.health = max(1, self.revive_progress * start_health);
2361                 self.iceblock.alpha = bound(0.2, 1 - self.revive_progress, 1);
2362
2363                 if(self.revive_progress >= 1)
2364                         Unfreeze(self);
2365         }
2366         else if(self.frozen == 3)
2367         {
2368                 self.revive_progress = bound(0, self.revive_progress - frametime * self.revive_speed, 1);
2369                 self.health = max(0, autocvar_g_nades_ice_health + (start_health-autocvar_g_nades_ice_health) * self.revive_progress );
2370
2371                 if(self.health < 1)
2372                 {
2373                         if(self.vehicle)
2374                                 vehicles_exit(VHEF_RELEASE);
2375                         self.event_damage(self, self.frozen_by, 1, DEATH_NADE_ICE_FREEZE, self.origin, '0 0 0');
2376                 }
2377                 else if ( self.revive_progress <= 0 )
2378                         Unfreeze(self);
2379         }
2380
2381         MUTATOR_CALLHOOK(PlayerPreThink);
2382
2383         if(autocvar_g_vehicles_enter)
2384         if(time > self.last_vehiclecheck)
2385         if(IS_PLAYER(self))
2386         if(!gameover)
2387         if(!self.frozen)
2388         if(!self.vehicle)
2389         if(self.deadflag == DEAD_NO)
2390         {
2391                 entity veh;
2392                 for(veh = world; (veh = findflags(veh, vehicle_flags, VHF_ISVEHICLE)); )
2393                 if(vlen(veh.origin - self.origin) < autocvar_g_vehicles_enter_radius)
2394                 if(veh.deadflag == DEAD_NO)
2395                 if(veh.takedamage != DAMAGE_NO)
2396                 if((veh.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(veh.owner, self))
2397                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_VEHICLE_ENTER_GUNNER);
2398                 else if(!veh.owner)
2399                 if(!veh.team || SAME_TEAM(self, veh))
2400                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_VEHICLE_ENTER);
2401                 else if(autocvar_g_vehicles_steal)
2402                         Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_VEHICLE_ENTER_STEAL);
2403
2404                 self.last_vehiclecheck = time + 1;
2405         }
2406
2407         if(!self.cvar_cl_newusekeysupported) // FIXME remove this - it was a stupid idea to begin with, we can JUST use the button
2408         {
2409                 if(self.BUTTON_USE && !self.usekeypressed)
2410                         PlayerUseKey();
2411                 self.usekeypressed = self.BUTTON_USE;
2412         }
2413
2414         if(IS_REAL_CLIENT(self))
2415                 PrintWelcomeMessage();
2416
2417         if(IS_PLAYER(self))
2418         {
2419
2420                 CheckRules_Player();
2421
2422                 if (intermission_running)
2423                 {
2424                         IntermissionThink ();   // otherwise a button could be missed between
2425                         return;                                 // the think tics
2426                 }
2427
2428                 //don't allow the player to turn around while game is paused!
2429                 if(timeout_status == TIMEOUT_ACTIVE) {
2430                         // FIXME turn this into CSQC stuff
2431                         self.v_angle = self.lastV_angle;
2432                         self.angles = self.lastV_angle;
2433                         self.fixangle = true;
2434                 }
2435
2436                 if(frametime)
2437                 {
2438                         if(self.weapon == WEP_VORTEX.m_id && WEP_CVAR(vortex, charge))
2439                         {
2440                                 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));
2441                                 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));
2442                                 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));
2443
2444                                 if(self.vortex_charge > WEP_CVAR(vortex, charge_animlimit))
2445                                 {
2446                                         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));
2447                                         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));
2448                                         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));
2449                                 }
2450                         }
2451                         else
2452                                 self.weaponentity_glowmod = colormapPaletteColor(self.clientcolors & 0x0F, true) * 2;
2453
2454                         player_powerups();
2455                 }
2456
2457                 if (self.deadflag != DEAD_NO)
2458                 {
2459                         if(self.personal && g_race_qualifying)
2460                         {
2461                                 if(time > self.respawn_time)
2462                                 {
2463                                         self.respawn_time = time + 1; // only retry once a second
2464                                         self.stat_respawn_time = self.respawn_time;
2465                                         respawn();
2466                                         self.impulse = 141;
2467                                 }
2468                         }
2469                         else
2470                         {
2471                                 float button_pressed;
2472                                 if(frametime)
2473                                         player_anim();
2474                                 button_pressed = (self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE);
2475
2476                                 if (self.deadflag == DEAD_DYING)
2477                                 {
2478                                         if((self.respawn_flags & RESPAWN_FORCE) && !autocvar_g_respawn_delay_max)
2479                                                 self.deadflag = DEAD_RESPAWNING;
2480                                         else if(!button_pressed)
2481                                                 self.deadflag = DEAD_DEAD;
2482                                 }
2483                                 else if (self.deadflag == DEAD_DEAD)
2484                                 {
2485                                         if(button_pressed)
2486                                                 self.deadflag = DEAD_RESPAWNABLE;
2487                                         else if(time >= self.respawn_time_max && (self.respawn_flags & RESPAWN_FORCE))
2488                                                 self.deadflag = DEAD_RESPAWNING;
2489                                 }
2490                                 else if (self.deadflag == DEAD_RESPAWNABLE)
2491                                 {
2492                                         if(!button_pressed)
2493                                                 self.deadflag = DEAD_RESPAWNING;
2494                                 }
2495                                 else if (self.deadflag == DEAD_RESPAWNING)
2496                                 {
2497                                         if(time > self.respawn_time)
2498                                         {
2499                                                 self.respawn_time = time + 1; // only retry once a second
2500                                                 self.respawn_time_max = self.respawn_time;
2501                                                 respawn();
2502                                         }
2503                                 }
2504
2505                                 ShowRespawnCountdown();
2506
2507                                 if(self.respawn_flags & RESPAWN_SILENT)
2508                                         self.stat_respawn_time = 0;
2509                                 else if((self.respawn_flags & RESPAWN_FORCE) && autocvar_g_respawn_delay_max)
2510                                         self.stat_respawn_time = self.respawn_time_max;
2511                                 else
2512                                         self.stat_respawn_time = self.respawn_time;
2513                         }
2514
2515                         // if respawning, invert stat_respawn_time to indicate this, the client translates it
2516                         if(self.deadflag == DEAD_RESPAWNING && self.stat_respawn_time > 0)
2517                                 self.stat_respawn_time *= -1;
2518
2519                         return;
2520                 }
2521
2522                 self.prevorigin = self.origin;
2523
2524                 float do_crouch = self.BUTTON_CROUCH;
2525                 if(self.hook.state)
2526                         do_crouch = 0;
2527                 if(self.vehicle)
2528                         do_crouch = 0;
2529                 if(self.frozen)
2530                         do_crouch = 0;
2531
2532                 // WEAPONTODO: THIS SHIT NEEDS TO GO EVENTUALLY
2533                 // It cannot be predicted by the engine!
2534                 if((self.weapon == WEP_SHOCKWAVE.m_id || self.weapon == WEP_SHOTGUN.m_id) && self.weaponentity.wframe == WFRAME_FIRE2 && time < self.weapon_nextthink)
2535                         do_crouch = 0;
2536
2537                 if (do_crouch)
2538                 {
2539                         if (!self.crouch)
2540                         {
2541                                 self.crouch = true;
2542                                 self.view_ofs = self.stat_pl_crouch_view_ofs;
2543                                 setsize (self, self.stat_pl_crouch_min, self.stat_pl_crouch_max);
2544                                 // setanim(self, self.anim_duck, false, true, true); // this anim is BROKEN anyway
2545                         }
2546                 }
2547                 else
2548                 {
2549                         if (self.crouch)
2550                         {
2551                                 tracebox(self.origin, self.stat_pl_min, self.stat_pl_max, self.origin, false, self);
2552                                 if (!trace_startsolid)
2553                                 {
2554                                         self.crouch = false;
2555                                         self.view_ofs = self.stat_pl_view_ofs;
2556                                         setsize (self, self.stat_pl_min, self.stat_pl_max);
2557                                 }
2558                         }
2559                 }
2560
2561                 FixPlayermodel();
2562
2563                 GrapplingHookFrame();
2564
2565                 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2566                 //if(frametime)
2567                 {
2568                         self.items &= ~self.items_added;
2569
2570                         W_WeaponFrame();
2571
2572                         self.items_added = 0;
2573                         if(self.items & ITEM_Jetpack.m_itemid)
2574                                 if(self.items & ITEM_JetpackRegen.m_itemid || self.ammo_fuel >= 0.01)
2575                                         self.items_added |= IT_FUEL;
2576
2577                         self.items |= self.items_added;
2578                 }
2579
2580                 player_regen();
2581
2582                 // WEAPONTODO: Add a weapon request for this
2583                 // rot vortex charge to the charge limit
2584                 if(WEP_CVAR(vortex, charge_rot_rate) && self.vortex_charge > WEP_CVAR(vortex, charge_limit) && self.vortex_charge_rottime < time)
2585                         self.vortex_charge = bound(WEP_CVAR(vortex, charge_limit), self.vortex_charge - WEP_CVAR(vortex, charge_rot_rate) * frametime / W_TICSPERFRAME, 1);
2586
2587                 if(frametime)
2588                         player_anim();
2589
2590                 // secret status
2591                 secrets_setstatus();
2592
2593                 // monsters status
2594                 monsters_setstatus();
2595
2596                 self.dmg_team = max(0, self.dmg_team - autocvar_g_teamdamage_resetspeed * frametime);
2597
2598                 //self.angles_y=self.v_angle_y + 90;   // temp
2599         } else if(gameover) {
2600                 if (intermission_running)
2601                         IntermissionThink ();   // otherwise a button could be missed between
2602                 return;
2603         } else if(IS_OBSERVER(self)) {
2604                 ObserverThink();
2605         } else if(IS_SPEC(self)) {
2606                 SpectatorThink();
2607         }
2608
2609         // WEAPONTODO: Add weapon request for this
2610         if(!zoomstate_set)
2611                 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
2612
2613         float oldspectatee_status;
2614         oldspectatee_status = self.spectatee_status;
2615         if(IS_SPEC(self))
2616                 self.spectatee_status = num_for_edict(self.enemy);
2617         else if(IS_OBSERVER(self))
2618                 self.spectatee_status = num_for_edict(self);
2619         else
2620                 self.spectatee_status = 0;
2621         if(self.spectatee_status != oldspectatee_status)
2622         {
2623                 ClientData_Touch(self);
2624         }
2625
2626         if(self.teamkill_soundtime)
2627         if(time > self.teamkill_soundtime)
2628         {
2629                 self.teamkill_soundtime = 0;
2630
2631                 entity oldpusher, oldself;
2632
2633                 oldself = self; self = self.teamkill_soundsource;
2634                 oldpusher = self.pusher; self.pusher = oldself;
2635
2636                 PlayerSound(playersound_teamshoot, CH_VOICE, VOICETYPE_LASTATTACKER_ONLY);
2637
2638                 self.pusher = oldpusher;
2639                 self = oldself;
2640         }
2641
2642         if(self.taunt_soundtime)
2643         if(time > self.taunt_soundtime)
2644         {
2645                 self.taunt_soundtime = 0;
2646                 PlayerSound(playersound_taunt, CH_VOICE, VOICETYPE_AUTOTAUNT);
2647         }
2648
2649         target_voicescript_next(self);
2650
2651         // WEAPONTODO: Move into weaponsystem somehow
2652         // if a player goes unarmed after holding a loaded weapon, empty his clip size and remove the crosshair ammo ring
2653         if(!self.weapon)
2654                 self.clip_load = self.clip_size = 0;
2655 }
2656
2657 /*
2658 =============
2659 PlayerPostThink
2660
2661 Called every frame for each client after the physics are run
2662 =============
2663 */
2664 .float idlekick_lasttimeleft;
2665 void PlayerPostThink (void)
2666 {
2667         if(sv_maxidle > 0 && frametime) // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2668         if(IS_PLAYER(self) || sv_maxidle_spectatorsareidle)
2669         {
2670                 if (time - self.parm_idlesince < 1) // instead of (time == self.parm_idlesince) to support sv_maxidle <= 10
2671                 {
2672                         if(self.idlekick_lasttimeleft)
2673                         {
2674                                 self.idlekick_lasttimeleft = 0;
2675                                 Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_IDLING);
2676                         }
2677                 }
2678                 else
2679                 {
2680                         float timeleft;
2681                         timeleft = ceil(sv_maxidle - (time - self.parm_idlesince));
2682                         if(timeleft == min(10, sv_maxidle - 1)) // - 1 to support sv_maxidle <= 10
2683                         {
2684                                 if(!self.idlekick_lasttimeleft)
2685                                         Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_DISCONNECT_IDLING, timeleft);
2686                         }
2687                         if(timeleft <= 0)
2688                         {
2689                                 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_QUIT_KICK_IDLING, self.netname);
2690                                 dropclient(self);
2691                                 return;
2692                         }
2693                         else if(timeleft <= 10)
2694                         {
2695                                 if(timeleft != self.idlekick_lasttimeleft)
2696                                         { Send_Notification(NOTIF_ONE, self, MSG_ANNCE, Announcer_PickNumber(CNT_IDLE, timeleft)); }
2697                                 self.idlekick_lasttimeleft = timeleft;
2698                         }
2699                 }
2700         }
2701
2702         CheatFrame();
2703
2704         //CheckPlayerJump();
2705
2706         if(IS_PLAYER(self)) {
2707                 CheckRules_Player();
2708                 UpdateChatBubble();
2709                 if (self.impulse)
2710                         ImpulseCommands();
2711                 if (intermission_running)
2712                         return;         // intermission or finale
2713                 GetPressedKeys();
2714         }
2715
2716         /*
2717         float i;
2718         for(i = 0; i < 1000; ++i)
2719         {
2720                 vector end;
2721                 end = self.origin + '0 0 1024' + 512 * randomvec();
2722                 tracebox(self.origin, self.mins, self.maxs, end, MOVE_NORMAL, self);
2723                 if(trace_fraction < 1)
2724                 if(!(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
2725                 {
2726                         print("I HIT SOLID: ", vtos(self.origin), " -> ", vtos(end), "\n");
2727                         break;
2728                 }
2729         }
2730         */
2731
2732         if(self.waypointsprite_attachedforcarrier)
2733                 WaypointSprite_UpdateHealth(self.waypointsprite_attachedforcarrier, '1 0 0' * healtharmor_maxdamage(self.health, self.armorvalue, autocvar_g_balance_armor_blockpercent, DEATH_WEAPON));
2734
2735         playerdemo_write();
2736
2737         CSQCMODEL_AUTOUPDATE();
2738 }