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