]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_client.qc
remove an unused arg
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cl_client.qc
1 void race_send_recordtime(float msg);
2 void race_SendRankings(float pos, float prevpos, float del, float msg);
3
4 void send_CSQC_teamnagger() {
5         WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
6         WriteByte(MSG_BROADCAST, TE_CSQC_TEAMNAGGER);
7 }
8
9 void Announce(string snd) {
10         WriteByte(MSG_ALL, SVC_TEMPENTITY);
11         WriteByte(MSG_ALL, TE_CSQC_ANNOUNCE);
12         WriteString(MSG_ALL, snd);
13 }
14
15 void AnnounceTo(entity e, string snd) {
16         if (clienttype(e) == CLIENTTYPE_REAL)
17         {
18                 msg_entity = e;
19                 WriteByte(MSG_ONE, SVC_TEMPENTITY);
20                 WriteByte(MSG_ONE, TE_CSQC_ANNOUNCE);
21                 WriteString(MSG_ONE, snd);
22         }
23 }
24
25 float ClientData_Send(entity to, float sf)
26 {
27         if(to != self.owner)
28         {
29                 error("wtf");
30                 return FALSE;
31         }
32
33         entity e;
34
35         e = to;
36         if(to.classname == "spectator")
37                 e = to.enemy;
38
39         sf = 0;
40
41         if(e.race_completed)
42                 sf |= 1; // forced scoreboard
43         if(to.spectatee_status)
44                 sf |= 2; // spectator ent number follows
45         if(e.zoomstate)
46                 sf |= 4; // zoomed
47         if(e.porto_v_angle_held)
48                 sf |= 8; // angles held
49
50         WriteByte(MSG_ENTITY, ENT_CLIENT_CLIENTDATA);
51         WriteByte(MSG_ENTITY, sf);
52
53         if(sf & 2)
54                 WriteByte(MSG_ENTITY, to.spectatee_status);
55
56         if(sf & 8)
57         {
58                 WriteAngle(MSG_ENTITY, e.v_angle_x);
59                 WriteAngle(MSG_ENTITY, e.v_angle_y);
60         }
61
62         return TRUE;
63 }
64
65 void ClientData_Attach()
66 {
67         Net_LinkEntity(self.clientdata = spawn(), FALSE, 0, ClientData_Send);
68         self.clientdata.drawonlytoclient = self;
69         self.clientdata.owner = self;
70 }
71
72 void ClientData_Detach()
73 {
74         remove(self.clientdata);
75         self.clientdata = world;
76 }
77
78 void ClientData_Touch(entity e)
79 {
80         e.clientdata.SendFlags = 1;
81
82         // make it spectatable
83         entity e2;
84         FOR_EACH_REALCLIENT(e2)
85         {
86                 if(e2 != e)
87                         if(e2.classname == "spectator")
88                                 if(e2.enemy == e)
89                                         e2.clientdata.SendFlags = 1;
90         }
91 }
92
93
94 .vector spawnpoint_score;
95 .string netname_previous;
96
97 void spawnfunc_info_player_survivor (void)
98 {
99         spawnfunc_info_player_deathmatch();
100 }
101
102 void spawnfunc_info_player_start (void)
103 {
104         spawnfunc_info_player_deathmatch();
105 }
106
107 void spawnfunc_info_player_deathmatch (void)
108 {
109         self.classname = "info_player_deathmatch";
110         relocate_spawnpoint();
111 }
112
113 void spawnpoint_use()
114 {
115         if(teamplay)
116         if(have_team_spawns > 0)
117         {
118                 self.team = activator.team;
119                 some_spawn_has_been_used = 1;
120         }
121 }
122
123 // Returns:
124 //   _x: prio (-1 if unusable)
125 //   _y: weight
126 vector Spawn_Score(entity spot, float mindist, float teamcheck)
127 {
128         float shortest, thisdist;
129         float prio;
130         entity player;
131
132         prio = 0;
133
134         // filter out spots for the wrong team
135         if(teamcheck >= 0)
136                 if(spot.team != teamcheck)
137                         return '-1 0 0';
138
139         if(race_spawns)
140                 if(spot.target == "")
141                         return '-1 0 0';
142
143         if(clienttype(self) == CLIENTTYPE_REAL)
144         {
145                 if(spot.restriction == 1)
146                         return '-1 0 0';
147         }
148         else
149         {
150                 if(spot.restriction == 2)
151                         return '-1 0 0';
152         }
153
154         shortest = vlen(world.maxs - world.mins);
155         FOR_EACH_PLAYER(player) if (player != self)
156         {
157                 thisdist = vlen(player.origin - spot.origin);
158                 if (thisdist < shortest)
159                         shortest = thisdist;
160         }
161         if(shortest < mindist)
162                 prio += SPAWN_PRIO_GOOD_DISTANCE;
163
164         spawn_score = prio * '1 0 0' + shortest * '0 1 0';
165         spawn_score_spot = spot;
166
167         // filter out spots for assault
168         if(spot.target != "") {
169                 entity ent;
170                 float found;
171
172                 found = 0;
173                 for(ent = world; (ent = find(ent, targetname, spot.target)); )
174                 {
175                         ++found;
176                         if(ent.spawn_evalfunc)
177                         {
178                                 entity oldself = self;
179                                 self = ent;
180                                 spawn_score = ent.spawn_evalfunc(oldself, spot, spawn_score);
181                                 self = oldself;
182                                 if(spawn_score_x < 0)
183                                         return spawn_score;
184                         }
185                 }
186
187                 if(!found)
188                 {
189                         dprint("WARNING: spawnpoint at ", vtos(spot.origin), " could not find its target ", spot.target, "\n");
190                         return '-1 0 0';
191                 }
192         }
193
194         MUTATOR_CALLHOOK(Spawn_Score);
195         return spawn_score;
196 }
197
198 void Spawn_ScoreAll(entity firstspot, float mindist, float teamcheck)
199 {
200         entity spot;
201         for(spot = firstspot; spot; spot = spot.chain)
202                 spot.spawnpoint_score = Spawn_Score(spot, mindist, teamcheck);
203 }
204
205 entity Spawn_FilterOutBadSpots(entity firstspot, float mindist, float teamcheck)
206 {
207         entity spot, spotlist, spotlistend;
208
209         spotlist = world;
210         spotlistend = world;
211
212         Spawn_ScoreAll(firstspot, mindist, teamcheck);
213
214         for(spot = firstspot; spot; spot = spot.chain)
215         {
216                 if(spot.spawnpoint_score_x >= 0) // spawning allowed here
217                 {
218                         if(spotlistend)
219                                 spotlistend.chain = spot;
220                         spotlistend = spot;
221                         if(!spotlist)
222                                 spotlist = spot;
223                 }
224         }
225         if(spotlistend)
226                 spotlistend.chain = world;
227
228         return spotlist;
229 }
230
231 entity Spawn_WeightedPoint(entity firstspot, float lower, float upper, float exponent)
232 {
233         // weight of a point: bound(lower, mindisttoplayer, upper)^exponent
234         // multiplied by spot.cnt (useful if you distribute many spawnpoints in a small area)
235         entity spot;
236
237         RandomSelection_Init();
238         for(spot = firstspot; spot; spot = spot.chain)
239                 RandomSelection_Add(spot, 0, string_null, pow(bound(lower, spot.spawnpoint_score_y, upper), exponent) * spot.cnt, (spot.spawnpoint_score_y >= lower) * 0.5 + spot.spawnpoint_score_x);
240
241         return RandomSelection_chosen_ent;
242 }
243
244 /*
245 =============
246 SelectSpawnPoint
247
248 Finds a point to respawn
249 =============
250 */
251 entity SelectSpawnPoint (float anypoint)
252 {
253         float teamcheck;
254         entity spot, firstspot;
255
256         spot = find (world, classname, "testplayerstart");
257         if (spot)
258                 return spot;
259
260         if(anypoint || autocvar_g_spawn_useallspawns)
261                 teamcheck = -1;
262         else if(have_team_spawns > 0)
263         {
264                 if(have_team_spawns_forteam[self.team] == 0)
265                 {
266                         // we request a spawn for a team, and we have team
267                         // spawns, but that team has no spawns?
268                         if(have_team_spawns_forteam[0])
269                                 // try noteam spawns
270                                 teamcheck = 0;
271                         else
272                                 // if not, any spawn has to do
273                                 teamcheck = -1;
274                 }
275                 else
276                         teamcheck = self.team; // MUST be team
277         }
278         else if(have_team_spawns == 0 && have_team_spawns_forteam[0])
279                 teamcheck = 0; // MUST be noteam
280         else
281                 teamcheck = -1;
282                 // if we get here, we either require team spawns but have none, or we require non-team spawns and have none; use any spawn then
283
284
285         // get the entire list of spots
286         firstspot = findchain(classname, "info_player_deathmatch");
287         // filter out the bad ones
288         // (note this returns the original list if none survived)
289         if(anypoint)
290         {
291                 spot = Spawn_WeightedPoint(firstspot, 1, 1, 1);
292         }
293         else
294         {
295                 float mindist;
296                 if (arena_roundbased && !g_ca)
297                         mindist = 800;
298                 else
299                         mindist = 100;
300                 firstspot = Spawn_FilterOutBadSpots(firstspot, mindist, teamcheck);
301
302                 // there is 50/50 chance of choosing a random spot or the furthest spot
303                 // (this means that roughly every other spawn will be furthest, so you
304                 // usually won't get fragged at spawn twice in a row)
305                 if (random() > autocvar_g_spawn_furthest)
306                         spot = Spawn_WeightedPoint(firstspot, 1, 1, 1);
307                 else
308                         spot = Spawn_WeightedPoint(firstspot, 1, 5000, 5); // chooses a far far away spawnpoint
309         }
310
311         if (!spot)
312         {
313                 if(autocvar_spawn_debug)
314                         GotoNextMap();
315                 else
316                 {
317                         if(some_spawn_has_been_used)
318                                 return world; // team can't spawn any more, because of actions of other team
319                         else
320                                 error("Cannot find a spawn point - please fix the map!");
321                 }
322         }
323
324         return spot;
325 }
326
327 /*
328 =============
329 CheckPlayerModel
330
331 Checks if the argument string can be a valid playermodel.
332 Returns a valid one in doubt.
333 =============
334 */
335 string FallbackPlayerModel;
336 string CheckPlayerModel(string plyermodel) {
337         if(FallbackPlayerModel != cvar_defstring("_cl_playermodel"))
338         {
339                 // note: we cannot summon Don Strunzone here, some player may
340                 // still have the model string set. In case anyone manages how
341                 // to change a cvar default, we'll have a small leak here.
342                 FallbackPlayerModel = strzone(cvar_defstring("_cl_playermodel"));
343         }
344         if(strlen(plyermodel) < 4)
345                 return FallbackPlayerModel;
346         if( substring(plyermodel,0,14) != "models/player/")
347                 return FallbackPlayerModel;
348         else if(autocvar_sv_servermodelsonly)
349         {
350                 if(substring(plyermodel,-4,4) != ".zym")
351                 if(substring(plyermodel,-4,4) != ".dpm")
352                 if(substring(plyermodel,-4,4) != ".iqm")
353                 if(substring(plyermodel,-4,4) != ".md3")
354                 if(substring(plyermodel,-4,4) != ".psk")
355                         return FallbackPlayerModel;
356                 // forbid the LOD models
357                 if(substring(plyermodel, -9,5) == "_lod1")
358                         return FallbackPlayerModel;
359                 if(substring(plyermodel, -9,5) == "_lod2")
360                         return FallbackPlayerModel;
361                 if(plyermodel != strtolower(plyermodel))
362                         return FallbackPlayerModel;
363                 if(!fexists(plyermodel))
364                         return FallbackPlayerModel;
365         }
366         return plyermodel;
367 }
368
369 /*
370 =============
371 Client_customizeentityforclient
372
373 LOD reduction
374 =============
375 */
376 void Client_uncustomizeentityforclient()
377 {
378         if(self.modelindex == 0) // no need to uncustomize then
379                 return;
380         self.modelindex = self.modelindex_lod0;
381         self.skin = self.skinindex;
382 }
383
384 float Client_customizeentityforclient()
385 {
386         entity modelsource;
387
388         if(self.modelindex == 0)
389                 return TRUE;
390
391         // forcemodel stuff
392
393 #ifdef PROFILING
394         float t0;
395         t0 = gettime(GETTIME_HIRES); // reference
396 #endif
397
398         modelsource = self;
399
400 #ifdef ALLOW_FORCEMODELS
401         if(other.cvar_cl_forceplayermodelsfromxonotic)
402                 if not(self.modelindex_lod0_from_xonotic)
403                         modelsource = other;
404         if(other.cvar_cl_forceplayermodels && sv_clforceplayermodels)
405                 modelsource = other;
406 #endif
407
408         self.skin = modelsource.skinindex;
409
410 #if 0
411         if(modelsource == self)
412                 self.skin = modelsource.skinindex;
413         else
414                 self.skin = mod(modelsource.skinindex, 3); // forbid the fbskins as forced skins
415 #endif
416
417         // self: me
418         // other: the player viewing me
419         float distance;
420         float f;
421
422         if(other.cvar_cl_playerdetailreduction <= 0)
423         {
424                 if(other.cvar_cl_playerdetailreduction <= -2)
425                         self.modelindex = modelsource.modelindex_lod2;
426                 else if(other.cvar_cl_playerdetailreduction <= -1)
427                         self.modelindex = modelsource.modelindex_lod1;
428                 else
429                         self.modelindex = modelsource.modelindex_lod0;
430         }
431         else
432         {
433                 distance = vlen(self.origin - other.origin);
434                 f = (distance + 100.0) * other.cvar_cl_playerdetailreduction;
435                 if(f > sv_loddistance2)
436                         self.modelindex = modelsource.modelindex_lod2;
437                 else if(f > sv_loddistance1)
438                         self.modelindex = modelsource.modelindex_lod1;
439                 else
440                         self.modelindex = modelsource.modelindex_lod0;
441         }
442
443 #ifdef PROFILING
444         float t1;
445         t1 = gettime(GETTIME_HIRES); // reference
446         client_cefc_accumulator += (t1 - t0);
447 #endif
448
449         return TRUE;
450 }
451
452 void setmodel_lod(entity e, string modelname)
453 {
454         string s;
455
456         if(sv_loddistance1)
457         {
458                 // FIXME: this only supports 3-letter extensions
459                 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod1", substring(modelname, -4, 4));
460                 if(fexists(s))
461                 {
462                         setmodel(e, s); // players have high precision
463                         self.modelindex_lod1 = self.modelindex;
464                 }
465                 else
466                         self.modelindex_lod1 = -1;
467
468                 s = strcat(substring(modelname, 0, strlen(modelname)-4), "_lod2", substring(modelname, -4, 4));
469                 if(fexists(s))
470                 {
471                         setmodel(e, s); // players have high precision
472                         self.modelindex_lod2 = self.modelindex;
473                 }
474                 else
475                         self.modelindex_lod2 = -1;
476
477                 precache_model(modelname);
478                 setmodel(e, modelname); // players have high precision
479                 self.modelindex_lod0 = self.modelindex;
480
481                 if(self.modelindex_lod1 < 0)
482                         self.modelindex_lod1 = self.modelindex;
483
484                 if(self.modelindex_lod2 < 0)
485                         self.modelindex_lod2 = self.modelindex;
486         }
487         else
488         {
489                 precache_model(modelname);
490                 setmodel(e, modelname); // players have high precision
491                 self.modelindex_lod0 = self.modelindex;
492                         // save it for possible player model forcing
493         }
494
495         s = whichpack(self.model);
496         self.modelindex_lod0_from_xonotic = ((s == "") || (substring(s, 0, 4) == "data"));
497
498         player_setupanimsformodel();
499         UpdatePlayerSounds();
500 }
501
502 /*
503 =============
504 PutObserverInServer
505
506 putting a client as observer in the server
507 =============
508 */
509 void FixPlayermodel();
510 void PutObserverInServer (void)
511 {
512         entity  spot;
513     self.hud = HUD_NORMAL;
514         race_PreSpawnObserver();
515
516         spot = SelectSpawnPoint (TRUE);
517         if(!spot)
518                 error("No spawnpoints for observers?!?\n");
519         RemoveGrapplingHook(self); // Wazat's Grappling Hook
520
521         if(clienttype(self) == CLIENTTYPE_REAL)
522         {
523                 msg_entity = self;
524                 WriteByte(MSG_ONE, SVC_SETVIEW);
525                 WriteEntity(MSG_ONE, self);
526         }
527
528         DropAllRunes(self);
529         MUTATOR_CALLHOOK(MakePlayerObserver);
530
531         if (g_minstagib)
532                 minstagib_stop_countdown();
533
534         Portal_ClearAll(self);
535
536         if(self.alivetime)
537         {
538                 PlayerStats_Event(self, PLAYERSTATS_ALIVETIME, time - self.alivetime);
539                 self.alivetime = 0;
540         }
541
542         if(self.vehicle)
543             vehicles_exit(VHEF_RELESE);
544
545         if(self.flagcarried)
546                 DropFlag(self.flagcarried, world, world);
547
548         if(self.ballcarried && g_nexball)
549                 DropBall(self.ballcarried, self.origin + self.ballcarried.origin, self.velocity);
550
551         WaypointSprite_PlayerDead();
552
553         if not(g_ca)  // don't reset teams when moving a ca player to the spectators
554                 self.team = -1;  // move this as it is needed to log the player spectating in eventlog
555
556         if(self.killcount != -666) {
557                 if(g_lms) {
558                         if(PlayerScore_Add(self, SP_LMS_RANK, 0) > 0)
559                                 bprint ("^4", self.netname, "^4 has no more lives left\n");
560                         else
561                                 bprint ("^4", self.netname, "^4 is spectating now\n"); // TODO turn this into a proper forfeit?
562                 } else
563                         bprint ("^4", self.netname, "^4 is spectating now\n");
564
565                 if(self.just_joined == FALSE) {
566                         LogTeamchange(self.playerid, -1, 4);
567                 } else
568                         self.just_joined = FALSE;
569         }
570
571         PlayerScore_Clear(self); // clear scores when needed
572
573         accuracy_resend(self);
574
575         self.spectatortime = time;
576         
577         self.classname = "observer";
578         self.iscreature = FALSE;
579         self.damagedbycontents = FALSE;
580         self.health = -666;
581         self.takedamage = DAMAGE_NO;
582         self.solid = SOLID_NOT;
583         self.movetype = MOVETYPE_FLY_WORLDONLY; //(self.cvar_cl_clippedspectating ? MOVETYPE_NOCLIP : MOVETYPE_FLY); // it's too early for this anyway, lets just set it in playerprethink
584         self.flags = FL_CLIENT | FL_NOTARGET;
585         self.armorvalue = 666;
586         self.effects = 0;
587         self.armorvalue = autocvar_g_balance_armor_start;
588         self.pauserotarmor_finished = 0;
589         self.pauserothealth_finished = 0;
590         self.pauseregen_finished = 0;
591         self.damageforcescale = 0;
592         self.death_time = 0;
593         self.dead_frame = 0;
594         self.alpha = 0;
595         self.scale = 0;
596         self.fade_time = 0;
597         self.pain_frame = 0;
598         self.pain_finished = 0;
599         self.strength_finished = 0;
600         self.invincible_finished = 0;
601         self.pushltime = 0;
602         self.think = SUB_Null;
603         self.nextthink = 0;
604         self.hook_time = 0;
605         self.runes = 0;
606         self.deadflag = DEAD_NO;
607         self.angles = spot.angles;
608         self.angles_z = 0;
609         self.fixangle = TRUE;
610         self.crouch = FALSE;
611
612         self.view_ofs = '0 0 0'; // so that your view doesn't go into the ceiling with MOVETYPE_FLY_WORLDONLY, previously "PL_VIEW_OFS"
613         setorigin (self, spot.origin);
614         setsize (self, PL_CROUCH_MIN, PL_CROUCH_MAX); // give the spectator some space between walls for MOVETYPE_FLY_WORLDONLY
615         self.prevorigin = self.origin;
616         self.items = 0;
617         self.weapons = 0;
618         self.model = "";
619         FixPlayermodel();
620         self.model = "";
621         self.modelindex = 0;
622         self.weapon = 0;
623         self.weaponname = "";
624         self.switchingweapon = 0;
625         self.weaponmodel = "";
626         self.weaponentity = world;
627         self.exteriorweaponentity = world;
628         self.killcount = -666;
629         self.velocity = '0 0 0';
630         self.avelocity = '0 0 0';
631         self.punchangle = '0 0 0';
632         self.punchvector = '0 0 0';
633         self.oldvelocity = self.velocity;
634         self.fire_endtime = -1;
635
636         if(sv_loddistance1)
637                 SetCustomizer(self, Client_customizeentityforclient, Client_uncustomizeentityforclient);
638
639         if(g_arena)
640         {
641                 if(self.version_mismatch)
642                 {
643                         Spawnqueue_Unmark(self);
644                         Spawnqueue_Remove(self);
645                 }
646                 else
647                 {
648                         Spawnqueue_Insert(self);
649                 }
650         }
651         else if(g_lms)
652         {
653                 // Only if the player cannot play at all
654                 if(PlayerScore_Add(self, SP_LMS_RANK, 0) == 666)
655                         self.frags = FRAGS_SPECTATOR;
656                 else
657                         self.frags = FRAGS_LMS_LOSER;
658         }
659         else if(g_ca)
660         {
661                 if(self.caplayer)
662                         self.frags = FRAGS_LMS_LOSER;
663                 else
664                         self.frags = FRAGS_SPECTATOR;
665         }
666         else
667                 self.frags = FRAGS_SPECTATOR;
668 }
669
670 .float model_randomizer;
671 void FixPlayermodel()
672 {
673         string defaultmodel;
674         float defaultskin, chmdl, oldskin, n, i;
675         vector m1, m2;
676
677         defaultmodel = "";
678
679         if(autocvar_sv_defaultcharacter == 1)
680         {
681                 defaultskin = 0;
682
683                 if(teamplay)
684                 {
685                         string s;
686                         s = Team_ColorNameLowerCase(self.team);
687                         if(s != "neutral")
688                         {
689                                 defaultmodel = cvar_string(strcat("sv_defaultplayermodel_", s));
690                                 defaultskin = cvar(strcat("sv_defaultplayerskin_", s));
691                         }
692                 }
693
694                 if(defaultmodel == "")
695                 {
696                         defaultmodel = autocvar_sv_defaultplayermodel;
697                         defaultskin = autocvar_sv_defaultplayerskin;
698                 }
699
700                 n = tokenize_console(defaultmodel);
701                 if(n > 0)
702                         defaultmodel = argv(floor(n * self.model_randomizer));
703
704                 i = strstrofs(defaultmodel, ":", 0);
705                 if(i >= 0)
706                 {
707                         defaultskin = stof(substring(defaultmodel, i+1, -1));
708                         defaultmodel = substring(defaultmodel, 0, i);
709                 }
710         }
711
712         if(self.modelindex == 0 && self.deadflag == DEAD_NO)
713         {
714                 if(self.model != "")
715                         bprint("\{1}^1Player ", self.netname, "^1 has a zero modelindex, trying to fix...\n");
716                 self.model = ""; // force the != checks to return true
717         }
718
719         if(defaultmodel != "")
720         {
721                 if (defaultmodel != self.model)
722                 {
723                         m1 = self.mins;
724                         m2 = self.maxs;
725                         setmodel_lod (self, defaultmodel);
726                         setsize (self, m1, m2);
727                         chmdl = TRUE;
728                 }
729
730                 oldskin = self.skinindex;
731                 self.skinindex = defaultskin;
732         } else {
733                 if (self.playermodel != self.model || self.playermodel == "")
734                 {
735                         self.playermodel = CheckPlayerModel(self.playermodel); // this is never "", so no endless loop
736                         m1 = self.mins;
737                         m2 = self.maxs;
738                         setmodel_lod (self, self.playermodel);
739                         setsize (self, m1, m2);
740                         chmdl = TRUE;
741                 }
742
743                 oldskin = self.skinindex;
744                 self.skinindex = stof(self.playerskin);
745         }
746
747         if(chmdl || oldskin != self.skinindex)
748                 self.species = player_getspecies(); // model or skin has changed
749
750         if(!teamplay)
751                 if(strlen(autocvar_sv_defaultplayercolors))
752                         if(self.clientcolors != stof(autocvar_sv_defaultplayercolors))
753                                 setcolor(self, stof(autocvar_sv_defaultplayercolors));
754 }
755
756 void PlayerTouchExplode(entity p1, entity p2)
757 {
758         vector org;
759         org = (p1.origin + p2.origin) * 0.5;
760         org_z += (p1.mins_z + p2.mins_z) * 0.5;
761
762         te_explosion(org);
763
764         entity e;
765         e = spawn();
766         setorigin(e, org);
767         RadiusDamage(e, world, g_touchexplode_damage, g_touchexplode_edgedamage, g_touchexplode_radius, world, g_touchexplode_force, DEATH_TOUCHEXPLODE, world);
768         remove(e);
769 }
770
771 /*
772 =============
773 PutClientInServer
774
775 Called when a client spawns in the server
776 =============
777 */
778 //void() ctf_playerchanged;
779 void PutClientInServer (void)
780 {
781         if(clienttype(self) == CLIENTTYPE_BOT)
782         {
783                 self.classname = "player";
784         }
785         else if(clienttype(self) == CLIENTTYPE_REAL)
786         {
787                 msg_entity = self;
788                 WriteByte(MSG_ONE, SVC_SETVIEW);
789                 WriteEntity(MSG_ONE, self);
790         }
791         
792         // reset player keys
793         self.itemkeys = 0;
794
795         // player is dead and becomes observer
796         // FIXME fix LMS scoring for new system
797         if(g_lms)
798         {
799                 if(PlayerScore_Add(self, SP_LMS_RANK, 0) > 0)
800                         self.classname = "observer";
801         }
802
803         if(g_arena || (g_ca && !allowed_to_spawn))
804         if(!self.spawned)
805                 self.classname = "observer";
806
807         if(gameover)
808                 self.classname = "observer";
809
810         if(self.classname == "player" && (!g_ca || (g_ca && allowed_to_spawn))) {
811                 entity spot, oldself;
812                 float j;
813
814                 accuracy_resend(self);
815
816                 if(self.team < 0)
817                         JoinBestTeam(self, FALSE, TRUE);
818
819                 race_PreSpawn();
820
821                 spot = SelectSpawnPoint (FALSE);
822                 if(!spot)
823                 {
824                         centerprint(self, "Sorry, no spawnpoints available!\nHope your team can fix it...");
825                         return; // spawn failed
826                 }
827
828                 RemoveGrapplingHook(self); // Wazat's Grappling Hook
829
830                 self.classname = "player";
831                 self.wasplayer = TRUE;
832                 self.iscreature = TRUE;
833                 self.damagedbycontents = TRUE;
834                 self.movetype = MOVETYPE_WALK;
835                 self.solid = SOLID_SLIDEBOX;
836                 self.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_SOLID;
837                 if(autocvar_g_playerclip_collisions)
838                         self.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
839                 if(clienttype(self) == CLIENTTYPE_BOT && autocvar_g_botclip_collisions)
840                         self.dphitcontentsmask |= DPCONTENTS_BOTCLIP;
841                 self.frags = FRAGS_PLAYER;
842                 if(INDEPENDENT_PLAYERS)
843                         MAKE_INDEPENDENT_PLAYER(self);
844                 self.flags = FL_CLIENT;
845                 if(autocvar__notarget)
846                         self.flags |= FL_NOTARGET;
847                 self.takedamage = DAMAGE_AIM;
848                 if(g_minstagib)
849                         self.effects = EF_FULLBRIGHT;
850                 else
851                         self.effects = 0;
852                 self.air_finished = time + 12;
853                 self.dmg = 2;
854                 if(autocvar_g_balance_nex_charge)
855                 {
856                         if(autocvar_g_balance_nex_secondary_chargepool)
857                                 self.nex_chargepool_ammo = 1;
858                         self.nex_charge = autocvar_g_balance_nex_charge_start;
859                 }
860
861                 if(inWarmupStage)
862                 {
863                         self.ammo_shells = warmup_start_ammo_shells;
864                         self.ammo_nails = warmup_start_ammo_nails;
865                         self.ammo_rockets = warmup_start_ammo_rockets;
866                         self.ammo_cells = warmup_start_ammo_cells;
867                         self.ammo_fuel = warmup_start_ammo_fuel;
868                         self.health = warmup_start_health;
869                         self.armorvalue = warmup_start_armorvalue;
870                         self.weapons = warmup_start_weapons;
871                 }
872                 else
873                 {
874                         self.ammo_shells = start_ammo_shells;
875                         self.ammo_nails = start_ammo_nails;
876                         self.ammo_rockets = start_ammo_rockets;
877                         self.ammo_cells = start_ammo_cells;
878                         self.ammo_fuel = start_ammo_fuel;
879                         self.health = start_health;
880                         self.armorvalue = start_armorvalue;
881                         self.weapons = start_weapons;
882                 }
883
884                 if(g_weaponarena_random)
885                 {
886                         if(g_weaponarena_random_with_laser)
887                                 self.weapons &~= WEPBIT_LASER;
888                         self.weapons = randombits(self.weapons, g_weaponarena_random, FALSE);
889                         if(g_weaponarena_random_with_laser)
890                                 self.weapons |= WEPBIT_LASER;
891                 }
892
893                 self.items = start_items;
894                 self.jump_interval = time;
895
896                 self.spawnshieldtime = time + autocvar_g_spawnshieldtime;
897                 self.pauserotarmor_finished = time + autocvar_g_balance_pause_armor_rot_spawn;
898                 self.pauserothealth_finished = time + autocvar_g_balance_pause_health_rot_spawn;
899                 self.pauserotfuel_finished = time + autocvar_g_balance_pause_fuel_rot_spawn;
900                 self.pauseregen_finished = time + autocvar_g_balance_pause_health_regen_spawn;
901                 //extend the pause of rotting if client was reset at the beginning of the countdown
902                 if(!autocvar_sv_ready_restart_after_countdown && time < game_starttime) { // TODO why is this cvar NOTted?
903                         self.spawnshieldtime += game_starttime - time;
904                         self.pauserotarmor_finished += game_starttime - time;
905                         self.pauserothealth_finished += game_starttime - time;
906                         self.pauseregen_finished += game_starttime - time;
907                 }
908                 self.damageforcescale = 2;
909                 self.death_time = 0;
910                 self.dead_frame = 0;
911                 self.alpha = 0;
912                 self.scale = 0;
913                 self.fade_time = 0;
914                 self.pain_frame = 0;
915                 self.pain_finished = 0;
916                 self.strength_finished = 0;
917                 self.invincible_finished = 0;
918                 self.pushltime = 0;
919                 // players have no think function
920                 self.think = SUB_Null;
921                 self.nextthink = 0;
922                 self.hook_time = 0;
923                 self.dmg_team = 0;
924                 self.ballistics_density = autocvar_g_ballistics_density_player;
925
926                 self.metertime = 0;
927
928                 self.runes = 0;
929
930                 self.deadflag = DEAD_NO;
931
932                 self.angles = spot.angles;
933
934                 self.angles_z = 0; // never spawn tilted even if the spot says to
935                 self.fixangle = TRUE; // turn this way immediately
936                 self.velocity = '0 0 0';
937                 self.avelocity = '0 0 0';
938                 self.punchangle = '0 0 0';
939                 self.punchvector = '0 0 0';
940                 self.oldvelocity = self.velocity;
941                 self.fire_endtime = -1;
942
943                 msg_entity = self;
944                 WRITESPECTATABLE_MSG_ONE({
945                         WriteByte(MSG_ONE, SVC_TEMPENTITY);
946                         WriteByte(MSG_ONE, TE_CSQC_SPAWN);
947                 });
948
949                 if(sv_loddistance1)
950                         SetCustomizer(self, Client_customizeentityforclient, Client_uncustomizeentityforclient);
951
952                 self.model = "";
953                 FixPlayermodel();
954
955                 self.crouch = FALSE;
956                 self.view_ofs = PL_VIEW_OFS;
957                 setsize (self, PL_MIN, PL_MAX);
958                 self.spawnorigin = spot.origin;
959                 setorigin (self, spot.origin + '0 0 1' * (1 - self.mins_z - 24));
960                 // don't reset back to last position, even if new position is stuck in solid
961                 self.oldorigin = self.origin;
962                 self.prevorigin = self.origin;
963                 self.lastrocket = world; // stop rocket guiding, no revenge from the grave!
964                 self.lastteleporttime = time; // prevent insane speeds due to changing origin
965         self.hud = HUD_NORMAL;
966         
967                 if(g_arena)
968                 {
969                         Spawnqueue_Remove(self);
970                         Spawnqueue_Mark(self);
971                 }
972
973                 else if(g_ca)
974                         self.caplayer = 1;
975
976                 self.event_damage = PlayerDamage;
977
978                 self.bot_attack = TRUE;
979
980                 self.statdraintime = time + 5;
981                 self.BUTTON_ATCK = self.BUTTON_JUMP = self.BUTTON_ATCK2 = 0;
982
983                 if(self.killcount == -666) {
984                         PlayerScore_Clear(self);
985                         self.killcount = 0;
986                 }
987
988                 CL_SpawnWeaponentity();
989                 self.alpha = default_player_alpha;
990                 self.colormod = '1 1 1' * autocvar_g_player_brightness;
991                 self.exteriorweaponentity.alpha = default_weapon_alpha;
992
993                 self.lms_nextcheck = time + autocvar_g_lms_campcheck_interval*2;
994                 self.lms_traveled_distance = 0;
995                 self.speedrunning = FALSE;
996
997                 race_PostSpawn(spot);
998
999                 if(autocvar_spawn_debug)
1000                 {
1001                         sprint(self, strcat("spawnpoint origin:  ", vtos(spot.origin), "\n"));
1002                         remove(spot);   // usefull for checking if there are spawnpoints, that let drop through the floor
1003                 }
1004
1005                 //stuffcmd(self, "chase_active 0");
1006                 //stuffcmd(self, "set viewsize $tmpviewsize \n");
1007
1008                 if (autocvar_g_spawnsound)
1009                         sound (self, CH_TRIGGER, "misc/spawn.wav", VOL_BASE, ATTN_NORM);
1010
1011                 if(g_assault) {
1012                         if(self.team == assault_attacker_team)
1013                                 centerprint(self, "You are attacking!");
1014                         else
1015                                 centerprint(self, "You are defending!");
1016                 }
1017
1018                 target_voicescript_clear(self);
1019
1020                 // reset fields the weapons may use
1021                 for (j = WEP_FIRST; j <= WEP_LAST; ++j)
1022                 {
1023                         weapon_action(j, WR_RESETPLAYER);
1024
1025                         // all weapons must be fully loaded when we spawn
1026                         entity e;
1027                         e = get_weaponinfo(j);
1028                         if(e.spawnflags & WEP_FLAG_RELOADABLE) // prevent accessing undefined cvars
1029                                 self.(weapon_load[j]) = cvar(strcat("g_balance_", e.netname, "_reload_ammo"));
1030                 }
1031
1032                 oldself = self;
1033                 self = spot;
1034                         activator = oldself;
1035                                 string s;
1036                                 s = self.target;
1037                                 self.target = string_null;
1038                                 SUB_UseTargets();
1039                                 self.target = s;
1040                         activator = world;
1041                 self = oldself;
1042
1043                 MUTATOR_CALLHOOK(PlayerSpawn);
1044
1045                 self.switchweapon = w_getbestweapon(self);
1046                 self.cnt = -1; // W_LastWeapon will not complain
1047                 self.weapon = 0;
1048                 self.weaponname = "";
1049                 self.switchingweapon = 0;
1050
1051                 if(!self.alivetime)
1052                         self.alivetime = time;
1053         } else if(self.classname == "observer" || (g_ca && !allowed_to_spawn)) {
1054                 PutObserverInServer ();
1055         }
1056
1057         //if(g_ctf)
1058         //      ctf_playerchanged();
1059 }
1060
1061 .float ebouncefactor, ebouncestop; // electro's values
1062 // TODO do we need all these fields, or should we stop autodetecting runtime
1063 // changes and just have a console command to update this?
1064 float ClientInit_SendEntity(entity to, float sf)
1065 {
1066         WriteByte(MSG_ENTITY, ENT_CLIENT_INIT);
1067         WriteByte(MSG_ENTITY, g_nexball_meter_period * 32);
1068         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[0]));
1069         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[1]));
1070         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[2]));
1071         WriteInt24_t(MSG_ENTITY, compressShotOrigin(hook_shotorigin[3]));
1072         WriteInt24_t(MSG_ENTITY, compressShotOrigin(electro_shotorigin[0]));
1073         WriteInt24_t(MSG_ENTITY, compressShotOrigin(electro_shotorigin[1]));
1074         WriteInt24_t(MSG_ENTITY, compressShotOrigin(electro_shotorigin[2]));
1075         WriteInt24_t(MSG_ENTITY, compressShotOrigin(electro_shotorigin[3]));
1076         WriteInt24_t(MSG_ENTITY, compressShotOrigin(gauntlet_shotorigin[0]));
1077         WriteInt24_t(MSG_ENTITY, compressShotOrigin(gauntlet_shotorigin[1]));
1078         WriteInt24_t(MSG_ENTITY, compressShotOrigin(gauntlet_shotorigin[2]));
1079         WriteInt24_t(MSG_ENTITY, compressShotOrigin(gauntlet_shotorigin[3]));
1080         if(sv_foginterval && world.fog != "")
1081                 WriteString(MSG_ENTITY, world.fog);
1082         else
1083                 WriteString(MSG_ENTITY, "");
1084         WriteByte(MSG_ENTITY, self.count * 255.0); // g_balance_armor_blockpercent
1085         WriteByte(MSG_ENTITY, self.cnt * 255.0); // g_balance_weaponswitchdelay
1086         WriteCoord(MSG_ENTITY, self.bouncefactor); // g_balance_grenadelauncher_bouncefactor
1087         WriteCoord(MSG_ENTITY, self.bouncestop); // g_balance_grenadelauncher_bouncestop
1088         WriteCoord(MSG_ENTITY, self.ebouncefactor); // g_balance_grenadelauncher_bouncefactor
1089         WriteCoord(MSG_ENTITY, self.ebouncestop); // g_balance_grenadelauncher_bouncestop
1090         WriteByte(MSG_ENTITY, autocvar_g_balance_nex_secondary); // client has to know if it should zoom or not
1091         WriteByte(MSG_ENTITY, autocvar_g_balance_rifle_secondary); // client has to know if it should zoom or not
1092         WriteByte(MSG_ENTITY, serverflags); // client has to know if it should zoom or not
1093         WriteByte(MSG_ENTITY, autocvar_g_balance_minelayer_limit); // minelayer max mines
1094         WriteByte(MSG_ENTITY, autocvar_g_balance_hagar_secondary_load_max); // hagar max loadable rockets
1095         WriteCoord(MSG_ENTITY, autocvar_g_trueaim_minrange);
1096         return TRUE;
1097 }
1098
1099 void ClientInit_CheckUpdate()
1100 {
1101         self.nextthink = time;
1102         if(self.count != autocvar_g_balance_armor_blockpercent)
1103         {
1104                 self.count = autocvar_g_balance_armor_blockpercent;
1105                 self.SendFlags |= 1;
1106         }
1107         if(self.cnt != autocvar_g_balance_weaponswitchdelay)
1108         {
1109                 self.cnt = autocvar_g_balance_weaponswitchdelay;
1110                 self.SendFlags |= 1;
1111         }
1112         if(self.bouncefactor != autocvar_g_balance_grenadelauncher_bouncefactor)
1113         {
1114                 self.bouncefactor = autocvar_g_balance_grenadelauncher_bouncefactor;
1115                 self.SendFlags |= 1;
1116         }
1117         if(self.bouncestop != autocvar_g_balance_grenadelauncher_bouncestop)
1118         {
1119                 self.bouncestop = autocvar_g_balance_grenadelauncher_bouncestop;
1120                 self.SendFlags |= 1;
1121         }
1122         if(self.ebouncefactor != autocvar_g_balance_electro_secondary_bouncefactor)
1123         {
1124                 self.ebouncefactor = autocvar_g_balance_electro_secondary_bouncefactor;
1125                 self.SendFlags |= 1;
1126         }
1127         if(self.ebouncestop != autocvar_g_balance_electro_secondary_bouncestop)
1128         {
1129                 self.ebouncestop = autocvar_g_balance_electro_secondary_bouncestop;
1130                 self.SendFlags |= 1;
1131         }
1132 }
1133
1134 void ClientInit_Spawn()
1135 {
1136         entity o;
1137         entity e;
1138         e = spawn();
1139         e.classname = "clientinit";
1140         e.think = ClientInit_CheckUpdate;
1141         Net_LinkEntity(e, FALSE, 0, ClientInit_SendEntity);
1142
1143         o = self;
1144         self = e;
1145         ClientInit_CheckUpdate();
1146         self = o;
1147 }
1148
1149 /*
1150 =============
1151 SetNewParms
1152 =============
1153 */
1154 void SetNewParms (void)
1155 {
1156         // initialize parms for a new player
1157         parm1 = -(86400 * 366);
1158 }
1159
1160 /*
1161 =============
1162 SetChangeParms
1163 =============
1164 */
1165 void SetChangeParms (void)
1166 {
1167         // save parms for level change
1168         parm1 = self.parm_idlesince - time;
1169 }
1170
1171 /*
1172 =============
1173 DecodeLevelParms
1174 =============
1175 */
1176 void DecodeLevelParms (void)
1177 {
1178         // load parms
1179         self.parm_idlesince = parm1;
1180         if(self.parm_idlesince == -(86400 * 366))
1181                 self.parm_idlesince = time;
1182
1183         // whatever happens, allow 60 seconds of idling directly after connect for map loading
1184         self.parm_idlesince = max(self.parm_idlesince, time - sv_maxidle + 60);
1185 }
1186
1187 /*
1188 =============
1189 ClientKill
1190
1191 Called when a client types 'kill' in the console
1192 =============
1193 */
1194
1195 .float clientkill_nexttime;
1196 void ClientKill_Now_TeamChange()
1197 {
1198         if(self.killindicator_teamchange == -1)
1199         {
1200                 self.team = -1;
1201                 JoinBestTeam( self, FALSE, FALSE );
1202         }
1203         else if(self.killindicator_teamchange == -2)
1204         {
1205                 if(g_ca)
1206                         self.caplayer = 0;
1207                 if(blockSpectators)
1208                         sprint(self, strcat("^7You have to become a player within the next ", ftos(autocvar_g_maxplayers_spectator_blocktime), " seconds, otherwise you will be kicked, because spectators aren't allowed at this time!\n"));
1209                 PutObserverInServer();
1210         }
1211         else
1212                 SV_ChangeTeam(self.killindicator_teamchange - 1);
1213 }
1214
1215 void ClientKill_Now()
1216 {
1217         if(self.vehicle)
1218         {
1219             vehicles_exit(VHEF_RELESE);
1220             if(!self.killindicator_teamchange)
1221             {
1222             self.vehicle_health = -1;
1223             Damage(self, self, self, 1 , DEATH_KILL, self.origin, '0 0 0');             
1224             }
1225         }
1226
1227         if(self.killindicator && !wasfreed(self.killindicator))
1228                 remove(self.killindicator);
1229
1230         self.killindicator = world;
1231
1232         if(self.killindicator_teamchange)
1233                 ClientKill_Now_TeamChange();
1234
1235         // in any case:
1236         Damage(self, self, self, 100000, DEATH_KILL, self.origin, '0 0 0');
1237
1238         // now I am sure the player IS dead
1239 }
1240 void KillIndicator_Think()
1241 {
1242         if (gameover)
1243         {
1244                 self.owner.killindicator = world;
1245                 remove(self);
1246                 return;
1247         }
1248
1249         if (!self.owner.modelindex)
1250         {
1251                 self.owner.killindicator = world;
1252                 remove(self);
1253                 return;
1254         }
1255
1256         if(self.cnt <= 0)
1257         {
1258                 self = self.owner;
1259                 ClientKill_Now(); // no oldself needed
1260                 return;
1261         }
1262     else if(g_cts && self.health == 1) // health == 1 means that it's silent
1263     {
1264         self.nextthink = time + 1;
1265         self.cnt -= 1;
1266     }
1267         else
1268         {
1269                 if(self.cnt <= 10)
1270                         setmodel(self, strcat("models/sprites/", ftos(self.cnt), ".spr32"));
1271                 if(clienttype(self.owner) == CLIENTTYPE_REAL)
1272                 {
1273                         if(self.cnt <= 10)
1274                                 AnnounceTo(self.owner, strcat(ftos(self.cnt), ""));
1275                 }
1276                 self.nextthink = time + 1;
1277                 self.cnt -= 1;
1278         }
1279 }
1280
1281 float clientkilltime;
1282 void ClientKill_TeamChange (float targetteam) // 0 = don't change, -1 = auto, -2 = spec
1283 {
1284         float killtime;
1285         float starttime;
1286         entity e;
1287
1288         if (gameover)
1289                 return;
1290
1291         killtime = autocvar_g_balance_kill_delay;
1292
1293         if(g_race_qualifying || g_cts)
1294                 killtime = 0;
1295
1296     if(g_cts && self.killindicator && self.killindicator.health == 1) // self.killindicator.health == 1 means that the kill indicator was spawned by CTS_ClientKill
1297     {
1298                 remove(self.killindicator);
1299                 self.killindicator = world;
1300
1301         ClientKill_Now(); // allow instant kill in this case
1302         return;
1303     }
1304
1305         self.killindicator_teamchange = targetteam;
1306
1307     if(!self.killindicator)
1308         {
1309                 if(self.modelindex && self.deadflag == DEAD_NO)
1310                 {
1311                         killtime = max(killtime, self.clientkill_nexttime - time);
1312                         self.clientkill_nexttime = time + killtime + autocvar_g_balance_kill_antispam;
1313                 }
1314
1315                 if(killtime <= 0 || !self.modelindex || self.deadflag != DEAD_NO)
1316                 {
1317                         ClientKill_Now();
1318                 }
1319                 else
1320                 {
1321                         starttime = max(time, clientkilltime);
1322
1323                         self.killindicator = spawn();
1324                         self.killindicator.owner = self;
1325                         self.killindicator.scale = 0.5;
1326                         setattachment(self.killindicator, self, "");
1327                         setorigin(self.killindicator, '0 0 52');
1328                         self.killindicator.think = KillIndicator_Think;
1329                         self.killindicator.nextthink = starttime + (self.lip) * 0.05;
1330                         clientkilltime = max(clientkilltime, self.killindicator.nextthink + 0.05);
1331                         self.killindicator.cnt = ceil(killtime);
1332                         self.killindicator.count = bound(0, ceil(killtime), 10);
1333                         //sprint(self, strcat("^1You'll be dead in ", ftos(self.killindicator.cnt), " seconds\n"));
1334
1335                         for(e = world; (e = find(e, classname, "body")) != world; )
1336                         {
1337                                 if(e.enemy != self)
1338                                         continue;
1339                                 e.killindicator = spawn();
1340                                 e.killindicator.owner = e;
1341                                 e.killindicator.scale = 0.5;
1342                                 setattachment(e.killindicator, e, "");
1343                                 setorigin(e.killindicator, '0 0 52');
1344                                 e.killindicator.think = KillIndicator_Think;
1345                                 e.killindicator.nextthink = starttime + (e.lip) * 0.05;
1346                                 clientkilltime = max(clientkilltime, e.killindicator.nextthink + 0.05);
1347                                 e.killindicator.cnt = ceil(killtime);
1348                         }
1349                         self.lip = 0;
1350                 }
1351         }
1352         if(self.killindicator)
1353         {
1354                 if(targetteam == 0) // just die
1355                 {
1356                         self.killindicator.colormod = '0 0 0';
1357                         if(clienttype(self) == CLIENTTYPE_REAL)
1358                         if(self.killindicator.cnt > 0)
1359                                 Send_CSQC_Centerprint_Generic(self, CPID_TEAMCHANGE, "^1Suicide in %d seconds", 1, self.killindicator.cnt);
1360                 }
1361                 else if(targetteam == -1) // auto
1362                 {
1363                         self.killindicator.colormod = '0 1 0';
1364                         if(clienttype(self) == CLIENTTYPE_REAL)
1365                         if(self.killindicator.cnt > 0)
1366                                 Send_CSQC_Centerprint_Generic(self, CPID_TEAMCHANGE, "Changing team in %d seconds", 1, self.killindicator.cnt);
1367                 }
1368                 else if(targetteam == -2) // spectate
1369                 {
1370                         self.killindicator.colormod = '0.5 0.5 0.5';
1371                         if(clienttype(self) == CLIENTTYPE_REAL)
1372                         if(self.killindicator.cnt > 0)
1373                                 Send_CSQC_Centerprint_Generic(self, CPID_TEAMCHANGE, "Spectating in %d seconds", 1, self.killindicator.cnt);
1374                 }
1375                 else
1376                 {
1377                         self.killindicator.colormod = TeamColor(targetteam);
1378                         if(clienttype(self) == CLIENTTYPE_REAL)
1379                         if(self.killindicator.cnt > 0)
1380                                 Send_CSQC_Centerprint_Generic(self, CPID_TEAMCHANGE, strcat("Changing to ", ColoredTeamName(targetteam), " in %d seconds"), 1, self.killindicator.cnt);
1381                 }
1382         }
1383
1384 }
1385
1386 void ClientKill (void)
1387 {
1388         if (gameover)
1389                 return;
1390
1391         if((g_arena || g_ca) && ((champion && champion.classname == "player" && player_count > 1) || player_count == 1)) // don't allow a kill in this case either
1392         {
1393                 // do nothing
1394         }
1395     else if(self.freezetag_frozen)
1396     {
1397         // do nothing
1398     }
1399         else
1400                 ClientKill_TeamChange(0);
1401 }
1402
1403 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
1404 {
1405     e.killindicator = spawn();
1406     e.killindicator.owner = e;
1407     e.killindicator.think = KillIndicator_Think;
1408     e.killindicator.nextthink = time + (e.lip) * 0.05;
1409     e.killindicator.cnt = ceil(autocvar_g_cts_finish_kill_delay);
1410     e.killindicator.health = 1; // this is used to indicate that it should be silent
1411     e.lip = 0;
1412 }
1413
1414 void FixClientCvars(entity e)
1415 {
1416         // send prediction settings to the client
1417         stuffcmd(e, "\nin_bindmap 0 0\n");
1418         if(g_race || g_cts)
1419                 stuffcmd(e, "cl_cmd settemp cl_movecliptokeyboard 2\n");
1420         if(autocvar_g_antilag == 3) // client side hitscan
1421                 stuffcmd(e, "cl_cmd settemp cl_prydoncursor_notrace 0\n");
1422         if(sv_gentle)
1423                 stuffcmd(e, "cl_cmd settemp cl_gentle 1\n");
1424         /*
1425          * we no longer need to stuff this. Remove this comment block if you feel
1426          * 2.3 and higher (or was it 2.2.3?) don't need these any more
1427         stuffcmd(e, strcat("cl_gravity ", ftos(autocvar_sv_gravity), "\n"));
1428         stuffcmd(e, strcat("cl_movement_accelerate ", ftos(autocvar_sv_accelerate), "\n"));
1429         stuffcmd(e, strcat("cl_movement_friction ", ftos(autocvar_sv_friction), "\n"));
1430         stuffcmd(e, strcat("cl_movement_maxspeed ", ftos(autocvar_sv_maxspeed), "\n"));
1431         stuffcmd(e, strcat("cl_movement_airaccelerate ", ftos(autocvar_sv_airaccelerate), "\n"));
1432         stuffcmd(e, strcat("cl_movement_maxairspeed ", ftos(autocvar_sv_maxairspeed), "\n"));
1433         stuffcmd(e, strcat("cl_movement_stopspeed ", ftos(autocvar_sv_stopspeed), "\n"));
1434         stuffcmd(e, strcat("cl_movement_jumpvelocity ", ftos(autocvar_sv_jumpvelocity), "\n"));
1435         stuffcmd(e, strcat("cl_movement_stepheight ", ftos(autocvar_sv_stepheight), "\n"));
1436         stuffcmd(e, strcat("set cl_movement_friction_on_land ", ftos(autocvar_sv_friction_on_land), "\n"));
1437         stuffcmd(e, strcat("set cl_movement_airaccel_qw ", ftos(autocvar_sv_airaccel_qw), "\n"));
1438         stuffcmd(e, strcat("set cl_movement_airaccel_sideways_friction ", ftos(autocvar_sv_airaccel_sideways_friction), "\n"));
1439         stuffcmd(e, "cl_movement_edgefriction 1\n");
1440          */
1441 }
1442
1443 float PlayerInIDList(entity p, string idlist)
1444 {
1445         float n, i;
1446         string s;
1447
1448         // NOTE: we do NOT check crypto_keyfp here, an unsigned ID is fine too for this
1449         if not(p.crypto_idfp)
1450                 return 0;
1451
1452         // this function allows abbreviated player IDs too!
1453         n = tokenize_console(idlist);
1454         for(i = 0; i < n; ++i)
1455         {
1456                 s = argv(i);
1457                 if(s == substring(p.crypto_idfp, 0, strlen(s)))
1458                         return 1;
1459         }
1460
1461         return 0;
1462 }
1463
1464 /*
1465 =============
1466 ClientConnect
1467
1468 Called when a client connects to the server
1469 =============
1470 */
1471 //void ctf_clientconnect();
1472 string ColoredTeamName(float t);
1473 void DecodeLevelParms (void);
1474 //void dom_player_join_team(entity pl);
1475 void set_dom_state(entity e);
1476 void ClientConnect (void)
1477 {
1478         float t;
1479
1480         if(self.flags & FL_CLIENT)
1481         {
1482                 print("Warning: ClientConnect, but already connected!\n");
1483                 return;
1484         }
1485
1486         if(Ban_MaybeEnforceBan(self))
1487                 return;
1488
1489         DecodeLevelParms();
1490
1491 #ifdef WATERMARK
1492         sprint(self, strcat("^4SVQC Build information: ^1", WATERMARK(), "\n"));
1493 #endif
1494
1495         self.classname = "player_joining";
1496
1497         self.flags = FL_CLIENT;
1498         self.version_nagtime = time + 10 + random() * 10;
1499
1500         if(player_count<0)
1501         {
1502                 dprint("BUG player count is lower than zero, this cannot happen!\n");
1503                 player_count = 0;
1504         }
1505
1506         PlayerScore_Attach(self);
1507         ClientData_Attach();
1508         accuracy_init(self);
1509
1510         bot_clientconnect();
1511
1512         playerdemo_init();
1513
1514         anticheat_init();
1515
1516         race_PreSpawnObserver();
1517
1518         //if(g_domination)
1519         //      dom_player_join_team(self);
1520
1521         // identify the right forced team
1522         if(autocvar_g_campaign)
1523         {
1524                 if(clienttype(self) == CLIENTTYPE_REAL) // only players, not bots
1525                 {
1526                         switch(autocvar_g_campaign_forceteam)
1527                         {
1528                                 case 1: self.team_forced = COLOR_TEAM1; break;
1529                                 case 2: self.team_forced = COLOR_TEAM2; break;
1530                                 case 3: self.team_forced = COLOR_TEAM3; break;
1531                                 case 4: self.team_forced = COLOR_TEAM4; break;
1532                                 default: self.team_forced = 0;
1533                         }
1534                 }
1535         }
1536         else if(PlayerInIDList(self, autocvar_g_forced_team_red))
1537                 self.team_forced = COLOR_TEAM1;
1538         else if(PlayerInIDList(self, autocvar_g_forced_team_blue))
1539                 self.team_forced = COLOR_TEAM2;
1540         else if(PlayerInIDList(self, autocvar_g_forced_team_yellow))
1541                 self.team_forced = COLOR_TEAM3;
1542         else if(PlayerInIDList(self, autocvar_g_forced_team_pink))
1543                 self.team_forced = COLOR_TEAM4;
1544         else if(autocvar_g_forced_team_otherwise == "red")
1545                 self.team_forced = COLOR_TEAM1;
1546         else if(autocvar_g_forced_team_otherwise == "blue")
1547                 self.team_forced = COLOR_TEAM2;
1548         else if(autocvar_g_forced_team_otherwise == "yellow")
1549                 self.team_forced = COLOR_TEAM3;
1550         else if(autocvar_g_forced_team_otherwise == "pink")
1551                 self.team_forced = COLOR_TEAM4;
1552         else if(autocvar_g_forced_team_otherwise == "spectate")
1553                 self.team_forced = -1;
1554         else if(autocvar_g_forced_team_otherwise == "spectator")
1555                 self.team_forced = -1;
1556         else
1557                 self.team_forced = 0;
1558
1559         if(!teamplay)
1560                 if(self.team_forced > 0)
1561                         self.team_forced = 0;
1562
1563         JoinBestTeam(self, FALSE, FALSE); // if the team number is valid, keep it
1564
1565         if((autocvar_sv_spectate == 1 && !g_lms) || autocvar_g_campaign || self.team_forced < 0) {
1566                 self.classname = "observer";
1567         } else {
1568                 if(teamplay)
1569                 {
1570                         if(autocvar_g_balance_teams || autocvar_g_balance_teams_force)
1571                         {
1572                                 self.classname = "player";
1573                                 campaign_bots_may_start = 1;
1574                         }
1575                         else
1576                         {
1577                                 self.classname = "observer"; // do it anyway
1578                         }
1579                 }
1580                 else
1581                 {
1582                         self.classname = "player";
1583                         campaign_bots_may_start = 1;
1584                 }
1585         }
1586
1587         self.playerid = (playerid_last = playerid_last + 1);
1588
1589         PlayerStats_AddEvent(sprintf("kills-%d", self.playerid));
1590
1591     if(clienttype(self) == CLIENTTYPE_BOT)
1592         PlayerStats_AddPlayer(self);
1593
1594         if(autocvar_sv_eventlog)
1595                 GameLogEcho(strcat(":join:", ftos(self.playerid), ":", ftos(num_for_edict(self)), ":", ((clienttype(self) == CLIENTTYPE_REAL) ? self.netaddress : "bot"), ":", self.netname));
1596
1597         LogTeamchange(self.playerid, self.team, 1);
1598
1599         self.just_joined = TRUE;  // stop spamming the eventlog with additional lines when the client connects
1600
1601         self.netname_previous = strzone(self.netname);
1602
1603         bprint("^4", self.netname, "^4 connected");
1604
1605         if(self.classname != "observer" && (g_domination || g_ctf))
1606                 bprint(" and joined the ", ColoredTeamName(self.team));
1607
1608         bprint("\n");
1609
1610         stuffcmd(self, strcat(clientstuff, "\n"));
1611         stuffcmd(self, "cl_particles_reloadeffects\n"); // TODO do we still need this?
1612
1613         FixClientCvars(self);
1614
1615         // spawnfunc_waypoint sprites
1616         WaypointSprite_InitClient(self);
1617
1618         // Wazat's grappling hook
1619         SetGrappleHookBindings();
1620
1621         // get version info from player
1622         stuffcmd(self, "cmd clientversion $gameversion\n");
1623
1624         // get other cvars from player
1625         GetCvars(0);
1626
1627         // notify about available teams
1628         if(teamplay)
1629         {
1630                 CheckAllowedTeams(self);
1631                 t = 0; if(c1 >= 0) t |= 1; if(c2 >= 0) t |= 2; if(c3 >= 0) t |= 4; if(c4 >= 0) t |= 8;
1632                 stuffcmd(self, strcat("set _teams_available ", ftos(t), "\n"));
1633         }
1634         else
1635                 stuffcmd(self, "set _teams_available 0\n");
1636
1637         stuffcmd(self, strcat("set gametype ", ftos(game), "\n"));
1638
1639         if(g_arena || g_ca)
1640         {
1641                 self.classname = "observer";
1642                 if(g_arena)
1643                         Spawnqueue_Insert(self);
1644         }
1645         /*else if(g_ctf)
1646         {
1647                 ctf_clientconnect();
1648         }*/
1649
1650         attach_entcs();
1651
1652         bot_relinkplayerlist();
1653
1654         self.spectatortime = time;
1655         if(blockSpectators)
1656         {
1657                 sprint(self, strcat("^7You have to become a player within the next ", ftos(autocvar_g_maxplayers_spectator_blocktime), " seconds, otherwise you will be kicked, because spectators aren't allowed at this time!\n"));
1658         }
1659
1660         self.jointime = time;
1661         self.allowedTimeouts = autocvar_sv_timeout_number;
1662
1663         if(clienttype(self) == CLIENTTYPE_REAL)
1664         {
1665                 if(autocvar_g_bugrigs || g_weaponarena == WEPBIT_TUBA)
1666                         stuffcmd(self, "cl_cmd settemp chase_active 1\n");
1667         }
1668
1669         if(g_lms)
1670         {
1671                 if(PlayerScore_Add(self, SP_LMS_LIVES, LMS_NewPlayerLives()) <= 0)
1672                 {
1673                         PlayerScore_Add(self, SP_LMS_RANK, 666);
1674                         self.frags = FRAGS_SPECTATOR;
1675                 }
1676         }
1677
1678         if(!sv_foginterval && world.fog != "")
1679                 stuffcmd(self, strcat("\nfog ", world.fog, "\nr_fog_exp2 0\nr_drawfog 1\n"));
1680
1681         SoundEntity_Attach(self);
1682
1683         if(autocvar_g_hitplots || strstrofs(strcat(" ", autocvar_g_hitplots_individuals, " "), strcat(" ", self.netaddress, " "), 0) >= 0)
1684         {
1685                 self.hitplotfh = fopen(strcat("hits-", matchid, "-", self.netaddress, "-", ftos(self.playerid), ".plot"), FILE_WRITE);
1686                 fputs(self.hitplotfh, strcat("#name ", self.netname, "\n"));
1687         }
1688         else
1689                 self.hitplotfh = -1;
1690
1691         if(g_race || g_cts) {
1692                 string rr;
1693                 if(g_cts)
1694                         rr = CTS_RECORD;
1695                 else
1696                         rr = RACE_RECORD;
1697                 t = stof(db_get(ServerProgsDB, strcat(GetMapname(), rr, "time")));
1698
1699                 msg_entity = self;
1700                 race_send_recordtime(MSG_ONE);
1701                 race_send_speedaward(MSG_ONE);
1702
1703                 speedaward_alltimebest = stof(db_get(ServerProgsDB, strcat(GetMapname(), rr, "speed/speed")));
1704                 speedaward_alltimebest_holder = uid2name(db_get(ServerProgsDB, strcat(GetMapname(), rr, "speed/crypto_idfp")));
1705                 race_send_speedaward_alltimebest(MSG_ONE);
1706
1707                 float i;
1708                 for (i = 1; i <= RANKINGS_CNT; ++i) {
1709                         race_SendRankings(i, 0, 0, MSG_ONE);
1710                 }
1711         }
1712         else if(autocvar_sv_teamnagger && !(autocvar_bot_vs_human && (c3==-1 && c4==-1)) && !g_ca) // teamnagger is currently bad for ca
1713                 send_CSQC_teamnagger();
1714
1715         if (g_domination)
1716                 set_dom_state(self);
1717
1718         CheatInitClient();
1719
1720         if(!autocvar_g_campaign)
1721                 Send_CSQC_Centerprint_Generic(self, CPID_MOTD, getwelcomemessage(), autocvar_welcome_message_time, 0);
1722
1723         self.model_randomizer = random();
1724 }
1725
1726 /*
1727 =============
1728 ClientDisconnect
1729
1730 Called when a client disconnects from the server
1731 =============
1732 */
1733 .entity chatbubbleentity;
1734 void ReadyCount();
1735 void ClientDisconnect (void)
1736 {
1737         if(self.vehicle)
1738             vehicles_exit(VHEF_RELESE);
1739
1740         if not(self.flags & FL_CLIENT)
1741         {
1742                 print("Warning: ClientDisconnect without ClientConnect\n");
1743                 return;
1744         }
1745
1746         PlayerStats_AddGlobalInfo(self);
1747
1748         CheatShutdownClient();
1749
1750         if(self.hitplotfh >= 0)
1751         {
1752                 fclose(self.hitplotfh);
1753                 self.hitplotfh = -1;
1754         }
1755
1756         anticheat_report();
1757         anticheat_shutdown();
1758
1759         playerdemo_shutdown();
1760
1761         bot_clientdisconnect();
1762
1763         if(self.entcs)
1764                 detach_entcs();
1765
1766         if(autocvar_sv_eventlog)
1767                 GameLogEcho(strcat(":part:", ftos(self.playerid)));
1768         bprint ("^4",self.netname);
1769         bprint ("^4 disconnected\n");
1770
1771         SoundEntity_Detach(self);
1772
1773         DropAllRunes(self);
1774         MUTATOR_CALLHOOK(ClientDisconnect);
1775
1776         Portal_ClearAll(self);
1777
1778         RemoveGrapplingHook(self);
1779         if(self.flagcarried)
1780                 DropFlag(self.flagcarried, world, world);
1781         if(self.ballcarried && g_nexball)
1782                 DropBall(self.ballcarried, self.origin + self.ballcarried.origin, self.velocity);
1783
1784         // Here, everything has been done that requires this player to be a client.
1785
1786         self.flags &~= FL_CLIENT;
1787
1788         if (self.chatbubbleentity)
1789                 remove (self.chatbubbleentity);
1790
1791         if (self.killindicator)
1792                 remove (self.killindicator);
1793
1794         WaypointSprite_PlayerGone();
1795
1796         bot_relinkplayerlist();
1797
1798         if(g_arena)
1799         {
1800                 Spawnqueue_Unmark(self);
1801                 Spawnqueue_Remove(self);
1802         }
1803
1804         accuracy_free(self);
1805         ClientData_Detach();
1806         PlayerScore_Detach(self);
1807
1808         if(self.netname_previous)
1809                 strunzone(self.netname_previous);
1810         if(self.clientstatus)
1811                 strunzone(self.clientstatus);
1812         if(self.weaponorder_byimpulse)
1813                 strunzone(self.weaponorder_byimpulse);
1814
1815         ClearPlayerSounds();
1816
1817         if(self.personal)
1818                 remove(self.personal);
1819
1820         self.playerid = 0;
1821         ReadyCount();
1822
1823         // free cvars
1824         GetCvars(-1);
1825 }
1826
1827 .float BUTTON_CHAT;
1828 void ChatBubbleThink()
1829 {
1830         self.nextthink = time;
1831         if (!self.owner.modelindex || self.owner.chatbubbleentity != self)
1832         {
1833                 if(self.owner) // but why can that ever be world?
1834                         self.owner.chatbubbleentity = world;
1835                 remove(self);
1836                 return;
1837         }
1838         if ((self.owner.BUTTON_CHAT && !self.owner.deadflag)
1839 #ifdef TETRIS
1840                 || self.owner.tetris_on
1841 #endif
1842         )
1843                 self.model = self.mdl;
1844         else
1845                 self.model = "";
1846 }
1847
1848 void UpdateChatBubble()
1849 {
1850         if (!self.modelindex)
1851                 return;
1852         // spawn a chatbubble entity if needed
1853         if (!self.chatbubbleentity)
1854         {
1855                 self.chatbubbleentity = spawn();
1856                 self.chatbubbleentity.owner = self;
1857                 self.chatbubbleentity.exteriormodeltoclient = self;
1858                 self.chatbubbleentity.think = ChatBubbleThink;
1859                 self.chatbubbleentity.nextthink = time;
1860                 setmodel(self.chatbubbleentity, "models/misc/chatbubble.spr"); // precision set below
1861                 //setorigin(self.chatbubbleentity, self.origin + '0 0 15' + self.maxs_z * '0 0 1');
1862                 setorigin(self.chatbubbleentity, '0 0 15' + self.maxs_z * '0 0 1');
1863                 setattachment(self.chatbubbleentity, self, "");  // sticks to moving player better, also conserves bandwidth
1864                 self.chatbubbleentity.mdl = self.chatbubbleentity.model;
1865                 self.chatbubbleentity.model = "";
1866                 self.chatbubbleentity.effects = EF_LOWPRECISION;
1867         }
1868 }
1869
1870
1871 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1872 // added to the model skins
1873 /*void UpdateColorModHack()
1874 {
1875         float c;
1876         c = self.clientcolors & 15;
1877         // LordHavoc: only bothering to support white, green, red, yellow, blue
1878              if (!teamplay) self.colormod = '0 0 0';
1879         else if (c ==  0) self.colormod = '1.00 1.00 1.00';
1880         else if (c ==  3) self.colormod = '0.10 1.73 0.10';
1881         else if (c ==  4) self.colormod = '1.73 0.10 0.10';
1882         else if (c == 12) self.colormod = '1.22 1.22 0.10';
1883         else if (c == 13) self.colormod = '0.10 0.10 1.73';
1884         else self.colormod = '1 1 1';
1885 }*/
1886
1887 .float oldcolormap;
1888 void respawn(void)
1889 {
1890         if(self.modelindex != 0 && autocvar_g_respawn_ghosts)
1891         {
1892                 self.solid = SOLID_NOT;
1893                 self.takedamage = DAMAGE_NO;
1894                 self.movetype = MOVETYPE_FLY;
1895                 self.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
1896                 self.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3;
1897                 self.effects |= EF_ADDITIVE;
1898                 self.oldcolormap = self.colormap;
1899                 self.colormap = 0; // this originally was 512, but raises a warning in the engine, so get rid of it
1900                 pointparticles(particleeffectnum("respawn_ghost"), self.origin, '0 0 0', 1);
1901                 if(autocvar_g_respawn_ghosts_maxtime)
1902                         SUB_SetFade (self, time + autocvar_g_respawn_ghosts_maxtime / 2 + random () * (autocvar_g_respawn_ghosts_maxtime - autocvar_g_respawn_ghosts_maxtime / 2), 1.5);
1903         }
1904
1905         CopyBody(1);
1906         self.effects |= EF_NODRAW; // prevent another CopyBody
1907         if(self.oldcolormap)
1908         {
1909                 self.colormap = self.oldcolormap;
1910                 self.oldcolormap = 0;
1911         }
1912         PutClientInServer();
1913 }
1914
1915 void play_countdown(float finished, string samp)
1916 {
1917         if(clienttype(self) == CLIENTTYPE_REAL)
1918                 if(floor(finished - time - frametime) != floor(finished - time))
1919                         if(finished - time < 6)
1920                                 sound (self, CH_INFO, samp, VOL_BASE, ATTN_NORM);
1921 }
1922
1923 void player_powerups (void)
1924 {
1925         // add a way to see what the items were BEFORE all of these checks for the mutator hook
1926         olditems = self.items;
1927
1928         if((self.items & IT_USING_JETPACK) && !self.deadflag)
1929         {
1930                 SoundEntity_StartSound(self, CH_TRIGGER_SINGLE, "misc/jetpack_fly.wav", VOL_BASE, autocvar_g_jetpack_attenuation);
1931                 self.modelflags |= MF_ROCKET;
1932         }
1933         else
1934         {
1935                 SoundEntity_StopSound(self, CH_TRIGGER_SINGLE);
1936                 self.modelflags &~= MF_ROCKET;
1937         }
1938
1939         self.effects &~= (EF_DIMLIGHT | EF_RED | EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT | EF_FLAME | EF_NODEPTHTEST);
1940
1941         if(!self.modelindex || self.deadflag) // don't apply the flags if the player is gibbed
1942                 return;
1943
1944         Fire_ApplyDamage(self);
1945         Fire_ApplyEffect(self);
1946
1947         if (g_minstagib)
1948         {
1949                 self.effects |= EF_FULLBRIGHT;
1950
1951                 if (self.items & IT_STRENGTH)
1952                 {
1953                         play_countdown(self.strength_finished, "misc/poweroff.wav");
1954                         if (time > self.strength_finished)
1955                         {
1956                                 self.alpha = default_player_alpha;
1957                                 self.exteriorweaponentity.alpha = default_weapon_alpha;
1958                                 self.items &~= IT_STRENGTH;
1959                                 sprint(self, "^3Invisibility has worn off\n");
1960                         }
1961                 }
1962                 else
1963                 {
1964                         if (time < self.strength_finished)
1965                         {
1966                                 self.alpha = g_minstagib_invis_alpha;
1967                                 self.exteriorweaponentity.alpha = g_minstagib_invis_alpha;
1968                                 self.items |= IT_STRENGTH;
1969                                 sprint(self, "^3You are invisible\n");
1970                         }
1971                 }
1972
1973                 if (self.items & IT_INVINCIBLE)
1974                 {
1975                         play_countdown(self.invincible_finished, "misc/poweroff.wav");
1976                         if (time > self.invincible_finished && autocvar_g_balance_powerup_timer)
1977                         {
1978                                 self.items = self.items - (self.items & IT_INVINCIBLE);
1979                                 sprint(self, "^3Speed has worn off\n");
1980                         }
1981                 }
1982                 else
1983                 {
1984                         if (time < self.invincible_finished)
1985                         {
1986                                 self.items = self.items | IT_INVINCIBLE;
1987                                 sprint(self, "^3You are on speed\n");
1988                         }
1989                 }
1990         }
1991         else // if we're not in minstagib, continue. I added this else to replace the "return" which was here that broke the callhook for this function -- This code is nasty.
1992         {
1993                 if (self.items & IT_STRENGTH)
1994                 {
1995                         play_countdown(self.strength_finished, "misc/poweroff.wav");
1996                         self.effects = self.effects | (EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT);
1997                         if (time > self.strength_finished && autocvar_g_balance_powerup_timer)
1998                         {
1999                                 self.items = self.items - (self.items & IT_STRENGTH);
2000                                 sprint(self, "^3Strength has worn off\n");
2001                         }
2002                 }
2003                 else
2004                 {
2005                         if (time < self.strength_finished)
2006                         {
2007                                 self.items = self.items | IT_STRENGTH;
2008                                 sprint(self, "^3Strength infuses your weapons with devastating power\n");
2009                         }
2010                 }
2011                 if (self.items & IT_INVINCIBLE)
2012                 {
2013                         play_countdown(self.invincible_finished, "misc/poweroff.wav");
2014                         self.effects = self.effects | (EF_RED | EF_ADDITIVE | EF_FULLBRIGHT);
2015                         if (time > self.invincible_finished && autocvar_g_balance_powerup_timer)
2016                         {
2017                                 self.items = self.items - (self.items & IT_INVINCIBLE);
2018                                 sprint(self, "^3Shield has worn off\n");
2019                         }
2020                 }
2021                 else
2022                 {
2023                         if (time < self.invincible_finished)
2024                         {
2025                                 self.items = self.items | IT_INVINCIBLE;
2026                                 sprint(self, "^3Shield surrounds you\n");
2027                         }
2028                 }
2029
2030                 if(autocvar_g_nodepthtestplayers)
2031                         self.effects = self.effects | EF_NODEPTHTEST;
2032
2033                 if(autocvar_g_fullbrightplayers)
2034                         self.effects = self.effects | EF_FULLBRIGHT;
2035
2036                 // midair gamemode: damage only while in the air
2037                 // if in midair mode, being on ground grants temporary invulnerability
2038                 // (this is so that multishot weapon don't clear the ground flag on the
2039                 // first damage in the frame, leaving the player vulnerable to the
2040                 // remaining hits in the same frame)
2041                 if (self.flags & FL_ONGROUND)
2042                 if (g_midair)
2043                         self.spawnshieldtime = max(self.spawnshieldtime, time + autocvar_g_midair_shieldtime);
2044
2045                 if (time >= game_starttime)
2046                 if (time < self.spawnshieldtime)
2047                         self.effects = self.effects | (EF_ADDITIVE | EF_FULLBRIGHT);
2048         }
2049
2050         MUTATOR_CALLHOOK(PlayerPowerups);
2051 }
2052
2053 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
2054 {
2055         if(current > stable)
2056                 return current;
2057         else if(current > stable - 0.25) // when close enough, "snap"
2058                 return stable;
2059         else
2060                 return min(stable, current + (stable - current) * regenfactor * regenframetime);
2061 }
2062
2063 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
2064 {
2065         if(current < stable)
2066                 return current;
2067         else if(current < stable + 0.25) // when close enough, "snap"
2068                 return stable;
2069         else
2070                 return max(stable, current + (stable - current) * rotfactor * rotframetime);
2071 }
2072
2073 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit)
2074 {
2075         if(current > rotstable)
2076         {
2077                 if(rotframetime > 0)
2078                 {
2079                         current = CalcRot(current, rotstable, rotfactor, rotframetime);
2080                         current = max(rotstable, current - rotlinear * rotframetime);
2081                 }
2082         }
2083         else if(current < regenstable)
2084         {
2085                 if(regenframetime > 0)
2086                 {
2087                         current = CalcRegen(current, regenstable, regenfactor, regenframetime);
2088                         current = min(regenstable, current + regenlinear * regenframetime);
2089                 }
2090         }
2091
2092         if(current > limit)
2093                 current = limit;
2094
2095         return current;
2096 }
2097
2098 void player_regen (void)
2099 {
2100         float minh, mina, minf, maxh, maxa, maxf, limith, limita, limitf, max_mod, regen_mod, rot_mod, limit_mod;
2101         maxh = autocvar_g_balance_health_rotstable;
2102         maxa = autocvar_g_balance_armor_rotstable;
2103         maxf = autocvar_g_balance_fuel_rotstable;
2104         minh = autocvar_g_balance_health_regenstable;
2105         mina = autocvar_g_balance_armor_regenstable;
2106         minf = autocvar_g_balance_fuel_regenstable;
2107         limith = autocvar_g_balance_health_limit;
2108         limita = autocvar_g_balance_armor_limit;
2109         limitf = autocvar_g_balance_fuel_limit;
2110
2111         max_mod = regen_mod = rot_mod = limit_mod = 1;
2112
2113         if (self.runes & RUNE_REGEN)
2114         {
2115                 if (self.runes & CURSE_VENOM) // do we have both rune/curse?
2116                 {
2117                         regen_mod = autocvar_g_balance_rune_regen_combo_regenrate;
2118                         max_mod = autocvar_g_balance_rune_regen_combo_hpmod;
2119                         limit_mod = autocvar_g_balance_rune_regen_combo_limitmod;
2120                 }
2121                 else
2122                 {
2123                         regen_mod = autocvar_g_balance_rune_regen_regenrate;
2124                         max_mod = autocvar_g_balance_rune_regen_hpmod;
2125                         limit_mod = autocvar_g_balance_rune_regen_limitmod;
2126                 }
2127         }
2128         else if (self.runes & CURSE_VENOM)
2129         {
2130                 max_mod = autocvar_g_balance_curse_venom_hpmod;
2131                 if (self.runes & RUNE_REGEN) // do we have both rune/curse?
2132                         rot_mod = autocvar_g_balance_rune_regen_combo_rotrate;
2133                 else
2134                         rot_mod = autocvar_g_balance_curse_venom_rotrate;
2135                 limit_mod = autocvar_g_balance_curse_venom_limitmod;
2136                 //if (!self.runes & RUNE_REGEN)
2137                 //      rot_mod = autocvar_g_balance_curse_venom_rotrate;
2138         }
2139         maxh = maxh * max_mod;
2140         //maxa = maxa * max_mod;
2141         //maxf = maxf * max_mod;
2142         minh = minh * max_mod;
2143         //mina = mina * max_mod;
2144         //minf = minf * max_mod;
2145         limith = limith * limit_mod;
2146         limita = limita * limit_mod;
2147         //limitf = limitf * limit_mod;
2148
2149         if(g_lms && g_ca)
2150                 rot_mod = 0;
2151
2152         if (!g_minstagib && !g_ca && (!g_lms || autocvar_g_lms_regenerate))
2153         {
2154                 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);
2155                 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);
2156
2157                 // if player rotted to death...  die!
2158                 if(self.health < 1)
2159                         self.event_damage(self, self, 1, DEATH_ROT, self.origin, '0 0 0');
2160         }
2161
2162         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
2163                 self.ammo_fuel = CalcRotRegen(self.ammo_fuel, minf, autocvar_g_balance_fuel_regen, autocvar_g_balance_fuel_regenlinear, regen_mod * frametime * (time > self.pauseregen_finished) * (self.items & IT_FUEL_REGEN != 0), maxf, autocvar_g_balance_fuel_rot, autocvar_g_balance_fuel_rotlinear, rot_mod * frametime * (time > self.pauserotfuel_finished), limitf);
2164 }
2165
2166 float zoomstate_set;
2167 void SetZoomState(float z)
2168 {
2169         if(z != self.zoomstate)
2170         {
2171                 self.zoomstate = z;
2172                 ClientData_Touch(self);
2173         }
2174         zoomstate_set = 1;
2175 }
2176
2177 void GetPressedKeys(void) {
2178         MUTATOR_CALLHOOK(GetPressedKeys);
2179         if (self.movement_x > 0) // get if movement keys are pressed
2180         {       // forward key pressed
2181                 self.pressedkeys |= KEY_FORWARD;
2182                 self.pressedkeys &~= KEY_BACKWARD;
2183         }
2184         else if (self.movement_x < 0)
2185         {       // backward key pressed
2186                 self.pressedkeys |= KEY_BACKWARD;
2187                 self.pressedkeys &~= KEY_FORWARD;
2188         }
2189         else
2190         {       // no x input
2191                 self.pressedkeys &~= KEY_FORWARD;
2192                 self.pressedkeys &~= KEY_BACKWARD;
2193         }
2194
2195         if (self.movement_y > 0)
2196         {       // right key pressed
2197                 self.pressedkeys |= KEY_RIGHT;
2198                 self.pressedkeys &~= KEY_LEFT;
2199         }
2200         else if (self.movement_y < 0)
2201         {       // left key pressed
2202                 self.pressedkeys |= KEY_LEFT;
2203                 self.pressedkeys &~= KEY_RIGHT;
2204         }
2205         else
2206         {       // no y input
2207                 self.pressedkeys &~= KEY_RIGHT;
2208                 self.pressedkeys &~= KEY_LEFT;
2209         }
2210
2211         if (self.BUTTON_JUMP) // get if jump and crouch keys are pressed
2212                 self.pressedkeys |= KEY_JUMP;
2213         else
2214                 self.pressedkeys &~= KEY_JUMP;
2215         if (self.BUTTON_CROUCH)
2216                 self.pressedkeys |= KEY_CROUCH;
2217         else
2218                 self.pressedkeys &~= KEY_CROUCH;
2219 }
2220
2221 /*
2222 ======================
2223 spectate mode routines
2224 ======================
2225 */
2226
2227 void SpectateCopy(entity spectatee) {
2228         other = spectatee;
2229         MUTATOR_CALLHOOK(SpectateCopy);
2230         self.armortype = spectatee.armortype;
2231         self.armorvalue = spectatee.armorvalue;
2232         self.ammo_cells = spectatee.ammo_cells;
2233         self.ammo_shells = spectatee.ammo_shells;
2234         self.ammo_nails = spectatee.ammo_nails;
2235         self.ammo_rockets = spectatee.ammo_rockets;
2236         self.ammo_fuel = spectatee.ammo_fuel;
2237         self.clip_load = spectatee.clip_load;
2238         self.clip_size = spectatee.clip_size;
2239         self.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
2240         self.health = spectatee.health;
2241         self.impulse = 0;
2242         self.items = spectatee.items;
2243         self.last_pickup = spectatee.last_pickup;
2244         self.hit_time = spectatee.hit_time;
2245         self.metertime = spectatee.metertime;
2246         self.strength_finished = spectatee.strength_finished;
2247         self.invincible_finished = spectatee.invincible_finished;
2248         self.pressedkeys = spectatee.pressedkeys;
2249         self.weapons = spectatee.weapons;
2250         self.switchweapon = spectatee.switchweapon;
2251         self.switchingweapon = spectatee.switchingweapon;
2252         self.weapon = spectatee.weapon;
2253         self.nex_charge = spectatee.nex_charge;
2254         self.nex_chargepool_ammo = spectatee.nex_chargepool_ammo;
2255         self.hagar_load = spectatee.hagar_load;
2256         self.minelayer_mines = spectatee.minelayer_mines;
2257         self.punchangle = spectatee.punchangle;
2258         self.view_ofs = spectatee.view_ofs;
2259         self.v_angle = spectatee.v_angle;
2260         self.velocity = spectatee.velocity;
2261         self.dmg_take = spectatee.dmg_take;
2262         self.dmg_save = spectatee.dmg_save;
2263         self.dmg_inflictor = spectatee.dmg_inflictor;
2264         self.angles = spectatee.v_angle;
2265         if(!self.BUTTON_USE)
2266                 self.fixangle = TRUE;
2267         setorigin(self, spectatee.origin);
2268         setsize(self, spectatee.mins, spectatee.maxs);
2269         SetZoomState(spectatee.zoomstate);
2270
2271         anticheat_spectatecopy(spectatee);
2272
2273         //self.vehicle = spectatee.vehicle;
2274
2275         self.hud = spectatee.hud;
2276         if(spectatee.vehicle)
2277     {
2278         setorigin(self, spectatee.origin);
2279         self.velocity = spectatee.vehicle.velocity;
2280         self.v_angle += spectatee.vehicle.angles;
2281         //self.v_angle_x *= -1;
2282         self.vehicle_health = spectatee.vehicle_health;
2283         self.vehicle_shield = spectatee.vehicle_shield;
2284         self.vehicle_energy = spectatee.vehicle_energy;
2285         self.vehicle_ammo1 = spectatee.vehicle_ammo1;
2286         self.vehicle_ammo2 = spectatee.vehicle_ammo2;
2287         self.vehicle_reload1 = spectatee.vehicle_reload1;
2288         self.vehicle_reload2 = spectatee.vehicle_reload2;
2289         
2290         msg_entity = self;
2291         WriteByte (MSG_ONE, SVC_SETVIEWPORT);
2292         WriteEntity(MSG_ONE, spectatee);
2293         //self.tur_head = spectatee.vehicle.vehicle_viewport;
2294     }
2295 }
2296
2297 float SpectateUpdate() {
2298         if(!self.enemy)
2299             return 0;           
2300
2301         if (self == self.enemy)
2302                 return 0;
2303
2304         if(self.enemy.classname != "player")
2305                 return 0;
2306
2307         SpectateCopy(self.enemy);
2308
2309         return 1;
2310 }
2311
2312
2313 // Returns next available player to spectate if g_ca_spectate_enemies == 0
2314 entity CA_SpectateNext(entity start) {
2315         if (start.team == self.team) {
2316                 return start;
2317         }
2318         
2319         other = start;
2320         // continue from current player
2321         while(other && other.team != self.team) {
2322                 other = find(other, classname, "player");
2323         }
2324         
2325         if (!other) {
2326                 // restart from begining
2327                 other = find(other, classname, "player");
2328                 while(other && other.team != self.team) {
2329                         other = find(other, classname, "player");
2330                 }
2331         }
2332         
2333         return other;
2334 }
2335
2336 float SpectateNext() {
2337         other = find(self.enemy, classname, "player");
2338         if (g_ca && !autocvar_g_ca_spectate_enemies && self.caplayer) {
2339                 // CA and ca players when spectating enemies is forbidden
2340                 other = CA_SpectateNext(other);
2341         } else {
2342                 // other modes and ca spectators or spectating enemies is allowed
2343                 if (!other)
2344                         other = find(other, classname, "player");
2345         }
2346         
2347         if (other)
2348                 self.enemy = other;
2349
2350         if(self.enemy.classname == "player") {
2351             if(self.enemy.vehicle)
2352             {      
2353             msg_entity = self;
2354             WriteByte(MSG_ONE, SVC_SETVIEWPORT);
2355             WriteEntity(MSG_ONE, self.enemy);
2356             //stuffcmd(self, "set viewsize $tmpviewsize \n");
2357             self.movetype = MOVETYPE_NONE;
2358             accuracy_resend(self);
2359             }
2360             else 
2361             {           
2362             msg_entity = self;
2363             WriteByte(MSG_ONE, SVC_SETVIEW);
2364             WriteEntity(MSG_ONE, self.enemy);
2365             //stuffcmd(self, "set viewsize $tmpviewsize \n");
2366             self.movetype = MOVETYPE_NONE;
2367             accuracy_resend(self);
2368
2369             if(!SpectateUpdate())
2370                 PutObserverInServer();
2371         }
2372         return 1;
2373         } else {
2374                 return 0;
2375         }
2376 }
2377
2378 /*
2379 =============
2380 ShowRespawnCountdown()
2381
2382 Update a respawn countdown display.
2383 =============
2384 */
2385 void ShowRespawnCountdown()
2386 {
2387         float number;
2388         if(self.deadflag == DEAD_NO) // just respawned?
2389                 return;
2390         else
2391         {
2392                 number = ceil(self.death_time - time);
2393                 if(number <= 0)
2394                         return;
2395                 if(number <= self.respawn_countdown)
2396                 {
2397                         self.respawn_countdown = number - 1;
2398                         if(ceil(self.death_time - (time + 0.5)) == number) // only say it if it is the same number even in 0.5s; to prevent overlapping sounds
2399                                 AnnounceTo(self, strcat(ftos(number), ""));
2400                 }
2401         }
2402 }
2403
2404 .float prevent_join_msgtime;
2405 void LeaveSpectatorMode()
2406 {
2407         if(nJoinAllowed(1)) {
2408                 if(!teamplay || autocvar_g_campaign || autocvar_g_balance_teams || (self.wasplayer && autocvar_g_changeteam_banned) || self.team_forced > 0) {
2409                         self.classname = "player";
2410
2411                         if(autocvar_g_campaign || autocvar_g_balance_teams || autocvar_g_balance_teams_force)
2412                                 JoinBestTeam(self, FALSE, TRUE);
2413
2414                         if(autocvar_g_campaign)
2415                                 campaign_bots_may_start = 1;
2416
2417                         PutClientInServer();
2418
2419                         if(self.classname == "player")
2420                                 bprint ("^4", self.netname, "^4 is playing now\n");
2421
2422                         if(!autocvar_g_campaign)
2423                         if (time < self.jointime + autocvar_welcome_message_time)
2424                                 Send_CSQC_Centerprint_Generic_Expire(self, CPID_MOTD); // clear MOTD
2425
2426                         if (self.prevent_join_msgtime)
2427                         {
2428                                 Send_CSQC_Centerprint_Generic_Expire(self, CPID_PREVENT_JOIN);
2429                                 self.prevent_join_msgtime = 0;
2430                         }
2431
2432                         return;
2433                 } else {
2434                         if (g_ca && self.caplayer) {
2435                         }       // do nothing
2436                         else
2437                                 stuffcmd(self,"menu_showteamselect\n");
2438                         return;
2439                 }
2440         }
2441         else {
2442                 //player may not join because of g_maxplayers is set
2443                 if (time - self.prevent_join_msgtime > 2)
2444                 {
2445                         Send_CSQC_Centerprint_Generic(self, CPID_PREVENT_JOIN, PREVENT_JOIN_TEXT, 0, 0);
2446                         self.prevent_join_msgtime = time;
2447                 }
2448         }
2449 }
2450
2451 /**
2452  * Determines whether the player is allowed to join. This depends on cvar
2453  * g_maxplayers, if it isn't used this function always return TRUE, otherwise
2454  * it checks whether the number of currently playing players exceeds g_maxplayers.
2455  * @return int number of free slots for players, 0 if none
2456  */
2457 float nJoinAllowed(float includeMe) {
2458         if(self.team_forced < 0)
2459                 return FALSE; // forced spectators can never join
2460
2461         // TODO simplify this
2462         entity e;
2463
2464         float totalClients;
2465         FOR_EACH_CLIENT(e)
2466                 totalClients += 1;
2467
2468         if (!autocvar_g_maxplayers)
2469                 return maxclients - totalClients + includeMe;
2470
2471         float currentlyPlaying;
2472         FOR_EACH_REALPLAYER(e)
2473                 currentlyPlaying += 1;
2474
2475         if(currentlyPlaying < autocvar_g_maxplayers)
2476                 return min(maxclients - totalClients + includeMe, autocvar_g_maxplayers - currentlyPlaying);
2477
2478         return 0;
2479 }
2480
2481 /**
2482  * Checks whether the client is an observer or spectator, if so, he will get kicked after
2483  * g_maxplayers_spectator_blocktime seconds
2484  */
2485 void checkSpectatorBlock() {
2486         if(self.classname == "spectator" || self.classname == "observer") {
2487                 if( time > (self.spectatortime + autocvar_g_maxplayers_spectator_blocktime) ) {
2488                         sprint(self, "^7You were kicked from the server because you are spectator and spectators aren't allowed at the moment.\n");
2489                         dropclient(self);
2490                 }
2491         }
2492 }
2493
2494 .float motd_actived_time; // used for both motd and campaign_message
2495 void PrintWelcomeMessage()
2496 {
2497         if (self.motd_actived_time == 0) { // is there already a message showing?
2498                 if (autocvar_g_campaign) {
2499                         if ((self.classname == "player" && self.BUTTON_INFO) || (self.classname != "player")) {
2500                                 self.motd_actived_time = time;
2501                                 Send_CSQC_Centerprint_Generic(self, CPID_MOTD, campaign_message, -1, 0);
2502                         }
2503                 } else {
2504                         if ((time - self.jointime > autocvar_welcome_message_time) && self.BUTTON_INFO) {
2505                                 self.motd_actived_time = time;
2506                                 Send_CSQC_Centerprint_Generic(self, CPID_MOTD, getwelcomemessage(), -1, 0);
2507                         }
2508                 }
2509         } else { // showing MOTD or campaign message
2510                 if (autocvar_g_campaign) {
2511                         if (self.BUTTON_INFO)
2512                                 self.motd_actived_time = time;
2513                         else if ((time - self.motd_actived_time > 2) && self.classname == "player") { // hide it some seconds after BUTTON_INFO has been released
2514                                 self.motd_actived_time = 0;
2515                                 Send_CSQC_Centerprint_Generic_Expire(self, CPID_MOTD);
2516                         }
2517                 } else {
2518                         if ((time - self.jointime) > autocvar_welcome_message_time) {
2519                                 if (self.BUTTON_INFO)
2520                                         self.motd_actived_time = time;
2521                                 else if (time - self.motd_actived_time > 2) { // hide it some seconds after BUTTON_INFO has been released
2522                                         self.motd_actived_time = 0;
2523                                         Send_CSQC_Centerprint_Generic_Expire(self, CPID_MOTD);
2524                                 }
2525                         }
2526                 }
2527         }
2528 }
2529
2530 void ObserverThink()
2531 {
2532         float prefered_movetype;
2533         if (self.flags & FL_JUMPRELEASED) {
2534                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2535                         self.flags &~= FL_JUMPRELEASED;
2536                         self.flags |= FL_SPAWNING;
2537                 } else if(self.BUTTON_ATCK && !self.version_mismatch) {
2538                         self.flags &~= FL_JUMPRELEASED;
2539                         if(SpectateNext() == 1) {
2540                                 self.classname = "spectator";
2541                         }
2542                 } else {
2543                         prefered_movetype = ((!self.BUTTON_USE ? self.cvar_cl_clippedspectating : !self.cvar_cl_clippedspectating) ? MOVETYPE_FLY_WORLDONLY : MOVETYPE_NOCLIP);
2544                         if (self.movetype != prefered_movetype)
2545                                 self.movetype = prefered_movetype;
2546                 }
2547         } else {
2548                 if (!(self.BUTTON_ATCK || self.BUTTON_JUMP)) {
2549                         self.flags |= FL_JUMPRELEASED;
2550                         if(self.flags & FL_SPAWNING)
2551                         {
2552                                 self.flags &~= FL_SPAWNING;
2553                                 LeaveSpectatorMode();
2554                                 return;
2555                         }
2556                 }
2557         }
2558
2559         PrintWelcomeMessage();
2560 }
2561
2562 void SpectatorThink()
2563 {
2564         if (self.flags & FL_JUMPRELEASED) {
2565                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2566                         self.flags &~= FL_JUMPRELEASED;
2567                         self.flags |= FL_SPAWNING;
2568                 } else if(self.BUTTON_ATCK) {
2569                         self.flags &~= FL_JUMPRELEASED;
2570                         if(SpectateNext() == 1) {
2571                                 self.classname = "spectator";
2572                         } else {
2573                                 self.classname = "observer";
2574                                 PutClientInServer();
2575                         }
2576                 } else if (self.BUTTON_ATCK2) {
2577                         self.flags &~= FL_JUMPRELEASED;
2578                         self.classname = "observer";
2579                         PutClientInServer();
2580                 } else {
2581                         if(!SpectateUpdate())
2582                                 PutObserverInServer();
2583                 }
2584         } else {
2585                 if (!(self.BUTTON_ATCK || self.BUTTON_ATCK2)) {
2586                         self.flags |= FL_JUMPRELEASED;
2587                         if(self.flags & FL_SPAWNING)
2588                         {
2589                                 self.flags &~= FL_SPAWNING;
2590                                 LeaveSpectatorMode();
2591                                 return;
2592                         }
2593                 }
2594                 if(!SpectateUpdate())
2595                         PutObserverInServer();
2596         }
2597
2598         PrintWelcomeMessage();
2599         self.flags |= FL_CLIENT | FL_NOTARGET;
2600 }
2601
2602 float ctf_usekey();
2603 void PlayerUseKey()
2604 {
2605         if(self.classname != "player")
2606                 return;
2607
2608         if(self.vehicle)
2609         {
2610         vehicles_exit(VHEF_NORMAL);
2611         return;
2612         }
2613         
2614         // a use key was pressed; call handlers
2615         if(ctf_usekey())
2616                 return;
2617
2618         MUTATOR_CALLHOOK(PlayerUseKey);
2619 }
2620
2621 .float touchexplode_time;
2622
2623 /*
2624 =============
2625 PlayerPreThink
2626
2627 Called every frame for each client before the physics are run
2628 =============
2629 */
2630 .float usekeypressed;
2631 void() ctf_setstatus;
2632 void() nexball_setstatus;
2633 .float items_added;
2634 void PlayerPreThink (void)
2635 {
2636         WarpZone_PlayerPhysics_FixVAngle();
2637
2638         self.stat_game_starttime = game_starttime;
2639         self.stat_allow_oldnexbeam = autocvar_g_allow_oldnexbeam;
2640         self.stat_leadlimit = autocvar_leadlimit;
2641
2642         if(frametime)
2643         {
2644                 // physics frames: update anticheat stuff
2645                 anticheat_prethink();
2646         }
2647
2648         if(blockSpectators && frametime)
2649                 // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2650                 checkSpectatorBlock();
2651
2652         zoomstate_set = 0;
2653
2654         if(self.netname_previous != self.netname)
2655         {
2656                 if(autocvar_sv_eventlog)
2657                         GameLogEcho(strcat(":name:", ftos(self.playerid), ":", self.netname));
2658                 if(self.netname_previous)
2659                         strunzone(self.netname_previous);
2660                 self.netname_previous = strzone(self.netname);
2661         }
2662
2663         // version nagging
2664         if(self.version_nagtime)
2665                 if(self.cvar_g_xonoticversion)
2666                         if(time > self.version_nagtime)
2667                         {
2668                                 // don't notify git users
2669                                 if(strstr(self.cvar_g_xonoticversion, "git", 0) < 0 && strstr(self.cvar_g_xonoticversion, "autobuild", 0) < 0)
2670                                 {
2671                                         if(strstr(autocvar_g_xonoticversion, "git", 0) >= 0 || strstr(autocvar_g_xonoticversion, "autobuild", 0) >= 0)
2672                                         {
2673                                                 // notify release users if connecting to git
2674                                                 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");
2675                                                 sprint(self, strcat("\{1}^1NOTE: ^7the server is running ^3Xonotic ", autocvar_g_xonoticversion, " (beta)^7, you have ^3Xonotic ", self.cvar_g_xonoticversion, "^1\n"));
2676                                         }
2677                                         else
2678                                         {
2679                                                 float r;
2680                                                 r = vercmp(self.cvar_g_xonoticversion, autocvar_g_xonoticversion);
2681                                                 if(r < 0)
2682                                                 {
2683                                                         // give users new version
2684                                                         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");
2685                                                         sprint(self, strcat("\{1}^1NOTE: ^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"));
2686                                                 }
2687                                                 else if(r > 0)
2688                                                 {
2689                                                         // notify users about old server version
2690                                                         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");
2691                                                         sprint(self, strcat("\{1}^1NOTE: ^7the server is running ^3Xonotic ", autocvar_g_xonoticversion, "^7, you have ^3Xonotic ", self.cvar_g_xonoticversion, "^1\n"));
2692                                                 }
2693                                         }
2694                                 }
2695                                 self.version_nagtime = 0;
2696                         }
2697
2698         // GOD MODE info
2699         if(!(self.flags & FL_GODMODE)) if(self.max_armorvalue)
2700         {
2701                 sprint(self, strcat("godmode saved you ", ftos(self.max_armorvalue), " units of damage, cheater!\n"));
2702                 self.max_armorvalue = 0;
2703         }
2704
2705 #ifdef TETRIS
2706         if (TetrisPreFrame())
2707                 return;
2708 #endif
2709
2710         MUTATOR_CALLHOOK(PlayerPreThink);
2711
2712         if(!self.cvar_cl_newusekeysupported) // FIXME remove this - it was a stupid idea to begin with, we can JUST use the button
2713         {
2714                 if(self.BUTTON_USE && !self.usekeypressed)
2715                         PlayerUseKey();
2716                 self.usekeypressed = self.BUTTON_USE;
2717         }
2718
2719         PrintWelcomeMessage();
2720
2721         if(self.classname == "player") {
2722 //              if(self.netname == "Wazat")
2723 //                      bprint(self.classname, "\n");
2724
2725                 CheckRules_Player();
2726
2727                 if (intermission_running)
2728                 {
2729                         IntermissionThink ();   // otherwise a button could be missed between
2730                         return;                                 // the think tics
2731                 }
2732
2733                 //don't allow the player to turn around while game is paused!
2734                 if(timeoutStatus == 2) {
2735                         // FIXME turn this into CSQC stuff
2736                         self.v_angle = self.lastV_angle;
2737                         self.angles = self.lastV_angle;
2738                         self.fixangle = TRUE;
2739                 }
2740
2741                 if(frametime)
2742                 {
2743                         if(self.health <= 0 && autocvar_g_deathglow)
2744                         {
2745                                 if(self.glowmod_x > 0)
2746                                         self.glowmod_x -= autocvar_g_deathglow * frametime;
2747                                 else
2748                                         self.glowmod_x = -1;
2749                                 if(self.glowmod_y > 0)
2750                                         self.glowmod_y -= autocvar_g_deathglow * frametime;
2751                                 else
2752                                         self.glowmod_y = -1;
2753                                 if(self.glowmod_z > 0)
2754                                         self.glowmod_z -= autocvar_g_deathglow * frametime;
2755                                 else
2756                                         self.glowmod_z = -1;
2757                         }
2758                         else
2759                         {
2760                                 // set weapon and player glowmod
2761                                 self.glowmod = colormapPaletteColor(self.clientcolors & 0x0F, TRUE) * 2;
2762
2763                                 if(self.weapon == WEP_NEX && autocvar_g_balance_nex_charge)
2764                                 {
2765                                         self.weaponentity_glowmod_x = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_red_half * min(1, self.nex_charge / autocvar_g_balance_nex_charge_animlimit);
2766                                         self.weaponentity_glowmod_y = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_green_half * min(1, self.nex_charge / autocvar_g_balance_nex_charge_animlimit);
2767                                         self.weaponentity_glowmod_z = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_blue_half * min(1, self.nex_charge / autocvar_g_balance_nex_charge_animlimit);
2768
2769                                         if(self.nex_charge > autocvar_g_balance_nex_charge_animlimit)
2770                                         {
2771                                                 self.weaponentity_glowmod_x = self.weaponentity_glowmod_x + autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_red_full * (self.nex_charge - autocvar_g_balance_nex_charge_animlimit) / (1 - autocvar_g_balance_nex_charge_animlimit);
2772                                                 self.weaponentity_glowmod_y = self.weaponentity_glowmod_y + autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_green_full * (self.nex_charge - autocvar_g_balance_nex_charge_animlimit) / (1 - autocvar_g_balance_nex_charge_animlimit);
2773                                                 self.weaponentity_glowmod_z = self.weaponentity_glowmod_z + autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_blue_full * (self.nex_charge - autocvar_g_balance_nex_charge_animlimit) / (1 - autocvar_g_balance_nex_charge_animlimit);
2774                                         }
2775                                 }
2776                                 else
2777                                         self.weaponentity_glowmod = self.glowmod;
2778                         }
2779                         player_powerups();
2780                 }
2781
2782                 if (g_minstagib)
2783                         minstagib_ammocheck();
2784
2785                 if (self.deadflag != DEAD_NO)
2786                 {
2787                         float button_pressed, force_respawn;
2788                         if(self.personal && g_race_qualifying)
2789                         {
2790                                 if(time > self.death_time)
2791                                 {
2792                                         self.death_time = time + 1; // only retry once a second
2793                                         respawn();
2794                                         self.impulse = 141;
2795                                 }
2796                         }
2797                         else
2798                         {
2799                                 if(frametime)
2800                                         player_anim();
2801                                 button_pressed = (self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE);
2802                                 force_respawn = (g_lms || g_ca || g_cts || autocvar_g_forced_respawn);
2803                                 if (self.deadflag == DEAD_DYING)
2804                                 {
2805                                         if(force_respawn)
2806                                                 self.deadflag = DEAD_RESPAWNING;
2807                                         else if(!button_pressed)
2808                                                 self.deadflag = DEAD_DEAD;
2809                                 }
2810                                 else if (self.deadflag == DEAD_DEAD)
2811                                 {
2812                                         if(button_pressed)
2813                                                 self.deadflag = DEAD_RESPAWNABLE;
2814                                 }
2815                                 else if (self.deadflag == DEAD_RESPAWNABLE)
2816                                 {
2817                                         if(!button_pressed)
2818                                                 self.deadflag = DEAD_RESPAWNING;
2819                                 }
2820                                 else if (self.deadflag == DEAD_RESPAWNING)
2821                                 {
2822                                         if(time > self.death_time)
2823                                         {
2824                                                 self.death_time = time + 1; // only retry once a second
2825                                                 respawn();
2826                                         }
2827                                 }
2828                                 ShowRespawnCountdown();
2829                         }
2830                         return;
2831                 }
2832                 // FIXME from now on self.deadflag is always 0 (and self.health is never < 1)
2833                 // so (self.deadflag == DEAD_NO) is always true in the code below
2834
2835                 if(g_touchexplode)
2836                 if(time > self.touchexplode_time)
2837                 if(self.classname == "player")
2838                 if(self.deadflag == DEAD_NO)
2839                 if not(IS_INDEPENDENT_PLAYER(self))
2840                 FOR_EACH_PLAYER(other) if(self != other)
2841                 {
2842                         if(time > other.touchexplode_time)
2843                         if(other.deadflag == DEAD_NO)
2844                         if not(IS_INDEPENDENT_PLAYER(other))
2845                         if(boxesoverlap(self.absmin, self.absmax, other.absmin, other.absmax))
2846                         {
2847                                 PlayerTouchExplode(self, other);
2848                                 self.touchexplode_time = other.touchexplode_time = time + 0.2;
2849                         }
2850                 }
2851
2852                 if(g_lms && !self.deadflag && autocvar_g_lms_campcheck_interval)
2853                 {
2854                         vector dist;
2855
2856                         // calculate player movement (in 2 dimensions only, so jumping on one spot doesn't count as movement)
2857                         dist = self.prevorigin - self.origin;
2858                         dist_z = 0;
2859                         self.lms_traveled_distance += fabs(vlen(dist));
2860
2861                         if((autocvar_g_campaign && !campaign_bots_may_start) || (time < game_starttime))
2862                         {
2863                                 self.lms_nextcheck = time + autocvar_g_lms_campcheck_interval*2;
2864                                 self.lms_traveled_distance = 0;
2865                         }
2866
2867                         if(time > self.lms_nextcheck)
2868                         {
2869                                 //sprint(self, "distance: ", ftos(self.lms_traveled_distance), "\n");
2870                                 if(self.lms_traveled_distance < autocvar_g_lms_campcheck_distance)
2871                                 {
2872                                         centerprint(self, autocvar_g_lms_campcheck_message);
2873                                         // FIXME KadaverJack: gibbing player here causes playermodel to bounce around, instead of eye.md3
2874                                         // I wasn't able to find out WHY that happens, so I put a workaround in place that shall prevent players from being gibbed :(
2875                                         Damage(self, self, self, bound(0, autocvar_g_lms_campcheck_damage, self.health + self.armorvalue * autocvar_g_balance_armor_blockpercent + 5), DEATH_CAMP, self.origin, '0 0 0');
2876                                 }
2877                                 self.lms_nextcheck = time + autocvar_g_lms_campcheck_interval;
2878                                 self.lms_traveled_distance = 0;
2879                         }
2880                 }
2881
2882                 self.prevorigin = self.origin;
2883
2884                 if (((self.BUTTON_CROUCH && !self.hook.state) || self.health <= g_bloodloss) && self.animstate_startframe != self.anim_melee_x) // prevent crouching if using melee attack
2885                 {
2886                         if (!self.crouch)
2887                         {
2888                                 self.crouch = TRUE;
2889                                 self.view_ofs = PL_CROUCH_VIEW_OFS;
2890                                 setsize (self, PL_CROUCH_MIN, PL_CROUCH_MAX);
2891                                 // setanim(self, self.anim_duck, FALSE, TRUE, TRUE); // this anim is BROKEN anyway
2892                         }
2893                 }
2894                 else
2895                 {
2896                         if (self.crouch)
2897                         {
2898                                 tracebox(self.origin, PL_MIN, PL_MAX, self.origin, FALSE, self);
2899                                 if (!trace_startsolid)
2900                                 {
2901                                         self.crouch = FALSE;
2902                                         self.view_ofs = PL_VIEW_OFS;
2903                                         setsize (self, PL_MIN, PL_MAX);
2904                                 }
2905                         }
2906                 }
2907
2908                 if(self.health <= g_bloodloss && self.deadflag == DEAD_NO)
2909                 {
2910                         if(self.bloodloss_timer < time)
2911                         {
2912                                 self.event_damage(self, self, 1, DEATH_ROT, self.origin, '0 0 0');
2913                                 self.bloodloss_timer = time + 0.5 + random() * 0.5;
2914                         }
2915                 }
2916
2917                 FixPlayermodel();
2918
2919                 GrapplingHookFrame();
2920
2921                 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2922                 //if(frametime)
2923                 {
2924                         self.items &~= self.items_added;
2925
2926                         W_WeaponFrame();
2927
2928                         self.items_added = 0;
2929                         if(self.items & IT_JETPACK)
2930                                 if(self.items & IT_FUEL_REGEN || self.ammo_fuel >= 0.01)
2931                                         self.items_added |= IT_FUEL;
2932
2933                         self.items |= self.items_added;
2934                 }
2935
2936                 player_regen();
2937
2938                 // rot nex charge to the charge limit
2939                 if(autocvar_g_balance_nex_charge_rot_rate && self.nex_charge > autocvar_g_balance_nex_charge_limit && self.nex_charge_rottime < time)
2940                         self.nex_charge = bound(autocvar_g_balance_nex_charge_limit, self.nex_charge - autocvar_g_balance_nex_charge_rot_rate * frametime / W_TICSPERFRAME, 1);
2941
2942                 if(frametime)
2943                         player_anim();
2944
2945                 if(g_ctf)
2946                         ctf_setstatus();
2947
2948                 if(g_nexball)
2949                         nexball_setstatus();
2950                 
2951                 // secret status
2952                 secrets_setstatus();
2953                 
2954                 self.dmg_team = max(0, self.dmg_team - autocvar_g_teamdamage_resetspeed * frametime);
2955
2956                 //self.angles_y=self.v_angle_y + 90;   // temp
2957         } else if(gameover) {
2958                 if (intermission_running)
2959                         IntermissionThink ();   // otherwise a button could be missed between
2960                 return;
2961         } else if(self.classname == "observer") {
2962                 ObserverThink();
2963         } else if(self.classname == "spectator") {
2964                 SpectatorThink();
2965         }
2966
2967         if(!zoomstate_set)
2968                 SetZoomState(self.BUTTON_ZOOM || self.BUTTON_ZOOMSCRIPT || (self.BUTTON_ATCK2 && self.weapon == WEP_NEX) || (self.BUTTON_ATCK2 && self.weapon == WEP_RIFLE && autocvar_g_balance_rifle_secondary == 0));
2969
2970         float oldspectatee_status;
2971         oldspectatee_status = self.spectatee_status;
2972         if(self.classname == "spectator")
2973                 self.spectatee_status = num_for_edict(self.enemy);
2974         else if(self.classname == "observer")
2975                 self.spectatee_status = num_for_edict(self);
2976         else
2977                 self.spectatee_status = 0;
2978         if(self.spectatee_status != oldspectatee_status)
2979         {
2980                 ClientData_Touch(self);
2981                 if(g_race || g_cts)
2982                         race_InitSpectator();
2983         }
2984
2985         if(self.teamkill_soundtime)
2986         if(time > self.teamkill_soundtime)
2987         {
2988                 self.teamkill_soundtime = 0;
2989
2990                 entity oldpusher, oldself;
2991
2992                 oldself = self; self = self.teamkill_soundsource;
2993                 oldpusher = self.pusher; self.pusher = oldself;
2994
2995                 PlayerSound(playersound_teamshoot, CH_VOICE, VOICETYPE_LASTATTACKER_ONLY);
2996
2997                 self.pusher = oldpusher;
2998                 self = oldself;
2999         }
3000
3001         if(self.taunt_soundtime)
3002         if(time > self.taunt_soundtime)
3003         {
3004                 self.taunt_soundtime = 0;
3005                 PlayerSound(playersound_taunt, CH_VOICE, VOICETYPE_AUTOTAUNT);
3006         }
3007
3008         target_voicescript_next(self);
3009
3010         // if a player goes unarmed after holding a loaded weapon, empty his clip size and remove the crosshair ammo ring
3011         if(!self.weapon)
3012                 self.clip_load = self.clip_size = 0;
3013 }
3014
3015 float isInvisibleString(string s)
3016 {
3017         float i, n, c;
3018         s = strdecolorize(s);
3019         for((i = 0), (n = strlen(s)); i < n; ++i)
3020         {
3021                 c = str2chr(s, i);
3022                 switch(c)
3023                 {
3024                         case 0:
3025                         case 32: // space
3026                                 break;
3027                         case 192: // charmap space
3028                                 if (!autocvar_utf8_enable)
3029                                         break;
3030                                 return FALSE;
3031                         case 160: // space in unicode fonts
3032                         case 0xE000 + 192: // utf8 charmap space
3033                                 if (autocvar_utf8_enable)
3034                                         break;
3035                         default:
3036                                 return FALSE;
3037                 }
3038         }
3039         return TRUE;
3040 }
3041
3042 /*
3043 =============
3044 PlayerPostThink
3045
3046 Called every frame for each client after the physics are run
3047 =============
3048 */
3049 .float idlekick_lasttimeleft;
3050 .entity showheadshotbbox;
3051 void showheadshotbbox_think()
3052 {
3053         if(self.owner.showheadshotbbox != self)
3054         {
3055                 remove(self);
3056                 return;
3057         }
3058         self.nextthink = time;
3059         setorigin(self, self.owner.origin);
3060         setsize(self, GetHeadshotMins(self.owner), GetHeadshotMaxs(self.owner));
3061 }
3062 void PlayerPostThink (void)
3063 {
3064         // Savage: Check for nameless players
3065         if (isInvisibleString(self.netname)) {
3066                 self.netname = "Player";
3067                 stuffcmd(self, strcat("name ", self.netname, substring(ftos(random()), 2, -1), "\n"));
3068         }
3069
3070         if(sv_maxidle && frametime)
3071         {
3072                 // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
3073                 float timeleft;
3074                 if (time - self.parm_idlesince < 1) // instead of (time == self.parm_idlesince) to support sv_maxidle <= 10
3075                 {
3076                         if(self.idlekick_lasttimeleft)
3077                         {
3078                                 Send_CSQC_Centerprint_Generic_Expire(self, CPID_DISCONNECT_IDLING);
3079                                 self.idlekick_lasttimeleft = 0;
3080                         }
3081                         return;
3082                 }
3083                 timeleft = ceil(sv_maxidle - (time - self.parm_idlesince));
3084                 if(timeleft == min(10, sv_maxidle - 1)) // - 1 to support sv_maxidle <= 10
3085                 {
3086                         if(!self.idlekick_lasttimeleft)
3087                                 Send_CSQC_Centerprint_Generic(self, CPID_DISCONNECT_IDLING, "^3Stop idling!\n^3Disconnecting in %d seconds...", 1, timeleft);
3088                 }
3089                 if(timeleft <= 0)
3090                 {
3091                         bprint("^3", self.netname, "^3 was kicked for idling.\n");
3092                         AnnounceTo(self, "terminated");
3093                         dropclient(self);
3094                         return;
3095                 }
3096                 else if(timeleft <= 10)
3097                 {
3098                         if(timeleft != self.idlekick_lasttimeleft)
3099                                 AnnounceTo(self, ftos(timeleft));
3100                         self.idlekick_lasttimeleft = timeleft;
3101                 }
3102         }
3103
3104 #ifdef TETRIS
3105         if(self.impulse == 100)
3106                 ImpulseCommands();
3107         if (TetrisPostFrame())
3108                 return;
3109 #endif
3110
3111         CheatFrame();
3112
3113         //CheckPlayerJump();
3114
3115         if(self.classname == "player") {
3116                 CheckRules_Player();
3117                 UpdateChatBubble();
3118                 if (self.impulse)
3119                         ImpulseCommands();
3120                 if (intermission_running)
3121                         return;         // intermission or finale
3122                 GetPressedKeys();
3123         } else if (self.classname == "observer") {
3124                 //do nothing
3125         } else if (self.classname == "spectator") {
3126                 //do nothing
3127         }
3128         
3129         /*
3130         float i;
3131         for(i = 0; i < 1000; ++i)
3132         {
3133                 vector end;
3134                 end = self.origin + '0 0 1024' + 512 * randomvec();
3135                 tracebox(self.origin, self.mins, self.maxs, end, MOVE_NORMAL, self);
3136                 if(trace_fraction < 1)
3137                 if(!(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
3138                 {
3139                         print("I HIT SOLID: ", vtos(self.origin), " -> ", vtos(end), "\n");
3140                         break;
3141                 }
3142         }
3143         */
3144
3145         Arena_Warmup();
3146
3147         //pointparticles(particleeffectnum("machinegun_impact"), self.origin + self.view_ofs + '0 0 7', '0 0 0', 1);
3148
3149         if(self.waypointsprite_attachedforcarrier)
3150                 WaypointSprite_UpdateHealth(self.waypointsprite_attachedforcarrier, '1 0 0' * healtharmor_maxdamage(self.health, self.armorvalue, autocvar_g_balance_armor_blockpercent));
3151
3152         if(self.classname == "player" && self.deadflag == DEAD_NO && autocvar_r_showbboxes)
3153         {
3154                 if(!self.showheadshotbbox)
3155                 {
3156                         self.showheadshotbbox = spawn();
3157                         self.showheadshotbbox.classname = "headshotbbox";
3158                         self.showheadshotbbox.owner = self;
3159                         self.showheadshotbbox.think = showheadshotbbox_think;
3160                         self.showheadshotbbox.nextthink = time;
3161                         self = self.showheadshotbbox;
3162                         self.think();
3163                         self = self.owner;
3164                 }
3165         }
3166         else
3167         {
3168                 if(self.showheadshotbbox)
3169                         if(self.showheadshotbbox && !wasfreed(self.showheadshotbbox))
3170                 remove(self.showheadshotbbox);
3171         }
3172
3173         playerdemo_write();
3174
3175         if((g_cts || g_race) && self.cvar_cl_allow_uidtracking == 1 && self.cvar_cl_allow_uid2name == 1)
3176         {
3177                 if(!self.stored_netname)
3178                         self.stored_netname = strzone(uid2name(self.crypto_idfp));
3179                 if(self.stored_netname != self.netname)
3180                 {
3181                         db_put(ServerProgsDB, strcat("/uid2name/", self.crypto_idfp), self.netname);
3182                         strunzone(self.stored_netname);
3183                         self.stored_netname = strzone(self.netname);
3184                 }
3185         }
3186
3187         /*
3188         if(g_race)
3189                 dprint(sprintf("%f %.6f\n", time, race_GetFractionalLapCount(self)));
3190         */
3191 }