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