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