3 REGISTER_NET_LINKED(ENT_CLIENT_ENTCS)
4 REGISTER_NET_TEMP(CLIENT_ENTCS)
6 /** True when private information such as origin is available */
8 /** True when origin is available */
10 /** True when a recent server sent origin has been received */
15 * The point of these entities is to avoid the problems
16 * with clientprediction.
17 * If you add SendEntity to players, the engine will not
18 * do any prediction anymore, and you'd have to write the whole
19 * prediction code in CSQC, you want that? :P
20 * Data can depend on gamemode. For now, it serves as GPS entities
21 * in onslaught... YAY ;)
26 bool entcs_send(entity this, entity to, int sf);
28 void entcs_think(entity this);
30 void entcs_attach(entity e);
32 void entcs_detach(entity e);
36 /** Force an origin update, for player sounds */
37 #define entcs_force_origin(e) ((e).entcs.m_forceupdate = BIT(2))
46 AL_NEW(_entcs, 255, NULL, e); // 255 is the engine limit on maxclients
52 #define entcs_receiver(...) EVAL_entcs_receiver(OVERLOAD(entcs_receiver, __VA_ARGS__))
53 #define EVAL_entcs_receiver(...) __VA_ARGS__
54 #define entcs_receiver_1(i) AL_gete(_entcs, i)
55 #define entcs_receiver_2(i, v) AL_sete(_entcs, i, v)
56 #define entcs_is_self(e) ((e).sv_entnum == player_localentnum - 1)
59 * @param i zero indexed player
62 bool entcs_IsSpectating(int i)
64 bool unconnected = !playerslots[i].gotscores;
65 entity e = entcs_receiver(i);
66 return unconnected || ((e) ? e.frags : stof(getplayerkeyvalue(i, "frags"))) == FRAGS_SPECTATOR;
70 * @param i zero indexed player
72 int entcs_GetClientColors(int i)
74 entity e = entcs_receiver(i);
75 return e ? e.colormap : stof(getplayerkeyvalue(i, "colors"));
79 * @param i zero indexed player
80 * @returns 0 if not teamplay
82 int entcs_GetTeamColor(int i)
84 return (!teamplay) ? 0 : entcs_GetClientColors(i) & 15;
88 * @param i zero indexed player
89 * @returns 0 if not teamplay | NUM_TEAM_##N | NUM_SPECTATOR
91 int entcs_GetTeam(int i)
93 return entcs_IsSpectating(i) ? NUM_SPECTATOR : entcs_GetTeamColor(i);
97 * Same as `entcs_GetTeam`, but returns -1 for no team in teamplay
99 int entcs_GetScoreTeam(int i)
101 int t = entcs_GetTeam(i);
102 if (teamplay && !t) t = -1;
107 * @param i zero indexed player
109 string entcs_GetName(int i)
111 entity e = entcs_receiver(i);
112 return e ? ColorTranslateRGB(e.netname) : ColorTranslateRGB(getplayerkeyvalue(i, "name"));
116 * @param i zero indexed player
118 entity CSQCModel_server2csqc(int i);
123 * @param i zero indexed player
125 float entcs_GetAlpha(int i)
127 entity e = CSQCModel_server2csqc(i);
128 return e ? e.alpha : 1;
132 * @param i zero indexed player
134 vector entcs_GetColor(int i)
136 entity e = CSQCModel_server2csqc(i);
137 return (!e || e.colormap <= 0)
139 : colormapPaletteColor(((e.colormap >= 1024)
141 : entcs_GetClientColors(e.colormap - 1)) & 15, true)
146 * @param i zero indexed player
148 bool entcs_IsDead(int i)
150 entity e = CSQCModel_server2csqc(i);
151 return e ? e.csqcmodel_isdead : false;