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