]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/cl_client.qc
speed awards for CTS!
[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                 if (g_cts)
1470                         race_send_speedaward();
1471         }
1472 }
1473
1474 /*
1475 =============
1476 ClientDisconnect
1477
1478 Called when a client disconnects from the server
1479 =============
1480 */
1481 .entity chatbubbleentity;
1482 .entity teambubbleentity;
1483 void ReadyCount();
1484 void ClientDisconnect (void)
1485 {
1486         if not(self.flags & FL_CLIENT)
1487         {
1488                 print("Warning: ClientDisconnect without ClientConnect\n");
1489                 return;
1490         }
1491
1492         if(self.hitplotfh >= 0)
1493         {
1494                 fclose(self.hitplotfh);
1495                 self.hitplotfh = -1;
1496         }
1497
1498         bot_clientdisconnect();
1499
1500         if(self.entcs)
1501                 detach_entcs();
1502
1503         if(cvar("sv_eventlog"))
1504                 GameLogEcho(strcat(":part:", ftos(self.playerid)));
1505         bprint ("^4",self.netname);
1506         bprint ("^4 disconnected\n");
1507
1508         SoundEntity_Detach(self);
1509
1510         DropAllRunes(self);
1511         kh_Key_DropAll(self, TRUE);
1512
1513         Portal_ClearAll(self);
1514
1515         if(self.flagcarried)
1516                 DropFlag(self.flagcarried, world, world);
1517         if(self.ballcarried)
1518                 DropBall(self.ballcarried, self.origin + self.ballcarried.origin, self.velocity);
1519
1520         // Here, everything has been done that requires this player to be a client.
1521
1522         self.flags &~= FL_CLIENT;
1523
1524         if (self.chatbubbleentity)
1525                 remove (self.chatbubbleentity);
1526
1527         if (self.teambubbleentity)
1528                 remove (self.teambubbleentity);
1529
1530         if (self.killindicator)
1531                 remove (self.killindicator);
1532
1533         WaypointSprite_PlayerGone();
1534
1535         bot_relinkplayerlist();
1536
1537         // remove laserdot
1538         if(self.weaponentity)
1539                 if(self.weaponentity.lasertarget)
1540                         remove(self.weaponentity.lasertarget);
1541
1542         if(g_arena)
1543         {
1544                 Spawnqueue_Unmark(self);
1545                 Spawnqueue_Remove(self);
1546         }
1547
1548         ClientData_Detach();
1549         PlayerScore_Detach(self);
1550
1551         if(self.netname_previous)
1552                 strunzone(self.netname_previous);
1553         if(self.clientstatus)
1554                 strunzone(self.clientstatus);
1555
1556         ClearPlayerSounds();
1557
1558         if(self.personal)
1559                 remove(self.personal);
1560
1561         self.playerid = 0;
1562         ReadyCount();
1563
1564         // free cvars
1565         GetCvars(-1);
1566 }
1567
1568 .float BUTTON_CHAT;
1569 void ChatBubbleThink()
1570 {
1571         self.nextthink = time;
1572         if (!self.owner.modelindex || self.owner.chatbubbleentity != self)
1573         {
1574                 if(self.owner) // but why can that ever be world?
1575                         self.owner.chatbubbleentity = world;
1576                 remove(self);
1577                 return;
1578         }
1579         if ((self.owner.BUTTON_CHAT && !self.owner.deadflag)
1580 #ifdef TETRIS
1581                 || self.owner.tetris_on
1582 #endif
1583         )
1584                 self.model = self.mdl;
1585         else
1586                 self.model = "";
1587 };
1588
1589 void UpdateChatBubble()
1590 {
1591         if (!self.modelindex)
1592                 return;
1593         // spawn a chatbubble entity if needed
1594         if (!self.chatbubbleentity)
1595         {
1596                 self.chatbubbleentity = spawn();
1597                 self.chatbubbleentity.owner = self;
1598                 self.chatbubbleentity.exteriormodeltoclient = self;
1599                 self.chatbubbleentity.think = ChatBubbleThink;
1600                 self.chatbubbleentity.nextthink = time;
1601                 setmodel(self.chatbubbleentity, "models/misc/chatbubble.spr"); // precision set below
1602                 //setorigin(self.chatbubbleentity, self.origin + '0 0 15' + self.maxs_z * '0 0 1');
1603                 setorigin(self.chatbubbleentity, '0 0 15' + self.maxs_z * '0 0 1');
1604                 setattachment(self.chatbubbleentity, self, "");  // sticks to moving player better, also conserves bandwidth
1605                 self.chatbubbleentity.mdl = self.chatbubbleentity.model;
1606                 self.chatbubbleentity.model = "";
1607                 self.chatbubbleentity.effects = EF_LOWPRECISION;
1608         }
1609 }
1610
1611
1612 void TeamBubbleThink()
1613 {
1614         self.nextthink = time;
1615         if (!self.owner.modelindex || self.owner.teambubbleentity != self)
1616         {
1617                 if(self.owner) // but why can that ever be world?
1618                         self.owner.teambubbleentity = world;
1619                 remove(self);
1620                 return;
1621         }
1622 //      setorigin(self, self.owner.origin + '0 0 15' + self.owner.maxs_z * '0 0 1');  // bandwidth hog. setattachment does this now
1623         if (self.owner.BUTTON_CHAT || self.owner.deadflag || self.owner.killindicator)
1624                 self.model = "";
1625         else
1626                 self.model = self.mdl;
1627
1628 };
1629
1630 float TeamBubble_customizeentityforclient()
1631 {
1632         return (self.owner != other && self.owner.team == other.team && other.killcount > -666);
1633 }
1634
1635 void UpdateTeamBubble()
1636 {
1637         if (!self.modelindex || !teams_matter)
1638                 return;
1639         // spawn a teambubble entity if needed
1640         if (!self.teambubbleentity && teams_matter)
1641         {
1642                 self.teambubbleentity = spawn();
1643                 self.teambubbleentity.owner = self;
1644                 self.teambubbleentity.exteriormodeltoclient = self;
1645                 self.teambubbleentity.think = TeamBubbleThink;
1646                 self.teambubbleentity.nextthink = time;
1647                 setmodel(self.teambubbleentity, "models/misc/teambubble.spr"); // precision set below
1648 //              setorigin(self.teambubbleentity, self.origin + '0 0 15' + self.maxs_z * '0 0 1');
1649                 setorigin(self.teambubbleentity, '0 0 15' + self.maxs_z * '0 0 1');
1650                 setattachment(self.teambubbleentity, self, "");  // sticks to moving player better, also conserves bandwidth
1651                 self.teambubbleentity.mdl = self.teambubbleentity.model;
1652                 self.teambubbleentity.model = self.teambubbleentity.mdl;
1653                 self.teambubbleentity.customizeentityforclient = TeamBubble_customizeentityforclient;
1654                 self.teambubbleentity.effects = EF_LOWPRECISION;
1655         }
1656 }
1657
1658 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1659 // added to the model skins
1660 /*void UpdateColorModHack()
1661 {
1662         local float c;
1663         c = self.clientcolors & 15;
1664         // LordHavoc: only bothering to support white, green, red, yellow, blue
1665              if (!teams_matter) self.colormod = '0 0 0';
1666         else if (c ==  0) self.colormod = '1.00 1.00 1.00';
1667         else if (c ==  3) self.colormod = '0.10 1.73 0.10';
1668         else if (c ==  4) self.colormod = '1.73 0.10 0.10';
1669         else if (c == 12) self.colormod = '1.22 1.22 0.10';
1670         else if (c == 13) self.colormod = '0.10 0.10 1.73';
1671         else self.colormod = '1 1 1';
1672 };*/
1673
1674 void respawn(void)
1675 {
1676         CopyBody(1);
1677         self.effects |= EF_NODRAW; // prevent another CopyBody
1678         PutClientInServer();
1679 }
1680
1681 void play_countdown(float finished, string samp)
1682 {
1683         if(clienttype(self) == CLIENTTYPE_REAL)
1684                 if(floor(finished - time - frametime) != floor(finished - time))
1685                         if(finished - time < 6)
1686                                 sound (self, CHAN_AUTO, samp, VOL_BASE, ATTN_NORM);
1687 }
1688
1689 /**
1690  * When sv_timeout is used this function returs strings like
1691  * "Timeout begins in 2 seconds!\n" or "Timeout ends in 23 seconds!\n".
1692  * Called by centerprint functions
1693  * @param addOneSecond boolean, set to 1 if the welcome-message centerprint asks for the text
1694  */
1695 string getTimeoutText(float addOneSecond) {
1696         if (!cvar("sv_timeout") || !timeoutStatus)
1697                 return "";
1698
1699         local string retStr;
1700         if (timeoutStatus == 1) {
1701                 if (addOneSecond == 1) {
1702                         retStr = strcat("Timeout begins in ", ftos(remainingLeadTime + 1), " seconds!\n");
1703                 }
1704                 else {
1705                         retStr = strcat("Timeout begins in ", ftos(remainingLeadTime), " seconds!\n");
1706                 }
1707                 return retStr;
1708         }
1709         else if (timeoutStatus == 2) {
1710                 if (addOneSecond) {
1711                         retStr = strcat("Timeout ends in ", ftos(remainingTimeoutTime + 1), " seconds!\n");
1712                         //don't show messages like "Timeout ends in 0 seconds"...
1713                         if ((remainingTimeoutTime + 1) > 0)
1714                                 return retStr;
1715                         else
1716                                 return "";
1717                 }
1718                 else {
1719                         retStr = strcat("Timeout ends in ", ftos(remainingTimeoutTime), " seconds!\n");
1720                         //don't show messages like "Timeout ends in 0 seconds"...
1721                         if (remainingTimeoutTime > 0)
1722                                 return retStr;
1723                         else
1724                                 return "";
1725                 }
1726         }
1727         else return "";
1728 }
1729
1730 void player_powerups (void)
1731 {
1732         if((self.items & IT_USING_JETPACK) && !self.deadflag)
1733         {
1734                 SoundEntity_StartSound(self, CHAN_PLAYER, "misc/jetpack_fly.wav", VOL_BASE, cvar("g_jetpack_attenuation"));
1735                 self.modelflags |= MF_ROCKET;
1736         }
1737         else
1738         {
1739                 SoundEntity_StopSound(self, CHAN_PLAYER);
1740                 self.modelflags &~= MF_ROCKET;
1741         }
1742
1743         self.effects &~= (EF_RED | EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT | EF_FLAME);
1744
1745         if(!self.modelindex || self.deadflag) // don't apply the flags if the player is gibbed
1746                 return;
1747         
1748         Fire_ApplyDamage(self);
1749         Fire_ApplyEffect(self);
1750
1751         if (g_minstagib)
1752         {
1753                 self.effects |= EF_FULLBRIGHT;
1754
1755                 if (self.items & IT_STRENGTH)
1756                 {
1757                         play_countdown(self.strength_finished, "misc/poweroff.wav");
1758                         if (time > self.strength_finished)
1759                         {
1760                                 self.alpha = default_player_alpha;
1761                                 self.exteriorweaponentity.alpha = default_weapon_alpha;
1762                                 self.items &~= IT_STRENGTH;
1763                                 sprint(self, "^3Invisibility has worn off\n");
1764                         }
1765                 }
1766                 else
1767                 {
1768                         if (time < self.strength_finished)
1769                         {
1770                                 self.alpha = g_minstagib_invis_alpha;
1771                                 self.exteriorweaponentity.alpha = g_minstagib_invis_alpha;
1772                                 self.items |= IT_STRENGTH;
1773                                 sprint(self, "^3You are invisible\n");
1774                         }
1775                 }
1776
1777                 if (self.items & IT_INVINCIBLE)
1778                 {
1779                         play_countdown(self.invincible_finished, "misc/poweroff.wav");
1780                         if (time > self.invincible_finished)
1781                         {
1782                                 self.items = self.items - (self.items & IT_INVINCIBLE);
1783                                 sprint(self, "^3Speed has worn off\n");
1784                         }
1785                 }
1786                 else
1787                 {
1788                         if (time < self.invincible_finished)
1789                         {
1790                                 self.items = self.items | IT_INVINCIBLE;
1791                                 sprint(self, "^3You are on speed\n");
1792                         }
1793                 }
1794                 return;
1795         }
1796
1797         if (self.items & IT_STRENGTH)
1798         {
1799                 play_countdown(self.strength_finished, "misc/poweroff.wav");
1800                 self.effects = self.effects | (EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT);
1801                 if (time > self.strength_finished)
1802                 {
1803                         self.items = self.items - (self.items & IT_STRENGTH);
1804                         sprint(self, "^3Strength has worn off\n");
1805                 }
1806         }
1807         else
1808         {
1809                 if (time < self.strength_finished)
1810                 {
1811                         self.items = self.items | IT_STRENGTH;
1812                         sprint(self, "^3Strength infuses your weapons with devastating power\n");
1813                 }
1814         }
1815         if (self.items & IT_INVINCIBLE)
1816         {
1817                 play_countdown(self.invincible_finished, "misc/poweroff.wav");
1818                 self.effects = self.effects | (EF_RED | EF_ADDITIVE | EF_FULLBRIGHT);
1819                 if (time > self.invincible_finished)
1820                 {
1821                         self.items = self.items - (self.items & IT_INVINCIBLE);
1822                         sprint(self, "^3Shield has worn off\n");
1823                 }
1824         }
1825         else
1826         {
1827                 if (time < self.invincible_finished)
1828                 {
1829                         self.items = self.items | IT_INVINCIBLE;
1830                         sprint(self, "^3Shield surrounds you\n");
1831                 }
1832         }
1833
1834         if (cvar("g_fullbrightplayers"))
1835                 self.effects = self.effects | EF_FULLBRIGHT;
1836
1837         // midair gamemode: damage only while in the air
1838         // if in midair mode, being on ground grants temporary invulnerability
1839         // (this is so that multishot weapon don't clear the ground flag on the
1840         // first damage in the frame, leaving the player vulnerable to the
1841         // remaining hits in the same frame)
1842         if (self.flags & FL_ONGROUND)
1843         if (g_midair)
1844                 self.spawnshieldtime = max(self.spawnshieldtime, time + cvar("g_midair_shieldtime"));
1845
1846         if (time >= game_starttime)
1847         if (time < self.spawnshieldtime)
1848                 self.effects = self.effects | (EF_ADDITIVE | EF_FULLBRIGHT);
1849 }
1850
1851 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
1852 {
1853         if(current > stable)
1854                 return current;
1855         else if(current > stable - 0.25) // when close enough, "snap"
1856                 return stable;
1857         else
1858                 return min(stable, current + (stable - current) * regenfactor * regenframetime);
1859 }
1860
1861 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
1862 {
1863         if(current < stable)
1864                 return current;
1865         else if(current < stable + 0.25) // when close enough, "snap"
1866                 return stable;
1867         else
1868                 return max(stable, current + (stable - current) * rotfactor * rotframetime);
1869 }
1870
1871 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit)
1872 {
1873         if(current > rotstable)
1874         {
1875                 if(rotframetime > 0)
1876                 {
1877                         current = CalcRot(current, rotstable, rotfactor, rotframetime);
1878                         current = max(rotstable, current - rotlinear * rotframetime);
1879                 }
1880         }
1881         else if(current < regenstable)
1882         {
1883                 if(regenframetime > 0)
1884                 {
1885                         current = CalcRegen(current, regenstable, regenfactor, regenframetime);
1886                         current = min(regenstable, current + regenlinear * regenframetime);
1887                 }
1888         }
1889
1890         if(current > limit)
1891                 current = limit;
1892
1893         return current;
1894 }
1895
1896 void player_regen (void)
1897 {
1898         float minh, mina, minf, maxh, maxa, maxf, limith, limita, limitf, max_mod, regen_mod, rot_mod, limit_mod;
1899         maxh = cvar("g_balance_health_rotstable");
1900         maxa = cvar("g_balance_armor_rotstable");
1901         maxf = cvar("g_balance_fuel_rotstable");
1902         minh = cvar("g_balance_health_regenstable");
1903         mina = cvar("g_balance_armor_regenstable");
1904         minf = cvar("g_balance_fuel_regenstable");
1905         limith = cvar("g_balance_health_limit");
1906         limita = cvar("g_balance_armor_limit");
1907         limitf = cvar("g_balance_fuel_limit");
1908
1909         max_mod = regen_mod = rot_mod = limit_mod = 1;
1910
1911         if (self.runes & RUNE_REGEN)
1912         {
1913                 if (self.runes & CURSE_VENOM) // do we have both rune/curse?
1914                 {
1915                         regen_mod = cvar("g_balance_rune_regen_combo_regenrate");
1916                         max_mod = cvar("g_balance_rune_regen_combo_hpmod");
1917                         limit_mod = cvar("g_balance_rune_regen_combo_limitmod");
1918                 }
1919                 else
1920                 {
1921                         regen_mod = cvar("g_balance_rune_regen_regenrate");
1922                         max_mod = cvar("g_balance_rune_regen_hpmod");
1923                         limit_mod = cvar("g_balance_rune_regen_limitmod");
1924                 }
1925         }
1926         else if (self.runes & CURSE_VENOM)
1927         {
1928                 max_mod = cvar("g_balance_curse_venom_hpmod");
1929                 if (self.runes & RUNE_REGEN) // do we have both rune/curse?
1930                         rot_mod = cvar("g_balance_rune_regen_combo_rotrate");
1931                 else
1932                         rot_mod = cvar("g_balance_curse_venom_rotrate");
1933                 limit_mod = cvar("g_balance_curse_venom_limitmod");
1934                 //if (!self.runes & RUNE_REGEN)
1935                 //      rot_mod = cvar("g_balance_curse_venom_rotrate");
1936         }
1937         maxh = maxh * max_mod;
1938         //maxa = maxa * max_mod;
1939         //maxf = maxf * max_mod;
1940         minh = minh * max_mod;
1941         //mina = mina * max_mod;
1942         //minf = minf * max_mod;
1943         limith = limith * limit_mod;
1944         limita = limita * limit_mod;
1945         //limitf = limitf * limit_mod;
1946
1947         if(g_lms)
1948                 rot_mod = 0;
1949
1950         if (!g_minstagib && (!g_lms || cvar("g_lms_regenerate")))
1951         {
1952                 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);
1953                 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);
1954
1955                 // if player rotted to death...  die!
1956                 if(self.health < 1)
1957                         self.event_damage(self, self, 1, DEATH_ROT, self.origin, '0 0 0');
1958         }
1959
1960         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
1961                 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);
1962 }
1963
1964 float zoomstate_set;
1965 void SetZoomState(float z)
1966 {
1967         if(z != self.zoomstate)
1968         {
1969                 self.zoomstate = z;
1970                 ClientData_Touch(self);
1971         }
1972         zoomstate_set = 1;
1973 }
1974
1975 void GetPressedKeys(void) {
1976         if (self.movement_x > 0) // get if movement keys are pressed
1977         {       // forward key pressed
1978                 self.pressedkeys |= KEY_FORWARD;
1979                 self.pressedkeys &~= KEY_BACKWARD;
1980         }
1981         else if (self.movement_x < 0)
1982         {       // backward key pressed
1983                 self.pressedkeys |= KEY_BACKWARD;
1984                 self.pressedkeys &~= KEY_FORWARD;
1985         }
1986         else
1987         {       // no x input
1988                 self.pressedkeys &~= KEY_FORWARD;
1989                 self.pressedkeys &~= KEY_BACKWARD;
1990         }
1991
1992         if (self.movement_y > 0)
1993         {       // right key pressed
1994                 self.pressedkeys |= KEY_RIGHT;
1995                 self.pressedkeys &~= KEY_LEFT;
1996         }
1997         else if (self.movement_y < 0)
1998         {       // left key pressed
1999                 self.pressedkeys |= KEY_LEFT;
2000                 self.pressedkeys &~= KEY_RIGHT;
2001         }
2002         else
2003         {       // no y input
2004                 self.pressedkeys &~= KEY_RIGHT;
2005                 self.pressedkeys &~= KEY_LEFT;
2006         }
2007
2008         if (self.BUTTON_JUMP) // get if jump and crouch keys are pressed
2009                 self.pressedkeys |= KEY_JUMP;
2010         else
2011                 self.pressedkeys &~= KEY_JUMP;
2012         if (self.BUTTON_CROUCH)
2013                 self.pressedkeys |= KEY_CROUCH;
2014         else
2015                 self.pressedkeys &~= KEY_CROUCH;
2016 }
2017
2018 /*
2019 ======================
2020 spectate mode routines
2021 ======================
2022 */
2023 void SpectateCopy(entity spectatee) {
2024         self.kh_state = spectatee.kh_state;
2025         self.armortype = spectatee.armortype;
2026         self.armorvalue = spectatee.armorvalue;
2027         self.ammo_cells = spectatee.ammo_cells;
2028         self.ammo_shells = spectatee.ammo_shells;
2029         self.ammo_nails = spectatee.ammo_nails;
2030         self.ammo_rockets = spectatee.ammo_rockets;
2031         self.ammo_fuel = spectatee.ammo_fuel;
2032         self.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
2033         self.health = spectatee.health;
2034         self.impulse = 0;
2035         self.items = spectatee.items;
2036         self.metertime = spectatee.metertime;
2037         self.strength_finished = spectatee.strength_finished;
2038         self.invincible_finished = spectatee.invincible_finished;
2039         self.pressedkeys = spectatee.pressedkeys;
2040         self.weapons = spectatee.weapons;
2041         self.switchweapon = spectatee.switchweapon;
2042         self.weapon = spectatee.weapon;
2043         self.punchangle = spectatee.punchangle;
2044         self.view_ofs = spectatee.view_ofs;
2045         self.v_angle = spectatee.v_angle;
2046         self.velocity = spectatee.velocity;
2047         self.dmg_take = spectatee.dmg_take;
2048         self.dmg_save = spectatee.dmg_save;
2049         self.dmg_inflictor = spectatee.dmg_inflictor;
2050         self.angles = spectatee.v_angle;
2051         self.fixangle = TRUE;
2052         setorigin(self, spectatee.origin);
2053         setsize(self, spectatee.mins, spectatee.maxs);
2054         SetZoomState(spectatee.zoomstate);
2055 }
2056
2057 float SpectateUpdate() {
2058         if(!self.enemy)
2059                 return 0;
2060
2061         if (self == self.enemy)
2062                 return 0;
2063
2064         if(self.enemy.classname != "player")
2065                 return 0;
2066
2067         SpectateCopy(self.enemy);
2068
2069         return 1;
2070 }
2071
2072 float SpectateNext() {
2073         other = find(self.enemy, classname, "player");
2074         if (!other) {
2075                 other = find(other, classname, "player");
2076         }
2077         if (other) {
2078                 self.enemy = other;
2079         }
2080         if(self.enemy.classname == "player") {
2081                 msg_entity = self;
2082                 WriteByte(MSG_ONE, SVC_SETVIEW);
2083                 WriteEntity(MSG_ONE, self.enemy);
2084                 //stuffcmd(self, "set viewsize $tmpviewsize \n");
2085                 self.movetype = MOVETYPE_NONE;
2086                 if(!SpectateUpdate())
2087                         PutObserverInServer();
2088                 return 1;
2089         } else {
2090                 return 0;
2091         }
2092 }
2093
2094 /*
2095 =============
2096 ShowRespawnCountdown()
2097
2098 Update a respawn countdown display.
2099 =============
2100 */
2101 void ShowRespawnCountdown()
2102 {
2103         float number;
2104         if(self.deadflag == DEAD_NO) // just respawned?
2105                 return;
2106         else
2107         {
2108                 number = ceil(self.death_time - time);
2109                 if(number <= 0)
2110                         return;
2111                 if(number <= self.respawn_countdown)
2112                 {
2113                         self.respawn_countdown = number - 1;
2114                         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
2115                                 announce(self, strcat("announcer/robotic/", ftos(number), ".wav"));
2116                 }
2117         }
2118 }
2119
2120 void LeaveSpectatorMode()
2121 {
2122         if(isJoinAllowed()) {
2123                 if(!teams_matter || cvar("g_campaign") || cvar("g_balance_teams") || (self.wasplayer && cvar("g_changeteam_banned"))) {
2124                         self.classname = "player";
2125                         if(cvar("g_campaign") || cvar("g_balance_teams") || cvar("g_balance_teams_force"))
2126                                 JoinBestTeam(self, FALSE, TRUE);
2127                         if(cvar("g_campaign"))
2128                                 campaign_bots_may_start = 1;
2129                         PutClientInServer();
2130                         if(self.classname == "player")
2131                                 bprint ("^4", self.netname, "^4 is playing now\n");
2132                         if(!cvar("g_campaign"))
2133                                 centerprint(self,""); // clear MOTD
2134                         return;
2135                 } else {
2136                         stuffcmd(self,"menu_showteamselect\n");
2137                         return;
2138                 }
2139         }
2140         else {
2141                 //player may not join because of g_maxplayers is set
2142                 centerprint_atprio(self, CENTERPRIO_MAPVOTE, PREVENT_JOIN_TEXT);
2143         }
2144 }
2145
2146 /**
2147  * Determines whether the player is allowed to join. This depends on cvar
2148  * g_maxplayers, if it isn't used this function always return TRUE, otherwise
2149  * it checks whether the number of currently playing players exceeds g_maxplayers.
2150  * @return bool TRUE if the player is allowed to join, false otherwise
2151  */
2152 float isJoinAllowed() {
2153         if (!cvar("g_maxplayers"))
2154                 return TRUE;
2155
2156         local entity e;
2157         local float currentlyPlaying;
2158         FOR_EACH_REALPLAYER(e) {
2159                 if(e.classname == "player")
2160                         currentlyPlaying += 1;
2161         }
2162         if(currentlyPlaying < cvar("g_maxplayers"))
2163                 return TRUE;
2164
2165         return FALSE;
2166 }
2167
2168 /**
2169  * Checks whether the client is an observer or spectator, if so, he will get kicked after
2170  * g_maxplayers_spectator_blocktime seconds
2171  */
2172 void checkSpectatorBlock() {
2173         if(self.classname == "spectator" || self.classname == "observer") {
2174                 if( time > (self.spectatortime + cvar("g_maxplayers_spectator_blocktime")) ) {
2175                         sprint(self, "^7You were kicked from the server because you are spectator and spectators aren't allowed at the moment.\n");
2176                         dropclient(self);
2177                 }
2178         }
2179 }
2180
2181 float vercmp_recursive(string v1, string v2)
2182 {
2183         float dot1, dot2;
2184         string s1, s2;
2185         float r;
2186
2187         dot1 = strstrofs(v1, ".", 0);
2188         dot2 = strstrofs(v2, ".", 0);
2189         if(dot1 == -1)
2190                 s1 = v1;
2191         else
2192                 s1 = substring(v1, 0, dot1);
2193         if(dot2 == -1)
2194                 s2 = v2;
2195         else
2196                 s2 = substring(v2, 0, dot2);
2197
2198         r = stof(s1) - stof(s2);
2199         if(r != 0)
2200                 return r;
2201
2202         r = strcasecmp(s1, s2);
2203         if(r != 0)
2204                 return r;
2205
2206         if(dot1 == -1)
2207                 if(dot2 == -1)
2208                         return 0;
2209                 else
2210                         return -1;
2211         else
2212                 if(dot2 == -1)
2213                         return 1;
2214                 else
2215                         return vercmp_recursive(substring(v1, dot1 + 1, 999), substring(v2, dot2 + 1, 999));
2216 }
2217
2218 float vercmp(string v1, string v2)
2219 {
2220         if(strcasecmp(v1, v2) == 0) // early out check
2221                 return 0;
2222         return vercmp_recursive(v1, v2);
2223 }
2224
2225 void ObserverThink()
2226 {
2227         if (self.flags & FL_JUMPRELEASED) {
2228                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2229                         self.welcomemessage_time = 0;
2230                         self.flags &~= FL_JUMPRELEASED;
2231                         self.flags |= FL_SPAWNING;
2232                 } else if(self.BUTTON_ATCK && !self.version_mismatch) {
2233                         self.welcomemessage_time = 0;
2234                         self.flags &~= FL_JUMPRELEASED;
2235                         if(SpectateNext() == 1) {
2236                                 self.classname = "spectator";
2237                         }
2238                 }
2239         } else {
2240                 if (!(self.BUTTON_ATCK || self.BUTTON_JUMP)) {
2241                         self.flags |= FL_JUMPRELEASED;
2242                         if(self.flags & FL_SPAWNING)
2243                         {
2244                                 self.flags &~= FL_SPAWNING;
2245                                 LeaveSpectatorMode();
2246                                 return;
2247                         }
2248                 }
2249         }
2250         PrintWelcomeMessage(self);
2251 }
2252
2253 void SpectatorThink()
2254 {
2255         if (self.flags & FL_JUMPRELEASED) {
2256                 if (self.BUTTON_JUMP && !self.version_mismatch) {
2257                         self.welcomemessage_time = 0;
2258                         self.flags &~= FL_JUMPRELEASED;
2259                         self.flags |= FL_SPAWNING;
2260                 } else if(self.BUTTON_ATCK) {
2261                         self.welcomemessage_time = 0;
2262                         self.flags &~= FL_JUMPRELEASED;
2263                         if(SpectateNext() == 1) {
2264                                 self.classname = "spectator";
2265                         } else {
2266                                 self.classname = "observer";
2267                                 PutClientInServer();
2268                         }
2269                 } else if (self.BUTTON_ATCK2) {
2270                         self.welcomemessage_time = 0;
2271                         self.flags &~= FL_JUMPRELEASED;
2272                         self.classname = "observer";
2273                         PutClientInServer();
2274                 } else {
2275                         if(!SpectateUpdate())
2276                                 PutObserverInServer();
2277                 }
2278         } else {
2279                 if (!(self.BUTTON_ATCK || self.BUTTON_ATCK2)) {
2280                         self.flags |= FL_JUMPRELEASED;
2281                         if(self.flags & FL_SPAWNING)
2282                         {
2283                                 self.flags &~= FL_SPAWNING;
2284                                 LeaveSpectatorMode();
2285                                 return;
2286                         }
2287                 }
2288         }
2289         PrintWelcomeMessage(self);
2290         self.flags |= FL_CLIENT | FL_NOTARGET;
2291 }
2292
2293 .float touchexplode_time;
2294
2295 /*
2296 =============
2297 PlayerPreThink
2298
2299 Called every frame for each client before the physics are run
2300 =============
2301 */
2302 void() ctf_setstatus;
2303 void() nexball_setstatus;
2304 .float items_added;
2305 void PlayerPreThink (void)
2306 {
2307         self.stat_game_starttime = game_starttime;
2308         self.stat_allow_oldnexbeam = cvar("g_allow_oldnexbeam");
2309         self.stat_leadlimit = cvar("leadlimit");
2310
2311         if(blockSpectators && frametime)
2312                 // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2313                 checkSpectatorBlock();
2314
2315         zoomstate_set = 0;
2316
2317         if(self.netname_previous != self.netname)
2318         {
2319                 if(cvar("sv_eventlog"))
2320                         GameLogEcho(strcat(":name:", ftos(self.playerid), ":", self.netname));
2321                 if(self.netname_previous)
2322                         strunzone(self.netname_previous);
2323                 self.netname_previous = strzone(self.netname);
2324         }
2325
2326         // version nagging
2327         if(self.version_nagtime)
2328                 if(self.cvar_g_nexuizversion)
2329                         if(time > self.version_nagtime)
2330                         {
2331                                 if(strstr(self.cvar_g_nexuizversion, "svn", 0) < 0)
2332                                 {
2333                                         if(strstr(cvar_string("g_nexuizversion"), "svn", 0) >= 0)
2334                                         {
2335                                                 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");
2336                                                 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"));
2337                                         }
2338                                         else
2339                                         {
2340                                                 float r;
2341                                                 r = vercmp(self.cvar_g_nexuizversion, cvar_string("g_nexuizversion"));
2342                                                 if(r < 0)
2343                                                 {
2344                                                         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");
2345                                                         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"));
2346                                                 }
2347                                                 else if(r > 0)
2348                                                 {
2349                                                         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");
2350                                                         sprint(self, strcat("\{1}^1NOTE: ^7the server is running ^3Nexuiz ", cvar_string("g_nexuizversion"), "^7, you have ^3Nexuiz ", self.cvar_g_nexuizversion, "^1\n"));
2351                                                 }
2352                                         }
2353                                 }
2354                                 self.version_nagtime = 0;
2355                         }
2356
2357         // GOD MODE info
2358         if(!(self.flags & FL_GODMODE)) if(self.max_armorvalue)
2359         {
2360                 sprint(self, strcat("godmode saved you ", ftos(self.max_armorvalue), " units of damage, cheater!\n"));
2361                 self.max_armorvalue = 0;
2362         }
2363
2364 #ifdef TETRIS
2365         if (TetrisPreFrame())
2366                 return;
2367 #endif
2368
2369         if(self.classname == "player") {
2370 //              if(self.netname == "Wazat")
2371 //                      bprint(self.classname, "\n");
2372
2373                 CheckRules_Player();
2374
2375                 PrintWelcomeMessage(self);
2376
2377                 if (intermission_running)
2378                 {
2379                         IntermissionThink ();   // otherwise a button could be missed between
2380                         return;                                 // the think tics
2381                 }
2382
2383                 if(self.teleport_time)
2384                 if(time > self.teleport_time)
2385                 {
2386                         self.teleport_time = 0;
2387                         self.effects = self.effects - (self.effects & EF_NODRAW);
2388                 }
2389
2390                 Nixnex_GiveCurrentWeapon();
2391
2392                 if(frametime > 0) // don't do this in cl_movement frames, just in server ticks
2393                         UpdateSelectedPlayer();
2394
2395                 //don't allow the player to turn around while game is paused!
2396                 if(timeoutStatus == 2) {
2397                         self.v_angle = self.lastV_angle;
2398                         self.angles = self.lastV_angle;
2399                         self.fixangle = TRUE;
2400                 }
2401
2402                 if(frametime)
2403                         player_powerups();
2404
2405                 if (self.deadflag != DEAD_NO)
2406                 {
2407                         float button_pressed, force_respawn;
2408                         if(self.personal && g_race_qualifying)
2409                         {
2410                                 if(time > self.death_time)
2411                                 {
2412                                         self.death_time = time + 1; // only retry once a second
2413                                         respawn();
2414                                         self.impulse = 141;
2415                                 }
2416                         }
2417                         else
2418                         {
2419                                 if(frametime)
2420                                         player_anim();
2421                                 button_pressed = (self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE);
2422                                 force_respawn = (g_lms || cvar("g_forced_respawn"));
2423                                 if (self.deadflag == DEAD_DYING)
2424                                 {
2425                                         if(force_respawn)
2426                                                 self.deadflag = DEAD_RESPAWNING;
2427                                         else if(!button_pressed)
2428                                                 self.deadflag = DEAD_DEAD;
2429                                 }
2430                                 else if (self.deadflag == DEAD_DEAD)
2431                                 {
2432                                         if(button_pressed)
2433                                                 self.deadflag = DEAD_RESPAWNABLE;
2434                                 }
2435                                 else if (self.deadflag == DEAD_RESPAWNABLE)
2436                                 {
2437                                         if(!button_pressed)
2438                                                 self.deadflag = DEAD_RESPAWNING;
2439                                 }
2440                                 else if (self.deadflag == DEAD_RESPAWNING)
2441                                 {
2442                                         if(time > self.death_time)
2443                                         {
2444                                                 self.death_time = time + 1; // only retry once a second
2445                                                 respawn();
2446                                         }
2447                                 }
2448                                 ShowRespawnCountdown();
2449                         }
2450                         return;
2451                 }
2452
2453                 if(g_touchexplode)
2454                 if(time > self.touchexplode_time)
2455                 if(self.classname == "player")
2456                 if(self.deadflag == DEAD_NO)
2457                 if not(IS_INDEPENDENT_PLAYER(self))
2458                 FOR_EACH_PLAYER(other) if(self != other)
2459                 {
2460                         if(time > other.touchexplode_time)
2461                         if(other.classname == "player")
2462                         if(other.deadflag == DEAD_NO)
2463                         if not(IS_INDEPENDENT_PLAYER(other))
2464                         if(boxesoverlap(self.absmin, self.absmax, other.absmin, other.absmax))
2465                         {
2466                                 PlayerTouchExplode(self, other);
2467                                 self.touchexplode_time = other.touchexplode_time = time + 0.2;
2468                         }
2469                 }
2470
2471                 if(g_lms && !self.deadflag && cvar("g_lms_campcheck_interval"))
2472                 {
2473                         vector dist;
2474
2475                         // calculate player movement (in 2 dimensions only, so jumping on one spot doesn't count as movement)
2476                         dist = self.prevorigin - self.origin;
2477                         dist_z = 0;
2478                         self.lms_traveled_distance += fabs(vlen(dist));
2479
2480                         if((cvar("g_campaign") && !campaign_bots_may_start) || (time < game_starttime))
2481                         {
2482                                 self.lms_nextcheck = time + cvar("g_lms_campcheck_interval")*2;
2483                                 self.lms_traveled_distance = 0;
2484                         }
2485
2486                         if(time > self.lms_nextcheck)
2487                         {
2488                                 //sprint(self, "distance: ", ftos(self.lms_traveled_distance), "\n");
2489                                 if(self.lms_traveled_distance < cvar("g_lms_campcheck_distance"))
2490                                 {
2491                                         centerprint(self, cvar_string("g_lms_campcheck_message"));
2492                                         // FIXME KadaverJack: gibbing player here causes playermodel to bounce around, instead of eye.md3
2493                                         // I wasn't able to find out WHY that happens, so I put a workaround in place that shall prevent players from being gibbed :(
2494                                         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');
2495                                 }
2496                                 self.lms_nextcheck = time + cvar("g_lms_campcheck_interval");
2497                                 self.lms_traveled_distance = 0;
2498                         }
2499                 }
2500
2501                 self.prevorigin = self.origin;
2502
2503                 if ((self.BUTTON_CROUCH && !self.hook.state) || self.health <= g_bloodloss)
2504                 {
2505                         if (!self.crouch)
2506                         {
2507                                 self.crouch = TRUE;
2508                                 self.view_ofs = PL_CROUCH_VIEW_OFS;
2509                                 setsize (self, PL_CROUCH_MIN, PL_CROUCH_MAX);
2510                                 setanim(self, self.anim_duck, FALSE, TRUE, TRUE);
2511                         }
2512                 }
2513                 else
2514                 {
2515                         if (self.crouch)
2516                         {
2517                                 tracebox(self.origin, PL_MIN, PL_MAX, self.origin, FALSE, self);
2518                                 if (!trace_startsolid)
2519                                 {
2520                                         self.crouch = FALSE;
2521                                         self.view_ofs = PL_VIEW_OFS;
2522                                         setsize (self, PL_MIN, PL_MAX);
2523                                 }
2524                         }
2525                 }
2526
2527                 if(self.health <= g_bloodloss && self.deadflag == DEAD_NO)
2528                 {
2529                         if(self.bloodloss_timer < time)
2530                         {
2531                                 self.event_damage(self, self, 1, DEATH_ROT, self.origin, '0 0 0');
2532                                 self.bloodloss_timer = time + 0.5 + random() * 0.5;
2533                         }
2534                 }
2535
2536                 FixPlayermodel();
2537
2538                 GrapplingHookFrame();
2539
2540                 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2541                 //if(frametime)
2542                 {
2543                         self.items &~= self.items_added;
2544
2545                         W_WeaponFrame();
2546
2547                         self.items_added = 0;
2548                         if(self.items & IT_JETPACK)
2549                                 if(self.items & IT_FUEL_REGEN || self.ammo_fuel >= 0.01)
2550                                         self.items_added |= IT_FUEL;
2551
2552                         self.items |= self.items_added;
2553                 }
2554
2555                 player_regen();
2556                 if(frametime)
2557                         player_anim();
2558
2559                 if (g_minstagib)
2560                         minstagib_ammocheck();
2561
2562                 ctf_setstatus();
2563                 nexball_setstatus();
2564
2565                 self.dmg_team = max(0, self.dmg_team - cvar("g_teamdamage_resetspeed") * frametime);
2566
2567                 //self.angles_y=self.v_angle_y + 90;   // temp
2568         } else if(gameover) {
2569                 if (intermission_running)
2570                         IntermissionThink ();   // otherwise a button could be missed between
2571                 return;
2572         } else if(self.classname == "observer") {
2573                 ObserverThink();
2574         } else if(self.classname == "spectator") {
2575                 SpectatorThink();
2576         }
2577
2578         if(!zoomstate_set)
2579                 SetZoomState(self.BUTTON_ZOOM || (self.BUTTON_ATCK2 && self.weapon == WEP_NEX));
2580
2581         float oldspectatee_status;
2582         oldspectatee_status = self.spectatee_status;
2583         if(self.classname == "spectator")
2584                 self.spectatee_status = num_for_edict(self.enemy);
2585         else if(self.classname == "observer")
2586                 self.spectatee_status = num_for_edict(self);
2587         else
2588                 self.spectatee_status = 0;
2589         if(self.spectatee_status != oldspectatee_status)
2590         {
2591                 ClientData_Touch(self);
2592                 if(g_race || g_cts)
2593                         race_InitSpectator();
2594         }
2595
2596         if(self.teamkill_soundtime)
2597         if(time > self.teamkill_soundtime)
2598         {
2599                 self.teamkill_soundtime = 0;
2600
2601                 entity oldpusher, oldself;
2602
2603                 oldself = self; self = self.teamkill_soundsource;
2604                 oldpusher = self.pusher; self.pusher = oldself;
2605
2606                 PlayerSound(playersound_teamshoot, CHAN_VOICE, VOICETYPE_LASTATTACKER_ONLY);
2607
2608                 self.pusher = oldpusher;
2609                 self = oldself;
2610         }
2611
2612         if(self.taunt_soundtime)
2613         if(time > self.taunt_soundtime)
2614         {
2615                 self.taunt_soundtime = 0;
2616                 PlayerSound(playersound_taunt, CHAN_VOICE, VOICETYPE_AUTOTAUNT);
2617         }
2618
2619         target_voicescript_next(self);
2620 }
2621
2622 // on dragger:
2623 .entity dragentity;
2624 .float draggravity;
2625 .float dragspeed; // speed of mouse wheel action
2626 .float dragdistance; // distance of dragentity's draglocalvector from view_ofs
2627 .vector draglocalvector; // local attachment vector of the dragentity
2628 .float draglocalangle;
2629 // on draggee:
2630 .entity draggedby;
2631 .float dragmovetype;
2632 void Drag_Begin(entity dragger, entity draggee, vector touchpoint)
2633 {
2634         float tagscale;
2635
2636         draggee.dragmovetype = draggee.movetype;
2637         draggee.draggravity = draggee.gravity;
2638         draggee.movetype = MOVETYPE_WALK;
2639         draggee.gravity = 0.00001;
2640         draggee.flags &~= FL_ONGROUND;
2641         draggee.draggedby = dragger;
2642
2643         dragger.dragentity = draggee;
2644
2645         dragger.dragdistance = vlen(touchpoint - dragger.origin - dragger.view_ofs);
2646         dragger.draglocalangle = draggee.angles_y - dragger.v_angle_y;
2647         touchpoint = touchpoint - gettaginfo(draggee, 0);
2648         tagscale = pow(vlen(v_forward), -2);
2649         dragger.draglocalvector_x = touchpoint * v_forward * tagscale;
2650         dragger.draglocalvector_y = touchpoint * v_right * tagscale;
2651         dragger.draglocalvector_z = touchpoint * v_up * tagscale;
2652
2653         dragger.dragspeed = 64;
2654 }
2655
2656 void Drag_Finish(entity dragger)
2657 {
2658         entity draggee;
2659         draggee = dragger.dragentity;
2660         if(dragger)
2661                 dragger.dragentity = world;
2662         draggee.draggedby = world;
2663         draggee.movetype = draggee.dragmovetype;
2664         draggee.gravity = draggee.draggravity;
2665
2666         switch(draggee.movetype)
2667         {
2668                 case MOVETYPE_TOSS:
2669                 case MOVETYPE_WALK:
2670                 case MOVETYPE_STEP:
2671                 case MOVETYPE_FLYMISSILE:
2672                 case MOVETYPE_BOUNCE:
2673                 case MOVETYPE_BOUNCEMISSILE:
2674                         break;
2675                 default:
2676                         draggee.velocity = '0 0 0';
2677                         break;
2678         }
2679
2680         if((draggee.flags & FL_ITEM) && (vlen(draggee.velocity) < 32))
2681         {
2682                 draggee.velocity = '0 0 0';
2683                 draggee.flags |= FL_ONGROUND; // floating items are FUN
2684         }
2685 }
2686
2687 float Drag_IsDraggable(entity draggee)
2688 {
2689         // TODO add more checks for bad stuff here
2690         if(draggee.classname == "func_bobbing")
2691                 return FALSE;
2692         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)
2693                 return FALSE;
2694         if(draggee.classname == "plat")
2695                 return FALSE;
2696         if(draggee.classname == "func_button")
2697                 return FALSE;
2698         if(draggee.model == "")
2699                 return FALSE;
2700         if(draggee.classname == "spectator")
2701                 return FALSE;
2702         if(draggee.classname == "observer")
2703                 return FALSE;
2704         if(draggee.classname == "exteriorweaponentity")
2705                 return FALSE;
2706
2707         return TRUE;
2708 }
2709
2710 float Drag_MayChangeAngles(entity draggee)
2711 {
2712         // TODO add more checks for bad stuff here
2713         if(substring(draggee.model, 0, 1) == "*")
2714                 return FALSE;
2715         return TRUE;
2716 }
2717
2718 void Drag_MoveForward(entity dragger)
2719 {
2720         dragger.dragdistance += dragger.dragspeed;
2721 }
2722
2723 void Drag_SetSpeed(entity dragger, float s)
2724 {
2725         dragger.dragspeed = pow(2, s);
2726 }
2727
2728 void Drag_MoveBackward(entity dragger)
2729 {
2730         dragger.dragdistance = max(0, dragger.dragdistance - dragger.dragspeed);
2731 }
2732
2733 void Drag_Update(entity dragger)
2734 {
2735         vector curorigin, neworigin, goodvelocity;
2736         float f;
2737         entity draggee;
2738
2739         draggee = dragger.dragentity;
2740         draggee.flags &~= FL_ONGROUND;
2741
2742         curorigin = gettaginfo(draggee, 0);
2743         curorigin = curorigin + v_forward * dragger.draglocalvector_x + v_right * dragger.draglocalvector_y + v_up * dragger.draglocalvector_z;
2744         makevectors(dragger.v_angle);
2745         neworigin = dragger.origin + dragger.view_ofs + v_forward * dragger.dragdistance;
2746         goodvelocity = (neworigin - curorigin) * (1 / frametime);
2747
2748         while(draggee.angles_y - dragger.v_angle_y - dragger.draglocalangle > 180)
2749                 dragger.draglocalangle += 360;
2750         while(draggee.angles_y - dragger.v_angle_y - dragger.draglocalangle <= -180)
2751                 dragger.draglocalangle -= 360;
2752
2753         f = min(frametime * 10, 1);
2754         draggee.velocity = draggee.velocity * (1 - f) + goodvelocity * f;
2755
2756         if(Drag_MayChangeAngles(draggee))
2757                 draggee.angles_y = draggee.angles_y * (1 - f) + (dragger.v_angle_y + dragger.draglocalangle) * f;
2758
2759         draggee.ltime = max(servertime + serverframetime, draggee.ltime); // fixes func_train breakage
2760
2761         te_lightning1(dragger, dragger.origin + dragger.view_ofs, curorigin);
2762 }
2763
2764 float Drag_CanDrag(entity dragger)
2765 {
2766         return (dragger.deadflag == DEAD_NO) || (dragger.classname == "player");
2767 }
2768
2769 float Drag_IsDragging(entity dragger)
2770 {
2771         if(!dragger.dragentity)
2772                 return FALSE;
2773         if(wasfreed(dragger.dragentity) || dragger.dragentity.draggedby != dragger)
2774         {
2775                 dragger.dragentity = world;
2776                 return FALSE;
2777         }
2778         if(!Drag_CanDrag(dragger) || !Drag_IsDraggable(dragger.dragentity))
2779         {
2780                 Drag_Finish(dragger);
2781                 return FALSE;
2782         }
2783         return TRUE;
2784 }
2785
2786 void Drag_MoveDrag(entity from, entity to)
2787 {
2788         if(from.draggedby)
2789         {
2790                 to.draggedby = from.draggedby;
2791                 to.draggedby.dragentity = to;
2792                 from.draggedby = world;
2793         }
2794 }
2795
2796 /*
2797 =============
2798 PlayerPostThink
2799
2800 Called every frame for each client after the physics are run
2801 =============
2802 */
2803 .float idlekick_lasttimeleft;
2804 void PlayerPostThink (void)
2805 {
2806         // Savage: Check for nameless players
2807         if (strlen(self.netname) < 1) {
2808                 self.netname = "Player";
2809                 stuffcmd(self, "seta _cl_name Player\n");
2810         }
2811
2812         if(sv_maxidle && frametime)
2813         {
2814                 // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2815                 float timeleft;
2816                 timeleft = ceil(sv_maxidle - (time - self.parm_idlesince));
2817                 if(timeleft <= 0)
2818                 {
2819                         bprint("^3", self.netname, "^3 was kicked for idling.\n");
2820                         announce(self, "announcer/robotic/terminated.wav");
2821                         dropclient(self);
2822                         return;
2823                 }
2824                 else if(timeleft <= 10)
2825                 {
2826                         if(timeleft != self.idlekick_lasttimeleft)
2827                         {
2828                                 centerprint_atprio(self, CENTERPRIO_IDLEKICK, strcat("^3Stop idling!\n^3Disconnecting in ", ftos(timeleft), "..."));
2829                                 announce(self, strcat("announcer/robotic/", ftos(timeleft), ".wav"));
2830                         }
2831                 }
2832                 else
2833                 {
2834                         centerprint_expire(self, CENTERPRIO_IDLEKICK);
2835                 }
2836                 self.idlekick_lasttimeleft = timeleft;
2837         }
2838
2839 #ifdef TETRIS
2840         if(self.impulse == 100)
2841                 ImpulseCommands();
2842         if (TetrisPostFrame())
2843                 return;
2844 #endif
2845
2846         if(sv_cheats || self.maycheat)
2847                 if(Drag_CanDrag(self))
2848                         if(self.BUTTON_DRAG)
2849                                 if(!self.dragentity)
2850                                         if(self.cursor_trace_ent)
2851                                                 if(Drag_IsDraggable(self.cursor_trace_ent))
2852                                                 {
2853                                                         if(self.cursor_trace_ent.draggedby)
2854                                                                 Drag_Finish(self.cursor_trace_ent.draggedby);
2855                                                         if(self.cursor_trace_ent.tag_entity)
2856                                                                 detach_sameorigin(self.cursor_trace_ent);
2857                                                         Drag_Begin(self, self.cursor_trace_ent, self.cursor_trace_endpos);
2858                                                 }
2859
2860         if(Drag_IsDragging(self))
2861         {
2862                 if(self.BUTTON_DRAG)
2863                 {
2864                         if(self.impulse == 10 || self.impulse == 15 || self.impulse == 18)
2865                         {
2866                                 Drag_MoveForward(self);
2867                                 self.impulse = 0;
2868                         }
2869                         else if(self.impulse == 12 || self.impulse == 16 || self.impulse == 19)
2870                         {
2871                                 Drag_MoveBackward(self);
2872                                 self.impulse = 0;
2873                         }
2874                         else if(self.impulse >= 1 && self.impulse <= 9)
2875                         {
2876                                 Drag_SetSpeed(self, self.impulse - 1);
2877                         }
2878                         else if(self.impulse == 14)
2879                         {
2880                                 Drag_SetSpeed(self, 9);
2881                         }
2882
2883                         if(frametime)
2884                                 Drag_Update(self);
2885                 }
2886                 else
2887                 {
2888                         Drag_Finish(self);
2889                 }
2890         }
2891
2892         if(self.classname == "player") {
2893                 CheckRules_Player();
2894                 UpdateChatBubble();
2895                 UpdateTeamBubble();
2896                 if (self.impulse)
2897                         ImpulseCommands();
2898                 if (intermission_running)
2899                         return;         // intermission or finale
2900
2901                 GetPressedKeys();
2902         } else if (self.classname == "observer") {
2903                 //do nothing
2904         } else if (self.classname == "spectator") {
2905                 //do nothing
2906         }
2907
2908         /*
2909         float i;
2910         for(i = 0; i < 1000; ++i)
2911         {
2912                 vector end;
2913                 end = self.origin + '0 0 1024' + 512 * randomvec();
2914                 tracebox(self.origin, self.mins, self.maxs, end, MOVE_NORMAL, self);
2915                 if(trace_fraction < 1)
2916                 if(!(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
2917                 {
2918                         print("I HIT SOLID: ", vtos(self.origin), " -> ", vtos(end), "\n");
2919                         break;
2920                 }
2921         }
2922         */
2923
2924         Arena_Warmup();
2925
2926         //pointparticles(particleeffectnum("machinegun_impact"), self.origin + self.view_ofs + '0 0 7', '0 0 0', 1);
2927
2928         if(self.waypointsprite_attachedforcarrier)
2929                 WaypointSprite_UpdateHealth(self.waypointsprite_attachedforcarrier, '1 0 0' * healtharmor_maxdamage(self.health, self.armorvalue, cvar("g_balance_armor_blockpercent")));
2930 }