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