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