]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/main.qc
Merge branch 'TimePath/strcpy' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / main.qc
1 #include "main.qh"
2
3 #include "defs.qh"
4 #include <common/ent_cs.qh>
5 #include "miscfunctions.qh"
6 #include <common/effects/effect.qh>
7 #include <common/effects/qc/_mod.qh>
8 #include <common/effects/all.qh>
9 #include <common/effects/all.inc>
10 #include "hud/_mod.qh"
11 #include "mapvoting.qh"
12 #include "mutators/events.qh"
13 #include "hud/panel/scoreboard.qh"
14 #include "hud/panel/quickmenu.qh"
15 #include "shownames.qh"
16 #include <common/t_items.qh>
17 #include "wall.qh"
18 #include "weapons/projectile.qh"
19 #include <common/deathtypes/all.qh>
20 #include <common/items/_mod.qh>
21 #include <common/mapinfo.qh>
22 #include <common/minigames/cl_minigames.qh>
23 #include <common/minigames/cl_minigames_hud.qh>
24 #include <common/net_linked.qh>
25 #include <common/net_notice.qh>
26 #include <common/scores.qh>
27 #include <common/triggers/include.qh>
28 #include <common/vehicles/all.qh>
29 #include <lib/csqcmodel/cl_model.qh>
30 #include <lib/csqcmodel/interpolate.qh>
31 #include <lib/warpzone/client.qh>
32
33 // --------------------------------------------------------------------------
34 // BEGIN REQUIRED CSQC FUNCTIONS
35 //include "main.qh"
36
37 #define DP_CSQC_ENTITY_REMOVE_IS_B0RKED
38
39 void draw_cursor(vector pos, vector ofs, string img, vector col, float a)
40 {
41         ofs = vec2(ofs.x * SIZE_CURSOR.x, ofs.y * SIZE_CURSOR.y);
42         drawpic(pos - ofs, strcat(draw_currentSkin, img), SIZE_CURSOR, col, a, DRAWFLAG_NORMAL);
43 }
44
45 void draw_cursor_normal(vector pos, vector col, float a)
46 {
47         draw_cursor(pos, OFFSET_CURSOR, "/cursor", col, a);
48 }
49
50 void LoadMenuSkinValues()
51 {
52         int fh = -1;
53         if(cvar_string("menu_skin") != "")
54         {
55                 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
56                 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
57         }
58         if(fh < 0 && cvar_defstring("menu_skin") != "")
59         {
60                 cvar_set("menu_skin", cvar_defstring("menu_skin"));
61                 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
62                 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
63         }
64         if(fh < 0)
65         {
66                 draw_currentSkin = "gfx/menu/default";
67                 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
68         }
69
70         draw_currentSkin = strzone(draw_currentSkin);
71
72         if(fh >= 0)
73         {
74                 string s;
75                 while((s = fgets(fh)))
76                 {
77                         int n = tokenize_console(s);
78                         if (n < 2)
79                                 continue;
80                         if(substring(argv(0), 0, 2) == "//")
81                                 continue;
82                         if(argv(0) == "SIZE_CURSOR")
83                                 SIZE_CURSOR = stov(substring(s, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
84                         else if(argv(0) == "OFFSET_CURSOR")
85                                 OFFSET_CURSOR = stov(substring(s, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
86                 }
87                 fclose(fh);
88         }
89 }
90
91 // CSQC_Init : Called every time the CSQC code is initialized (essentially at map load)
92 // Useful for precaching things
93
94 void ConsoleCommand_macro_init();
95 void CSQC_Init()
96 {
97         prvm_language = strzone(cvar_string("prvm_language"));
98
99 #ifdef WATERMARK
100         LOG_INFOF("^4CSQC Build information: ^1%s", WATERMARK);
101 #endif
102
103         {
104                 int i = 0;
105                 for ( ; i < 255; ++i)
106                         if (getplayerkeyvalue(i, "viewentity") == "")
107                                 break;
108                 maxclients = i;
109         }
110
111         // needs to be done so early because of the constants they create
112         static_init();
113         static_init_late();
114         static_init_precache();
115
116         binddb = db_create();
117         tempdb = db_create();
118         ClientProgsDB = db_load("client.db");
119
120         draw_endBoldFont();
121
122         //registercommand("hud_configure");
123         //registercommand("hud_save");
124         //registercommand("menu_action");
125
126         ConsoleCommand_macro_init();
127
128         registercvar("hud_usecsqc", "1");
129         registercvar("scoreboard_columns", "default");
130
131         registercvar("cl_nade_type", "3");
132         registercvar("cl_pokenade_type", "zombie");
133
134         registercvar("cl_jumpspeedcap_min", "");
135         registercvar("cl_jumpspeedcap_max", "");
136
137         registercvar("cl_shootfromfixedorigin", "");
138
139         registercvar("cl_multijump", "1");
140
141         registercvar("cl_spawn_near_teammate", "1");
142
143         if(autocvar_cl_lockview)
144                 cvar_set("cl_lockview", "0");
145
146         gametype = NULL;
147
148         postinit = false;
149
150         calledhooks = 0;
151
152         teams = Sort_Spawn();
153         players = Sort_Spawn();
154
155         GetTeam(NUM_SPECTATOR, true); // add specs first
156
157         for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
158                 weapon_accuracy[w] = -1;
159
160         // precaches
161
162         if(autocvar_cl_reticle)
163         {
164                 precache_pic("gfx/reticle_normal");
165                 // weapon reticles are precached in weapon files
166         }
167
168         {
169                 get_mi_min_max_texcoords(1); // try the CLEVER way first
170                 minimapname = strcat("gfx/", mi_shortname, "_radar.tga");
171                 shortmapname = mi_shortname;
172
173                 if (precache_pic(minimapname) == "")
174                 {
175                         // but maybe we have a non-clever minimap
176                         minimapname = strcat("gfx/", mi_shortname, "_mini.tga");
177                         if (precache_pic(minimapname) == "")
178                                 minimapname = ""; // FAIL
179                         else
180                                 get_mi_min_max_texcoords(0); // load new texcoords
181                 }
182
183                 mi_center = (mi_min + mi_max) * 0.5;
184                 mi_scale = mi_max - mi_min;
185                 minimapname = strzone(minimapname);
186         }
187
188         hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
189         LoadMenuSkinValues();
190 }
191
192 // CSQC_Shutdown : Called every time the CSQC code is shutdown (changing maps, quitting, etc)
193 void Shutdown()
194 {
195         WarpZone_Shutdown();
196
197         delete(teams);
198         delete(players);
199         db_close(binddb);
200         db_close(tempdb);
201         if(autocvar_cl_db_saveasdump)
202                 db_dump(ClientProgsDB, "client.db");
203         else
204                 db_save(ClientProgsDB, "client.db");
205         db_close(ClientProgsDB);
206
207         if(camera_active)
208                 cvar_set("chase_active",ftos(chase_active_backup));
209
210         // unset the event chasecam's chase_active
211         if(autocvar_chase_active < 0)
212                 cvar_set("chase_active", "0");
213
214         cvar_set("slowmo", cvar_defstring("slowmo")); // reset it back to 'default'
215
216         if (!isdemo())
217         {
218                 if (!(calledhooks & HOOK_START))
219                         localcmd("\n_cl_hook_gamestart nop\n");
220                 if (!(calledhooks & HOOK_END))
221                         localcmd("\ncl_hook_gameend\n");
222         }
223
224         localcmd("\ncl_hook_shutdown\n");
225
226         deactivate_minigame();
227         HUD_MinigameMenu_Close(NULL, NULL, NULL);
228 }
229
230 .float has_team;
231 float SetTeam(entity o, int Team)
232 {
233     TC(int, Team);
234         devassert_once(Team);
235         entity tm;
236         if(teamplay)
237         {
238                 switch(Team)
239                 {
240                         case -1:
241                         case NUM_TEAM_1:
242                         case NUM_TEAM_2:
243                         case NUM_TEAM_3:
244                         case NUM_TEAM_4:
245                                 break;
246                         default:
247                                 if(GetTeam(Team, false) == NULL)
248                                 {
249                                         LOG_TRACEF("trying to switch to unsupported team %d", Team);
250                                         Team = NUM_SPECTATOR;
251                                 }
252                                 break;
253                 }
254         }
255         else
256         {
257                 switch(Team)
258                 {
259                         case -1:
260                         case 0:
261                                 break;
262                         default:
263                                 if(GetTeam(Team, false) == NULL)
264                                 {
265                                         LOG_TRACEF("trying to switch to unsupported team %d", Team);
266                                         Team = NUM_SPECTATOR;
267                                 }
268                                 break;
269                 }
270         }
271         if(Team == -1) // leave
272         {
273                 if(o.has_team)
274                 {
275                         tm = GetTeam(o.team, false);
276                         tm.team_size -= 1;
277                         o.has_team = 0;
278                         return true;
279                 }
280         }
281         else
282         {
283                 if (!o.has_team)
284                 {
285                         o.team = Team;
286                         tm = GetTeam(Team, true);
287                         tm.team_size += 1;
288                         o.has_team = 1;
289                         return true;
290                 }
291                 else if(Team != o.team)
292                 {
293                         tm = GetTeam(o.team, false);
294                         tm.team_size -= 1;
295                         o.team = Team;
296                         tm = GetTeam(Team, true);
297                         tm.team_size += 1;
298                         return true;
299                 }
300         }
301         return false;
302 }
303
304 void Playerchecker_Think(entity this)
305 {
306     int i;
307         entity e;
308         for(i = 0; i < maxclients; ++i)
309         {
310                 e = playerslots[i];
311                 if(entcs_GetName(i) == "")
312                 {
313                         if(e.sort_prev)
314                         {
315                                 // player disconnected
316                                 SetTeam(e, -1);
317                                 RemovePlayer(e);
318                                 e.sort_prev = NULL;
319                                 //e.gotscores = 0;
320                         }
321                 }
322                 else
323                 {
324                         if (!e.sort_prev)
325                         {
326                                 // player connected
327                                 if (!e)
328                                 {
329                                         playerslots[i] = e = new_pure(playerslot);
330                                 }
331                                 e.sv_entnum = i;
332                                 e.ping = 0;
333                                 e.ping_packetloss = 0;
334                                 e.ping_movementloss = 0;
335                                 //e.gotscores = 0; // we might already have the scores...
336                                 int t = entcs_GetScoreTeam(i);
337                                 if (t) SetTeam(e, t); // will not hurt; later updates come with Scoreboard_UpdatePlayerTeams
338                                 RegisterPlayer(e);
339                                 Scoreboard_UpdatePlayerPos(e);
340                         }
341                 }
342         }
343         this.nextthink = time + 0.2;
344 }
345
346 void TrueAim_Init();
347 void PostInit()
348 {
349         entity playerchecker = new_pure(playerchecker);
350         setthink(playerchecker, Playerchecker_Think);
351         playerchecker.nextthink = time + 0.2;
352
353         TrueAim_Init();
354
355         postinit = true;
356 }
357
358 // CSQC_InputEvent : Used to perform actions based on any key pressed, key released and mouse on the client.
359 // Return value should be 1 if CSQC handled the input, otherwise return 0 to have the input passed to the engine.
360 // All keys are in ascii.
361 // bInputType = 0 is key pressed, 1 is key released, 2 and 3 are mouse input.
362 // In the case of keyboard input, nPrimary is the ascii code, and nSecondary is 0.
363 // In the case of mouse input, nPrimary is xdelta, nSecondary is ydelta.
364 // In the case of mouse input after a setcursormode(1) call, nPrimary is xpos, nSecondary is ypos.
365 float CSQC_InputEvent(int bInputType, float nPrimary, float nSecondary)
366 {
367     TC(int, bInputType);
368         if (HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary))
369                 return true;
370
371         if (QuickMenu_InputEvent(bInputType, nPrimary, nSecondary))
372                 return true;
373
374         if (HUD_Radar_InputEvent(bInputType, nPrimary, nSecondary))
375                 return true;
376
377         if (MapVote_InputEvent(bInputType, nPrimary, nSecondary))
378                 return true;
379
380         if (HUD_Minigame_InputEvent(bInputType, nPrimary, nSecondary))
381                 return true;
382
383         return false;
384 }
385
386 // END REQUIRED CSQC FUNCTIONS
387 // --------------------------------------------------------------------------
388
389 // --------------------------------------------------------------------------
390 // BEGIN OPTIONAL CSQC FUNCTIONS
391
392 void Ent_Remove(entity this);
393
394 void Ent_RemovePlayerScore(entity this)
395 {
396         if(this.owner) {
397                 SetTeam(this.owner, -1);
398                 this.owner.gotscores = 0;
399                 FOREACH(Scores, true, {
400                         this.owner.(scores(it)) = 0; // clear all scores
401                 });
402         }
403 }
404
405 NET_HANDLE(ENT_CLIENT_SCORES, bool isnew)
406 {
407         make_pure(this);
408         entity o;
409
410         // damnit -.- don't want to go change every single .sv_entnum in hud.qc AGAIN
411         // (no I've never heard of M-x replace-string, sed, or anything like that)
412         bool isNew = !this.owner; // workaround for DP bug
413         int n = ReadByte()-1;
414
415 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
416         if(!isNew && n != this.sv_entnum)
417         {
418                 //print("A CSQC entity changed its owner!\n");
419                 LOG_INFOF("A CSQC entity changed its owner! (edict: %d, classname: %s)", etof(this), this.classname);
420                 isNew = true;
421                 Ent_Remove(this);
422         }
423 #endif
424
425         this.sv_entnum = n;
426
427         o = playerslots[this.sv_entnum];
428         if (!o)
429         {
430                 o = playerslots[this.sv_entnum] = new_pure(playerslot);
431         }
432         this.owner = o;
433         o.sv_entnum = this.sv_entnum;
434         o.gotscores = 1;
435
436         //if (!o.sort_prev)
437         //      RegisterPlayer(o);
438         //playerchecker will do this for us later, if it has not already done so
439
440         int sf = ReadShort();
441         int lf = ReadShort();
442         FOREACH(Scores, true, {
443                 int p = 1 << (i % 16);
444                 if (sf & p)
445                 {
446                         if (lf & p)
447                                 o.(scores(it)) = ReadInt24_t();
448                         else
449                                 o.(scores(it)) = ReadChar();
450                 }
451         });
452
453         return = true;
454
455         if(o.sort_prev)
456                 Scoreboard_UpdatePlayerPos(o); // if not registered, we cannot do this yet!
457
458         this.entremove = Ent_RemovePlayerScore;
459 }
460
461 NET_HANDLE(ENT_CLIENT_TEAMSCORES, bool isnew)
462 {
463         make_pure(this);
464         int i;
465
466         this.team = ReadByte();
467         entity o = this.owner = GetTeam(this.team, true); // these team numbers can always be trusted
468
469 #if MAX_TEAMSCORE <= 8
470         int sf = ReadByte();
471         int lf = ReadByte();
472 #else
473         int sf = ReadShort();
474         int lf = ReadShort();
475 #endif
476         for(i = 0; i < MAX_TEAMSCORE; ++i)
477                 if(sf & BIT(i))
478                 {
479                         if(lf & BIT(i))
480                                 o.(teamscores(i)) = ReadInt24_t();
481                         else
482                                 o.(teamscores(i)) = ReadChar();
483                 }
484
485         return = true;
486
487         Scoreboard_UpdateTeamPos(o);
488 }
489
490 NET_HANDLE(ENT_CLIENT_CLIENTDATA, bool isnew)
491 {
492         make_pure(this);
493         float newspectatee_status;
494
495         int f = ReadByte();
496
497         scoreboard_showscores_force = (f & BIT(0));
498
499         if(f & BIT(1))
500         {
501                 newspectatee_status = ReadByte();
502                 if(newspectatee_status == player_localnum + 1)
503                         newspectatee_status = -1; // observing
504         }
505         else
506                 newspectatee_status = 0;
507
508         spectatorbutton_zoom = (f & BIT(2));
509
510         if(f & BIT(4))
511         {
512                 num_spectators = ReadByte();
513
514                 float i, slot;
515
516                 for(i = 0; i < MAX_SPECTATORS; ++i)
517                         spectatorlist[i] = 0; // reset list first
518
519                 for(i = 0; i < num_spectators; ++i)
520                 {
521                         slot = ReadByte();
522                         spectatorlist[i] = slot - 1;
523                 }
524         }
525
526         return = true;
527
528         if(newspectatee_status != spectatee_status)
529         {
530                 // clear race stuff
531                 race_laptime = 0;
532                 race_checkpointtime = 0;
533                 hud_dynamic_shake_factor = -1;
534         }
535         if (autocvar_hud_panel_healtharmor_progressbar_gfx)
536         {
537                 if ( (spectatee_status == -1 && newspectatee_status > 0) //before observing, now spectating
538                   || (spectatee_status > 0 && newspectatee_status > 0 && spectatee_status != newspectatee_status) //changed spectated player
539                 )
540                         prev_p_health = -1;
541                 else if(spectatee_status && !newspectatee_status) //before observing/spectating, now playing
542                         prev_health = -1;
543         }
544         spectatee_status = newspectatee_status;
545
546         // we could get rid of spectatee_status, and derive it from player_localentnum and player_localnum
547 }
548
549 NET_HANDLE(ENT_CLIENT_NAGGER, bool isnew)
550 {
551         make_pure(this);
552         int i, j, b, f;
553
554         int nags = ReadByte(); // NAGS NAGS NAGS NAGS NAGS NAGS NADZ NAGS NAGS NAGS
555
556         if(!(nags & BIT(2)))
557         {
558                 if(vote_called_vote)
559                         strunzone(vote_called_vote);
560                 vote_called_vote = string_null;
561                 vote_active = 0;
562         }
563         else
564         {
565                 vote_active = 1;
566         }
567
568         if(nags & BIT(6))
569         {
570                 vote_yescount = ReadByte();
571                 vote_nocount = ReadByte();
572                 vote_needed = ReadByte();
573                 vote_highlighted = ReadChar();
574         }
575
576         if(nags & BIT(7))
577         {
578                 strcpy(vote_called_vote, ReadString());
579         }
580
581         if(nags & 1)
582         {
583                 for(j = 0; j < maxclients; ++j)
584                         if(playerslots[j])
585                                 playerslots[j].ready = 1;
586                 for(i = 1; i <= maxclients; i += 8)
587                 {
588                         f = ReadByte();
589                         for(j = i-1, b = BIT(0); b < BIT(8); b <<= 1, ++j)
590                                 if (!(f & b))
591                                         if(playerslots[j])
592                                                 playerslots[j].ready = 0;
593                 }
594         }
595
596         return = true;
597
598         ready_waiting = (nags & BIT(0));
599         ready_waiting_for_me = (nags & BIT(1));
600         vote_waiting = (nags & BIT(2));
601         vote_waiting_for_me = (nags & BIT(3));
602         warmup_stage = (nags & BIT(4));
603 }
604
605 NET_HANDLE(ENT_CLIENT_ELIMINATEDPLAYERS, bool isnew)
606 {
607         make_pure(this);
608         int sf = 0;
609         serialize(byte, 0, sf);
610         if (sf & 1) {
611                 for (int j = 0; j < maxclients; ++j) {
612                         if (playerslots[j]) {
613                                 playerslots[j].eliminated = 1;
614                         }
615                 }
616                 for (int i = 1; i <= maxclients; i += 8) {
617                         int f = 0;
618                         serialize(byte, 0, f);
619                         for (int b = 0; b < 8; ++b) {
620                                 if (f & BIT(b)) continue;
621                                 int j = i - 1 + b;
622                                 if (playerslots[j]) {
623                                         playerslots[j].eliminated = 0;
624                                 }
625                         }
626                 }
627         }
628         return true;
629 }
630
631 NET_HANDLE(ENT_CLIENT_RANDOMSEED, bool isnew)
632 {
633         make_pure(this);
634         prandom_debug();
635         float s = ReadShort();
636         psrandom(s);
637         return true;
638 }
639
640 NET_HANDLE(ENT_CLIENT_ACCURACY, bool isnew)
641 {
642         make_pure(this);
643         int sf = ReadInt24_t();
644         if (sf == 0) {
645                 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
646                         weapon_accuracy[w] = -1;
647                 return true;
648         }
649
650         int f = 1;
651         for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
652                 if (sf & f) {
653                         int b = ReadByte();
654                         if (b == 0)
655                                 weapon_accuracy[w] = -1;
656                         else if (b == 255)
657                                 weapon_accuracy[w] = 1.0; // no better error handling yet, sorry
658                         else
659                                 weapon_accuracy[w] = (b - 1.0) / 100.0;
660                 }
661                 f = (f == 0x800000) ? 1 : f * 2;
662         }
663         return true;
664 }
665
666 void Spawn_Draw(entity this)
667 {
668         if(this.alpha <= 0)
669                 return;
670
671         __pointparticles(this.cnt, this.origin + '0 0 28', '0 0 2', bound(0, frametime, 0.1));
672 }
673
674 void Spawn_PreDraw(entity this)
675 {
676         float alph;
677         vector org = getpropertyvec(VF_ORIGIN);
678         if(this.fade_start)
679         {
680                 if(vdist(org - this.origin, >, this.fade_end))
681                         alph = 0; // save on some processing
682                 else if(vdist(org - this.origin, <, this.fade_start))
683                         alph = 1; // more processing saved
684                 else
685                         alph = bound(0, (this.fade_end - vlen(org - this.origin - 0.5 * (this.mins + this.maxs))) / (this.fade_end - this.fade_start), 1);
686         }
687         else
688                 alph = 1;
689         //printf("%v <-> %v\n", view_origin, this.origin + 0.5 * (this.mins + this.maxs));
690         this.alpha = alph;
691         if(alph <= 0)
692                 this.drawmask = 0;
693         else
694                 this.drawmask = MASK_NORMAL;
695 }
696
697 NET_HANDLE(ENT_CLIENT_SPAWNPOINT, bool is_new)
698 {
699         float teamnum = (ReadByte() - 1);
700         vector spn_origin = ReadVector();
701
702         this.team = (teamnum + 1);
703
704         //if(is_new)
705         //{
706                 this.origin = spn_origin;
707                 setsize(this, PL_MIN_CONST, PL_MAX_CONST);
708                 //droptofloor();
709
710                 /*if(autocvar_cl_spawn_point_model) // needs a model first
711                 {
712                         this.mdl = "models/spawnpoint.md3";
713                         this.colormod = Team_ColorRGB(teamnum);
714                         precache_model(this.mdl);
715                         setmodel(this, this.mdl);
716                         this.drawmask = MASK_NORMAL;
717                         //this.move_movetype = MOVETYPE_NOCLIP;
718                         //this.draw = Spawn_Draw;
719                         IL_PUSH(g_drawables, this);
720                 }*/
721                 if(autocvar_cl_spawn_point_particles)
722                 {
723                         if(teamplay)
724                         {
725                                 switch(teamnum)
726                                 {
727                                         case NUM_TEAM_1: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_RED); break;
728                                         case NUM_TEAM_2: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_BLUE); break;
729                                         case NUM_TEAM_3: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_YELLOW); break;
730                                         case NUM_TEAM_4: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_PINK); break;
731                                         default: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); break;
732                                 }
733                         }
734                         else { this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); }
735
736                         this.draw = Spawn_Draw;
737                         if (is_new) IL_PUSH(g_drawables, this);
738                         setpredraw(this, Spawn_PreDraw);
739                         this.fade_start = autocvar_cl_spawn_point_dist_min;
740                         this.fade_end = autocvar_cl_spawn_point_dist_max;
741                 }
742         //}
743
744         //printf("Ent_ReadSpawnPoint(is_new = %d); origin = %s, team = %d, effect = %d\n", is_new, vtos(this.origin), teamnum, this.cnt);
745         return true;
746 }
747
748 NET_HANDLE(ENT_CLIENT_SPAWNEVENT, bool is_new)
749 {
750         // If entnum is 0, ONLY do the local spawn actions
751         // this way the server can disable the sending of
752         // spawn origin or such to clients if wanted.
753         float entnum = ReadByte();
754
755         if(entnum)
756         {
757                 this.origin = ReadVector();
758
759                 if(is_new)
760                 {
761                         float teamnum = entcs_GetTeam(entnum - 1);
762
763                         if(autocvar_cl_spawn_event_particles)
764                         {
765                                 switch(teamnum)
766                                 {
767                                         case NUM_TEAM_1: pointparticles(EFFECT_SPAWN_RED, this.origin, '0 0 0', 1); break;
768                                         case NUM_TEAM_2: pointparticles(EFFECT_SPAWN_BLUE, this.origin, '0 0 0', 1); break;
769                                         case NUM_TEAM_3: pointparticles(EFFECT_SPAWN_YELLOW, this.origin, '0 0 0', 1); break;
770                                         case NUM_TEAM_4: pointparticles(EFFECT_SPAWN_PINK, this.origin, '0 0 0', 1); break;
771                                         default: pointparticles(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1); break;
772                                 }
773                         }
774                         if(autocvar_cl_spawn_event_sound)
775                         {
776                                 sound(this, CH_TRIGGER, SND_SPAWN, VOL_BASE, ATTEN_NORM);
777                         }
778                 }
779         }
780         return = true;
781
782         // local spawn actions
783         if(is_new && (!entnum || (entnum == player_localentnum)))
784         {
785                 zoomin_effect = 1;
786                 current_viewzoom = (1 / bound(1, autocvar_cl_spawnzoom_factor, 16));
787
788                 if(autocvar_cl_unpress_zoom_on_spawn)
789                 {
790                         localcmd("-zoom\n");
791                         button_zoom = false;
792                 }
793                 HUD_Radar_Hide_Maximized();
794         }
795         //printf("Ent_ReadSpawnEvent(is_new = %d); origin = %s, entnum = %d, localentnum = %d\n", is_new, vtos(this.origin), entnum, player_localentnum);
796 }
797
798 // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.
799 // The only parameter reflects if the entity is "new" to the client, meaning it just came into the client's PVS.
800 void CSQC_Ent_Update(entity this, bool isnew)
801 {
802         this.sourceLoc = __FILE__ ":" STR(__LINE__);
803         int t = ReadByte();
804
805         // set up the "time" global for received entities to be correct for interpolation purposes
806         float savetime = time;
807         if(servertime)
808         {
809                 time = servertime;
810         }
811         else
812         {
813                 serverprevtime = time;
814                 serverdeltatime = STAT(MOVEVARS_TICRATE) * STAT(MOVEVARS_TIMESCALE);
815                 time = serverprevtime + serverdeltatime;
816         }
817
818 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
819         if (this.enttype)
820         {
821                 if (t != this.enttype || isnew)
822                 {
823                         LOG_INFOF("A CSQC entity changed its type! (edict: %d, server: %d, type: %d -> %d)", etof(this), this.entnum, this.enttype, t);
824                         Ent_Remove(this);
825                         clearentity(this);
826                         isnew = true;
827                 }
828         }
829         else
830         {
831                 if (!isnew)
832                 {
833                         LOG_INFOF("A CSQC entity appeared out of nowhere! (edict: %d, server: %d, type: %d)", etof(this), this.entnum, t);
834                         isnew = true;
835                 }
836         }
837 #endif
838         this.enttype = t;
839         bool done = false;
840         FOREACH(LinkedEntities, it.m_id == t, {
841                 if (isnew) this.classname = it.netname;
842                 if (autocvar_developer_csqcentities)
843             LOG_INFOF("CSQC_Ent_Update(%d) at %f with this=%i {.entnum=%d, .enttype=%d} t=%s (%d)", isnew, savetime, this, this.entnum, this.enttype, this.classname, t);
844                 done = it.m_read(this, NULL, isnew);
845                 MUTATOR_CALLHOOK(Ent_Update, this, isnew);
846                 break;
847         });
848         time = savetime;
849         if (!done)
850         {
851                 LOG_FATALF("CSQC_Ent_Update(%d) at %f with this=%i {.entnum=%d, .enttype=%d} t=%s (%d)", isnew, savetime, this, this.entnum, this.enttype, this.classname, t);
852         }
853 }
854
855 // Destructor, but does NOT deallocate the entity by calling remove(). Also
856 // used when an entity changes its type. For an entity that someone interacts
857 // with others, make sure it can no longer do so.
858 void Ent_Remove(entity this)
859 {
860         if(this.entremove) this.entremove(this);
861
862         if(this.skeletonindex)
863         {
864                 skel_delete(this.skeletonindex);
865                 this.skeletonindex = 0;
866         }
867
868         if(this.snd_looping > 0)
869         {
870                 sound(this, this.snd_looping, SND_Null, VOL_BASE, autocvar_cl_jetpack_attenuation);
871                 this.snd_looping = 0;
872         }
873
874         this.enttype = 0;
875         this.classname = "";
876         this.draw = func_null;
877         this.entremove = func_null;
878         // TODO possibly set more stuff to defaults
879 }
880 // CSQC_Ent_Remove : Called when the server requests a SSQC / CSQC entity to be removed.  Essentially call remove(this) as well.
881 void CSQC_Ent_Remove(entity this)
882 {
883         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Ent_Remove() with this=%i {.entnum=%d, .enttype=%d}", this, this.entnum, this.enttype);
884         if (wasfreed(this))
885         {
886                 LOG_WARN("CSQC_Ent_Remove called for already removed entity. Packet loss?");
887                 return;
888         }
889         if (this.enttype) Ent_Remove(this);
890         delete(this);
891 }
892
893 void Gamemode_Init()
894 {
895         if (!isdemo())
896         {
897                 if(!(calledhooks & HOOK_START))
898                         localcmd("\n_cl_hook_gamestart ", MapInfo_Type_ToString(gametype), "\n");
899                 calledhooks |= HOOK_START;
900         }
901 }
902 // CSQC_Parse_StuffCmd : Provides the stuffcmd string in the first parameter that the server provided.  To execute standard behavior, simply execute localcmd with the string.
903 void CSQC_Parse_StuffCmd(string strMessage)
904 {
905         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_StuffCmd(\"%s\")", strMessage);
906         localcmd(strMessage);
907 }
908 // CSQC_Parse_Print : Provides the print string in the first parameter that the server provided.  To execute standard behavior, simply execute print with the string.
909 void CSQC_Parse_Print(string strMessage)
910 {
911         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_Print(\"%s\")", strMessage);
912         print(ColorTranslateRGB(strMessage));
913 }
914
915 // CSQC_Parse_CenterPrint : Provides the centerprint_hud string in the first parameter that the server provided.
916 void CSQC_Parse_CenterPrint(string strMessage)
917 {
918         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_CenterPrint(\"%s\")", strMessage);
919         centerprint_hud(strMessage);
920 }
921
922 // CSQC_Parse_TempEntity : Handles all temporary entity network data in the CSQC layer.
923 // You must ALWAYS first acquire the temporary ID, which is sent as a byte.
924 // Return value should be 1 if CSQC handled the temporary entity, otherwise return 0 to have the engine process the event.
925 bool CSQC_Parse_TempEntity()
926 {
927         // Acquire TE ID
928         int nTEID = ReadByte();
929
930         FOREACH(TempEntities, it.m_id == nTEID, {
931                 if (autocvar_developer_csqcentities)
932                         LOG_INFOF("CSQC_Parse_TempEntity() nTEID=%s (%d)", it.netname, nTEID);
933                 return it.m_read(NULL, NULL, true);
934         });
935
936         if (autocvar_developer_csqcentities)
937                 LOG_INFOF("CSQC_Parse_TempEntity() with nTEID=%d", nTEID);
938
939         // No special logic for this temporary entity; return 0 so the engine can handle it
940         return false;
941 }
942
943 string forcefog;
944 void Fog_Force()
945 {
946         if (autocvar_cl_orthoview && autocvar_cl_orthoview_nofog)
947                 localcmd("\nr_drawfog 0\n");
948         else if (forcefog != "")
949                 localcmd(sprintf("\nfog %s\nr_fog_exp2 0\nr_drawfog 1\n", forcefog));
950 }
951
952 void Gamemode_Init();
953 NET_HANDLE(ENT_CLIENT_SCORES_INFO, bool isnew)
954 {
955         make_pure(this);
956         gametype = ReadRegistered(Gametypes);
957         teamplay = _MapInfo_GetTeamPlayBool(gametype);
958         HUD_ModIcons_SetFunc();
959         FOREACH(Scores, true, {
960                 strcpy(scores_label(it), ReadString());
961                 scores_flags(it) = ReadByte();
962         });
963         for (int i = 0; i < MAX_TEAMSCORE; ++i)
964         {
965                 strcpy(teamscores_label(i), ReadString());
966                 teamscores_flags(i) = ReadByte();
967         }
968         return = true;
969         Scoreboard_InitScores();
970         Gamemode_Init();
971 }
972
973 NET_HANDLE(ENT_CLIENT_INIT, bool isnew)
974 {
975         nb_pb_period = ReadByte() / 32; //Accuracy of 1/32th
976
977         hook_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
978         hook_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
979         hook_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
980         hook_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
981         arc_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
982         arc_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
983         arc_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
984         arc_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
985
986         strcpy(forcefog, ReadString());
987
988         armorblockpercent = ReadByte() / 255.0;
989         damagepush_speedfactor = ReadByte() / 255.0;
990
991         serverflags = ReadByte();
992
993         g_trueaim_minrange = ReadCoord();
994
995         return = true;
996
997         MUTATOR_CALLHOOK(Ent_Init);
998
999         if (!postinit) PostInit();
1000 }
1001
1002 float GetSpeedUnitFactor(int speed_unit)
1003 {
1004         switch(speed_unit)
1005         {
1006                 default:
1007                 case 1:
1008                         return 1.0;
1009                 case 2:
1010                         return 0.0254;
1011                 case 3:
1012                         return 0.0254 * 3.6;
1013                 case 4:
1014                         return 0.0254 * 3.6 * 0.6213711922;
1015                 case 5:
1016                         return 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
1017         }
1018 }
1019
1020 string GetSpeedUnit(int speed_unit)
1021 {
1022         switch(speed_unit)
1023         {
1024                 default:
1025                 case 1:
1026                         return _(" qu/s");
1027                 case 2:
1028                         return _(" m/s");
1029                 case 3:
1030                         return _(" km/h");
1031                 case 4:
1032                         return _(" mph");
1033                 case 5:
1034                         return _(" knots");
1035         }
1036 }
1037
1038 NET_HANDLE(TE_CSQC_RACE, bool isNew)
1039 {
1040         int b = ReadByte();
1041
1042         switch (b)
1043         {
1044                 case RACE_NET_CHECKPOINT_HIT_QUALIFYING:
1045                         race_checkpoint = ReadByte();
1046                         race_time = ReadInt24_t();
1047                         race_previousbesttime = ReadInt24_t();
1048                         race_mypreviousbesttime = ReadInt24_t();
1049                         string pbestname = ReadString();
1050                         if(autocvar_cl_race_cptimes_onlyself)
1051                         {
1052                                 race_previousbesttime = race_mypreviousbesttime;
1053                                 race_mypreviousbesttime = 0;
1054                                 strcpy(race_previousbestname, "");
1055                         }
1056                         else
1057                                 strcpy(race_previousbestname, pbestname);
1058
1059                         race_checkpointtime = time;
1060
1061                         if(race_checkpoint == 0 || race_checkpoint == 254)
1062                         {
1063                                 race_penaltyaccumulator = 0;
1064                                 race_laptime = time; // valid
1065                         }
1066                         break;
1067
1068                 case RACE_NET_CHECKPOINT_CLEAR:
1069                         race_laptime = 0;
1070                         race_checkpointtime = 0;
1071                         break;
1072
1073                 case RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING:
1074                         race_laptime = ReadCoord();
1075                         race_checkpointtime = -99999;
1076                         // fall through
1077                 case RACE_NET_CHECKPOINT_NEXT_QUALIFYING:
1078                         race_nextcheckpoint = ReadByte();
1079
1080                         race_nextbesttime = ReadInt24_t();
1081                         if(b != RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING) // not while spectating (matches server)
1082                                 race_mybesttime = ReadInt24_t();
1083                         string newname = ReadString();
1084                         if(autocvar_cl_race_cptimes_onlyself && b != RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING)
1085                         {
1086                                 race_nextbesttime = race_mybesttime;
1087                                 race_mybesttime = 0;
1088                                 strcpy(race_nextbestname, "");
1089                         }
1090                         else
1091                                 strcpy(race_nextbestname, newname);
1092                         break;
1093
1094                 case RACE_NET_CHECKPOINT_HIT_RACE:
1095                         race_mycheckpoint = ReadByte();
1096                         race_mycheckpointtime = time;
1097                         race_mycheckpointdelta = ReadInt24_t();
1098                         race_mycheckpointlapsdelta = ReadByte();
1099                         if(race_mycheckpointlapsdelta >= 128)
1100                                 race_mycheckpointlapsdelta -= 256;
1101                         int who = ReadByte();
1102                         if(who)
1103                                 strcpy(race_mycheckpointenemy, entcs_GetName(who - 1));
1104                         else
1105                                 strcpy(race_mycheckpointenemy, ""); // TODO: maybe string_null works fine here?
1106                         break;
1107
1108                 case RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT:
1109                         race_othercheckpoint = ReadByte();
1110                         race_othercheckpointtime = time;
1111                         race_othercheckpointdelta = ReadInt24_t();
1112                         race_othercheckpointlapsdelta = ReadByte();
1113                         if(race_othercheckpointlapsdelta >= 128)
1114                                 race_othercheckpointlapsdelta -= 256;
1115                         int what = ReadByte();
1116                         if(what)
1117                                 strcpy(race_othercheckpointenemy, entcs_GetName(what - 1));
1118                         else
1119                                 strcpy(race_othercheckpointenemy, ""); // TODO: maybe string_null works fine here?
1120                         break;
1121
1122                 case RACE_NET_PENALTY_RACE:
1123                         race_penaltyeventtime = time;
1124                         race_penaltytime = ReadShort();
1125                         //race_penaltyaccumulator += race_penaltytime;
1126                         strcpy(race_penaltyreason, ReadString());
1127                         break;
1128
1129                 case RACE_NET_PENALTY_QUALIFYING:
1130                         race_penaltyeventtime = time;
1131                         race_penaltytime = ReadShort();
1132                         race_penaltyaccumulator += race_penaltytime;
1133                         strcpy(race_penaltyreason, ReadString());
1134                         break;
1135
1136                 case RACE_NET_SERVER_RECORD:
1137                         race_server_record = ReadInt24_t();
1138                         break;
1139                 case RACE_NET_SPEED_AWARD:
1140                         race_speedaward = ReadInt24_t() * GetSpeedUnitFactor(autocvar_hud_panel_physics_speed_unit);
1141                         strcpy(race_speedaward_holder, ReadString());
1142                         strcpy(race_speedaward_unit, GetSpeedUnit(autocvar_hud_panel_physics_speed_unit));
1143                         break;
1144                 case RACE_NET_SPEED_AWARD_BEST:
1145                         race_speedaward_alltimebest = ReadInt24_t() * GetSpeedUnitFactor(autocvar_hud_panel_physics_speed_unit);
1146                         strcpy(race_speedaward_alltimebest_holder, ReadString());
1147                         strcpy(race_speedaward_alltimebest_unit, GetSpeedUnit(autocvar_hud_panel_physics_speed_unit));
1148                         break;
1149                 case RACE_NET_SERVER_RANKINGS:
1150                         float prevpos, del;
1151             int pos = ReadShort();
1152                         prevpos = ReadShort();
1153                         del = ReadShort();
1154
1155                         // move other rankings out of the way
1156             int i;
1157                         if (prevpos) {
1158                                 for (i=prevpos-1;i>pos-1;--i) {
1159                                         grecordtime[i] = grecordtime[i-1];
1160                                         strcpy(grecordholder[i], grecordholder[i-1]);
1161                                 }
1162                         } else if (del) { // a record has been deleted by the admin
1163                                 for (i=pos-1; i<= RANKINGS_CNT-1; ++i) {
1164                                         if (i == RANKINGS_CNT-1) { // clear out last record
1165                                                 grecordtime[i] = 0;
1166                                                 if (grecordholder[i])
1167                                                         strunzone(grecordholder[i]);
1168                                                 grecordholder[i] = string_null;
1169                                         }
1170                                         else {
1171                                                 grecordtime[i] = grecordtime[i+1];
1172                                                 strcpy(grecordholder[i], grecordholder[i+1]);
1173                                         }
1174                                 }
1175                         } else { // player has no ranked record yet
1176                                 for (i=RANKINGS_CNT-1;i>pos-1;--i) {
1177                                         grecordtime[i] = grecordtime[i-1];
1178                                         strcpy(grecordholder[i], grecordholder[i-1]);
1179                                 }
1180                         }
1181
1182                         // store new ranking
1183                         if(grecordholder[pos-1] != "")
1184                                 strunzone(grecordholder[pos-1]);
1185                         grecordholder[pos-1] = strzone(ReadString());
1186                         grecordtime[pos-1] = ReadInt24_t();
1187                         if(strdecolorize(grecordholder[pos-1]) == strdecolorize(entcs_GetName(player_localnum)))
1188                                 race_myrank = pos;
1189                         break;
1190                 case RACE_NET_SERVER_STATUS:
1191                         race_status = ReadShort();
1192                         strcpy(race_status_name, ReadString());
1193         }
1194         return true;
1195 }
1196
1197 NET_HANDLE(TE_CSQC_TEAMNAGGER, bool isNew)
1198 {
1199         teamnagger = 1;
1200         return true;
1201 }
1202
1203 NET_HANDLE(TE_CSQC_PINGPLREPORT, bool isNew)
1204 {
1205         int i = ReadByte();
1206         int pi = ReadShort();
1207         int pl = ReadByte();
1208         int ml = ReadByte();
1209         return = true;
1210         entity e = playerslots[i];
1211         if (!e) return;
1212         e.ping = pi;
1213         e.ping_packetloss = pl / 255.0;
1214         e.ping_movementloss = ml / 255.0;
1215 }
1216
1217 NET_HANDLE(TE_CSQC_WEAPONCOMPLAIN, bool isNew)
1218 {
1219         complain_weapon = ReadByte();
1220         complain_weapon_type = ReadByte();
1221         return = true;
1222
1223         complain_weapon_time = time;
1224         weapontime = time; // ping the weapon panel
1225
1226         switch(complain_weapon_type)
1227         {
1228                 case 0: Local_Notification(MSG_MULTI, ITEM_WEAPON_NOAMMO, complain_weapon); break;
1229                 case 1: Local_Notification(MSG_MULTI, ITEM_WEAPON_DONTHAVE, complain_weapon); break;
1230                 default: Local_Notification(MSG_MULTI, ITEM_WEAPON_UNAVAILABLE, complain_weapon); break;
1231         }
1232 }
1233
1234 string _getcommandkey(string cmd_name, string command, bool forcename)
1235 {
1236         string keys;
1237         float n, j, k, l = 0;
1238
1239         if (!autocvar_hud_showbinds)
1240                 return cmd_name;
1241
1242         keys = db_get(binddb, command);
1243         if (keys == "")
1244         {
1245                 bool joy_active = cvar("joy_active");
1246                 n = tokenize(findkeysforcommand(command, 0)); // uses '...' strings
1247                 for(j = 0; j < n; ++j)
1248                 {
1249                         k = stof(argv(j));
1250                         if(k != -1)
1251                         {
1252                                 string key = keynumtostring(k);
1253                                 if(!joy_active && substring(key, 0, 3) == "JOY")
1254                                         continue;
1255
1256                                 if (keys == "")
1257                                         keys = key;
1258                                 else
1259                                         keys = strcat(keys, ", ", key);
1260
1261                                 ++l;
1262                                 if (autocvar_hud_showbinds_limit > 0 && autocvar_hud_showbinds_limit <= l)
1263                                         break;
1264                         }
1265
1266                 }
1267                 if (keys == "")
1268                         keys = "NO_KEY";
1269                 db_put(binddb, command, keys);
1270         }
1271
1272         if (keys == "NO_KEY") {
1273                 if (autocvar_hud_showbinds > 1)
1274                         return sprintf(_("%s (not bound)"), cmd_name);
1275                 else
1276                         return cmd_name;
1277         }
1278         else if (autocvar_hud_showbinds > 1 || forcename)
1279                 return sprintf("%s (%s)", cmd_name, keys);
1280         else
1281                 return keys;
1282 }