3 #include <common/effects/qc/all.qh>
5 #include "mapvoting.qh"
6 #include "mutators/events.qh"
7 #include "hud/panel/scoreboard.qh"
8 #include "hud/panel/quickmenu.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/_mod.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");
114 //registercommand("hud_configure");
115 //registercommand("hud_save");
116 //registercommand("menu_action");
118 ConsoleCommand_macro_init();
120 registercvar("hud_usecsqc", "1");
121 registercvar("scoreboard_columns", "default");
123 registercvar("cl_nade_type", "3");
124 registercvar("cl_pokenade_type", "zombie");
126 registercvar("cl_jumpspeedcap_min", "");
127 registercvar("cl_jumpspeedcap_max", "");
129 registercvar("cl_multijump", "1");
131 registercvar("cl_spawn_near_teammate", "1");
139 teams = Sort_Spawn();
140 players = Sort_Spawn();
142 GetTeam(NUM_SPECTATOR, true); // add specs first
146 if(autocvar_cl_reticle)
148 precache_pic("gfx/reticle_normal");
149 // weapon reticles are precached in weapon files
153 get_mi_min_max_texcoords(1); // try the CLEVER way first
154 minimapname = strcat("gfx/", mi_shortname, "_radar.tga");
155 shortmapname = mi_shortname;
157 if (precache_pic(minimapname) == "")
159 // but maybe we have a non-clever minimap
160 minimapname = strcat("gfx/", mi_shortname, "_mini.tga");
161 if (precache_pic(minimapname) == "")
162 minimapname = ""; // FAIL
164 get_mi_min_max_texcoords(0); // load new texcoords
167 mi_center = (mi_min + mi_max) * 0.5;
168 mi_scale = mi_max - mi_min;
169 minimapname = strzone(minimapname);
172 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
173 LoadMenuSkinValues();
176 // CSQC_Shutdown : Called every time the CSQC code is shutdown (changing maps, quitting, etc)
185 if(autocvar_cl_db_saveasdump)
186 db_dump(ClientProgsDB, "client.db");
188 db_save(ClientProgsDB, "client.db");
189 db_close(ClientProgsDB);
192 cvar_set("chase_active",ftos(chase_active_backup));
194 // unset the event chasecam's chase_active
195 if(autocvar_chase_active < 0)
196 cvar_set("chase_active", "0");
198 cvar_set("slowmo", cvar_defstring("slowmo")); // reset it back to 'default'
202 if (!(calledhooks & HOOK_START))
203 localcmd("\n_cl_hook_gamestart nop\n");
204 if (!(calledhooks & HOOK_END))
205 localcmd("\ncl_hook_gameend\n");
208 deactivate_minigame();
209 HUD_MinigameMenu_Close(NULL, NULL, NULL);
213 float SetTeam(entity o, int Team)
216 devassert_once(Team);
229 if(GetTeam(Team, false) == NULL)
231 LOG_TRACEF("trying to switch to unsupported team %d", Team);
232 Team = NUM_SPECTATOR;
245 if(GetTeam(Team, false) == NULL)
247 LOG_TRACEF("trying to switch to unsupported team %d", Team);
248 Team = NUM_SPECTATOR;
253 if(Team == -1) // leave
257 tm = GetTeam(o.team, false);
268 tm = GetTeam(Team, true);
273 else if(Team != o.team)
275 tm = GetTeam(o.team, false);
278 tm = GetTeam(Team, true);
286 void Playerchecker_Think(entity this)
290 for(i = 0; i < maxclients; ++i)
293 if(entcs_GetName(i) == "")
297 // player disconnected
311 playerslots[i] = e = new_pure(playerslot);
315 e.ping_packetloss = 0;
316 e.ping_movementloss = 0;
317 //e.gotscores = 0; // we might already have the scores...
318 int t = entcs_GetScoreTeam(i);
319 if (t) SetTeam(e, t); // will not hurt; later updates come with Scoreboard_UpdatePlayerTeams
321 Scoreboard_UpdatePlayerPos(e);
325 this.nextthink = time + 0.2;
331 entity playerchecker = new_pure(playerchecker);
332 setthink(playerchecker, Playerchecker_Think);
333 playerchecker.nextthink = time + 0.2;
340 // CSQC_InputEvent : Used to perform actions based on any key pressed, key released and mouse on the client.
341 // Return value should be 1 if CSQC handled the input, otherwise return 0 to have the input passed to the engine.
342 // All keys are in ascii.
343 // bInputType = 0 is key pressed, 1 is key released, 2 and 3 are mouse input.
344 // In the case of keyboard input, nPrimary is the ascii code, and nSecondary is 0.
345 // In the case of mouse input, nPrimary is xdelta, nSecondary is ydelta.
346 // In the case of mouse input after a setcursormode(1) call, nPrimary is xpos, nSecondary is ypos.
347 float CSQC_InputEvent(int bInputType, float nPrimary, float nSecondary)
350 if (HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary))
353 if (QuickMenu_InputEvent(bInputType, nPrimary, nSecondary))
356 if (HUD_Radar_InputEvent(bInputType, nPrimary, nSecondary))
359 if (MapVote_InputEvent(bInputType, nPrimary, nSecondary))
362 if (HUD_Minigame_InputEvent(bInputType, nPrimary, nSecondary))
368 // END REQUIRED CSQC FUNCTIONS
369 // --------------------------------------------------------------------------
371 // --------------------------------------------------------------------------
372 // BEGIN OPTIONAL CSQC FUNCTIONS
374 void Ent_Remove(entity this);
376 void Ent_RemovePlayerScore(entity this)
379 SetTeam(this.owner, -1);
380 this.owner.gotscores = 0;
381 FOREACH(Scores, true, {
382 this.owner.(scores(it)) = 0; // clear all scores
387 NET_HANDLE(ENT_CLIENT_SCORES, bool isnew)
392 // damnit -.- don't want to go change every single .sv_entnum in hud.qc AGAIN
393 // (no I've never heard of M-x replace-string, sed, or anything like that)
394 bool isNew = !this.owner; // workaround for DP bug
395 int n = ReadByte()-1;
397 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
398 if(!isNew && n != this.sv_entnum)
400 //print("A CSQC entity changed its owner!\n");
401 LOG_INFOF("A CSQC entity changed its owner! (edict: %d, classname: %s)\n", etof(this), this.classname);
409 o = playerslots[this.sv_entnum];
412 o = playerslots[this.sv_entnum] = new_pure(playerslot);
415 o.sv_entnum = this.sv_entnum;
419 // RegisterPlayer(o);
420 //playerchecker will do this for us later, if it has not already done so
425 FOREACH(Scores, true, {
426 int p = 1 << (i % 16);
430 o.(scores(it)) = ReadInt24_t();
432 o.(scores(it)) = ReadChar();
439 Scoreboard_UpdatePlayerPos(o); // if not registered, we cannot do this yet!
441 this.entremove = Ent_RemovePlayerScore;
444 NET_HANDLE(ENT_CLIENT_TEAMSCORES, bool isnew)
450 this.team = ReadByte();
451 o = this.owner = GetTeam(this.team, true); // these team numbers can always be trusted
454 #if MAX_TEAMSCORE <= 8
462 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
466 o.(teamscores(i)) = ReadInt24_t();
468 o.(teamscores(i)) = ReadChar();
473 Scoreboard_UpdateTeamPos(o);
476 NET_HANDLE(ENT_CLIENT_CLIENTDATA, bool isnew)
479 float newspectatee_status;
483 scoreboard_showscores_force = (f & 1);
487 newspectatee_status = ReadByte();
488 if(newspectatee_status == player_localnum + 1)
489 newspectatee_status = -1; // observing
492 newspectatee_status = 0;
494 spectatorbutton_zoom = (f & 4);
498 angles_held_status = 1;
499 angles_held.x = ReadAngle();
500 angles_held.y = ReadAngle();
504 angles_held_status = 0;
508 num_spectators = ReadByte();
512 for(i = 0; i < MAX_SPECTATORS; ++i)
513 spectatorlist[i] = 0; // reset list first
515 for(i = 0; i < num_spectators; ++i)
518 spectatorlist[i] = slot - 1;
524 if(newspectatee_status != spectatee_status)
528 race_checkpointtime = 0;
529 hud_dynamic_shake_factor = -1;
531 if (autocvar_hud_panel_healtharmor_progressbar_gfx)
533 if ( (spectatee_status == -1 && newspectatee_status > 0) //before observing, now spectating
534 || (spectatee_status > 0 && newspectatee_status > 0 && spectatee_status != newspectatee_status) //changed spectated player
537 else if(spectatee_status && !newspectatee_status) //before observing/spectating, now playing
540 spectatee_status = newspectatee_status;
542 // we could get rid of spectatee_status, and derive it from player_localentnum and player_localnum
545 NET_HANDLE(ENT_CLIENT_NAGGER, bool isnew)
550 int nags = ReadByte(); // NAGS NAGS NAGS NAGS NAGS NAGS NADZ NAGS NAGS NAGS
555 strunzone(vote_called_vote);
556 vote_called_vote = string_null;
566 vote_yescount = ReadByte();
567 vote_nocount = ReadByte();
568 vote_needed = ReadByte();
569 vote_highlighted = ReadChar();
575 strunzone(vote_called_vote);
576 vote_called_vote = strzone(ColorTranslateRGB(ReadString()));
581 for(j = 0; j < maxclients; ++j)
583 playerslots[j].ready = 1;
584 for(i = 1; i <= maxclients; i += 8)
587 for(j = i-1, b = 1; b < 256; b *= 2, ++j)
590 playerslots[j].ready = 0;
596 ready_waiting = (nags & BIT(0));
597 ready_waiting_for_me = (nags & BIT(1));
598 vote_waiting = (nags & BIT(2));
599 vote_waiting_for_me = (nags & BIT(3));
600 warmup_stage = (nags & BIT(4));
603 NET_HANDLE(ENT_CLIENT_ELIMINATEDPLAYERS, bool isnew)
611 for(j = 0; j < maxclients; ++j)
613 playerslots[j].eliminated = 1;
614 for(i = 1; i <= maxclients; i += 8)
617 for(j = i-1, b = 1; b < 256; b *= 2, ++j)
620 playerslots[j].eliminated = 0;
626 NET_HANDLE(ENT_CLIENT_RANDOMSEED, bool isnew)
630 float s = ReadShort();
635 NET_HANDLE(ENT_CLIENT_ACCURACY, bool isnew)
638 int sf = ReadInt24_t();
640 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w)
641 weapon_accuracy[w] = -1;
646 for (int w = 0; w <= WEP_LAST - WEP_FIRST; ++w) {
650 weapon_accuracy[w] = -1;
652 weapon_accuracy[w] = 1.0; // no better error handling yet, sorry
654 weapon_accuracy[w] = (b - 1.0) / 100.0;
656 f = (f == 0x800000) ? 1 : f * 2;
661 void Spawn_Draw(entity this)
663 __pointparticles(this.cnt, this.origin + '0 0 28', '0 0 2', bound(0, frametime, 0.1));
666 void Spawn_PreDraw(entity this)
669 vector org = getpropertyvec(VF_ORIGIN);
671 alph = bound(0, (this.fade_end - vlen(org - this.origin - 0.5 * (this.mins + this.maxs))) / (this.fade_end - this.fade_start), 1);
674 //printf("%v <-> %v\n", view_origin, this.origin + 0.5 * (this.mins + this.maxs));
679 this.drawmask = MASK_NORMAL;
682 NET_HANDLE(ENT_CLIENT_SPAWNPOINT, bool is_new)
684 float teamnum = (ReadByte() - 1);
686 spn_origin.x = ReadCoord();
687 spn_origin.y = ReadCoord();
688 spn_origin.z = ReadCoord();
690 this.team = (teamnum + 1);
694 this.origin = spn_origin;
695 setsize(this, PL_MIN_CONST, PL_MAX_CONST);
698 /*if(autocvar_cl_spawn_point_model) // needs a model first
700 this.mdl = "models/spawnpoint.md3";
701 this.colormod = Team_ColorRGB(teamnum);
702 precache_model(this.mdl);
703 setmodel(this, this.mdl);
704 this.drawmask = MASK_NORMAL;
705 //this.move_movetype = MOVETYPE_NOCLIP;
706 //this.draw = Spawn_Draw;
707 IL_PUSH(g_drawables, this);
709 if(autocvar_cl_spawn_point_particles)
715 case NUM_TEAM_1: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_RED); break;
716 case NUM_TEAM_2: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_BLUE); break;
717 case NUM_TEAM_3: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_YELLOW); break;
718 case NUM_TEAM_4: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_PINK); break;
719 default: this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); break;
722 else { this.cnt = particleeffectnum(EFFECT_SPAWNPOINT_NEUTRAL); }
724 this.draw = Spawn_Draw;
725 if (is_new) IL_PUSH(g_drawables, this);
726 setpredraw(this, Spawn_PreDraw);
727 this.fade_start = autocvar_cl_spawn_point_dist_min;
728 this.fade_end = autocvar_cl_spawn_point_dist_max;
732 //printf("Ent_ReadSpawnPoint(is_new = %d); origin = %s, team = %d, effect = %d\n", is_new, vtos(this.origin), teamnum, this.cnt);
736 NET_HANDLE(ENT_CLIENT_SPAWNEVENT, bool is_new)
738 // If entnum is 0, ONLY do the local spawn actions
739 // this way the server can disable the sending of
740 // spawn origin or such to clients if wanted.
741 float entnum = ReadByte();
745 this.origin_x = ReadCoord();
746 this.origin_y = ReadCoord();
747 this.origin_z = ReadCoord();
751 float teamnum = entcs_GetTeam(entnum - 1);
753 if(autocvar_cl_spawn_event_particles)
757 case NUM_TEAM_1: pointparticles(EFFECT_SPAWN_RED, this.origin, '0 0 0', 1); break;
758 case NUM_TEAM_2: pointparticles(EFFECT_SPAWN_BLUE, this.origin, '0 0 0', 1); break;
759 case NUM_TEAM_3: pointparticles(EFFECT_SPAWN_YELLOW, this.origin, '0 0 0', 1); break;
760 case NUM_TEAM_4: pointparticles(EFFECT_SPAWN_PINK, this.origin, '0 0 0', 1); break;
761 default: pointparticles(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1); break;
764 if(autocvar_cl_spawn_event_sound)
766 sound(this, CH_TRIGGER, SND_SPAWN, VOL_BASE, ATTEN_NORM);
772 // local spawn actions
773 if(is_new && (!entnum || (entnum == player_localentnum)))
776 current_viewzoom = (1 / bound(1, autocvar_cl_spawnzoom_factor, 16));
778 if(autocvar_cl_unpress_zoom_on_spawn)
784 HUD_Radar_Hide_Maximized();
785 //printf("Ent_ReadSpawnEvent(is_new = %d); origin = %s, entnum = %d, localentnum = %d\n", is_new, vtos(this.origin), entnum, player_localentnum);
788 // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.
789 // The only parameter reflects if the entity is "new" to the client, meaning it just came into the client's PVS.
790 void CSQC_Ent_Update(entity this, bool isnew)
792 this.sourceLoc = __FILE__ ":" STR(__LINE__);
795 // set up the "time" global for received entities to be correct for interpolation purposes
796 float savetime = time;
803 serverprevtime = time;
804 serverdeltatime = STAT(MOVEVARS_TICRATE) * STAT(MOVEVARS_TIMESCALE);
805 time = serverprevtime + serverdeltatime;
808 #ifdef DP_CSQC_ENTITY_REMOVE_IS_B0RKED
811 if (t != this.enttype || isnew)
813 LOG_INFOF("A CSQC entity changed its type! (edict: %d, server: %d, type: %d -> %d)\n", etof(this), this.entnum, this.enttype, t);
823 LOG_INFOF("A CSQC entity appeared out of nowhere! (edict: %d, server: %d, type: %d)\n", etof(this), this.entnum, t);
830 FOREACH(LinkedEntities, it.m_id == t, {
831 if (isnew) this.classname = it.netname;
832 if (autocvar_developer_csqcentities)
833 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);
834 done = it.m_read(this, NULL, isnew);
835 MUTATOR_CALLHOOK(Ent_Update, this, isnew);
841 LOG_FATALF("CSQC_Ent_Update(%d) at %f with this=%i {.entnum=%d, .enttype=%d} t=%s (%d)", isnew, savetime, this, this.entnum, this.enttype, this.classname, t);
845 // Destructor, but does NOT deallocate the entity by calling remove(). Also
846 // used when an entity changes its type. For an entity that someone interacts
847 // with others, make sure it can no longer do so.
848 void Ent_Remove(entity this)
850 if(this.entremove) this.entremove(this);
852 if(this.skeletonindex)
854 skel_delete(this.skeletonindex);
855 this.skeletonindex = 0;
858 if(this.snd_looping > 0)
860 sound(this, this.snd_looping, SND_Null, VOL_BASE, autocvar_g_jetpack_attenuation);
861 this.snd_looping = 0;
866 this.draw = func_null;
867 this.entremove = func_null;
868 // TODO possibly set more stuff to defaults
870 // CSQC_Ent_Remove : Called when the server requests a SSQC / CSQC entity to be removed. Essentially call remove(this) as well.
871 void CSQC_Ent_Remove(entity this)
873 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Ent_Remove() with this=%i {.entnum=%d, .enttype=%d}\n", this, this.entnum, this.enttype);
876 LOG_WARN("CSQC_Ent_Remove called for already removed entity. Packet loss?");
879 if (this.enttype) Ent_Remove(this);
887 if(!(calledhooks & HOOK_START))
888 localcmd("\n_cl_hook_gamestart ", MapInfo_Type_ToString(gametype), "\n");
889 calledhooks |= HOOK_START;
892 // 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.
893 void CSQC_Parse_StuffCmd(string strMessage)
895 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_StuffCmd(\"%s\")\n", strMessage);
896 localcmd(strMessage);
898 // 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.
899 void CSQC_Parse_Print(string strMessage)
901 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_Print(\"%s\")\n", strMessage);
902 print(ColorTranslateRGB(strMessage));
905 // CSQC_Parse_CenterPrint : Provides the centerprint_hud string in the first parameter that the server provided.
906 void CSQC_Parse_CenterPrint(string strMessage)
908 if (autocvar_developer_csqcentities) LOG_INFOF("CSQC_Parse_CenterPrint(\"%s\")\n", strMessage);
909 centerprint_hud(strMessage);
912 // CSQC_Parse_TempEntity : Handles all temporary entity network data in the CSQC layer.
913 // You must ALWAYS first acquire the temporary ID, which is sent as a byte.
914 // Return value should be 1 if CSQC handled the temporary entity, otherwise return 0 to have the engine process the event.
915 bool CSQC_Parse_TempEntity()
918 int nTEID = ReadByte();
920 FOREACH(TempEntities, it.m_id == nTEID, {
921 if (autocvar_developer_csqcentities)
922 LOG_INFOF("CSQC_Parse_TempEntity() nTEID=%s (%d)\n", it.netname, nTEID);
923 return it.m_read(NULL, NULL, true);
926 if (autocvar_developer_csqcentities)
927 LOG_INFOF("CSQC_Parse_TempEntity() with nTEID=%d\n", nTEID);
929 // No special logic for this temporary entity; return 0 so the engine can handle it
936 if (autocvar_cl_orthoview && autocvar_cl_orthoview_nofog)
937 localcmd("\nr_drawfog 0\n");
938 else if (forcefog != "")
939 localcmd(sprintf("\nfog %s\nr_fog_exp2 0\nr_drawfog 1\n", forcefog));
942 void Gamemode_Init();
943 NET_HANDLE(ENT_CLIENT_SCORES_INFO, bool isnew)
946 gametype = ReadRegistered(Gametypes);
947 teamplay = _MapInfo_GetTeamPlayBool(gametype);
948 HUD_ModIcons_SetFunc();
949 FOREACH(Scores, true, {
950 if (scores_label(it)) strunzone(scores_label(it));
951 scores_label(it) = strzone(ReadString());
952 scores_flags(it) = ReadByte();
954 for (int i = 0; i < MAX_TEAMSCORE; ++i)
956 if (teamscores_label(i)) strunzone(teamscores_label(i));
957 teamscores_label(i) = strzone(ReadString());
958 teamscores_flags(i) = ReadByte();
961 Scoreboard_InitScores();
965 NET_HANDLE(ENT_CLIENT_INIT, bool isnew)
967 nb_pb_period = ReadByte() / 32; //Accuracy of 1/32th
969 hook_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
970 hook_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
971 hook_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
972 hook_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
973 arc_shotorigin[0] = decompressShotOrigin(ReadInt24_t());
974 arc_shotorigin[1] = decompressShotOrigin(ReadInt24_t());
975 arc_shotorigin[2] = decompressShotOrigin(ReadInt24_t());
976 arc_shotorigin[3] = decompressShotOrigin(ReadInt24_t());
978 if (forcefog) strunzone(forcefog);
979 forcefog = strzone(ReadString());
981 armorblockpercent = ReadByte() / 255.0;
983 serverflags = ReadByte();
985 g_trueaim_minrange = ReadCoord();
989 MUTATOR_CALLHOOK(Ent_Init);
991 if (!postinit) PostInit();
994 float GetSpeedUnitFactor(int speed_unit)
1004 return 0.0254 * 3.6;
1006 return 0.0254 * 3.6 * 0.6213711922;
1008 return 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
1012 string GetSpeedUnit(int speed_unit)
1030 NET_HANDLE(TE_CSQC_RACE, bool isNew)
1036 case RACE_NET_CHECKPOINT_HIT_QUALIFYING:
1037 race_checkpoint = ReadByte();
1038 race_time = ReadInt24_t();
1039 race_previousbesttime = ReadInt24_t();
1040 if(race_previousbestname)
1041 strunzone(race_previousbestname);
1042 race_previousbestname = strzone(ColorTranslateRGB(ReadString()));
1044 race_checkpointtime = time;
1046 if(race_checkpoint == 0 || race_checkpoint == 254)
1048 race_penaltyaccumulator = 0;
1049 race_laptime = time; // valid
1054 case RACE_NET_CHECKPOINT_CLEAR:
1056 race_checkpointtime = 0;
1059 case RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING:
1060 race_laptime = ReadCoord();
1061 race_checkpointtime = -99999;
1063 case RACE_NET_CHECKPOINT_NEXT_QUALIFYING:
1064 race_nextcheckpoint = ReadByte();
1066 race_nextbesttime = ReadInt24_t();
1067 if(race_nextbestname)
1068 strunzone(race_nextbestname);
1069 race_nextbestname = strzone(ColorTranslateRGB(ReadString()));
1072 case RACE_NET_CHECKPOINT_HIT_RACE:
1073 race_mycheckpoint = ReadByte();
1074 race_mycheckpointtime = time;
1075 race_mycheckpointdelta = ReadInt24_t();
1076 race_mycheckpointlapsdelta = ReadByte();
1077 if(race_mycheckpointlapsdelta >= 128)
1078 race_mycheckpointlapsdelta -= 256;
1079 if(race_mycheckpointenemy)
1080 strunzone(race_mycheckpointenemy);
1081 race_mycheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1084 case RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT:
1085 race_othercheckpoint = ReadByte();
1086 race_othercheckpointtime = time;
1087 race_othercheckpointdelta = ReadInt24_t();
1088 race_othercheckpointlapsdelta = ReadByte();
1089 if(race_othercheckpointlapsdelta >= 128)
1090 race_othercheckpointlapsdelta -= 256;
1091 if(race_othercheckpointenemy)
1092 strunzone(race_othercheckpointenemy);
1093 race_othercheckpointenemy = strzone(ColorTranslateRGB(ReadString()));
1096 case RACE_NET_PENALTY_RACE:
1097 race_penaltyeventtime = time;
1098 race_penaltytime = ReadShort();
1099 //race_penaltyaccumulator += race_penaltytime;
1100 if(race_penaltyreason)
1101 strunzone(race_penaltyreason);
1102 race_penaltyreason = strzone(ReadString());
1105 case RACE_NET_PENALTY_QUALIFYING:
1106 race_penaltyeventtime = time;
1107 race_penaltytime = ReadShort();
1108 race_penaltyaccumulator += race_penaltytime;
1109 if(race_penaltyreason)
1110 strunzone(race_penaltyreason);
1111 race_penaltyreason = strzone(ReadString());
1114 case RACE_NET_SERVER_RECORD:
1115 race_server_record = ReadInt24_t();
1117 case RACE_NET_SPEED_AWARD:
1118 race_speedaward = ReadInt24_t() * GetSpeedUnitFactor(autocvar_hud_panel_physics_speed_unit);
1119 if(race_speedaward_holder)
1120 strunzone(race_speedaward_holder);
1121 race_speedaward_holder = strzone(ReadString());
1122 if(race_speedaward_unit)
1123 strunzone(race_speedaward_unit);
1124 race_speedaward_unit = strzone(GetSpeedUnit(autocvar_hud_panel_physics_speed_unit));
1126 case RACE_NET_SPEED_AWARD_BEST:
1127 race_speedaward_alltimebest = ReadInt24_t() * GetSpeedUnitFactor(autocvar_hud_panel_physics_speed_unit);
1128 if(race_speedaward_alltimebest_holder)
1129 strunzone(race_speedaward_alltimebest_holder);
1130 race_speedaward_alltimebest_holder = strzone(ReadString());
1131 if(race_speedaward_alltimebest_unit)
1132 strunzone(race_speedaward_alltimebest_unit);
1133 race_speedaward_alltimebest_unit = strzone(GetSpeedUnit(autocvar_hud_panel_physics_speed_unit));
1135 case RACE_NET_SERVER_RANKINGS:
1137 int pos = ReadShort();
1138 prevpos = ReadShort();
1141 // move other rankings out of the way
1144 for (i=prevpos-1;i>pos-1;--i) {
1145 grecordtime[i] = grecordtime[i-1];
1146 if(grecordholder[i])
1147 strunzone(grecordholder[i]);
1148 grecordholder[i] = strzone(grecordholder[i-1]);
1150 } else if (del) { // a record has been deleted by the admin
1151 for (i=pos-1; i<= RANKINGS_CNT-1; ++i) {
1152 if (i == RANKINGS_CNT-1) { // clear out last record
1154 if (grecordholder[i])
1155 strunzone(grecordholder[i]);
1156 grecordholder[i] = string_null;
1159 grecordtime[i] = grecordtime[i+1];
1160 if (grecordholder[i])
1161 strunzone(grecordholder[i]);
1162 grecordholder[i] = strzone(grecordholder[i+1]);
1165 } else { // player has no ranked record yet
1166 for (i=RANKINGS_CNT-1;i>pos-1;--i) {
1167 grecordtime[i] = grecordtime[i-1];
1168 if(grecordholder[i])
1169 strunzone(grecordholder[i]);
1170 grecordholder[i] = strzone(grecordholder[i-1]);
1174 // store new ranking
1175 if(grecordholder[pos-1] != "")
1176 strunzone(grecordholder[pos-1]);
1177 grecordholder[pos-1] = strzone(ReadString());
1178 grecordtime[pos-1] = ReadInt24_t();
1179 if(grecordholder[pos-1] == entcs_GetName(player_localnum))
1182 case RACE_NET_SERVER_STATUS:
1183 race_status = ReadShort();
1184 if(race_status_name)
1185 strunzone(race_status_name);
1186 race_status_name = strzone(ReadString());
1191 NET_HANDLE(TE_CSQC_TEAMNAGGER, bool isNew)
1197 NET_HANDLE(TE_CSQC_PINGPLREPORT, bool isNew)
1200 int pi = ReadShort();
1201 int pl = ReadByte();
1202 int ml = ReadByte();
1204 entity e = playerslots[i];
1207 e.ping_packetloss = pl / 255.0;
1208 e.ping_movementloss = ml / 255.0;
1211 NET_HANDLE(TE_CSQC_WEAPONCOMPLAIN, bool isNew)
1213 complain_weapon = ReadByte();
1214 complain_weapon_type = ReadByte();
1217 complain_weapon_time = time;
1218 weapontime = time; // ping the weapon panel
1220 switch(complain_weapon_type)
1222 case 0: Local_Notification(MSG_MULTI, ITEM_WEAPON_NOAMMO, complain_weapon); break;
1223 case 1: Local_Notification(MSG_MULTI, ITEM_WEAPON_DONTHAVE, complain_weapon); break;
1224 default: Local_Notification(MSG_MULTI, ITEM_WEAPON_UNAVAILABLE, complain_weapon); break;
1228 string _getcommandkey(string cmd_name, string command, bool forcename)
1231 float n, j, k, l = 0;
1233 if (!autocvar_hud_showbinds)
1236 keys = db_get(binddb, command);
1239 bool joy_detected = cvar("joy_detected");
1240 n = tokenize(findkeysforcommand(command, 0)); // uses '...' strings
1241 for(j = 0; j < n; ++j)
1246 string key = keynumtostring(k);
1247 if(!joy_detected && substring(key, 0, 3) == "JOY")
1253 keys = strcat(keys, ", ", key);
1256 if (autocvar_hud_showbinds_limit > 0 && autocvar_hud_showbinds_limit <= l)
1263 db_put(binddb, command, keys);
1266 if (keys == "NO_KEY") {
1267 if (autocvar_hud_showbinds > 1)
1268 return sprintf(_("%s (not bound)"), cmd_name);
1272 else if (autocvar_hud_showbinds > 1 || forcename)
1273 return sprintf("%s (%s)", cmd_name, keys);