]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/main.qc
Update default video settings
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / main.qc
1 #include "main.qh"
2
3 #include <client/command/cl_cmd.qh>
4 #include <client/draw.qh>
5 #include <client/hud/_mod.qh>
6 #include <client/hud/panel/centerprint.qh>
7 #include <client/hud/panel/chat.qh>
8 #include <client/hud/panel/quickmenu.qh>
9 #include <client/hud/panel/scoreboard.qh>
10 #include <client/items/items.qh>
11 #include <client/mapvoting.qh>
12 #include <client/mutators/_mod.qh>
13 #include <client/shownames.qh>
14 #include <client/view.qh>
15 #include <client/weapons/projectile.qh>
16 #include <common/checkextension.qh>
17 #include <common/deathtypes/all.qh>
18 #include <common/effects/all.inc>
19 #include <common/effects/all.qh>
20 #include <common/effects/effect.qh>
21 #include <common/effects/qc/_mod.qh>
22 #include <common/ent_cs.qh>
23 #include <common/gamemodes/gamemode/nexball/cl_nexball.qh>
24 #include <common/items/_mod.qh>
25 #include <common/mapinfo.qh>
26 #include <common/mapobjects/_mod.qh>
27 #include <common/minigames/cl_minigames.qh>
28 #include <common/minigames/cl_minigames_hud.qh>
29 #include <common/net_linked.qh>
30 #include <common/net_notice.qh>
31 #include <common/scores.qh>
32 #include <common/vehicles/all.qh>
33 #include <lib/csqcmodel/cl_model.qh>
34 #include <lib/csqcmodel/interpolate.qh>
35 #include <lib/warpzone/client.qh>
36
37 // --------------------------------------------------------------------------
38 // BEGIN REQUIRED CSQC FUNCTIONS
39 //include "main.qh"
40
41 #define DP_CSQC_ENTITY_REMOVE_IS_B0RKED
42
43 // CSQC_Init : Called every time the CSQC code is initialized (essentially at map load)
44 // Useful for precaching things
45
46 void CSQC_Init(float apilevel, string enginename, float engineversion)
47 {
48         prvm_language = strzone(cvar_string("prvm_language"));
49
50 #ifdef WATERMARK
51         LOG_TRACEF("^4CSQC Build information: ^1%s", WATERMARK);
52 #endif
53
54         CheckEngineExtensions();
55
56         {
57                 int i = 0;
58                 for ( ; i < 255; ++i)
59                         if (getplayerkeyvalue(i, "viewentity") == "")
60                                 break;
61                 maxclients = i;
62         }
63
64         // needs to be done so early because of the constants they create
65         static_init();
66         static_init_late();
67         static_init_precache();
68
69         binddb = db_create();
70         tempdb = db_create();
71         ClientProgsDB = db_load("client.db");
72
73         draw_endBoldFont();
74
75         //registercommand("hud_configure");
76         //registercommand("hud_save");
77         //registercommand("menu_action");
78
79         ConsoleCommand_macro_init();
80
81         registercvar("hud_usecsqc", "1");
82         registercvar("scoreboard_columns", "default");
83
84         registercvar("cl_nade_type", "3");
85         registercvar("cl_pokenade_type", "zombie");
86
87         registercvar("cl_jumpspeedcap_min", "");
88         registercvar("cl_jumpspeedcap_max", "");
89
90         registercvar("cl_shootfromfixedorigin", "");
91
92         registercvar("cl_multijump", "-1");
93
94         registercvar("cl_dodging", "0");
95
96         registercvar("cl_spawn_near_teammate", "1");
97
98         registercvar("cl_weapon_switch_reload", "1");
99         registercvar("cl_weapon_switch_fallback_to_impulse", "1");
100
101         registercvar("cl_allow_uidranking", "1");
102
103         if(autocvar_cl_lockview)
104                 cvar_set("cl_lockview", "0");
105
106         if (cvar_type("_scoreboard_team_selection_available") & CVAR_TYPEFLAG_EXISTS)
107                 cvar_settemp("_scoreboard_team_selection_available", "1");
108         cvar_set("_scoreboard_team_selection", "0"); // in case it has been left set to 1
109
110         gametype = NULL;
111
112         postinit = false;
113
114         calledhooks = 0;
115
116         teams = Sort_Spawn();
117         players = Sort_Spawn();
118
119         GetTeam(NUM_SPECTATOR, true); // add specs first
120
121         for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
122                 weapon_accuracy[w] = -1;
123
124         // precaches
125
126         if(autocvar_cl_reticle)
127         {
128                 precache_pic("gfx/reticle_normal");
129                 // weapon reticles are precached in weapon files
130         }
131
132         {
133                 get_mi_min_max_texcoords(1); // try the CLEVER way first
134                 minimapname = strcat("gfx/", mi_shortname, "_radar");
135
136                 if (precache_pic(minimapname) == "")
137                 {
138                         // but maybe we have a non-clever minimap
139                         minimapname = strcat("gfx/", mi_shortname, "_mini");
140                         if (precache_pic(minimapname) == "")
141                                 minimapname = ""; // FAIL
142                         else
143                                 get_mi_min_max_texcoords(0); // load new texcoords
144                 }
145
146                 mi_center = (mi_min + mi_max) * 0.5;
147                 mi_scale = mi_max - mi_min;
148                 minimapname = strzone(minimapname);
149         }
150
151         hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
152         LoadMenuSkinValues();
153 }
154
155 // CSQC_Shutdown : Called every time the CSQC code is shutdown (changing maps, quitting, etc)
156 void Shutdown()
157 {
158         WarpZone_Shutdown();
159
160         delete(teams);
161         delete(players);
162         db_close(binddb);
163         db_close(tempdb);
164         if(autocvar_cl_db_saveasdump)
165                 db_dump(ClientProgsDB, "client.db");
166         else
167                 db_save(ClientProgsDB, "client.db");
168         db_close(ClientProgsDB);
169
170         if(camera_active)
171                 cvar_set("chase_active",ftos(chase_active_backup));
172
173         // unset the event chasecam's chase_active
174         if(autocvar_chase_active < 0)
175                 cvar_set("chase_active", "0");
176
177         if (autocvar_r_drawviewmodel < 0)
178                 cvar_set("r_drawviewmodel", "0");
179
180         cvar_set("slowmo", cvar_defstring("slowmo")); // reset it back to 'default'
181
182         if (!isdemo())
183         {
184                 if (!(calledhooks & HOOK_START))
185                         localcmd("\n_cl_hook_gamestart nop\n");
186                 if (!(calledhooks & HOOK_END))
187                 {
188                         int gamecount = cvar("cl_matchcount");
189                         localcmd("\ncl_hook_gameend\n");
190                         // NOTE: using localcmd here to ensure it's executed AFTER cl_hook_gameend
191                         // earlier versions of the game abuse the hook to set this cvar
192                         localcmd(strcat("cl_matchcount ", itos(gamecount + 1), "\n"));
193                         //cvar_set("cl_matchcount", itos(gamecount + 1));
194                 }
195         }
196
197         localcmd("\ncl_hook_shutdown\n");
198
199         localcmd("\n-button12\n");
200
201         strfree(gametype_custom_name);
202
203         deactivate_minigame();
204         HUD_MinigameMenu_Close(NULL, NULL, NULL);
205
206         ReplicateVars(REPLICATEVARS_DESTROY);
207 }
208
209 void AuditLists()
210 {
211         entity e;
212         entity prev;
213
214         prev = players;
215         for(e = prev.sort_next; e; prev = e, e = e.sort_next)
216         {
217                 if(prev != e.sort_prev)
218                         error(strcat("sort list chain error\nplease submit the output of 'prvm_edicts client' to the developers"));
219         }
220
221         prev = teams;
222         for(e = prev.sort_next; e; prev = e, e = e.sort_next)
223         {
224                 if(prev != e.sort_prev)
225                         error(strcat("sort list chain error\nplease submit the output of 'prvm_edicts client' to the developers"));
226         }
227 }
228
229 float RegisterPlayer(entity player)
230 {
231         entity pl;
232         AuditLists();
233         for(pl = players.sort_next; pl; pl = pl.sort_next)
234                 if(pl == player)
235                         error("Player already registered!");
236         player.sort_next = players.sort_next;
237         player.sort_prev = players;
238         if(players.sort_next)
239                 players.sort_next.sort_prev = player;
240         players.sort_next = player;
241         AuditLists();
242         return true;
243 }
244
245 void RemovePlayer(entity player)
246 {
247         entity pl, parent;
248         AuditLists();
249         parent = players;
250         for(pl = players.sort_next; pl && pl != player; pl = pl.sort_next)
251                 parent = pl;
252
253         if(!pl)
254         {
255                 error("Trying to remove a player which is not in the playerlist!");
256                 return;
257         }
258         parent.sort_next = player.sort_next;
259         if(player.sort_next)
260                 player.sort_next.sort_prev = parent;
261         AuditLists();
262 }
263
264 void MoveToLast(entity e)
265 {
266         AuditLists();
267         entity ent = e.sort_next;
268         while(ent)
269         {
270                 SORT_SWAP(ent, e);
271                 ent = e.sort_next;
272         }
273         AuditLists();
274 }
275
276 float RegisterTeam(entity Team)
277 {
278         assert_once(Team.team, eprint(Team));
279         entity tm;
280         AuditLists();
281         for(tm = teams.sort_next; tm; tm = tm.sort_next)
282                 if(tm == Team)
283                         error("Team already registered!");
284         Team.sort_next = teams.sort_next;
285         Team.sort_prev = teams;
286         if(teams.sort_next)
287                 teams.sort_next.sort_prev = Team;
288         teams.sort_next = Team;
289         if(Team.team && Team.team != NUM_SPECTATOR)
290                 ++team_count;
291         AuditLists();
292         return true;
293 }
294
295 void RemoveTeam(entity Team)
296 {
297         entity tm, parent;
298         AuditLists();
299         parent = teams;
300         for(tm = teams.sort_next; tm && tm != Team; tm = tm.sort_next)
301                 parent = tm;
302
303         if(!tm)
304         {
305                 LOG_INFO(_("Trying to remove a team which is not in the teamlist!"));
306                 return;
307         }
308         parent.sort_next = Team.sort_next;
309         if(Team.sort_next)
310                 Team.sort_next.sort_prev = parent;
311         if(Team.team && Team.team != NUM_SPECTATOR)
312                 --team_count;
313         AuditLists();
314 }
315
316 entity GetTeam(int Team, bool add)
317 {
318         TC(int, Team); TC(bool, add);
319         int num = (Team == NUM_SPECTATOR) ? 16 : Team;
320         if(teamslots[num])
321                 return teamslots[num];
322         if (!add)
323                 return NULL;
324         entity tm = new_pure(team);
325         tm.team = Team;
326         teamslots[num] = tm;
327         RegisterTeam(tm);
328         return tm;
329 }
330
331 .float has_team;
332 bool SetTeam(entity o, int Team)
333 {
334         TC(int, Team);
335         //devassert_once(Team);
336         entity tm;
337         if(teamplay)
338         {
339                 switch(Team)
340                 {
341                         case -1:
342                         case NUM_TEAM_1:
343                         case NUM_TEAM_2:
344                         case NUM_TEAM_3:
345                         case NUM_TEAM_4:
346                                 break;
347                         default:
348                                 if(GetTeam(Team, false) == NULL)
349                                 {
350                                         LOG_TRACEF("trying to switch to unsupported team %d", Team);
351                                         Team = NUM_SPECTATOR;
352                                 }
353                                 break;
354                 }
355         }
356         else
357         {
358                 switch(Team)
359                 {
360                         case -1:
361                         case 0:
362                                 break;
363                         default:
364                                 if(GetTeam(Team, false) == NULL)
365                                 {
366                                         LOG_TRACEF("trying to switch to unsupported team %d", Team);
367                                         Team = NUM_SPECTATOR;
368                                 }
369                                 break;
370                 }
371         }
372         if(Team == -1) // leave
373         {
374                 if(o.has_team)
375                 {
376                         tm = GetTeam(o.team, false);
377                         tm.team_size -= 1;
378                         o.has_team = 0;
379                         return true;
380                 }
381         }
382         else
383         {
384                 if (!o.has_team)
385                 {
386                         o.team = Team;
387                         tm = GetTeam(Team, true);
388                         tm.team_size += 1;
389                         o.has_team = 1;
390                         return true;
391                 }
392                 else if(Team != o.team)
393                 {
394                         tm = GetTeam(o.team, false);
395                         tm.team_size -= 1;
396                         o.team = Team;
397                         tm = GetTeam(Team, true);
398                         tm.team_size += 1;
399                         return true;
400                 }
401         }
402         return false;
403 }
404
405 void Playerchecker_Think(entity this)
406 {
407         int i;
408         entity e;
409         for(i = 0; i < maxclients; ++i)
410         {
411                 e = playerslots[i];
412                 if(entcs_GetName(i) == "")
413                 {
414                         if(e.sort_prev)
415                         {
416                                 // player disconnected
417                                 SetTeam(e, -1);
418                                 RemovePlayer(e);
419                                 e.sort_prev = NULL;
420                                 //e.gotscores = 0;
421                         }
422                 }
423                 else
424                 {
425                         if (!e.sort_prev)
426                         {
427                                 // player connected
428                                 if (!e)
429                                 {
430                                         playerslots[i] = e = new_pure(playerslot);
431                                 }
432                                 e.sv_entnum = i;
433                                 e.ping = 0;
434                                 e.ping_packetloss = 0;
435                                 e.ping_movementloss = 0;
436                                 //e.gotscores = 0; // we might already have the scores...
437                                 int t = entcs_GetScoreTeam(i);
438                                 if (t) SetTeam(e, t); // will not hurt; later updates come with Scoreboard_UpdatePlayerTeams
439                                 RegisterPlayer(e);
440                                 Scoreboard_UpdatePlayerPos(e);
441                         }
442                 }
443         }
444         this.nextthink = time + 0.2;
445 }
446
447 void PostInit()
448 {
449         entity playerchecker = new_pure(playerchecker);
450         setthink(playerchecker, Playerchecker_Think);
451         playerchecker.nextthink = time + 0.2;
452
453         TrueAim_Init();
454
455         // this can't be called in CSQC_Init as it'd send cvars too early
456         ReplicateVars_Start();
457
458         postinit = true;
459 }
460
461 void Release_Common_Keys()
462 {
463         localcmd("-fire\n");
464         localcmd("-fire2\n");
465         localcmd("-use\n");
466         localcmd("-hook\n");
467         localcmd("-jump\n");
468         localcmd("-forward\n");
469         localcmd("-back\n");
470         localcmd("-moveleft\n");
471         localcmd("-moveright\n");
472 }
473
474 // CSQC_InputEvent : Used to perform actions based on any key pressed, key released and mouse on the client.
475 // Return value should be 1 if CSQC handled the input, otherwise return 0 to have the input passed to the engine.
476 // All keys are in ascii.
477 // bInputType = 0 is key pressed, 1 is key released, 2 and 3 are mouse input.
478 // In the case of keyboard input, nPrimary is the ascii code, and nSecondary is 0.
479 // In the case of mouse input, nPrimary is xdelta, nSecondary is ydelta.
480 // In the case of mouse input after a setcursormode(1) call, nPrimary is xpos, nSecondary is ypos.
481 float CSQC_InputEvent(int bInputType, float nPrimary, float nSecondary)
482 {
483         TC(int, bInputType);
484         bool override = false;
485
486         override |= HUD_Scoreboard_InputEvent(bInputType, nPrimary, nSecondary);
487         if (override)
488                 return true;
489
490         override |= HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary);
491         if (override)
492                 return true;
493
494         override |= HUD_Panel_Chat_InputEvent(bInputType, nPrimary, nSecondary);
495
496         override |= QuickMenu_InputEvent(bInputType, nPrimary, nSecondary);
497
498         override |= HUD_Radar_InputEvent(bInputType, nPrimary, nSecondary);
499
500         override |= MapVote_InputEvent(bInputType, nPrimary, nSecondary);
501
502         override |= HUD_Minigame_InputEvent(bInputType, nPrimary, nSecondary);
503
504         if(override)
505                 return true;
506
507         if(bInputType == 3 || bInputType == 2)
508                 return false;
509
510         // at this point bInputType can only be 0 or 1 (key pressed or released)
511         bool key_pressed = (bInputType == 0);
512
513         if(key_pressed) {
514                 if(nPrimary == K_ALT) hudShiftState |= S_ALT;
515                 if(nPrimary == K_CTRL) hudShiftState |= S_CTRL;
516                 if(nPrimary == K_SHIFT) hudShiftState |= S_SHIFT;
517                 if(nPrimary == K_TAB) hudShiftState |= S_TAB;
518         }
519         else {
520                 if(nPrimary == K_ALT) hudShiftState -= (hudShiftState & S_ALT);
521                 if(nPrimary == K_CTRL) hudShiftState -= (hudShiftState & S_CTRL);
522                 if(nPrimary == K_SHIFT) hudShiftState -= (hudShiftState & S_SHIFT);
523                 if(nPrimary == K_TAB) hudShiftState -= (hudShiftState & S_TAB);
524         }
525
526         // NOTE: Shift-Escape must be filtered out because it's the hardcoded console shortcut
527         if (nPrimary == K_ESCAPE && !(hudShiftState & S_SHIFT) && key_pressed)
528         {
529                 if (hudShiftState & S_TAB)
530                 {
531                         Scoreboard_UI_Enable(0);
532                         return true;
533                 }
534                 if (autocvar_menu_gamemenu && !isdemo() && cvar("_menu_gamemenu_dialog_available"))
535                 {
536                         localcmd("\nmenu_showgamemenudialog\n");
537                         return true;
538                 }
539         }
540
541         return false;
542 }
543
544 // END REQUIRED CSQC FUNCTIONS
545 // --------------------------------------------------------------------------
546
547 // --------------------------------------------------------------------------
548 // BEGIN OPTIONAL CSQC FUNCTIONS
549 .int survival_status;
550 void Ent_RemovePlayerScore(entity this)
551 {
552         if(this.owner) {
553                 SetTeam(this.owner, -1);
554                 this.owner.gotscores = 0;
555                 FOREACH(Scores, true, {
556                         this.owner.(scores(it)) = 0; // clear all scores
557                 });
558                 this.owner.ready = 0;
559                 this.owner.eliminated = 0;
560                 this.owner.colormap = 0;
561                 // TODO add a hook to reset this Survival field
562                 this.owner.survival_status = 0;
563         }
564 }
565
566 NET_HANDLE(ENT_CLIENT_SCORES, bool isnew)
567 {
568         make_pure(this);
569         entity o;
570
571         // damnit -.- don't want to go change every single .sv_entnum in hud.qc AGAIN
572         // (no I've never heard of M-x replace-string, sed, or anything like that)
573         bool isNew = !this.owner; // workaround for DP bug
574         int n = ReadByte()-1;
575
576 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
577         if(!isNew && n != this.sv_entnum)
578         {
579                 //print("A CSQC entity changed its owner!\n");
580                 LOG_INFOF("A CSQC entity changed its owner! (edict: %d, classname: %s)", etof(this), this.classname);
581                 isNew = true;
582                 Ent_Remove(this);
583         }
584 #endif
585
586         this.sv_entnum = n;
587
588         o = playerslots[this.sv_entnum];
589         if (!o)
590         {
591                 o = playerslots[this.sv_entnum] = new_pure(playerslot);
592         }
593         this.owner = o;
594         o.sv_entnum = this.sv_entnum;
595         o.gotscores = 1;
596
597         //if (!o.sort_prev)
598         //      RegisterPlayer(o);
599         //playerchecker will do this for us later, if it has not already done so
600
601         int sf = ReadShort();
602         int lf = ReadShort();
603         FOREACH(Scores, true, {
604                 int p = 1 << (i % 16);
605                 if (sf & p)
606                 {
607                         if (lf & p)
608                                 o.(scores(it)) = ReadInt24_t();
609                         else
610                                 o.(scores(it)) = ReadChar();
611                 }
612         });
613
614         return = true;
615
616         if(o.sort_prev)
617                 Scoreboard_UpdatePlayerPos(o); // if not registered, we cannot do this yet!
618
619         this.entremove = Ent_RemovePlayerScore;
620 }
621
622 NET_HANDLE(ENT_CLIENT_TEAMSCORES, bool isnew)
623 {
624         make_pure(this);
625         int i;
626
627         this.team = ReadByte();
628         entity o = this.owner = GetTeam(this.team, true); // these team numbers can always be trusted
629
630 #if MAX_TEAMSCORE <= 8
631         int sf = ReadByte();
632         int lf = ReadByte();
633 #else
634         int sf = ReadShort();
635         int lf = ReadShort();
636 #endif
637         for(i = 0; i < MAX_TEAMSCORE; ++i)
638                 if(sf & BIT(i))
639                 {
640                         if(lf & BIT(i))
641                                 o.(teamscores(i)) = ReadInt24_t();
642                         else
643                                 o.(teamscores(i)) = ReadChar();
644                 }
645
646         return = true;
647
648         Scoreboard_UpdateTeamPos(o);
649 }
650
651 NET_HANDLE(ENT_CLIENT_CLIENTDATA, bool isnew)
652 {
653         make_pure(this);
654         float newspectatee_status;
655
656         int f = ReadByte();
657
658         scoreboard_showscores_force = (f & BIT(0));
659
660         if(f & BIT(1))
661         {
662                 newspectatee_status = ReadByte();
663                 if(newspectatee_status == player_localnum + 1)
664                         newspectatee_status = -1; // observing
665         }
666         else
667                 newspectatee_status = 0;
668
669         spectatorbutton_zoom = (f & BIT(2));
670         observe_blocked = (f & BIT(3));
671
672         if(f & BIT(4))
673         {
674                 num_spectators = ReadByte();
675
676                 float i, slot;
677
678                 for(i = 0; i < MAX_SPECTATORS; ++i)
679                         spectatorlist[i] = 0; // reset list first
680
681                 int limit = min(num_spectators, MAX_SPECTATORS);
682                 for(i = 0; i < limit; ++i)
683                 {
684                         slot = ReadByte();
685                         spectatorlist[i] = slot - 1;
686                 }
687         }
688         else
689         {
690                 for(int j = 0; j < MAX_SPECTATORS; ++j)
691                         spectatorlist[j] = 0; // reset list if showspectators has been turned off
692                 num_spectators = 0;
693         }
694
695         return = true;
696
697         if(newspectatee_status != spectatee_status)
698         {
699                 // clear race stuff
700                 race_laptime = 0;
701                 race_checkpointtime = 0;
702                 hud_dynamic_shake_factor = -1;
703                 spectatee_status_changed_time = time;
704         }
705         if (autocvar_hud_panel_healtharmor_progressbar_gfx)
706         {
707                 if ( (spectatee_status == -1 && newspectatee_status > 0) //before observing, now spectating
708                   || (spectatee_status > 0 && newspectatee_status > 0 && spectatee_status != newspectatee_status) //changed spectated player
709                 )
710                         prev_p_health = -1;
711                 else if(spectatee_status && !newspectatee_status) //before observing/spectating, now playing
712                         prev_health = -1;
713         }
714         spectatee_status = newspectatee_status;
715
716         // we could get rid of spectatee_status, and derive it from player_localentnum and player_localnum
717 }
718
719 NET_HANDLE(ENT_CLIENT_NAGGER, bool isnew)
720 {
721         make_pure(this);
722
723         int nags = ReadByte(); // NAGS NAGS NAGS NAGS NAGS NAGS NADZ NAGS NAGS NAGS
724
725         if(!(nags & BIT(2)))
726         {
727                 strfree(vote_called_vote);
728                 vote_active = 0;
729         }
730         else
731         {
732                 vote_active = 1;
733         }
734
735         if(nags & BIT(6))
736         {
737                 vote_yescount = ReadByte();
738                 vote_nocount = ReadByte();
739                 vote_needed = ReadByte();
740                 vote_highlighted = ReadChar();
741         }
742
743         if(nags & BIT(7))
744         {
745                 strcpy(vote_called_vote, ReadString());
746         }
747
748         if(nags & BIT(0))
749                 for(int i = 0; i < maxclients;)
750                         for(int f = ReadByte(), b = 0; b < 8 && i < maxclients; ++b, ++i)
751                                 if(playerslots[i])
752                                         playerslots[i].ready = f & BIT(b);
753
754         return = true;
755
756         ready_waiting = (nags & BIT(0));
757         ready_waiting_for_me = (nags & BIT(1));
758         vote_waiting = (nags & BIT(2));
759         vote_waiting_for_me = (nags & BIT(3));
760         warmup_stage = (nags & BIT(4));
761 }
762
763 NET_HANDLE(ENT_CLIENT_ELIMINATEDPLAYERS, bool isnew)
764 {
765         make_pure(this);
766         int sf = 0;
767         serialize(byte, 0, sf);
768         if (sf & 1) {
769                 for (int j = 0; j < maxclients; ++j) {
770                         if (playerslots[j]) {
771                                 playerslots[j].eliminated = true;
772                         }
773                 }
774                 for (int i = 1; i <= maxclients; i += 8) {
775                         int f = 0;
776                         serialize(byte, 0, f);
777                         for (int b = 0; b < 8; ++b) {
778                                 if (f & BIT(b)) continue;
779                                 int j = i - 1 + b;
780                                 if (playerslots[j]) {
781                                         playerslots[j].eliminated = false;
782                                 }
783                         }
784                 }
785         }
786         return true;
787 }
788
789 NET_HANDLE(ENT_CLIENT_RANDOMSEED, bool isnew)
790 {
791         make_pure(this);
792         prandom_debug();
793         float s = ReadShort();
794         psrandom(s);
795         return true;
796 }
797
798 NET_HANDLE(ENT_CLIENT_ACCURACY, bool isnew)
799 {
800         make_pure(this);
801         int sf = ReadInt24_t();
802         if (sf == 0) {
803                 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
804                         weapon_accuracy[w] = -1;
805                 return true;
806         }
807
808         int f = 1;
809         for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
810                 if (sf & f) {
811                         int b = ReadByte();
812                         if (b == 0)
813                                 weapon_accuracy[w] = -1;
814                         else if (b == 255)
815                                 weapon_accuracy[w] = 1.0; // no better error handling yet, sorry
816                         else
817                                 weapon_accuracy[w] = (b - 1.0) / 100.0;
818                 }
819                 f = (f == 0x800000) ? 1 : f * 2;
820         }
821         return true;
822 }
823
824 void Spawn_Draw(entity this)
825 {
826         bool dodraw = autocvar_cl_spawn_point_particles;
827         if(dodraw && autocvar_cl_spawn_point_dist_max)
828         {
829                 vector org = getpropertyvec(VF_ORIGIN);
830                 dodraw = vdist(org - this.origin, <, autocvar_cl_spawn_point_dist_max);
831         }
832
833         if(dodraw)
834                 pointparticles(((!teamplay) ? EFFECT_SPAWNPOINT_NEUTRAL : EFFECT_SPAWNPOINT(this.team - 1)), this.origin + '0 0 28', '0 0 2', bound(0, frametime, 0.1));
835 }
836
837 NET_HANDLE(ENT_CLIENT_SPAWNPOINT, bool is_new)
838 {
839         float teamnum = (ReadByte() - 1);
840         vector spn_origin = ReadVector();
841
842         this.team = (teamnum + 1);
843
844         //if(is_new)
845         //{
846                 this.origin = spn_origin;
847                 setsize(this, PL_MIN_CONST, PL_MAX_CONST);
848                 //droptofloor();
849
850                 /*if(autocvar_cl_spawn_point_model) // needs a model first
851                 {
852                         this.mdl = "models/spawnpoint.md3";
853                         this.colormod = Team_ColorRGB(teamnum);
854                         precache_model(this.mdl);
855                         setmodel(this, this.mdl);
856                         this.drawmask = MASK_NORMAL;
857                         //this.move_movetype = MOVETYPE_NOCLIP;
858                         //this.draw = Spawn_Draw;
859                         IL_PUSH(g_drawables, this);
860                 }*/
861                 this.draw = Spawn_Draw;
862                 if (is_new) IL_PUSH(g_drawables, this);
863         //}
864
865         //printf("Ent_ReadSpawnPoint(is_new = %d); origin = %s, team = %d, effect = %d\n", is_new, vtos(this.origin), teamnum, this.cnt);
866         return true;
867 }
868
869 NET_HANDLE(ENT_CLIENT_SPAWNEVENT, bool is_new)
870 {
871         // If entnum is 0, ONLY do the local spawn actions
872         // this way the server can disable the sending of
873         // spawn origin or such to clients if wanted.
874         float entnum = ReadByte();
875
876         if(entnum)
877         {
878                 this.origin = ReadVector();
879
880                 int particlesAndOrSound = ReadByte();
881
882                 if(is_new)
883                 {
884                         float teamnum = entcs_GetTeam(entnum - 1);
885
886                         if(autocvar_cl_spawn_event_particles && (particlesAndOrSound & BIT(0)))
887                         {
888                                 switch(teamnum)
889                                 {
890                                         case NUM_TEAM_1: pointparticles(EFFECT_SPAWN_RED, this.origin, '0 0 0', 1); break;
891                                         case NUM_TEAM_2: pointparticles(EFFECT_SPAWN_BLUE, this.origin, '0 0 0', 1); break;
892                                         case NUM_TEAM_3: pointparticles(EFFECT_SPAWN_YELLOW, this.origin, '0 0 0', 1); break;
893                                         case NUM_TEAM_4: pointparticles(EFFECT_SPAWN_PINK, this.origin, '0 0 0', 1); break;
894                                         default: pointparticles(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1); break;
895                                 }
896                         }
897
898                         if(autocvar_cl_spawn_event_sound && (particlesAndOrSound & BIT(1)))
899                         {
900                                 sound(this, CH_TRIGGER, SND_SPAWN, VOL_BASE, ATTEN_NORM);
901                         }
902                 }
903         }
904         return = true;
905
906         // local spawn actions
907         if(is_new && (!entnum || (entnum == player_localentnum)))
908         {
909                 if(autocvar_cl_spawnzoom && !autocvar_cl_lockview)
910                 {
911                         zoomin_effect = 1;
912                         current_viewzoom = (1 / bound(1, autocvar_cl_spawnzoom_factor, 16));
913                 }
914
915                 if(autocvar_cl_unpress_zoom_on_spawn)
916                 {
917                         localcmd("-zoom\n");
918                         button_zoom = false;
919                 }
920                 HUD_Radar_Hide_Maximized();
921         }
922         //printf("Ent_ReadSpawnEvent(is_new = %d); origin = %s, entnum = %d, localentnum = %d\n", is_new, vtos(this.origin), entnum, player_localentnum);
923 }
924
925 // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.
926 // The parameter isnew reflects if the entity is "new" to the client, meaning it just came into the client's PVS.
927 void CSQC_Ent_Update(entity this, bool isnew)
928 {
929         this.sourceLoc = __FILE__":"STR(__LINE__);
930         int t = ReadByte();
931
932         // set up the "time" global for received entities to be correct for interpolation purposes
933         float savetime = time;
934         if(servertime)
935         {
936                 time = servertime;
937         }
938         else
939         {
940                 serverprevtime = time;
941                 serverdeltatime = STAT(MOVEVARS_TICRATE) * STAT(MOVEVARS_TIMESCALE);
942                 time = serverprevtime + serverdeltatime;
943         }
944
945 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
946         if (this.enttype)
947         {
948                 if (t != this.enttype || isnew)
949                 {
950                         LOG_INFOF("A CSQC entity changed its type! (edict: %d, server: %d, type: %d -> %d)", etof(this), this.entnum, this.enttype, t);
951                         Ent_Remove(this);
952                         ONREMOVE(this);
953                         clearentity(this);
954                         isnew = true;
955                 }
956         }
957         else
958         {
959                 if (!isnew)
960                 {
961                         LOG_INFOF("A CSQC entity appeared out of nowhere! (edict: %d, server: %d, type: %d)", etof(this), this.entnum, t);
962                         isnew = true;
963                 }
964         }
965 #endif
966         this.enttype = t;
967         bool done = false;
968         FOREACH(LinkedEntities, it.m_id == t, {
969                 if (isnew) this.classname = it.netname;
970                 if (autocvar_developer_csqcentities)
971                         LOG_INFOF("CSQC_Ent_Update(%i, %d) at %f {.entnum=%d, .enttype=%d} t=%s (%d)", this, isnew, savetime, this.entnum, this.enttype, this.classname, t);
972                 done = it.m_read(this, NULL, isnew);
973                 MUTATOR_CALLHOOK(Ent_Update, this, isnew);
974                 break;
975         });
976         time = savetime;
977         if (!done)
978         {
979                 LOG_FATALF("CSQC_Ent_Update(%i, %d) at %f {.entnum=%d, .enttype=%d} t=%s (%d)", this, isnew, savetime, this.entnum, this.enttype, this.classname, t);
980         }
981 }
982
983 // Destructor, but does NOT deallocate the entity by calling remove(). Also
984 // used when an entity changes its type. For an entity that someone interacts
985 // with others, make sure it can no longer do so.
986 void Ent_Remove(entity this)
987 {
988         if(this.entremove) this.entremove(this);
989
990         if(this.skeletonindex)
991         {
992                 skel_delete(this.skeletonindex);
993                 this.skeletonindex = 0;
994         }
995
996         if(this.snd_looping > 0)
997         {
998                 sound(this, this.snd_looping, SND_Null, VOL_BASE, autocvar_cl_jetpack_attenuation);
999                 this.snd_looping = 0;
1000         }
1001
1002         this.enttype = 0;
1003         this.classname = "";
1004         this.draw = func_null;
1005         this.entremove = func_null;
1006         // TODO possibly set more stuff to defaults
1007 }
1008 // CSQC_Ent_Remove : Called when the server requests a SSQC / CSQC entity to be removed.  Essentially call remove(this) as well.
1009 void CSQC_Ent_Remove(entity this)
1010 {
1011         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Ent_Remove() with this=%i {.entnum=%d, .enttype=%d}", this, this.entnum, this.enttype);
1012         if (wasfreed(this))
1013         {
1014                 LOG_WARN("CSQC_Ent_Remove called for already removed entity. Packet loss?");
1015                 return;
1016         }
1017         if (this.enttype) Ent_Remove(this);
1018         delete(this);
1019 }
1020
1021 void Gamemode_Init()
1022 {
1023         if (!isdemo())
1024         {
1025                 if(!(calledhooks & HOOK_START))
1026                         localcmd("\n_cl_hook_gamestart ", MapInfo_Type_ToString(gametype), "\n");
1027                 calledhooks |= HOOK_START;
1028         }
1029 }
1030 // 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.
1031 void CSQC_Parse_StuffCmd(string strMessage)
1032 {
1033         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_StuffCmd(\"%s\")", strMessage);
1034         localcmd(strMessage);
1035 }
1036 // 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.
1037 void CSQC_Parse_Print(string strMessage)
1038 {
1039         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_Print(\"%s\")", strMessage);
1040         print(ColorTranslateRGB(strMessage));
1041 }
1042
1043 // CSQC_Parse_CenterPrint : Provides the centerprint_AddStandard string in the first parameter that the server provided.
1044 void CSQC_Parse_CenterPrint(string strMessage)
1045 {
1046         if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_CenterPrint(\"%s\")", strMessage);
1047         centerprint_AddStandard(strMessage);
1048 }
1049
1050 // CSQC_Parse_TempEntity : Handles all temporary entity network data in the CSQC layer.
1051 // You must ALWAYS first acquire the temporary ID, which is sent as a byte.
1052 // Return value should be 1 if CSQC handled the temporary entity, otherwise return 0 to have the engine process the event.
1053 bool CSQC_Parse_TempEntity()
1054 {
1055         // Acquire TE ID
1056         int nTEID = ReadByte();
1057
1058         FOREACH(TempEntities, it.m_id == nTEID, {
1059                 if (autocvar_developer_csqcentities)
1060                         LOG_INFOF("CSQC_Parse_TempEntity() nTEID=%s (%d)", it.netname, nTEID);
1061                 return it.m_read(NULL, NULL, true);
1062         });
1063
1064         if (autocvar_developer_csqcentities)
1065                 LOG_INFOF("CSQC_Parse_TempEntity() with nTEID=%d", nTEID);
1066
1067         // No special logic for this temporary entity; return 0 so the engine can handle it
1068         return false;
1069 }
1070
1071 bool autocvar_r_drawfog;
1072 bool autocvar_r_fog_exp2;
1073 string forcefog;
1074 void Fog_Force()
1075 {
1076         if (autocvar_cl_orthoview && autocvar_cl_orthoview_nofog)
1077         {
1078                 if (autocvar_r_drawfog)
1079                         cvar_set("r_drawfog", "0");
1080         }
1081         else if (forcefog != "")
1082         {
1083                 // using cvar_set as it's faster and safer than a command
1084                 if (!autocvar_r_drawfog)
1085                         cvar_set("r_drawfog", "1");
1086                 if (autocvar_r_fog_exp2)
1087                         cvar_set("r_fog_exp2", "0");
1088                 localcmd(sprintf("\nfog %s\n", forcefog));
1089         }
1090 }
1091
1092 bool net_handle_ServerWelcome();
1093 NET_HANDLE(ENT_CLIENT_SCORES_INFO, bool isnew)
1094 {
1095         make_pure(this);
1096         gametype = ReadRegistered(Gametypes);
1097         strcpy(gametype_custom_name, ReadString());
1098         teamplay = _MapInfo_GetTeamPlayBool(gametype);
1099         HUD_ModIcons_SetFunc();
1100         FOREACH(Scores, true, {
1101                 strcpy(scores_label(it), ReadString());
1102                 scores_flags(it) = ReadByte();
1103         });
1104         for (int i = 0; i < MAX_TEAMSCORE; ++i)
1105         {
1106                 strcpy(teamscores_label(i), ReadString());
1107                 teamscores_flags(i) = ReadByte();
1108         }
1109         bool welcome_msg_too = ReadByte();
1110         if (welcome_msg_too)
1111                 net_handle_ServerWelcome();
1112         return = true;
1113         Scoreboard_InitScores();
1114         Gamemode_Init();
1115 }
1116
1117 NET_HANDLE(ENT_CLIENT_INIT, bool isnew)
1118 {
1119         nb_pb_period = ReadByte() / 32; //Accuracy of 1/32th
1120
1121         hook_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
1122         hook_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
1123         hook_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
1124         hook_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
1125         arc_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
1126         arc_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
1127         arc_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
1128         arc_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
1129
1130         strcpy(forcefog, ReadString());
1131
1132         armorblockpercent = ReadByte() / 255.0;
1133         damagepush_speedfactor = ReadByte() / 255.0;
1134
1135         serverflags = ReadByte();
1136
1137         g_trueaim_minrange = ReadCoord();
1138
1139         return = true;
1140
1141         MUTATOR_CALLHOOK(Ent_Init);
1142
1143         if (!postinit) PostInit();
1144 }
1145
1146 float GetSpeedUnitFactor(int speed_unit)
1147 {
1148         switch(speed_unit)
1149         {
1150                 default:
1151                 case 1: return 1.0;
1152                 case 2: return 0.0254;
1153                 case 3: return 0.0254 * 3.6;
1154                 case 4: return 0.0254 * 3.6 * 0.6213711922;
1155                 case 5: return 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
1156         }
1157 }
1158
1159 string GetSpeedUnit(int speed_unit)
1160 {
1161         switch(speed_unit)
1162         {
1163                 // translator-friendly strings without the initial space
1164                 default:
1165                 case 1: return strcat(" ", _("qu/s"));
1166                 case 2: return strcat(" ", _("m/s"));
1167                 case 3: return strcat(" ", _("km/h"));
1168                 case 4: return strcat(" ", _("mph"));
1169                 case 5: return strcat(" ", _("knots"));
1170         }
1171 }
1172
1173 NET_HANDLE(TE_CSQC_RACE, bool isNew)
1174 {
1175         int b = ReadByte();
1176
1177         switch (b)
1178         {
1179                 case RACE_NET_CHECKPOINT_HIT_QUALIFYING:
1180                         race_checkpoint = ReadByte();
1181                         race_time = ReadInt24_t();
1182                         race_previousbesttime = ReadInt24_t();
1183                         race_mypreviousbesttime = ReadInt24_t();
1184                         string pbestname = ReadString();
1185                         if(autocvar_cl_race_cptimes_onlyself)
1186                         {
1187                                 race_previousbesttime = race_mypreviousbesttime;
1188                                 race_mypreviousbesttime = 0;
1189                                 strcpy(race_previousbestname, "");
1190                         }
1191                         else
1192                                 strcpy(race_previousbestname, pbestname);
1193
1194                         race_checkpointtime = time;
1195
1196                         if(race_checkpoint == 0 || race_checkpoint == 254)
1197                         {
1198                                 race_penaltyaccumulator = 0;
1199                                 race_laptime = time; // valid
1200                         }
1201                         break;
1202
1203                 case RACE_NET_CHECKPOINT_CLEAR:
1204                         race_laptime = 0;
1205                         race_checkpointtime = 0;
1206                         break;
1207
1208                 case RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING:
1209                         race_laptime = ReadCoord();
1210                         race_checkpointtime = -99999;
1211                         // fall through
1212                 case RACE_NET_CHECKPOINT_NEXT_QUALIFYING:
1213                         race_nextcheckpoint = ReadByte();
1214
1215                         race_nextbesttime = ReadInt24_t();
1216                         if(b != RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING) // not while spectating (matches server)
1217                                 race_mybesttime = ReadInt24_t();
1218                         string newname = ReadString();
1219                         if(autocvar_cl_race_cptimes_onlyself && b != RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING)
1220                         {
1221                                 race_nextbesttime = race_mybesttime;
1222                                 race_mybesttime = 0;
1223                                 strcpy(race_nextbestname, "");
1224                         }
1225                         else
1226                                 strcpy(race_nextbestname, newname);
1227                         break;
1228
1229                 case RACE_NET_CHECKPOINT_HIT_RACE:
1230                         race_mycheckpoint = ReadByte();
1231                         race_mycheckpointtime = time;
1232                         race_mycheckpointdelta = ReadInt24_t();
1233                         race_mycheckpointlapsdelta = ReadByte();
1234                         if(race_mycheckpointlapsdelta >= 128)
1235                                 race_mycheckpointlapsdelta -= 256;
1236                         int who = ReadByte();
1237                         if(who)
1238                                 strcpy(race_mycheckpointenemy, entcs_GetName(who - 1));
1239                         else
1240                                 strcpy(race_mycheckpointenemy, ""); // TODO: maybe string_null works fine here?
1241                         break;
1242
1243                 case RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT:
1244                         race_othercheckpoint = ReadByte();
1245                         race_othercheckpointtime = time;
1246                         race_othercheckpointdelta = ReadInt24_t();
1247                         race_othercheckpointlapsdelta = ReadByte();
1248                         if(race_othercheckpointlapsdelta >= 128)
1249                                 race_othercheckpointlapsdelta -= 256;
1250                         int what = ReadByte();
1251                         if(what)
1252                                 strcpy(race_othercheckpointenemy, entcs_GetName(what - 1));
1253                         else
1254                                 strcpy(race_othercheckpointenemy, ""); // TODO: maybe string_null works fine here?
1255                         break;
1256
1257                 case RACE_NET_PENALTY_RACE:
1258                 case RACE_NET_PENALTY_QUALIFYING:
1259                         race_penaltyeventtime = time;
1260                         race_penaltytime = ReadShort();
1261                         string reason = ReadString();
1262                         if (reason == "missing a checkpoint")
1263                                 reason = _("missing a checkpoint");
1264                         strcpy(race_penaltyreason, reason);
1265                         if (b == RACE_NET_PENALTY_QUALIFYING)
1266                                 race_penaltyaccumulator += race_penaltytime;
1267                         break;
1268
1269                 case RACE_NET_SERVER_RECORD:
1270                         race_server_record = ReadInt24_t();
1271                         break;
1272                 case RACE_NET_SPEED_AWARD:
1273                         race_speedaward = ReadInt24_t();
1274                         strcpy(race_speedaward_holder, ReadString());
1275                         break;
1276                 case RACE_NET_SPEED_AWARD_BEST:
1277                         race_speedaward_alltimebest = ReadInt24_t();
1278                         strcpy(race_speedaward_alltimebest_holder, ReadString());
1279                         break;
1280                 case RACE_NET_RANKINGS_CNT:
1281                         RANKINGS_DISPLAY_CNT = ReadByte();
1282                         break;
1283                 case RACE_NET_SERVER_RANKINGS:
1284                         float prevpos, del;
1285                         int pos = ReadShort();
1286                         prevpos = ReadShort();
1287                         del = ReadShort();
1288
1289                         // move other rankings out of the way
1290                         int i;
1291                         if (prevpos) {
1292                                 int m = min(prevpos, RANKINGS_DISPLAY_CNT);
1293                                 for (i=m-1; i>pos-1; --i) {
1294                                         grecordtime[i] = grecordtime[i-1];
1295                                         strcpy(grecordholder[i], grecordholder[i-1]);
1296                                 }
1297                         } else if (del) { // a record has been deleted by the admin
1298                                 for (i=pos-1; i<= RANKINGS_DISPLAY_CNT-1; ++i) {
1299                                         if (i == RANKINGS_DISPLAY_CNT-1) { // clear out last record
1300                                                 grecordtime[i] = 0;
1301                                                 strfree(grecordholder[i]);
1302                                         }
1303                                         else {
1304                                                 grecordtime[i] = grecordtime[i+1];
1305                                                 strcpy(grecordholder[i], grecordholder[i+1]);
1306                                         }
1307                                 }
1308                         } else { // player has no ranked record yet
1309                                 for (i=RANKINGS_DISPLAY_CNT-1;i>pos-1;--i) {
1310                                         grecordtime[i] = grecordtime[i-1];
1311                                         strcpy(grecordholder[i], grecordholder[i-1]);
1312                                 }
1313                         }
1314
1315                         if (grecordtime[RANKINGS_DISPLAY_CNT]) {
1316                                 // kick off the player who fell from the last displayed position
1317                                 grecordtime[RANKINGS_DISPLAY_CNT] = 0;
1318                                 strfree(grecordholder[RANKINGS_DISPLAY_CNT]);
1319                         }
1320
1321                         // store new ranking
1322                         strcpy(grecordholder[pos-1], ReadString());
1323                         grecordtime[pos-1] = ReadInt24_t();
1324                         if(strdecolorize(grecordholder[pos-1]) == strdecolorize(entcs_GetName(player_localnum)))
1325                                 race_myrank = pos;
1326                         break;
1327                 case RACE_NET_SERVER_STATUS:
1328                         race_status = ReadShort();
1329                         strcpy(race_status_name, ReadString());
1330         }
1331         return true;
1332 }
1333
1334 NET_HANDLE(TE_CSQC_TEAMNAGGER, bool isNew)
1335 {
1336         teamnagger = 1;
1337         return true;
1338 }
1339
1340 NET_HANDLE(TE_CSQC_PINGPLREPORT, bool isNew)
1341 {
1342         int i = ReadByte();
1343         int pi = ReadShort();
1344         int pl = ReadByte();
1345         int ml = ReadByte();
1346         return = true;
1347         entity e = playerslots[i];
1348         if (!e) return;
1349         e.ping = pi;
1350         e.ping_packetloss = pl / 255.0;
1351         e.ping_movementloss = ml / 255.0;
1352 }
1353
1354 NET_HANDLE(TE_CSQC_WEAPONCOMPLAIN, bool isNew)
1355 {
1356         int weapon_id = ReadByte();
1357         complain_weapon = REGISTRY_GET(Weapons, weapon_id);
1358         complain_weapon_type = ReadByte();
1359         return = true;
1360
1361         complain_weapon_time = time;
1362         weapontime = time; // ping the weapon panel
1363
1364         switch(complain_weapon_type)
1365         {
1366                 case 0: Local_Notification(MSG_MULTI, ITEM_WEAPON_NOAMMO, weapon_id); break;
1367                 case 1: Local_Notification(MSG_MULTI, ITEM_WEAPON_DONTHAVE, weapon_id); break;
1368                 default: Local_Notification(MSG_MULTI, ITEM_WEAPON_UNAVAILABLE, weapon_id); break;
1369         }
1370 }
1371
1372 string translate_modifications(string s)
1373 {
1374         return build_mutator_list(s);
1375 }
1376
1377 string translate_weaponarena(string s)
1378 {
1379         if (s == "") return s;
1380         if (s == "All Weapons Arena") return _("All Weapons Arena");
1381         if (s == "All Available Weapons Arena") return _("All Available Weapons Arena");
1382         if (s == "Most Weapons Arena") return _("Most Weapons Arena");
1383         if (s == "Most Available Weapons Arena") return _("Most Available Weapons Arena");
1384         if (s == "Dev All Weapons Arena") return s; // development option, do not translate
1385         if (s == "Dev All Available Weapons Arena") return s; // development option, do not translate
1386         if (s == "No Weapons Arena") return _("No Weapons Arena");
1387
1388         int n = tokenizebyseparator(s, " & ");
1389         string wpn_list = "";
1390         for (int i = 0; i < n; ++i)
1391         {
1392                 Weapon wep = Weapon_from_name(argv(i));
1393                 if (wep == WEP_Null)
1394                         LOG_INFO("^3Warning: ^7server sent an invalid weapon name\n");
1395                 wpn_list = cons_mid(wpn_list, " & ", wep.m_name);
1396         }
1397         if (wpn_list != "")
1398                 return sprintf(_("%s Arena"), wpn_list);
1399         else
1400                 return _("No Weapons Arena");
1401 }
1402
1403 string GetVersionMessage(string hostversion, bool version_mismatch, bool version_check)
1404 {
1405         string xonotic_hostversion = strcat("Xonotic ", hostversion);
1406         if (version_mismatch)
1407         {
1408                 if(!version_check)
1409                         return strcat(sprintf(_("This is %s"), xonotic_hostversion), "\n^3",
1410                                 _("Your client version is outdated."), "\n\n\n",
1411                                 _("### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###"), "\n\n\n",
1412                                 _("Please update!"));
1413                 else
1414                         return strcat(sprintf(_("This is %s"), xonotic_hostversion), "\n^3",
1415                                 _("This server is using an outdated Xonotic version."), "\n\n\n",
1416                                 _("### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###"));
1417         }
1418         return sprintf(_("Welcome to %s"), xonotic_hostversion);
1419 }
1420
1421 bool net_handle_ServerWelcome()
1422 {
1423         campaign = ReadByte();
1424         if (campaign)
1425         {
1426                 int campaign_level = ReadByte();
1427                 // Menu can't build the whole campaign message because it lacks getcommandkey and CCR
1428                 // so we build part of the message here and let the menu insert the level description
1429                 // (that client doesn't know) by replacing the keyword _LEVEL_DESC
1430                 string key = getcommandkey(_("jump"), "+jump");
1431                 string msg = strcat(
1432                         CCR("^F1"), sprintf(_("Level %d:"), campaign_level),
1433                         sprintf(CCR(" ^BG%s\n\n"), "_LEVEL_DESC"),
1434                         sprintf(CCR(_("^BGPress ^F2%s^BG to enter the game")), key));
1435                 msg = MakeConsoleSafe(strreplace("\n", "\\n", msg));
1436                 string welcomedialog_args = strcat("CAMPAIGN ", itos(campaign_level), " \"", msg, "\"");
1437
1438                 localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n");
1439                 return true;
1440         }
1441
1442         strcpy(hostname, ReadString());
1443         string hostversion = ReadString();
1444         bool version_mismatch = ReadByte();
1445         bool version_check = ReadByte();
1446         srv_minplayers = ReadByte();
1447         srv_maxplayers = ReadByte();
1448         string modifications = translate_modifications(ReadString());
1449         string weaponarena_list = translate_weaponarena(ReadString());
1450         string cache_mutatormsg = ReadString();
1451         string motd = ReadString();
1452
1453         string msg = GetVersionMessage(hostversion, version_mismatch, version_check);
1454
1455         msg = strcat(msg, "\n\n", _("Gametype:"), " ^1", MapInfo_Type_ToText(gametype), "\n");
1456
1457         msg = strcat(msg, "\n", _("Map:"), " ^2");
1458         if (world.message == "")
1459                 msg = strcat(msg, mi_shortname, "\n");
1460         else
1461         {
1462                 int i = strstrofs(world.message, " by ", 0); // matches _MapInfo_Generate()
1463                 string longname = i >= 0 ? substring(world.message, 0, i) : world.message;
1464                 msg = strcat(msg, (strcasecmp(longname, mi_shortname) ? strcat(mi_shortname, " ^7// ^2") : ""), longname, "\n");
1465         }
1466
1467         if (srv_minplayers || srv_maxplayers)
1468         {
1469                 msg = strcat(msg, "\n", _("This match supports"), " ^5");
1470                 if (srv_minplayers == srv_maxplayers)
1471                         msg = strcat(msg, sprintf(_("%d players"), srv_maxplayers), "\n");
1472                 else if (srv_minplayers && srv_maxplayers)
1473                         msg = strcat(msg, sprintf(_("%d to %d players"), srv_minplayers, srv_maxplayers), "\n");
1474                 else if (srv_maxplayers)
1475                         msg = strcat(msg, sprintf(_("%d players maximum"), srv_maxplayers), "\n");
1476                 else
1477                         msg = strcat(msg, sprintf(_("%d players minimum"), srv_minplayers), "\n");
1478         }
1479
1480         modifications = cons_mid(modifications, ", ", weaponarena_list);
1481         if(modifications != "")
1482                 msg = strcat(msg, "\n", _("Active modifications:"), " ^3", modifications, "\n");
1483
1484         if (cache_mutatormsg != "")
1485                 msg = strcat(msg, "\n", _("Special gameplay tips:"), " ^7", cache_mutatormsg, "\n");
1486         string mutator_msg = "";
1487         MUTATOR_CALLHOOK(BuildGameplayTipsString, mutator_msg);
1488         mutator_msg = M_ARGV(0, string);
1489         msg = strcat(msg, mutator_msg); // trust that the mutator will do proper formatting
1490
1491         if (motd != "")
1492                 msg = strcat(msg, "\n^9↓ ", _("Server's message"), " ↓\n", motd);
1493
1494         strcpy(welcome_msg, msg);
1495         welcome_msg_menu_check_maxtime = time + 1; // wait for menu to load before showing the welcome dialog
1496         return true;
1497 }
1498
1499 void Welcome_Message_Show_Try()
1500 {
1501         if (!welcome_msg_menu_check_maxtime)
1502                 return;
1503
1504         // if want dialog check if menu is initialized but for a short time
1505         if (cvar("_menu_initialized") == 2 || time > welcome_msg_menu_check_maxtime)
1506         {
1507                 if (cvar("_menu_welcome_dialog_available"))
1508                 {
1509                         string welcomedialog_args = strcat("HOSTNAME \"", hostname, "\"");
1510                         string msg = MakeConsoleSafe(strreplace("\n", "\\n", welcome_msg));
1511                         welcomedialog_args = strcat(welcomedialog_args, " WELCOME \"", msg, "\"");
1512
1513                         if (intermission || isdemo() || !autocvar_cl_welcome)
1514                         {
1515                                 if (cvar("_menu_cmd_closemenu_available"))
1516                                 {
1517                                         // initialize the dialog without opening it
1518                                         localcmd("\nmenu_cmd closemenu Welcome ", welcomedialog_args, "\n");
1519                                 }
1520                                 else
1521                                 {
1522                                         // legacy code for clients with old menus
1523                                         // since togglemenu 0 doesn't close the dialog but only hides it,
1524                                         // playing back a demo the Welcome dialog will pop up on the first ESC press
1525                                         localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n");
1526                                         // close it after it's been initialized so it can still be opened manually
1527                                         localcmd("\ntogglemenu 0\n");
1528                                 }
1529                         }
1530                         else
1531                                 localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n");
1532                 }
1533
1534                 strfree(welcome_msg);
1535                 welcome_msg_menu_check_maxtime = 0;
1536         }
1537 }
1538
1539 NET_HANDLE(TE_CSQC_SERVERWELCOME, bool isNew)
1540 {
1541         return net_handle_ServerWelcome();
1542 }
1543
1544 string _getcommandkey(string cmd_name, string command, bool forcename)
1545 {
1546         string keys;
1547         float n, j, k, l = 0;
1548
1549         if (!autocvar_hud_showbinds)
1550                 return cmd_name;
1551
1552         keys = db_get(binddb, command);
1553         if (keys == "")
1554         {
1555                 bool joy_active = cvar("joy_active");
1556                 n = tokenize(findkeysforcommand(command, 0)); // uses '...' strings
1557                 for(j = 0; j < n; ++j)
1558                 {
1559                         k = stof(argv(j));
1560                         if(k != -1)
1561                         {
1562                                 string key = keynumtostring(k);
1563                                 if(!joy_active && substring(key, 0, 3) == "JOY")
1564                                         continue;
1565
1566                                 key = translate_key(key);
1567
1568                                 if (keys == "")
1569                                         keys = key;
1570                                 else
1571                                         keys = strcat(keys, ", ", key);
1572
1573                                 ++l;
1574                                 if (autocvar_hud_showbinds_limit > 0 && autocvar_hud_showbinds_limit <= l)
1575                                         break;
1576                         }
1577
1578                 }
1579                 if (keys == "")
1580                         keys = "NO_KEY";
1581                 db_put(binddb, command, keys);
1582         }
1583
1584         if (keys == "NO_KEY") {
1585                 if (autocvar_hud_showbinds > 1)
1586                         return sprintf(_("%s (not bound)"), cmd_name);
1587                 else
1588                         return cmd_name;
1589         }
1590         else if (autocvar_hud_showbinds > 1 || forcename)
1591                 return sprintf("%s (%s)", cmd_name, keys);
1592         else
1593                 return keys;
1594 }
1595
1596 /** engine callback */
1597 void URI_Get_Callback(int id, int status, string data)
1598 {
1599         TC(int, id); TC(int, status);
1600         if(url_URI_Get_Callback(id, status, data))
1601         {
1602                 // handled
1603         }
1604         else if (id == URI_GET_DISCARD)
1605         {
1606                 // discard
1607         }
1608         else if (id >= URI_GET_CURL && id <= URI_GET_CURL_END)
1609         {
1610                 // sv_cmd curl
1611                 Curl_URI_Get_Callback(id, status, data);
1612         }
1613         else
1614         {
1615                 LOG_INFOF("Received HTTP request data for an invalid id %d.", id);
1616         }
1617 }