]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/Main.qc
Merge branch 'master' into mirceakitsune/sandbox
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / Main.qc
1 // --------------------------------------------------------------------------
2 // BEGIN REQUIRED CSQC FUNCTIONS
3 //include "main.qh"
4
5 #define DP_CSQC_ENTITY_REMOVE_IS_B0RKED
6
7 void cvar_clientsettemp(string cv, string val)
8 {
9         entity e;
10         for(e = world; (e = find(e, classname, "saved_cvar_value")); )
11                 if(e.netname == cv)
12                         goto saved;
13         e = spawn();
14         e.classname = "saved_cvar_value";
15         e.netname = strzone(cv);
16         e.message = strzone(cvar_string(cv));
17 :saved
18         cvar_set(cv, val);
19 }
20
21 void cvar_clientsettemp_restore()
22 {
23         entity e;
24         for(e = world; (e = find(e, classname, "saved_cvar_value")); )
25                         cvar_set(e.netname, e.message);
26 }
27
28 void menu_show_error()
29 {
30         drawstring('0 200 0', _("ERROR - MENU IS VISIBLE BUT NO MENU WAS DEFINED!"), '8 8 0', '1 0 0', 1, 0);
31 }
32
33 // CSQC_Init : Called every time the CSQC code is initialized (essentially at map load)
34 // Useful for precaching things
35
36 void menu_sub_null()
37 {
38 }
39
40 #ifdef USE_FTE
41 float __engine_check;
42 #endif
43
44 string forcefog;
45 string cl_announcer_prev;
46 void WaypointSprite_Load();
47 void CSQC_Init(void)
48 {
49         prvm_language = cvar_string("prvm_language");
50
51 #ifdef USE_FTE
52 #pragma target ID
53         __engine_check = checkextension("DP_SV_WRITEPICTURE");
54         if(!__engine_check)
55         {
56                 print(_("^3Your engine build is outdated\n^3This Server uses a newer QC VM. Please update!\n"));
57                 localcmd("\ndisconnect\n");
58                 return;
59         }
60 #pragma target FTE
61 #endif
62
63         check_unacceptable_compiler_bugs();
64
65 #ifdef WATERMARK
66         print(sprintf(_("^4CSQC Build information: ^1%s\n"), WATERMARK()));
67 #endif
68
69         float i;
70
71         binddb = db_create();
72         tempdb = db_create();
73         ClientProgsDB = db_load("client.db");
74         compressShortVector_init();
75
76         drawfont = FONT_USER+1;
77         menu_visible = FALSE;
78         menu_show = menu_show_error;
79         menu_action = menu_sub_null;
80
81         for(i = 0; i < 255; ++i)
82                 if(getplayerkey(i, "viewentity") == "")
83                         break;
84         maxclients = i;
85
86         registercmd("hud_configure");
87         registercmd("hud_save");
88         //registercmd("menu_action");
89
90         registercmd("+showscores");registercmd("-showscores");
91         registercmd("+showaccuracy");registercmd("-showaccuracy");
92
93 #ifndef CAMERATEST
94         if(isdemo())
95         {
96 #endif
97                 registercmd("+forward");registercmd("-forward");
98                 registercmd("+back");registercmd("-back");
99                 registercmd("+moveup");registercmd("-moveup");
100                 registercmd("+movedown");registercmd("-movedown");
101                 registercmd("+moveright");registercmd("-moveright");
102                 registercmd("+moveleft");registercmd("-moveleft");
103                 registercmd("+roll_right");registercmd("-roll_right");
104                 registercmd("+roll_left");registercmd("-roll_left");
105 #ifndef CAMERATEST
106         }
107 #endif
108         registercvar("hud_usecsqc", "1");
109         registercvar("scoreboard_columns", "default", CVAR_SAVE);
110
111         gametype = 0;
112
113         // hud_fields uses strunzone on the titles!
114         for(i = 0; i < MAX_HUD_FIELDS; ++i)
115                 hud_title[i] = strzone("(null)");
116
117         postinit = false;
118
119         calledhooks = 0;
120
121         teams = Sort_Spawn();
122         players = Sort_Spawn();
123
124         GetTeam(COLOR_SPECTATOR, true); // add specs first
125
126         RegisterWeapons();
127
128         WaypointSprite_Load();
129
130         // precaches
131         precache_sound("misc/hit.wav");
132         precache_sound("misc/typehit.wav");
133         Projectile_Precache();
134         Hook_Precache();
135         GibSplash_Precache();
136         Casings_Precache();
137         DamageInfo_Precache();
138         Vehicles_Precache();
139         turrets_precache();
140
141         if(autocvar_cl_announcer != cl_announcer_prev) {
142                 Announcer_Precache();
143                 if(cl_announcer_prev)
144                         strunzone(cl_announcer_prev);
145                 cl_announcer_prev = strzone(autocvar_cl_announcer);
146         }
147         Tuba_Precache();
148         
149         if(autocvar_cl_reticle)
150         {
151                 if(autocvar_cl_reticle_item_normal) { precache_pic("gfx/reticle_normal"); }
152                 if(autocvar_cl_reticle_item_nex) { precache_pic("gfx/reticle_nex"); }
153         }
154         
155         get_mi_min_max_texcoords(1); // try the CLEVER way first
156         minimapname = strcat("gfx/", mi_shortname, "_radar.tga");
157         shortmapname = mi_shortname;
158
159         if(precache_pic(minimapname) == "")
160         {
161                 // but maybe we have a non-clever minimap
162                 minimapname = strcat("gfx/", mi_shortname, "_mini.tga");
163                 if(precache_pic(minimapname) == "")
164                         minimapname = ""; // FAIL
165                 else
166                         get_mi_min_max_texcoords(0); // load new texcoords
167         }
168
169         mi_center = (mi_min + mi_max) * 0.5;
170         mi_scale = mi_max - mi_min;
171         minimapname = strzone(minimapname);
172
173         WarpZone_Init();
174
175         hud_configure_prev = -1;
176         tab_panel = -1;
177 }
178
179 // CSQC_Shutdown : Called every time the CSQC code is shutdown (changing maps, quitting, etc)
180 void CSQC_Shutdown(void)
181 {
182 #ifdef USE_FTE
183 #pragma TARGET id
184         if(!__engine_check)
185                 return 0;
186 #pragma TARGET fte
187 #endif
188
189         WarpZone_Shutdown();
190
191         remove(teams);
192         remove(players);
193         db_close(binddb);
194         db_close(tempdb);
195         if(autocvar_cl_db_saveasdump)
196                 db_dump(ClientProgsDB, "client.db");
197         else
198                 db_save(ClientProgsDB, "client.db");
199         db_close(ClientProgsDB);
200
201         cvar_clientsettemp_restore();
202
203         if(camera_active)
204                 cvar_set("chase_active",ftos(chase_active_backup));
205
206         // unset the event chasecam's chase_active
207         if(autocvar_chase_active < 0)
208                 cvar_set("chase_active", "0");
209
210         if not(isdemo())
211         {
212                 if not(calledhooks & HOOK_START)
213                         localcmd("\n_cl_hook_gamestart nop\n");
214                 if not(calledhooks & HOOK_END)
215                         localcmd("\ncl_hook_gameend\n");
216         }
217 }
218
219 .float has_team;
220 float SetTeam(entity o, float Team)
221 {
222         entity tm;
223         if(teamplay)
224         {
225                 switch(Team)
226                 {
227                         case -1:
228                         case COLOR_TEAM1:
229                         case COLOR_TEAM2:
230                         case COLOR_TEAM3:
231                         case COLOR_TEAM4:
232                                 break;
233                         default:
234                                 if(GetTeam(Team, false) == NULL)
235                                 {
236                                         print(sprintf(_("trying to switch to unsupported team %d\n"), Team));
237                                         Team = COLOR_SPECTATOR;
238                                 }
239                                 break;
240                 }
241         }
242         else
243         {
244                 switch(Team)
245                 {
246                         case -1:
247                         case 0:
248                                 break;
249                         default:
250                                 if(GetTeam(Team, false) == NULL)
251                                 {
252                                         print(sprintf(_("trying to switch to unsupported team %d\n"), Team));
253                                         Team = COLOR_SPECTATOR;
254                                 }
255                                 break;
256                 }
257         }
258         if(Team == -1) // leave
259         {
260                 if(o.has_team)
261                 {
262                         tm = GetTeam(o.team, false);
263                         tm.team_size -= 1;
264                         o.has_team = 0;
265                         return TRUE;
266                 }
267         }
268         else
269         {
270                 if not(o.has_team)
271                 {
272                         o.team = Team;
273                         tm = GetTeam(Team, true);
274                         tm.team_size += 1;
275                         o.has_team = 1;
276                         return TRUE;
277                 }
278                 else if(Team != o.team)
279                 {
280                         tm = GetTeam(o.team, false);
281                         tm.team_size -= 1;
282                         o.team = Team;
283                         tm = GetTeam(Team, true);
284                         tm.team_size += 1;
285                         return TRUE;
286                 }
287         }
288         return FALSE;
289 }
290
291 void Playerchecker_Think()
292 {
293         float i;
294         entity e;
295         for(i = 0; i < maxclients; ++i)
296         {
297                 e = playerslots[i];
298                 if(GetPlayerName(i) == "")
299                 {
300                         if(e.sort_prev)
301                         {
302                                 // player disconnected
303                                 SetTeam(e, -1);
304                                 RemovePlayer(e);
305                                 e.sort_prev = world;
306                                 //e.gotscores = 0;
307                         }
308                 }
309                 else
310                 {
311                         if not(e.sort_prev)
312                         {
313                                 // player connected
314                                 if not(e)
315                                         playerslots[i] = e = spawn();
316                                 e.sv_entnum = i;
317                                 e.ping = 0;
318                                 e.ping_packetloss = 0;
319                                 e.ping_movementloss = 0;
320                                 //e.gotscores = 0; // we might already have the scores...
321                                 SetTeam(e, GetPlayerColor(i)); // will not hurt; later updates come with HUD_UpdatePlayerTeams
322                                 RegisterPlayer(e);
323                                 HUD_UpdatePlayerPos(e);
324                         }
325                 }
326         }
327         self.nextthink = time + 0.2;
328 }
329
330 void Porto_Init();
331 void TrueAim_Init();
332 void PostInit(void)
333 {
334         localcmd(strcat("\nscoreboard_columns_set ", autocvar_scoreboard_columns, ";\n"));
335
336         entity playerchecker;
337         playerchecker = spawn();
338         playerchecker.think = Playerchecker_Think;
339         playerchecker.nextthink = time + 0.2;
340
341         Porto_Init();
342         TrueAim_Init();
343
344         postinit = true;
345 }
346
347 // CSQC_ConsoleCommand : Used to parse commands in the console that have been registered with the "registercmd" function
348 // Return value should be 1 if CSQC handled the command, otherwise return 0 to have the engine handle it.
349 float button_zoom;
350 void Cmd_HUD_SetFields(float);
351 void Cmd_HUD_Help(float);
352 float CSQC_ConsoleCommand(string strMessage)
353 {
354         float argc;
355         // Tokenize String
356         argc = tokenize_console(strMessage);
357
358         // Acquire Command
359         string strCmd;
360         strCmd = argv(0);
361
362         if(strCmd == "hud_configure") { // config hud
363                 cvar_set("_hud_configure", ftos(!autocvar__hud_configure));
364                 return true;
365         } else if(strCmd == "hud_save") { // save hud config
366                 if(argv(1) == "" || argv(2)) {
367                         print(_("Usage:\n"));
368                         print(_("hud_save configname   (saves to hud_skinname_configname.cfg)\n"));
369                 }
370                 else
371                         HUD_Panel_ExportCfg(argv(1));
372                 return true;
373         } else if(strCmd == "+showscores") {
374                 scoreboard_showscores = true;
375                 return true;
376         } else if(strCmd == "-showscores") {
377                 scoreboard_showscores = false;
378                 return true;
379         } else if(strCmd == "+showaccuracy") {
380                 scoreboard_showaccuracy = true;
381                 return true;
382         } else if(strCmd == "-showaccuracy") {
383                 scoreboard_showaccuracy = false;
384                 return true;
385         }
386
387         if(camera_active)
388         if(strCmd == "+forward" || strCmd == "-back") {
389                 ++camera_direction_x;
390                 return true;
391         } else if(strCmd == "-forward" || strCmd == "+back") {
392                 --camera_direction_x;
393                 return true;
394         } else if(strCmd == "+moveright" || strCmd == "-moveleft") {
395                 --camera_direction_y;
396                 return true;
397         } else if(strCmd == "-moveright" || strCmd == "+moveleft") {
398                 ++camera_direction_y;
399                 return true;
400         } else if(strCmd == "+moveup" || strCmd == "-movedown") {
401                 ++camera_direction_z;
402                 return true;
403         } else if(strCmd == "-moveup" || strCmd == "+movedown") {
404                 --camera_direction_z;
405                 return true;
406         } else if(strCmd == "+roll_right" || strCmd == "-roll_left") {
407                 ++camera_roll;
408                 return true;
409         } else if(strCmd == "+roll_left" || strCmd == "-roll_right") {
410                 --camera_roll;
411                 return true;
412         }
413
414         return false;
415 }
416
417 .vector view_ofs;
418 entity debug_shotorg;
419 void ShotOrg_Draw()
420 {
421         self.origin = view_origin + view_forward * self.view_ofs_x + view_right * self.view_ofs_y + view_up * self.view_ofs_z;
422         self.angles = view_angles;
423         self.angles_x = -self.angles_x;
424         if not(self.cnt)
425                 self.drawmask = MASK_NORMAL;
426         else
427                 self.drawmask = 0;
428 }
429 void ShotOrg_Draw2D()
430 {
431         vector coord2d_topleft, coord2d_topright, coord2d;
432         string s;
433         vector fs;
434
435         s = vtos(self.view_ofs);
436         s = substring(s, 1, strlen(s) - 2);
437         if(tokenize_console(s) == 3)
438                 s = strcat(argv(0), " ", argv(1), " ", argv(2));
439
440         coord2d_topleft = project_3d_to_2d(self.origin + view_up * 4 - view_right * 4);
441         coord2d_topright = project_3d_to_2d(self.origin + view_up * 4 + view_right * 4);
442
443         fs = '1 1 0' * ((coord2d_topright_x - coord2d_topleft_x) / stringwidth(s, FALSE, '8 8 0'));
444
445         coord2d = coord2d_topleft;
446         if(fs_x < 8)
447         {
448                 coord2d_x += (coord2d_topright_x - coord2d_topleft_x) * (1 - 8 / fs_x) * 0.5;
449                 fs = '8 8 0';
450         }
451         coord2d_y -= fs_y;
452         coord2d_z = 0;
453         drawstring(coord2d, s, fs, '1 1 1', 1, 0);
454 }
455
456 void ShotOrg_Spawn()
457 {
458         debug_shotorg = spawn();
459         debug_shotorg.draw = ShotOrg_Draw;
460         debug_shotorg.draw2d = ShotOrg_Draw2D;
461         debug_shotorg.renderflags = RF_VIEWMODEL;
462         debug_shotorg.effects = EF_FULLBRIGHT;
463         precache_model("models/shotorg_adjuster.md3");
464         setmodel(debug_shotorg, "models/shotorg_adjuster.md3");
465         debug_shotorg.scale = 2;
466         debug_shotorg.view_ofs = '25 8 -8';
467 }
468
469 void DrawDebugModel()
470 {
471         if(time - floor(time) > 0.5)
472         {
473                 PolyDrawModel(self);
474                 self.drawmask = 0;
475         }
476         else
477         {
478                 self.renderflags = 0;
479                 self.drawmask = MASK_NORMAL;
480         }
481 }
482
483 void GameCommand(string msg)
484 {
485         string s;
486         float argc;
487         entity e;
488         argc = tokenize_console(msg);
489
490         if(argv(0) == "help" || argc == 0)
491         {
492                 print(_("Usage: cl_cmd COMMAND..., where possible commands are:\n"));
493                 print(_("  settemp cvar value\n"));
494                 print(_("  scoreboard_columns_set ...\n"));
495                 print(_("  scoreboard_columns_help\n"));
496                 GameCommand_Generic("help");
497                 return;
498         }
499
500         if(GameCommand_Generic(msg))
501                 return;
502
503         string cmd;
504         cmd = argv(0);
505         if(cmd == "mv_download") {
506                 Cmd_MapVote_MapDownload(argc);
507         }
508         else if(cmd == "hud_panel_radar_maximized")
509         {
510                 if(argc == 1)
511                         hud_panel_radar_maximized = !hud_panel_radar_maximized;
512                 else
513                         hud_panel_radar_maximized = (stof(argv(1)) != 0);
514         }
515         else if(cmd == "settemp") {
516                 cvar_clientsettemp(argv(1), argv(2));
517         }
518         else if(cmd == "scoreboard_columns_set") {
519                 Cmd_HUD_SetFields(argc);
520         }
521         else if(cmd == "scoreboard_columns_help") {
522                 Cmd_HUD_Help(argc);
523         }
524 #ifdef BLURTEST
525         else if(cmd == "blurtest") {
526                 blurtest_time0 = time;
527                 blurtest_time1 = time + stof(argv(1));
528                 blurtest_radius = stof(argv(2));
529                 blurtest_power = stof(argv(3));
530         }
531 #endif
532         else if(cmd == "shotorg_move") {
533                 if(!debug_shotorg)
534                         ShotOrg_Spawn();
535                 else
536                         debug_shotorg.view_ofs = debug_shotorg.view_ofs + stov(argv(1));
537                 localcmd("sv_cmd debug_shotorg \"", vtos(debug_shotorg.view_ofs), "\"\n");
538         }
539         else if(cmd == "shotorg_movez") {
540                 if(!debug_shotorg)
541                         ShotOrg_Spawn();
542                 else
543                         debug_shotorg.view_ofs = debug_shotorg.view_ofs + stof(argv(1)) * (debug_shotorg.view_ofs * (1 / debug_shotorg.view_ofs_x)); // closer/farther, same xy pos
544                 localcmd("sv_cmd debug_shotorg \"", vtos(debug_shotorg.view_ofs), "\"\n");
545         }
546         else if(cmd == "shotorg_set") {
547                 if(!debug_shotorg)
548                         ShotOrg_Spawn();
549                 else
550                         debug_shotorg.view_ofs = stov(argv(1));
551                 localcmd("sv_cmd debug_shotorg \"", vtos(debug_shotorg.view_ofs), "\"\n");
552         }
553         else if(cmd == "shotorg_setz") {
554                 if(!debug_shotorg)
555                         ShotOrg_Spawn();
556                 else
557                         debug_shotorg.view_ofs = debug_shotorg.view_ofs * (stof(argv(1)) / debug_shotorg.view_ofs_x); // closer/farther, same xy pos
558                 localcmd("sv_cmd debug_shotorg \"", vtos(debug_shotorg.view_ofs), "\"\n");
559         }
560         else if(cmd == "shotorg_toggle_hide") {
561                 if(debug_shotorg)
562                 {
563                         debug_shotorg.cnt = !debug_shotorg.cnt;
564                 }
565         }
566         else if(cmd == "shotorg_end") {
567                 if(debug_shotorg)
568                 {
569                         print(vtos(debug_shotorg.view_ofs), "\n");
570                         remove(debug_shotorg);
571                         debug_shotorg = world;
572                 }
573                 localcmd("sv_cmd debug_shotorg\n");
574         }
575         else if(cmd == "sendcvar") {
576                 // W_FixWeaponOrder will trash argv, so save what we need.
577                 string thiscvar;
578                 thiscvar = strzone(argv(1));
579                 s = cvar_string(thiscvar);
580                 if(thiscvar == "cl_weaponpriority")
581                         s = W_FixWeaponOrder(W_NumberWeaponOrder(s), 1);
582                 else if(substring(thiscvar, 0, 17) == "cl_weaponpriority" && strlen(thiscvar) == 18)
583                         s = W_FixWeaponOrder(W_NumberWeaponOrder(s), 0);
584                 localcmd("cmd sentcvar ", thiscvar, " \"", s, "\"\n");
585                 strunzone(thiscvar);
586         }
587         else if(cmd == "spawn") {
588                 s = argv(1);
589                 e = spawn();
590                 precache_model(s);
591                 setmodel(e, s);
592                 setorigin(e, view_origin);
593                 e.angles = view_angles;
594                 e.draw = DrawDebugModel;
595                 e.classname = "debugmodel";
596         }
597     else if(cmd == "vyes")
598     {
599         if(uid2name_dialog)
600         {
601             vote_active = 0; // force the panel to disappear right as we have selected the value (to prevent it from fading out in the normal vote panel pos)
602             vote_prev = 0;
603             localcmd("setreport cl_allow_uid2name 1\n");
604             vote_change = -9999;
605                         uid2name_dialog = 0;
606         }
607         else
608         {
609             localcmd("cmd vote yes\n");
610         }
611     }
612     else if(cmd == "vno")
613     {
614         if(uid2name_dialog)
615         {
616             vote_active = 0;
617             vote_prev = 0;
618             localcmd("setreport cl_allow_uid2name 0\n");
619             vote_change = -9999;
620                         uid2name_dialog = 0;
621         }
622         else
623         {
624             localcmd("cmd vote no\n");
625         }
626     }
627
628         else
629         {
630                 print("Invalid command. For a list of supported commands, try cl_cmd help.\n");
631         }
632
633         return;
634 }
635
636 // CSQC_InputEvent : Used to perform actions based on any key pressed, key released and mouse on the client.
637 // Return value should be 1 if CSQC handled the input, otherwise return 0 to have the input passed to the engine.
638 // All keys are in ascii.
639 // bInputType = 0 is key pressed, 1 is key released, 2 is mouse input.
640 // In the case of keyboard input, nPrimary is the ascii code, and nSecondary is 0.
641 // In the case of mouse input, nPrimary is xdelta, nSecondary is ydelta.
642 float CSQC_InputEvent(float bInputType, float nPrimary, float nSecondary)
643 {
644         float bSkipKey;
645         bSkipKey = false;
646
647         if (HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary))
648                 return true;
649
650         if (MapVote_InputEvent(bInputType, nPrimary, nSecondary))
651                 return true;
652
653         if(menu_visible)
654                 if(menu_action(bInputType, nPrimary, nSecondary))
655                         return TRUE;
656
657         return bSkipKey;
658 }
659
660 // END REQUIRED CSQC FUNCTIONS
661 // --------------------------------------------------------------------------
662
663 // --------------------------------------------------------------------------
664 // BEGIN OPTIONAL CSQC FUNCTIONS
665 void Ent_RemoveEntCS()
666 {
667         entcs_receiver[self.sv_entnum] = world;
668 }
669 void Ent_ReadEntCS()
670 {
671         float sf;
672         InterpolateOrigin_Undo();
673
674         self.classname = "entcs_receiver";
675         sf = ReadByte();
676
677         if(sf & 1)
678                 self.sv_entnum = ReadByte();
679         if(sf & 2)
680         {
681                 self.origin_x = ReadShort();
682                 self.origin_y = ReadShort();
683                 self.origin_z = ReadShort();
684         }
685         if(sf & 4)
686         {
687                 self.angles_y = ReadByte() * 360.0 / 256;
688                 self.angles_x = self.angles_z = 0;
689         }
690         if(sf & 8)
691                 self.healthvalue = ReadByte() * 10;
692         if(sf & 16)
693                 self.armorvalue = ReadByte() * 10;
694
695         entcs_receiver[self.sv_entnum] = self;
696         self.entremove = Ent_RemoveEntCS;
697
698         InterpolateOrigin_Note();
699 }
700
701 void Ent_Remove();
702
703 void Ent_RemovePlayerScore()
704 {
705         float i;
706
707         if(self.owner)
708         {
709                 SetTeam(self.owner, -1);
710                 self.owner.gotscores = 0;
711                 for(i = 0; i < MAX_SCORE; ++i)
712                         self.owner.(scores[i]) = 0; // clear all scores
713         }
714 }
715
716 void Ent_ReadPlayerScore()
717 {
718         float i, n;
719         float isNew;
720         entity o;
721
722         // damnit -.- don't want to go change every single .sv_entnum in hud.qc AGAIN
723         // (no I've never heard of M-x replace-string, sed, or anything like that)
724         isNew = !self.owner; // workaround for DP bug
725         n = ReadByte()-1;
726
727 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
728         if(!isNew && n != self.sv_entnum)
729         {
730                 //print(_("A CSQC entity changed its owner!\n"));
731                 print(sprintf(_("A CSQC entity changed its owner! (edict: %d, classname: %s)\n"), num_for_edict(self), self.classname));
732                 isNew = true;
733                 Ent_Remove();
734                 self.enttype = ENT_CLIENT_SCORES;
735         }
736 #endif
737
738         self.sv_entnum = n;
739
740         if not(playerslots[self.sv_entnum])
741                 playerslots[self.sv_entnum] = spawn();
742         o = self.owner = playerslots[self.sv_entnum];
743         o.sv_entnum = self.sv_entnum;
744         o.gotscores = 1;
745
746         //if not(o.sort_prev)
747         //      RegisterPlayer(o);
748         //playerchecker will do this for us later, if it has not already done so
749
750         float sf, lf;
751 #if MAX_SCORE <= 8
752         sf = ReadByte();
753         lf = ReadByte();
754 #else
755         sf = ReadShort();
756         lf = ReadShort();
757 #endif
758         float p;
759         for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
760                 if(sf & p)
761                 {
762                         if(lf & p)
763                                 o.(scores[i]) = ReadInt24_t();
764                         else
765                                 o.(scores[i]) = ReadChar();
766                 }
767
768         if(o.sort_prev)
769                 HUD_UpdatePlayerPos(o); // if not registered, we cannot do this yet!
770
771         self.entremove = Ent_RemovePlayerScore;
772 }
773
774 void Ent_ReadTeamScore()
775 {
776         float i;
777         entity o;
778
779         self.team = ReadByte();
780         o = self.owner = GetTeam(self.team, true); // these team numbers can always be trusted
781
782         float sf, lf;
783 #if MAX_TEAMSCORE <= 8
784         sf = ReadByte();
785         lf = ReadByte();
786 #else
787         sf = ReadShort();
788         lf = ReadShort();
789 #endif
790         float p;
791         for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
792                 if(sf & p)
793                 {
794                         if(lf & p)
795                                 o.(teamscores[i]) = ReadInt24_t();
796                         else
797                                 o.(teamscores[i]) = ReadChar();
798                 }
799
800         HUD_UpdateTeamPos(o);
801 }
802
803 void Ent_ClientData()
804 {
805         float f;
806         float newspectatee_status;
807
808         f = ReadByte();
809
810         scoreboard_showscores_force = (f & 1);
811
812         if(f & 2)
813         {
814                 newspectatee_status = ReadByte();
815                 if(newspectatee_status == player_localentnum)
816                         newspectatee_status = -1; // observing
817         }
818         else
819                 newspectatee_status = 0;
820
821         spectatorbutton_zoom = (f & 4);
822
823         if(f & 8)
824         {
825                 angles_held_status = 1;
826                 angles_held_x = ReadAngle();
827                 angles_held_y = ReadAngle();
828                 angles_held_z = 0;
829         }
830         else
831                 angles_held_status = 0;
832
833         if(newspectatee_status != spectatee_status)
834         {
835                 // clear race stuff
836                 race_laptime = 0;
837                 race_checkpointtime = 0;
838         }
839         if (autocvar_hud_panel_healtharmor_progressbar_gfx)
840         {
841                 if ( (spectatee_status == -1 && newspectatee_status > 0) //before observing, now spectating
842                   || (spectatee_status > 0 && newspectatee_status > 0 && spectatee_status != newspectatee_status) //changed spectated player
843                 )
844                         prev_p_health = -1;
845                 else if(spectatee_status && !newspectatee_status) //before observing/spectating, now playing
846                         prev_health = -1;
847         }
848         spectatee_status = newspectatee_status;
849 }
850
851 void Ent_Nagger()
852 {
853         float nags, i, j, b, f;
854
855         nags = ReadByte(); // NAGS NAGS NAGS NAGS NAGS NAGS NADZ NAGS NAGS NAGS
856
857         if(!(nags & 4))
858         {
859                 if(vote_called_vote)
860                         strunzone(vote_called_vote);
861                 vote_called_vote = string_null;
862                 vote_active = 0;
863         }
864         else
865         {
866                 vote_active = 1;
867         }
868
869         if(nags & 64)
870         {
871                 vote_yescount = ReadByte();
872                 vote_nocount = ReadByte();
873                 vote_needed = ReadByte();
874                 vote_highlighted = ReadChar();
875         }
876
877         if(nags & 128)
878         {
879                 if(vote_called_vote)
880                         strunzone(vote_called_vote);
881                 vote_called_vote = strzone(ColorTranslateRGB(ReadString()));
882         }
883
884         if(nags & 1)
885         {
886                 for(j = 0; j < maxclients; ++j)
887                         if(playerslots[j])
888                                 playerslots[j].ready = 1;
889                 for(i = 1; i <= maxclients; i += 8)
890                 {
891                         f = ReadByte();
892                         for(j = i-1, b = 1; b < 256; b *= 2, ++j)
893                                 if not(f & b)
894                                         if(playerslots[j])
895                                                 playerslots[j].ready = 0;
896                 }
897         }
898
899         ready_waiting = (nags & 1);
900         ready_waiting_for_me = (nags & 2);
901         vote_waiting = (nags & 4);
902         vote_waiting_for_me = (nags & 8);
903         warmup_stage = (nags & 16);
904 }
905
906 void Ent_RandomSeed()
907 {
908         float s;
909         prandom_debug();
910         s = ReadShort();
911         psrandom(s);
912 }
913
914 void Ent_ReadAccuracy(void)
915 {
916         float sf, f, w, b;
917         sf = ReadInt24_t();
918         if(sf == 0)
919         {
920                 for(w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
921                         weapon_accuracy[w] = -1;
922                 return;
923         }
924
925         for(w = 0, f = 1; w <= WEP_LAST - WEP_FIRST; ++w, f *= 2)
926         {
927                 if(sf & f)
928                 {
929                         b = ReadByte();
930                         if(b == 0)
931                                 weapon_accuracy[w] = -1;
932                         else if(b == 255)
933                                 weapon_accuracy[w] = 1.0; // no better error handling yet, sorry
934                         else
935                                 weapon_accuracy[w] = (b - 1.0) / 100.0;
936                 }
937         }
938 }
939
940 // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.
941 // The only parameter reflects if the entity is "new" to the client, meaning it just came into the client's PVS.
942 void Ent_RadarLink();
943 void Ent_Init();
944 void Ent_ScoresInfo();
945 void CSQC_Ent_Update(float bIsNewEntity)
946 {
947         float t;
948         float savetime;
949         t = ReadByte();
950
951         // set up the "time" global for received entities to be correct for interpolation purposes
952         savetime = time;
953         if(servertime)
954         {
955                 time = servertime;
956         }
957         else
958         {
959                 serverprevtime = time;
960                 serverdeltatime = getstatf(STAT_MOVEVARS_TICRATE) * getstatf(STAT_MOVEVARS_TIMESCALE);
961                 time = serverprevtime + serverdeltatime;
962         }
963
964 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
965         if(self.enttype)
966         {
967                 if(t != self.enttype || bIsNewEntity)
968                 {
969                         //print(_("A CSQC entity changed its type!\n"));
970                         print(sprintf(_("A CSQC entity changed its type! (edict: %d, type: %d -> %d)\n"), num_for_edict(self), self.enttype, t));
971                         Ent_Remove();
972                         bIsNewEntity = 1;
973                 }
974         }
975         else
976         {
977                 if(!bIsNewEntity)
978                 {
979                         print(sprintf(_("A CSQC entity appeared out of nowhere! (edict: %d, type: %d)\n"), num_for_edict(self), t));
980                         bIsNewEntity = 1;
981                 }
982         }
983 #endif
984         self.enttype = t;
985         switch(t)
986         {
987                 case ENT_CLIENT_ENTCS: Ent_ReadEntCS(); break;
988                 case ENT_CLIENT_SCORES: Ent_ReadPlayerScore(); break;
989                 case ENT_CLIENT_TEAMSCORES: Ent_ReadTeamScore(); break;
990                 case ENT_CLIENT_POINTPARTICLES: Ent_PointParticles(); break;
991                 case ENT_CLIENT_RAINSNOW: Ent_RainOrSnow(); break;
992                 case ENT_CLIENT_LASER: Ent_Laser(); break;
993                 case ENT_CLIENT_NAGGER: Ent_Nagger(); break;
994                 case ENT_CLIENT_WAYPOINT: Ent_WaypointSprite(); break;
995                 case ENT_CLIENT_RADARLINK: Ent_RadarLink(); break;
996                 case ENT_CLIENT_PROJECTILE: Ent_Projectile(); break;
997                 case ENT_CLIENT_GIBSPLASH: Ent_GibSplash(bIsNewEntity); break;
998                 case ENT_CLIENT_DAMAGEINFO: Ent_DamageInfo(bIsNewEntity); break;
999                 case ENT_CLIENT_CASING: Ent_Casing(bIsNewEntity); break;
1000                 case ENT_CLIENT_INIT: Ent_Init(); break;
1001                 case ENT_CLIENT_SCORES_INFO: Ent_ScoresInfo(); break;
1002                 case ENT_CLIENT_MAPVOTE: Ent_MapVote(); break;
1003                 case ENT_CLIENT_CLIENTDATA: Ent_ClientData(); break;
1004                 case ENT_CLIENT_RANDOMSEED: Ent_RandomSeed(); break;
1005                 case ENT_CLIENT_WALL: Ent_Wall(); break;
1006                 case ENT_CLIENT_MODELEFFECT: Ent_ModelEffect(bIsNewEntity); break;
1007                 case ENT_CLIENT_TUBANOTE: Ent_TubaNote(bIsNewEntity); break;
1008                 case ENT_CLIENT_WARPZONE: WarpZone_Read(bIsNewEntity); break;
1009                 case ENT_CLIENT_WARPZONE_CAMERA: WarpZone_Camera_Read(bIsNewEntity); break;
1010                 case ENT_CLIENT_WARPZONE_TELEPORTED: WarpZone_Teleported_Read(bIsNewEntity); break;
1011                 case ENT_CLIENT_TRIGGER_MUSIC: Ent_ReadTriggerMusic(); break;
1012                 case ENT_CLIENT_HOOK: Ent_ReadHook(bIsNewEntity, ENT_CLIENT_HOOK); break;
1013                 case ENT_CLIENT_LGBEAM: Ent_ReadHook(bIsNewEntity, ENT_CLIENT_LGBEAM); break;
1014                 case ENT_CLIENT_GAUNTLET: Ent_ReadHook(bIsNewEntity, ENT_CLIENT_GAUNTLET); break;
1015                 case ENT_CLIENT_ACCURACY: Ent_ReadAccuracy(); break;
1016                 case ENT_CLIENT_AUXILIARYXHAIR: Net_AuXair2(bIsNewEntity); break;
1017                 case ENT_CLIENT_TURRET: ent_turret(); break; 
1018                 default:
1019                         //error(strcat(_("unknown entity type in CSQC_Ent_Update: %d\n"), self.enttype));
1020                         error(sprintf(_("Unknown entity type in CSQC_Ent_Update (enttype: %d, edict: %d, classname: %s)\n"), self.enttype, num_for_edict(self), self.classname));
1021                         break;
1022         }
1023
1024         time = savetime;
1025 }
1026 // Destructor, but does NOT deallocate the entity by calling remove(). Also
1027 // used when an entity changes its type. For an entity that someone interacts
1028 // with others, make sure it can no longer do so.
1029 void Ent_Remove()
1030 {
1031         if(self.entremove)
1032                 self.entremove();
1033
1034         self.enttype = 0;
1035         self.classname = "";
1036         self.draw = menu_sub_null;
1037         self.entremove = menu_sub_null;
1038         // TODO possibly set more stuff to defaults
1039 }
1040 // CSQC_Ent_Remove : Called when the server requests a SSQC / CSQC entity to be removed.  Essentially call remove(self) as well.
1041 void CSQC_Ent_Remove()
1042 {
1043         if(self.enttype)
1044                 Ent_Remove();
1045         remove(self);
1046 }
1047
1048 void Gamemode_Init()
1049 {
1050         if not(isdemo())
1051         {
1052                 localcmd("\n_cl_hook_gamestart ", GametypeNameFromType(gametype), "\n");
1053                 calledhooks |= HOOK_START;
1054         }
1055 }
1056 // 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.
1057 void CSQC_Parse_StuffCmd(string strMessage)
1058 {
1059         localcmd(strMessage);
1060 }
1061 // 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.
1062 void CSQC_Parse_Print(string strMessage)
1063 {
1064         print(ColorTranslateRGB(strMessage));
1065 }
1066
1067 // CSQC_Parse_CenterPrint : Provides the centerprint string in the first parameter that the server provided.
1068 void CSQC_Parse_CenterPrint(string strMessage)
1069 {
1070         centerprint(strMessage);
1071 }
1072
1073 string notranslate_fogcmd1 = "\nfog ";
1074 string notranslate_fogcmd2 = "\nr_fog_exp2 0\nr_drawfog 1\n";
1075 void Fog_Force()
1076 {
1077         // TODO somehow thwart prvm_globalset client ...
1078
1079         if(forcefog != "")
1080                 localcmd(strcat(notranslate_fogcmd1, forcefog, notranslate_fogcmd2));
1081 }
1082
1083 void Gamemode_Init();
1084 void Ent_ScoresInfo()
1085 {
1086         float i;
1087         self.classname = "ent_client_scores_info";
1088         gametype = ReadByte();
1089         for(i = 0; i < MAX_SCORE; ++i)
1090         {
1091                 scores_label[i] = strzone(ReadString());
1092                 scores_flags[i] = ReadByte();
1093         }
1094         for(i = 0; i < MAX_TEAMSCORE; ++i)
1095         {
1096                 teamscores_label[i] = strzone(ReadString());
1097                 teamscores_flags[i] = ReadByte();
1098         }
1099         HUD_InitScores();
1100         Gamemode_Init();
1101 }
1102
1103 void Ent_Init()
1104 {
1105         self.classname = "ent_client_init";
1106
1107         nb_pb_period = ReadByte() / 32; //Accuracy of 1/32th
1108
1109         hook_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
1110         hook_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
1111         hook_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
1112         hook_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
1113         electro_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
1114         electro_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
1115         electro_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
1116         electro_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
1117         gauntlet_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
1118         gauntlet_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
1119         gauntlet_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
1120         gauntlet_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
1121
1122         if(forcefog)
1123                 strunzone(forcefog);
1124         forcefog = strzone(ReadString());
1125
1126         armorblockpercent = ReadByte() / 255.0;
1127
1128         g_weaponswitchdelay = ReadByte() / 255.0;
1129
1130         g_balance_grenadelauncher_bouncefactor = ReadCoord();
1131         g_balance_grenadelauncher_bouncestop = ReadCoord();
1132         g_balance_electro_secondary_bouncefactor = ReadCoord();
1133         g_balance_electro_secondary_bouncestop = ReadCoord();
1134
1135         nex_scope = !ReadByte();
1136         rifle_scope = !ReadByte();
1137
1138         serverflags = ReadByte();
1139
1140         minelayer_maxmines = ReadByte();
1141
1142         hagar_maxrockets = ReadByte();
1143
1144         g_trueaim_minrange = ReadCoord();
1145
1146         if(!postinit)
1147                 PostInit();
1148 }
1149
1150 void Net_ReadRace()
1151 {
1152         float b;
1153
1154         b = ReadByte();
1155
1156         switch(b)
1157         {
1158                 case RACE_NET_CHECKPOINT_HIT_QUALIFYING:
1159                         race_checkpoint = ReadByte();
1160                         race_time = ReadInt24_t();
1161                         race_previousbesttime = ReadInt24_t();
1162                         if(race_previousbestname)
1163                                 strunzone(race_previousbestname);
1164                         race_previousbestname = strzone(ColorTranslateRGB(ReadString()));
1165
1166                         race_checkpointtime = time;
1167
1168                         if(race_checkpoint == 0 || race_checkpoint == 254)
1169                         {
1170                                 race_penaltyaccumulator = 0;
1171                                 race_laptime = time; // valid
1172                         }
1173
1174                         break;
1175
1176                 case RACE_NET_CHECKPOINT_CLEAR:
1177                         race_laptime = 0;
1178                         race_checkpointtime = 0;
1179                         break;
1180
1181                 case RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING:
1182                         race_laptime = ReadCoord();
1183                         race_checkpointtime = -99999;
1184                         // fall through
1185                 case RACE_NET_CHECKPOINT_NEXT_QUALIFYING:
1186                         race_nextcheckpoint = ReadByte();
1187
1188                         race_nextbesttime = ReadInt24_t();
1189                         if(race_nextbestname)
1190                                 strunzone(race_nextbestname);
1191                         race_nextbestname = strzone(ColorTranslateRGB(ReadString()));
1192                         break;
1193
1194                 case RACE_NET_CHECKPOINT_HIT_RACE:
1195                         race_mycheckpoint = ReadByte();
1196                         race_mycheckpointtime = time;
1197                         race_mycheckpointdelta = ReadInt24_t();
1198                         race_mycheckpointlapsdelta = ReadByte();
1199                         if(race_mycheckpointlapsdelta >= 128)
1200                                 race_mycheckpointlapsdelta -= 256;
1201                         if(race_mycheckpointenemy)
1202                                 strunzone(race_mycheckpointenemy);
1203                         race_mycheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1204                         break;
1205
1206                 case RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT:
1207                         race_othercheckpoint = ReadByte();
1208                         race_othercheckpointtime = time;
1209                         race_othercheckpointdelta = ReadInt24_t();
1210                         race_othercheckpointlapsdelta = ReadByte();
1211                         if(race_othercheckpointlapsdelta >= 128)
1212                                 race_othercheckpointlapsdelta -= 256;
1213                         if(race_othercheckpointenemy)
1214                                 strunzone(race_othercheckpointenemy);
1215                         race_othercheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1216                         break;
1217
1218                 case RACE_NET_PENALTY_RACE:
1219                         race_penaltyeventtime = time;
1220                         race_penaltytime = ReadShort();
1221                         //race_penaltyaccumulator += race_penaltytime;
1222                         if(race_penaltyreason)
1223                                 strunzone(race_penaltyreason);
1224                         race_penaltyreason = strzone(ReadString());
1225                         break;
1226
1227                 case RACE_NET_PENALTY_QUALIFYING:
1228                         race_penaltyeventtime = time;
1229                         race_penaltytime = ReadShort();
1230                         race_penaltyaccumulator += race_penaltytime;
1231                         if(race_penaltyreason)
1232                                 strunzone(race_penaltyreason);
1233                         race_penaltyreason = strzone(ReadString());
1234                         break;
1235
1236                 case RACE_NET_SERVER_RECORD:
1237                         race_server_record = ReadInt24_t();
1238                         break;
1239                 case RACE_NET_SPEED_AWARD:
1240                         race_speedaward = ReadInt24_t();
1241                         if(race_speedaward_holder)
1242                                 strunzone(race_speedaward_holder);
1243                         race_speedaward_holder = strzone(ReadString());
1244                         break;
1245                 case RACE_NET_SPEED_AWARD_BEST:
1246                         race_speedaward_alltimebest = ReadInt24_t();
1247                         if(race_speedaward_alltimebest_holder)
1248                                 strunzone(race_speedaward_alltimebest_holder);
1249                         race_speedaward_alltimebest_holder = strzone(ReadString());
1250                         break;
1251                 case RACE_NET_SERVER_RANKINGS:
1252                         float pos, prevpos, del;
1253                         pos = ReadShort();
1254                         prevpos = ReadShort();
1255                         del = ReadShort();
1256
1257                         // move other rankings out of the way
1258                         float i;
1259                         if (prevpos) {
1260                                 for (i=prevpos-1;i>pos-1;--i) {
1261                                         grecordtime[i] = grecordtime[i-1];
1262                                         if(grecordholder[i])
1263                                                 strunzone(grecordholder[i]);
1264                                         grecordholder[i] = strzone(grecordholder[i-1]);
1265                                 }
1266                         } else if (del) { // a record has been deleted by the admin
1267                                 for (i=pos-1; i<= RANKINGS_CNT-1; ++i) {
1268                                         if (i == RANKINGS_CNT-1) { // clear out last record
1269                                                 grecordtime[i] = 0;
1270                                                 if (grecordholder[i])
1271                                                         strunzone(grecordholder[i]);
1272                                                 grecordholder[i] = string_null;
1273                                         }
1274                                         else {
1275                                                 grecordtime[i] = grecordtime[i+1];
1276                                                 if (grecordholder[i])
1277                                                         strunzone(grecordholder[i]);
1278                                                 grecordholder[i] = strzone(grecordholder[i+1]);
1279                                         }
1280                                 }
1281                         } else { // player has no ranked record yet
1282                                 for (i=RANKINGS_CNT-1;i>pos-1;--i) {
1283                                         grecordtime[i] = grecordtime[i-1];
1284                                         if(grecordholder[i])
1285                                                 strunzone(grecordholder[i]);
1286                                         grecordholder[i] = strzone(grecordholder[i-1]);
1287                                 }
1288                         }
1289
1290                         // store new ranking
1291                         if(grecordholder[pos-1] != "")
1292                                 strunzone(grecordholder[pos-1]);
1293                         grecordholder[pos-1] = strzone(ReadString());
1294                         grecordtime[pos-1] = ReadInt24_t();
1295                         if(grecordholder[pos-1] == GetPlayerName(player_localentnum -1))
1296                                 race_myrank = pos;
1297                         break;
1298                 case RACE_NET_SERVER_STATUS:
1299                         race_status = ReadShort();
1300                         if(race_status_name)
1301                                 strunzone(race_status_name);
1302                         race_status_name = strzone(ReadString());
1303         }
1304 }
1305
1306 void Net_ReadSpawn()
1307 {
1308         zoomin_effect = 1;
1309         current_viewzoom = 0.6;
1310 }
1311
1312 void Net_TeamNagger()
1313 {
1314         teamnagger = 1;
1315 }
1316
1317 void Net_ReadPingPLReport()
1318 {
1319         float e, pi, pl, ml;
1320         e = ReadByte();
1321         pi = ReadShort();
1322         pl = ReadByte();
1323         ml = ReadByte();
1324         if not(playerslots[e])
1325                 return;
1326         playerslots[e].ping = pi;
1327         playerslots[e].ping_packetloss = pl / 255.0;
1328         playerslots[e].ping_movementloss = ml / 255.0;
1329 }
1330
1331 void Net_WeaponComplain() {
1332         complain_weapon = ReadByte();
1333
1334         if(complain_weapon_name)
1335                 strunzone(complain_weapon_name);
1336         complain_weapon_name = strzone(ReadString());
1337
1338         complain_weapon_type = ReadByte();
1339
1340         complain_weapon_time = time;
1341         weapontime = time; // ping the weapon panel
1342 }
1343
1344 // CSQC_Parse_TempEntity : Handles all temporary entity network data in the CSQC layer.
1345 // You must ALWAYS first acquire the temporary ID, which is sent as a byte.
1346 // Return value should be 1 if CSQC handled the temporary entity, otherwise return 0 to have the engine process the event.
1347 float CSQC_Parse_TempEntity()
1348 {
1349         float bHandled;
1350                 bHandled  = true;
1351         // Acquire TE ID
1352         float nTEID;
1353                 nTEID = ReadByte();
1354
1355                 // NOTE: Could just do return instead of break...
1356         switch(nTEID)
1357         {
1358                 case TE_CSQC_TARGET_MUSIC:
1359                         Net_TargetMusic();
1360                         bHandled = true;
1361                         break;
1362                 case TE_CSQC_PICTURE:
1363                         Net_MapVote_Picture();
1364                         bHandled = true;
1365                         break;
1366                 case TE_CSQC_RACE:
1367                         Net_ReadRace();
1368                         bHandled = true;
1369                         break;
1370                 case TE_CSQC_SPAWN:
1371                         Net_ReadSpawn();
1372                         bHandled = true;
1373                         break;
1374                 case TE_CSQC_ZCURVEPARTICLES:
1375                         Net_ReadZCurveParticles();
1376                         bHandled = true;
1377                         break;
1378                 case TE_CSQC_NEXGUNBEAMPARTICLE:
1379                         Net_ReadNexgunBeamParticle();
1380                         bHandled = true;
1381                         break;
1382                 case TE_CSQC_TEAMNAGGER:
1383                         Net_TeamNagger();
1384                         bHandled = true;
1385                         break;
1386                 case TE_CSQC_LIGHTNINGARC:
1387                         Net_ReadLightningarc();
1388                         bHandled = true;
1389                         break;
1390                 case TE_CSQC_PINGPLREPORT:
1391                         Net_ReadPingPLReport();
1392                         bHandled = true;
1393                         break;
1394                 case TE_CSQC_ANNOUNCE:
1395                         announce_snd = strzone(ReadString());
1396                         bHandled = true;
1397                         break;
1398                 case TE_CSQC_KILLNOTIFY:
1399                         HUD_KillNotify(ReadString(), ReadString(), ReadString(), ReadShort(), ReadByte());
1400                         bHandled = true;
1401                         break;
1402                 case TE_CSQC_KILLCENTERPRINT:
1403                         HUD_KillCenterprint(ReadString(), ReadString(), ReadShort(), ReadByte());
1404                         bHandled = true;
1405                         break;
1406                 case TE_CSQC_CENTERPRINT_GENERIC:
1407                         float id;
1408                         string s;
1409                         id = ReadByte();
1410                         s = ReadString();
1411                         if (id != 0 && s != "")
1412                                 centerprint_generic(id, s, ReadByte(), ReadByte());
1413                         else
1414                                 centerprint_generic(id, s, 0, 0);
1415                         bHandled = true;
1416                         break;
1417                 case TE_CSQC_WEAPONCOMPLAIN:
1418                         Net_WeaponComplain();
1419                         bHandled = true;
1420                         break;
1421         case TE_CSQC_VEHICLESETUP:
1422             Net_VehicleSetup();
1423             bHandled = true;
1424             break;
1425                 default:
1426                         // No special logic for this temporary entity; return 0 so the engine can handle it
1427                         bHandled = false;
1428                         break;
1429         }
1430
1431         return bHandled;
1432 }
1433
1434 string getcommandkey(string text, string command)
1435 {
1436         string keys;
1437         float n, j, k, l;
1438
1439         if (!autocvar_hud_showbinds)
1440                 return text;
1441
1442         keys = db_get(binddb, command);
1443         if (!keys)
1444         {
1445                 n = tokenize(findkeysforcommand(command)); // uses '...' strings
1446                 for(j = 0; j < n; ++j)
1447                 {
1448                         k = stof(argv(j));
1449                         if(k != -1)
1450                         {
1451                                 if ("" == keys)
1452                                         keys = keynumtostring(k);
1453                                 else
1454                                         keys = strcat(keys, ", ", keynumtostring(k));
1455
1456                                 ++l;
1457                                 if (autocvar_hud_showbinds_limit > 0 && autocvar_hud_showbinds_limit >= l) break;
1458                         }
1459
1460                 }
1461                 db_put(binddb, command, keys);
1462         }
1463
1464         if ("" == keys) {
1465                 if (autocvar_hud_showbinds > 1)
1466                         return sprintf(_("%s (not bound)"), text);
1467                 else
1468                         return text;
1469         }
1470         else if (autocvar_hud_showbinds > 1)
1471                 return sprintf(_("%s (%s)"), text, keys);
1472         else
1473                 return keys;
1474 }