3 #include <common/effects/qc/all.qh>
5 #include "mapvoting.qh"
6 #include "mutators/events.qh"
7 #include "quickmenu.qh"
8 #include "scoreboard.qh"
9 #include "shownames.qh"
10 #include <common/t_items.qh>
12 #include "weapons/projectile.qh"
13 #include <common/deathtypes/all.qh>
14 #include <common/items/all.qh>
15 #include <common/mapinfo.qh>
16 #include <common/minigames/cl_minigames.qh>
17 #include <common/minigames/cl_minigames_hud.qh>
18 #include <common/net_notice.qh>
19 #include <common/triggers/include.qh>
20 #include <common/vehicles/all.qh>
21 #include <lib/csqcmodel/cl_model.qh>
22 #include <lib/csqcmodel/interpolate.qh>
23 #include <lib/warpzone/client.qh>
25 // --------------------------------------------------------------------------
26 // BEGIN REQUIRED CSQC FUNCTIONS
29 #define DP_CSQC_ENTITY_REMOVE_IS_B0RKED
31 void draw_cursor(vector pos, vector ofs, string img, vector col, float a)
33 ofs = eX * (ofs.x * SIZE_CURSOR.x) + eY * (ofs.y * SIZE_CURSOR.y);
34 drawpic(pos - ofs, strcat(draw_currentSkin, img), SIZE_CURSOR, col, a, DRAWFLAG_NORMAL);
37 void draw_cursor_normal(vector pos, vector col, float a)
39 draw_cursor(pos, OFFSET_CURSOR, "/cursor", col, a);
42 void LoadMenuSkinValues()
45 if(cvar_string("menu_skin") != "")
47 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
48 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
50 if(fh < 0 && cvar_defstring("menu_skin") != "")
52 cvar_set("menu_skin", cvar_defstring("menu_skin"));
53 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
54 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
58 draw_currentSkin = "gfx/menu/default";
59 fh = fopen(strcat(draw_currentSkin, "/skinvalues.txt"), FILE_READ);
62 draw_currentSkin = strzone(draw_currentSkin);
67 while((s = fgets(fh)))
69 int n = tokenize_console(s);
72 if(substring(argv(0), 0, 2) == "//")
74 if(argv(0) == "SIZE_CURSOR")
75 SIZE_CURSOR = stov(substring(s, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
76 else if(argv(0) == "OFFSET_CURSOR")
77 OFFSET_CURSOR = stov(substring(s, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
83 // CSQC_Init : Called every time the CSQC code is initialized (essentially at map load)
84 // Useful for precaching things
86 void ConsoleCommand_macro_init();
89 prvm_language = strzone(cvar_string("prvm_language"));
92 LOG_INFOF("^4CSQC Build information: ^1%s\n", WATERMARK);
98 if (getplayerkeyvalue(i, "viewentity") == "")
103 // needs to be done so early because of the constants they create
106 static_init_precache();
108 binddb = db_create();
109 tempdb = db_create();
110 ClientProgsDB = db_load("client.db");
111 compressShortVector_init();
115 //registercommand("hud_configure");
116 //registercommand("hud_save");
117 //registercommand("menu_action");
119 ConsoleCommand_macro_init();
121 registercvar("hud_usecsqc", "1");
122 registercvar("scoreboard_columns", "default");
124 registercvar("cl_nade_type", "3");
125 registercvar("cl_pokenade_type", "zombie");
127 registercvar("cl_jumpspeedcap_min", "");
128 registercvar("cl_jumpspeedcap_max", "");
130 registercvar("cl_multijump", "0");
132 registercvar("cl_spawn_near_teammate", "1");
136 // hud_fields uses strunzone on the titles!
137 for(int i = 0; i < MAX_HUD_FIELDS; ++i)
138 hud_title[i] = strzone("(null)");
140 Cmd_HUD_SetFields(0);
146 teams = Sort_Spawn();
147 players = Sort_Spawn();
149 GetTeam(NUM_SPECTATOR, true); // add specs first
153 if(autocvar_cl_reticle)
155 precache_pic("gfx/reticle_normal");
156 // weapon reticles are precached in weapon files
160 get_mi_min_max_texcoords(1); // try the CLEVER way first
161 minimapname = strcat("gfx/", mi_shortname, "_radar.tga");
162 shortmapname = mi_shortname;
164 if (precache_pic(minimapname) == "")
166 // but maybe we have a non-clever minimap
167 minimapname = strcat("gfx/", mi_shortname, "_mini.tga");
168 if (precache_pic(minimapname) == "")
169 minimapname = ""; // FAIL
171 get_mi_min_max_texcoords(0); // load new texcoords
174 mi_center = (mi_min + mi_max) * 0.5;
175 mi_scale = mi_max - mi_min;
176 minimapname = strzone(minimapname);
179 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
180 LoadMenuSkinValues();
183 // CSQC_Shutdown : Called every time the CSQC code is shutdown (changing maps, quitting, etc)
192 if(autocvar_cl_db_saveasdump)
193 db_dump(ClientProgsDB, "client.db");
195 db_save(ClientProgsDB, "client.db");
196 db_close(ClientProgsDB);
199 cvar_set("chase_active",ftos(chase_active_backup));
201 // unset the event chasecam's chase_active
202 if(autocvar_chase_active < 0)
203 cvar_set("chase_active", "0");
205 cvar_set("slowmo", cvar_defstring("slowmo")); // reset it back to 'default'
209 if (!(calledhooks & HOOK_START))
210 localcmd("\n_cl_hook_gamestart nop\n");
211 if (!(calledhooks & HOOK_END))
212 localcmd("\ncl_hook_gameend\n");
215 deactivate_minigame();
216 HUD_MinigameMenu_Close();
220 float SetTeam(entity o, int Team)
222 devassert_once(Team);
235 if(GetTeam(Team, false) == world)
237 LOG_TRACEF("trying to switch to unsupported team %d\n", Team);
238 Team = NUM_SPECTATOR;
251 if(GetTeam(Team, false) == world)
253 LOG_TRACEF("trying to switch to unsupported team %d\n", Team);
254 Team = NUM_SPECTATOR;
259 if(Team == -1) // leave
263 tm = GetTeam(o.team, false);
274 tm = GetTeam(Team, true);
279 else if(Team != o.team)
281 tm = GetTeam(o.team, false);
284 tm = GetTeam(Team, true);
292 void Playerchecker_Think()
297 for(i = 0; i < maxclients; ++i)
300 if(entcs_GetName(i) == "")
304 // player disconnected
318 playerslots[i] = e = new(playerslot);
323 e.ping_packetloss = 0;
324 e.ping_movementloss = 0;
325 //e.gotscores = 0; // we might already have the scores...
326 int t = entcs_GetScoreTeam(i);
327 if (t) SetTeam(e, t); // will not hurt; later updates come with HUD_UpdatePlayerTeams
329 HUD_UpdatePlayerPos(e);
333 this.nextthink = time + 0.2;
340 entity playerchecker = new(playerchecker);
341 make_pure(playerchecker);
342 playerchecker.think = Playerchecker_Think;
343 playerchecker.nextthink = time + 0.2;
351 // CSQC_InputEvent : Used to perform actions based on any key pressed, key released and mouse on the client.
352 // Return value should be 1 if CSQC handled the input, otherwise return 0 to have the input passed to the engine.
353 // All keys are in ascii.
354 // bInputType = 0 is key pressed, 1 is key released, 2 and 3 are mouse input.
355 // In the case of keyboard input, nPrimary is the ascii code, and nSecondary is 0.
356 // In the case of mouse input, nPrimary is xdelta, nSecondary is ydelta.
357 // In the case of mouse input after a setcursormode(1) call, nPrimary is xpos, nSecondary is ypos.
358 float CSQC_InputEvent(float bInputType, float nPrimary, float nSecondary)
360 if (HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary))
363 if (QuickMenu_InputEvent(bInputType, nPrimary, nSecondary))
366 if (HUD_Radar_InputEvent(bInputType, nPrimary, nSecondary))
369 if (MapVote_InputEvent(bInputType, nPrimary, nSecondary))
372 if (HUD_Minigame_InputEvent(bInputType, nPrimary, nSecondary))
378 // END REQUIRED CSQC FUNCTIONS
379 // --------------------------------------------------------------------------
381 // --------------------------------------------------------------------------
382 // BEGIN OPTIONAL CSQC FUNCTIONS
384 .void(entity) predraw_qc;
388 if (this.predraw_qc) this.predraw_qc(this);
391 void setpredraw(entity this, void(entity) pdfunc)
393 this.predraw = PreDraw_self;
394 this.predraw_qc = pdfunc;
397 void Ent_Remove(entity this);
399 void Ent_RemovePlayerScore(entity this)
402 SetTeam(this.owner, -1);
403 this.owner.gotscores = 0;
404 for(int i = 0; i < MAX_SCORE; ++i) {
405 this.owner.(scores[i]) = 0; // clear all scores
410 NET_HANDLE(ENT_CLIENT_SCORES, bool isnew)
417 // damnit -.- don't want to go change every single .sv_entnum in hud.qc AGAIN
418 // (no I've never heard of M-x replace-string, sed, or anything like that)
419 isNew = !this.owner; // workaround for DP bug
422 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
423 if(!isNew && n != this.sv_entnum)
425 //print("A CSQC entity changed its owner!\n");
426 LOG_INFOF("A CSQC entity changed its owner! (edict: %d, classname: %s)\n", etof(this), this.classname);
434 o = playerslots[this.sv_entnum];
437 o = playerslots[this.sv_entnum] = new(playerslot);
441 o.sv_entnum = this.sv_entnum;
445 // RegisterPlayer(o);
446 //playerchecker will do this for us later, if it has not already done so
457 for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
461 o.(scores[i]) = ReadInt24_t();
463 o.(scores[i]) = ReadChar();
469 HUD_UpdatePlayerPos(o); // if not registered, we cannot do this yet!
471 this.entremove = Ent_RemovePlayerScore;
474 NET_HANDLE(ENT_CLIENT_TEAMSCORES, bool isnew)
480 this.team = ReadByte();
481 o = this.owner = GetTeam(this.team, true); // these team numbers can always be trusted
484 #if MAX_TEAMSCORE <= 8
492 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
496 o.(teamscores[i]) = ReadInt24_t();
498 o.(teamscores[i]) = ReadChar();
503 HUD_UpdateTeamPos(o);
506 NET_HANDLE(ENT_CLIENT_CLIENTDATA, bool isnew)
509 float newspectatee_status;
513 scoreboard_showscores_force = (f & 1);
517 newspectatee_status = ReadByte();
518 if(newspectatee_status == player_localnum + 1)
519 newspectatee_status = -1; // observing
522 newspectatee_status = 0;
524 spectatorbutton_zoom = (f & 4);
528 angles_held_status = 1;
529 angles_held.x = ReadAngle();
530 angles_held.y = ReadAngle();
534 angles_held_status = 0;
538 if(newspectatee_status != spectatee_status)
542 race_checkpointtime = 0;
544 if (autocvar_hud_panel_healtharmor_progressbar_gfx)
546 if ( (spectatee_status == -1 && newspectatee_status > 0) //before observing, now spectating
547 || (spectatee_status > 0 && newspectatee_status > 0 && spectatee_status != newspectatee_status) //changed spectated player
550 else if(spectatee_status && !newspectatee_status) //before observing/spectating, now playing
553 spectatee_status = newspectatee_status;
555 // we could get rid of spectatee_status, and derive it from player_localentnum and player_localnum
558 NET_HANDLE(ENT_CLIENT_NAGGER, bool isnew)
563 int nags = ReadByte(); // NAGS NAGS NAGS NAGS NAGS NAGS NADZ NAGS NAGS NAGS
568 strunzone(vote_called_vote);
569 vote_called_vote = string_null;
579 vote_yescount = ReadByte();
580 vote_nocount = ReadByte();
581 vote_needed = ReadByte();
582 vote_highlighted = ReadChar();
588 strunzone(vote_called_vote);
589 vote_called_vote = strzone(ColorTranslateRGB(ReadString()));
594 for(j = 0; j < maxclients; ++j)
596 playerslots[j].ready = 1;
597 for(i = 1; i <= maxclients; i += 8)
600 for(j = i-1, b = 1; b < 256; b *= 2, ++j)
603 playerslots[j].ready = 0;
609 ready_waiting = (nags & BIT(0));
610 ready_waiting_for_me = (nags & BIT(1));
611 vote_waiting = (nags & BIT(2));
612 vote_waiting_for_me = (nags & BIT(3));
613 warmup_stage = (nags & BIT(4));
616 NET_HANDLE(ENT_CLIENT_ELIMINATEDPLAYERS, bool isnew)
624 for(j = 0; j < maxclients; ++j)
626 playerslots[j].eliminated = 1;
627 for(i = 1; i <= maxclients; i += 8)
630 for(j = i-1, b = 1; b < 256; b *= 2, ++j)
633 playerslots[j].eliminated = 0;
639 NET_HANDLE(ENT_CLIENT_RANDOMSEED, bool isnew)
643 float s = ReadShort();
648 NET_HANDLE(ENT_CLIENT_ACCURACY, bool isnew)
651 int sf = ReadInt24_t();
653 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
654 weapon_accuracy[w] = -1;
659 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
663 weapon_accuracy[w] = -1;
665 weapon_accuracy[w] = 1.0; // no better error handling yet, sorry
667 weapon_accuracy[w] = (b - 1.0) / 100.0;
669 f = (f == 0x800000) ? 1 : f * 2;
674 void Spawn_Draw(entity this)
676 __pointparticles(this.cnt, this.origin + '0 0 28', '0 0 2', bound(0, frametime, 0.1));
679 NET_HANDLE(ENT_CLIENT_SPAWNPOINT, bool is_new)
681 float teamnum = (ReadByte() - 1);
683 spn_origin.x = ReadShort();
684 spn_origin.y = ReadShort();
685 spn_origin.z = ReadShort();
689 this.origin = spn_origin;
690 setsize(this, PL_MIN_CONST, PL_MAX_CONST);
693 /*if(autocvar_cl_spawn_point_model) // needs a model first
695 this.mdl = "models/spawnpoint.md3";
696 this.colormod = Team_ColorRGB(teamnum);
697 precache_model(this.mdl);
698 setmodel(this, this.mdl);
699 this.drawmask = MASK_NORMAL;
700 //this.movetype = MOVETYPE_NOCLIP;
701 //this.draw = Spawn_Draw;
703 if(autocvar_cl_spawn_point_particles)
705 if((serverflags & SERVERFLAG_TEAMPLAY))
709 case NUM_TEAM_1: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_RED); break;
710 case NUM_TEAM_2: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_BLUE); break;
711 case NUM_TEAM_3: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_YELLOW); break;
712 case NUM_TEAM_4: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_PINK); break;
713 default: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); break;
716 else { this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); }
718 this.draw = Spawn_Draw;
722 //printf("Ent_ReadSpawnPoint(is_new = %d); origin = %s, team = %d, effect = %d\n", is_new, vtos(this.origin), teamnum, this.cnt);
726 NET_HANDLE(ENT_CLIENT_SPAWNEVENT, bool is_new)
728 // If entnum is 0, ONLY do the local spawn actions
729 // this way the server can disable the sending of
730 // spawn origin or such to clients if wanted.
731 float entnum = ReadByte();
735 this.origin_x = ReadShort();
736 this.origin_y = ReadShort();
737 this.origin_z = ReadShort();
741 float teamnum = entcs_GetTeam(entnum - 1);
743 if(autocvar_cl_spawn_event_particles)
747 case NUM_TEAM_1: pointparticles(EFFECT_SPAWN_RED, this.origin, '0 0 0', 1); break;
748 case NUM_TEAM_2: pointparticles(EFFECT_SPAWN_BLUE, this.origin, '0 0 0', 1); break;
749 case NUM_TEAM_3: pointparticles(EFFECT_SPAWN_YELLOW, this.origin, '0 0 0', 1); break;
750 case NUM_TEAM_4: pointparticles(EFFECT_SPAWN_PINK, this.origin, '0 0 0', 1); break;
751 default: pointparticles(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1); break;
754 if(autocvar_cl_spawn_event_sound)
756 sound(this, CH_TRIGGER, SND_SPAWN, VOL_BASE, ATTEN_NORM);
762 // local spawn actions
763 if(is_new && (!entnum || (entnum == player_localentnum)))
766 current_viewzoom = (1 / bound(1, autocvar_cl_spawnzoom_factor, 16));
768 if(autocvar_cl_unpress_zoom_on_spawn)
774 HUD_Radar_Hide_Maximized();
775 //printf("Ent_ReadSpawnEvent(is_new = %d); origin = %s, entnum = %d, localentnum = %d\n", is_new, vtos(this.origin), entnum, player_localentnum);
778 // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.
779 // The only parameter reflects if the entity is "new" to the client, meaning it just came into the client's PVS.
780 void CSQC_Ent_Update(bool isnew)
783 this.sourceLoc = __FILE__ ":" STR(__LINE__);
786 // set up the "time" global for received entities to be correct for interpolation purposes
787 float savetime = time;
794 serverprevtime = time;
795 serverdeltatime = STAT(MOVEVARS_TICRATE) * STAT(MOVEVARS_TIMESCALE);
796 time = serverprevtime + serverdeltatime;
799 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
802 if (t != this.enttype || isnew)
804 LOG_INFOF("A CSQC entity changed its type! (edict: %d, server: %d, type: %d -> %d)\n", etof(this), this.entnum, this.enttype, t);
814 LOG_INFOF("A CSQC entity appeared out of nowhere! (edict: %d, server: %d, type: %d)\n", etof(this), this.entnum, t);
821 FOREACH(LinkedEntities, it.m_id == t, LAMBDA(
822 if (isnew) this.classname = it.netname;
823 if (autocvar_developer_csqcentities)
824 LOG_INFOF("CSQC_Ent_Update(%d) at %f with this=%i {.entnum=%d, .enttype=%d} t=%s (%d)\n", isnew, savetime, this, this.entnum, this.enttype, this.classname, t);
825 done = it.m_read(this, NULL, isnew);
831 LOG_FATALF("CSQC_Ent_Update(%d) at %f with this=%i {.entnum=%d, .enttype=%d} t=%s (%d)\n", isnew, savetime, this, this.entnum, this.enttype, this.classname, t);
835 // Destructor, but does NOT deallocate the entity by calling remove(). Also
836 // used when an entity changes its type. For an entity that someone interacts
837 // with others, make sure it can no longer do so.
838 void Ent_Remove(entity this)
840 if(this.entremove) this.entremove(this);
842 if(this.skeletonindex)
844 skel_delete(this.skeletonindex);
845 this.skeletonindex = 0;
848 if(this.snd_looping > 0)
850 sound(this, this.snd_looping, SND_Null, VOL_BASE, autocvar_g_jetpack_attenuation);
851 this.snd_looping = 0;
856 this.draw = func_null;
857 this.entremove = func_null;
858 // TODO possibly set more stuff to defaults
860 // CSQC_Ent_Remove : Called when the server requests a SSQC / CSQC entity to be removed. Essentially call remove(this) as well.
861 void CSQC_Ent_Remove()
864 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Ent_Remove() with this=%i {.entnum=%d, .enttype=%d}\n", this, this.entnum, this.enttype);
867 LOG_WARNING("CSQC_Ent_Remove called for already removed entity. Packet loss?\n");
870 if (this.enttype) Ent_Remove(this);
878 if(!(calledhooks & HOOK_START))
879 localcmd("\n_cl_hook_gamestart ", MapInfo_Type_ToString(gametype), "\n");
880 calledhooks |= HOOK_START;
883 // 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.
884 void CSQC_Parse_StuffCmd(string strMessage)
886 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_StuffCmd(\"%s\")\n", strMessage);
887 localcmd(strMessage);
889 // 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.
890 void CSQC_Parse_Print(string strMessage)
892 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_Print(\"%s\")\n", strMessage);
893 print(ColorTranslateRGB(strMessage));
896 // CSQC_Parse_CenterPrint : Provides the centerprint_hud string in the first parameter that the server provided.
897 void CSQC_Parse_CenterPrint(string strMessage)
899 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_CenterPrint(\"%s\")\n", strMessage);
900 centerprint_hud(strMessage);
903 // CSQC_Parse_TempEntity : Handles all temporary entity network data in the CSQC layer.
904 // You must ALWAYS first acquire the temporary ID, which is sent as a byte.
905 // Return value should be 1 if CSQC handled the temporary entity, otherwise return 0 to have the engine process the event.
906 bool CSQC_Parse_TempEntity()
909 int nTEID = ReadByte();
911 FOREACH(TempEntities, it.m_id == nTEID, LAMBDA(
912 if (autocvar_developer_csqcentities)
913 LOG_INFOF("CSQC_Parse_TempEntity() nTEID=%s (%d)\n", it.netname, nTEID);
914 return it.m_read(NULL, NULL, true);
917 if (autocvar_developer_csqcentities)
918 LOG_INFOF("CSQC_Parse_TempEntity() with nTEID=%d\n", nTEID);
920 // No special logic for this temporary entity; return 0 so the engine can handle it
924 /** TODO somehow thwart prvm_globalset client ... */
928 if (autocvar_cl_orthoview && autocvar_cl_orthoview_nofog)
929 localcmd("\nr_drawfog 0\n");
930 else if (forcefog != "")
931 localcmd(sprintf("\nfog %s\nr_fog_exp2 0\nr_drawfog 1\n", forcefog));
934 void Gamemode_Init();
935 NET_HANDLE(ENT_CLIENT_SCORES_INFO, bool isnew)
938 gametype = ReadInt24_t();
939 HUD_ModIcons_SetFunc();
940 for (int i = 0; i < MAX_SCORE; ++i)
942 if (scores_label[i]) strunzone(scores_label[i]);
943 scores_label[i] = strzone(ReadString());
944 scores_flags[i] = ReadByte();
946 for (int i = 0; i < MAX_TEAMSCORE; ++i)
948 if (teamscores_label[i]) strunzone(teamscores_label[i]);
949 teamscores_label[i] = strzone(ReadString());
950 teamscores_flags[i] = ReadByte();
957 NET_HANDLE(ENT_CLIENT_INIT, bool isnew)
959 nb_pb_period = ReadByte() / 32; //Accuracy of 1/32th
961 hook_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
962 hook_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
963 hook_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
964 hook_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
965 arc_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
966 arc_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
967 arc_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
968 arc_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
970 if (forcefog) strunzone(forcefog);
971 forcefog = strzone(ReadString());
973 armorblockpercent = ReadByte() / 255.0;
975 serverflags = ReadByte();
977 g_trueaim_minrange = ReadCoord();
981 MUTATOR_CALLHOOK(Ent_Init);
983 if (!postinit) PostInit();
986 NET_HANDLE(TE_CSQC_RACE, bool isNew)
992 case RACE_NET_CHECKPOINT_HIT_QUALIFYING:
993 race_checkpoint = ReadByte();
994 race_time = ReadInt24_t();
995 race_previousbesttime = ReadInt24_t();
996 if(race_previousbestname)
997 strunzone(race_previousbestname);
998 race_previousbestname = strzone(ColorTranslateRGB(ReadString()));
1000 race_checkpointtime = time;
1002 if(race_checkpoint == 0 || race_checkpoint == 254)
1004 race_penaltyaccumulator = 0;
1005 race_laptime = time; // valid
1010 case RACE_NET_CHECKPOINT_CLEAR:
1012 race_checkpointtime = 0;
1015 case RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING:
1016 race_laptime = ReadCoord();
1017 race_checkpointtime = -99999;
1019 case RACE_NET_CHECKPOINT_NEXT_QUALIFYING:
1020 race_nextcheckpoint = ReadByte();
1022 race_nextbesttime = ReadInt24_t();
1023 if(race_nextbestname)
1024 strunzone(race_nextbestname);
1025 race_nextbestname = strzone(ColorTranslateRGB(ReadString()));
1028 case RACE_NET_CHECKPOINT_HIT_RACE:
1029 race_mycheckpoint = ReadByte();
1030 race_mycheckpointtime = time;
1031 race_mycheckpointdelta = ReadInt24_t();
1032 race_mycheckpointlapsdelta = ReadByte();
1033 if(race_mycheckpointlapsdelta >= 128)
1034 race_mycheckpointlapsdelta -= 256;
1035 if(race_mycheckpointenemy)
1036 strunzone(race_mycheckpointenemy);
1037 race_mycheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1040 case RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT:
1041 race_othercheckpoint = ReadByte();
1042 race_othercheckpointtime = time;
1043 race_othercheckpointdelta = ReadInt24_t();
1044 race_othercheckpointlapsdelta = ReadByte();
1045 if(race_othercheckpointlapsdelta >= 128)
1046 race_othercheckpointlapsdelta -= 256;
1047 if(race_othercheckpointenemy)
1048 strunzone(race_othercheckpointenemy);
1049 race_othercheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1052 case RACE_NET_PENALTY_RACE:
1053 race_penaltyeventtime = time;
1054 race_penaltytime = ReadShort();
1055 //race_penaltyaccumulator += race_penaltytime;
1056 if(race_penaltyreason)
1057 strunzone(race_penaltyreason);
1058 race_penaltyreason = strzone(ReadString());
1061 case RACE_NET_PENALTY_QUALIFYING:
1062 race_penaltyeventtime = time;
1063 race_penaltytime = ReadShort();
1064 race_penaltyaccumulator += race_penaltytime;
1065 if(race_penaltyreason)
1066 strunzone(race_penaltyreason);
1067 race_penaltyreason = strzone(ReadString());
1070 case RACE_NET_SERVER_RECORD:
1071 race_server_record = ReadInt24_t();
1073 case RACE_NET_SPEED_AWARD:
1074 race_speedaward = ReadInt24_t();
1075 if(race_speedaward_holder)
1076 strunzone(race_speedaward_holder);
1077 race_speedaward_holder = strzone(ReadString());
1079 case RACE_NET_SPEED_AWARD_BEST:
1080 race_speedaward_alltimebest = ReadInt24_t();
1081 if(race_speedaward_alltimebest_holder)
1082 strunzone(race_speedaward_alltimebest_holder);
1083 race_speedaward_alltimebest_holder = strzone(ReadString());
1085 case RACE_NET_SERVER_RANKINGS:
1087 int pos = ReadShort();
1088 prevpos = ReadShort();
1091 // move other rankings out of the way
1094 for (i=prevpos-1;i>pos-1;--i) {
1095 grecordtime[i] = grecordtime[i-1];
1096 if(grecordholder[i])
1097 strunzone(grecordholder[i]);
1098 grecordholder[i] = strzone(grecordholder[i-1]);
1100 } else if (del) { // a record has been deleted by the admin
1101 for (i=pos-1; i<= RANKINGS_CNT-1; ++i) {
1102 if (i == RANKINGS_CNT-1) { // clear out last record
1104 if (grecordholder[i])
1105 strunzone(grecordholder[i]);
1106 grecordholder[i] = string_null;
1109 grecordtime[i] = grecordtime[i+1];
1110 if (grecordholder[i])
1111 strunzone(grecordholder[i]);
1112 grecordholder[i] = strzone(grecordholder[i+1]);
1115 } else { // player has no ranked record yet
1116 for (i=RANKINGS_CNT-1;i>pos-1;--i) {
1117 grecordtime[i] = grecordtime[i-1];
1118 if(grecordholder[i])
1119 strunzone(grecordholder[i]);
1120 grecordholder[i] = strzone(grecordholder[i-1]);
1124 // store new ranking
1125 if(grecordholder[pos-1] != "")
1126 strunzone(grecordholder[pos-1]);
1127 grecordholder[pos-1] = strzone(ReadString());
1128 grecordtime[pos-1] = ReadInt24_t();
1129 if(grecordholder[pos-1] == entcs_GetName(player_localnum))
1132 case RACE_NET_SERVER_STATUS:
1133 race_status = ReadShort();
1134 if(race_status_name)
1135 strunzone(race_status_name);
1136 race_status_name = strzone(ReadString());
1141 NET_HANDLE(TE_CSQC_TEAMNAGGER, bool isNew)
1147 NET_HANDLE(TE_CSQC_PINGPLREPORT, bool isNew)
1150 int pi = ReadShort();
1151 int pl = ReadByte();
1152 int ml = ReadByte();
1154 entity e = playerslots[i];
1157 e.ping_packetloss = pl / 255.0;
1158 e.ping_movementloss = ml / 255.0;
1161 NET_HANDLE(TE_CSQC_WEAPONCOMPLAIN, bool isNew)
1163 complain_weapon = ReadByte();
1164 complain_weapon_type = ReadByte();
1167 complain_weapon_time = time;
1168 weapontime = time; // ping the weapon panel
1170 switch(complain_weapon_type)
1172 case 0: Local_Notification(MSG_MULTI, ITEM_WEAPON_NOAMMO, complain_weapon); break;
1173 case 1: Local_Notification(MSG_MULTI, ITEM_WEAPON_DONTHAVE, complain_weapon); break;
1174 default: Local_Notification(MSG_MULTI, ITEM_WEAPON_UNAVAILABLE, complain_weapon); break;
1178 string getcommandkey(string text, string command)
1181 float n, j, k, l = 0;
1183 if (!autocvar_hud_showbinds)
1186 keys = db_get(binddb, command);
1189 n = tokenize(findkeysforcommand(command, 0)); // uses '...' strings
1190 for(j = 0; j < n; ++j)
1196 keys = keynumtostring(k);
1198 keys = strcat(keys, ", ", keynumtostring(k));
1201 if (autocvar_hud_showbinds_limit > 0 && autocvar_hud_showbinds_limit <= l)
1208 db_put(binddb, command, keys);
1211 if (keys == "NO_KEY") {
1212 if (autocvar_hud_showbinds > 1)
1213 return sprintf(_("%s (not bound)"), text);
1217 else if (autocvar_hud_showbinds > 1)
1218 return sprintf("%s (%s)", text, keys);