9 .bool(entity this, entity sender, bool isNew) m_read;
10 #define NET_HANDLE(id, param) bool Net_Handle_##id(entity this, entity sender, param)
14 #define REGISTER_NET_TEMP(id) \
15 NET_HANDLE(id, bool); \
16 REGISTER(TempEntities, NET, id, m_id, new_pure(net_temp_packet)) \
19 this.m_read = Net_Handle_##id; \
22 #define REGISTER_NET_TEMP(id) \
23 const bool NET_##id##_istemp = true; \
24 REGISTER(TempEntities, NET, id, m_id, new_pure(net_temp_packet)) \
29 #define REGISTER_NET_S2C(id) REGISTER_NET_TEMP(id)
31 REGISTRY(TempEntities, BITS(8) - 80)
32 #define TempEntities_from(i) _TempEntities_from(i, NULL)
33 REGISTER_REGISTRY(TempEntities)
34 REGISTRY_SORT(TempEntities)
35 REGISTRY_CHECK(TempEntities)
36 STATIC_INIT(RegisterTempEntities_renumber) { FOREACH(TempEntities, true, it.m_id = 80 + i); }
41 #define REGISTER_NET_LINKED(id) \
42 [[accumulate]] NET_HANDLE(id, bool isnew) \
45 this.sourceLoc = __FILE__ ":" STR(__LINE__); \
46 if (!this) isnew = true; \
48 REGISTER(LinkedEntities, NET, id, m_id, new_pure(net_linked_packet)) \
51 this.m_read = Net_Handle_##id; \
54 #define REGISTER_NET_LINKED(id) \
55 const bool NET_##id##_istemp = false; \
56 REGISTER(LinkedEntities, NET, id, m_id, new_pure(net_linked_packet)) \
62 REGISTRY(LinkedEntities, BITS(8) - 1)
63 #define LinkedEntities_from(i) _LinkedEntities_from(i, NULL)
64 REGISTER_REGISTRY(LinkedEntities)
65 REGISTRY_SORT(LinkedEntities)
66 REGISTRY_CHECK(LinkedEntities)
67 STATIC_INIT(RegisterLinkedEntities_renumber) { FOREACH(LinkedEntities, true, it.m_id = 1 + i); }
72 #define REGISTER_NET_C2S(id) \
73 NET_HANDLE(id, bool); \
74 REGISTER(C2S_Protocol, NET, id, m_id, new_pure(net_c2s_packet)) \
77 this.m_read = Net_Handle_##id; \
80 #define REGISTER_NET_C2S(id) \
81 const bool NET_##id##_istemp = true; \
82 REGISTER(C2S_Protocol, NET, id, m_id, new_pure(net_c2s_packet)) \
88 REGISTRY(C2S_Protocol, BITS(8) - 1)
89 #define C2S_Protocol_from(i) _C2S_Protocol_from(i, NULL)
90 REGISTER_REGISTRY(C2S_Protocol)
91 REGISTRY_SORT(C2S_Protocol)
92 REGISTRY_CHECK(C2S_Protocol)
93 STATIC_INIT(C2S_Protocol_renumber) { FOREACH(C2S_Protocol, true, it.m_id = i); }
96 const int MSG_ENTITY = 5;
98 .int Version; // deprecated, use SendFlags
101 IntrusiveList g_uncustomizables;
102 STATIC_INIT(g_uncustomizables) { g_uncustomizables = IL_NEW(); }
104 void Net_LinkEntity(entity e, bool docull, float dt, bool(entity this, entity to, int sendflags) sendfunc)
106 if (e.classname == "") e.classname = "net_linked";
108 if (e.model == "" || e.modelindex == 0)
112 _setmodel(e, "null");
116 setSendEntity(e, sendfunc);
117 e.SendFlags = 0xFFFFFF;
119 if (!docull) e.effects |= EF_NODEPTHTEST;
123 e.nextthink = time + dt;
124 setthink(e, SUB_Remove);
128 void Net_UnlinkEntity(entity e)
130 setSendEntity(e, func_null);
133 .void(entity this) uncustomizeentityforclient;
134 .float uncustomizeentityforclient_set;
136 void SetCustomizer(entity e, bool(entity this, entity client) customizer, void(entity this) uncustomizer)
138 setcefc(e, customizer);
139 e.uncustomizeentityforclient = uncustomizer;
140 e.uncustomizeentityforclient_set = !!uncustomizer;
142 IL_PUSH(g_uncustomizables, e);
145 void UncustomizeEntitiesRun()
147 IL_EACH(g_uncustomizables, it.uncustomizeentityforclient_set, it.uncustomizeentityforclient(it));
150 STRING_ITERATOR(g_buf, string_null, 0);
154 void Net_ClientCommand(entity sender, string command)
156 // command matches `c2s "(.+)"`
157 string buf = substring(command, argv_start_index(1) + 1, -2);
158 if (buf == "") return;
159 STRING_ITERATOR_SET(g_buf, buf, 0);
160 for (int C2S; (C2S = ReadByte()) >= 0; )
162 entity reader = C2S_Protocol_from(C2S);
163 if (reader && reader.m_read && reader.m_read(NULL, sender, true)) continue;
164 LOG_SEVEREF("Net_ClientCommand() with malformed C2S=%d", C2S);
168 int expected = strlen(buf);
169 if (g_buf_i > expected) LOG_WARNF("Underflow: %d", g_buf_i - expected);
170 if (g_buf_i < expected) LOG_WARNF("Overrflow: %d", expected - g_buf_i);
176 const int MSG_C2S = 0;
178 #define Net_Accept(classname) \
180 if (!this) this = new(classname); \
182 #define Net_Reject() \
184 if (this) delete(this); \
191 if (g_buf == "") return;
192 localcmd("\ncmd c2s \"", strreplace("$", "$$", g_buf), "\"\n");
199 #define WriteHeader(to, id) \
201 WriteByte(to, NET_##id.m_id); \
204 #define WriteHeader(to, id) \
206 if (NET_##id##_istemp) WriteByte(to, SVC_TEMPENTITY); \
207 WriteByte(to, NET_##id.m_id); \
211 // serialization: new style
215 #define stream_reading(stream) false
216 #define stream_writing(stream) true
218 #define stream_reading(stream) true
219 #define stream_writing(stream) false
222 #define serialize(T, stream, ...) serialize_##T(stream, __VA_ARGS__)
225 #define serialize_byte(stream, this) \
227 WriteByte(stream, this); \
230 #define serialize_byte(stream, this) \
237 #define serialize_float(stream, this) \
239 WriteCoord(stream, this); \
242 #define serialize_float(stream, this) \
244 this = ReadCoord(); \
248 #define serialize_vector(stream, this) \
251 serialize_float(stream, _v.x); \
252 serialize_float(stream, _v.y); \
253 serialize_float(stream, _v.z); \
257 // serialization: old
259 #define ReadRegistered(r) r##_from(Read_byte())
260 #define WriteRegistered(r, to, it) Write_byte(to, it.m_id)
262 #define Read_byte() ReadByte()
263 #define Write_byte(to, f) WriteByte(to, f)
267 void WriteByte(int to, int b)
269 assert(to == MSG_C2S);
270 string s = string_null;
272 string tmp = strcat(g_buf, s);
273 if (g_buf) strunzone(g_buf);
274 g_buf = strzone(tmp);
280 ydec_single(g_buf, ret);
283 void WriteByte(int to, int b);
286 #define Read_int() ReadInt24_t()
287 #define Write_int(to, f) WriteInt24_t(to, f)
289 #define Read_float() ReadFloat()
290 #define Write_float(to, f) WriteFloat(to, f)
292 #define Read_string() ReadString()
293 #define Write_string(to, f) WriteString(to, f)
296 const float APPROXPASTTIME_ACCURACY_REQUIREMENT = 0.05;
297 #define APPROXPASTTIME_MAX (16384 * APPROXPASTTIME_ACCURACY_REQUIREMENT)
298 #define APPROXPASTTIME_RANGE (64 * APPROXPASTTIME_ACCURACY_REQUIREMENT)
302 entity ReadCSQCEntity()
305 if (f == 0) return NULL;
306 return findfloat(NULL, entnum, f);
310 int v = ReadShort() << 8; // note: this is signed
311 v += ReadByte(); // note: this is unsigned
314 #define ReadInt48_t() vec2(ReadInt24_t(), ReadInt24_t())
315 #define ReadInt72_t() vec3(ReadInt24_t(), ReadInt24_t(), ReadInt24_t())
317 noref int _ReadSByte;
318 #define ReadSByte() (_ReadSByte = ReadByte(), (_ReadSByte & BIT(7) ? -128 : 0) + (_ReadSByte & BITS(7)))
319 #define ReadFloat() ReadCoord()
320 #define ReadVector() vec3(ReadFloat(), ReadFloat(), ReadFloat())
321 #define ReadVector2D() vec2(ReadFloat(), ReadFloat())
323 float ReadApproxPastTime()
325 float dt = ReadByte();
327 // map from range...PPROXPASTTIME_MAX / 256
328 dt = (APPROXPASTTIME_MAX / 256) * (dt / (256 - dt));
330 return servertime - dt;
334 void WriteInt24_t(float dst, float val)
337 WriteShort(dst, (v = floor(val >> 8)));
338 WriteByte(dst, val - (v << 8)); // 0..255
340 void WriteInt48_t(float dst, vector val)
342 WriteInt24_t(dst, val.x);
343 WriteInt24_t(dst, val.y);
345 void WriteInt72_t(float dst, vector val)
347 WriteInt24_t(dst, val.x);
348 WriteInt24_t(dst, val.y);
349 WriteInt24_t(dst, val.z);
352 #define WriteFloat(to, f) WriteCoord(to, f)
353 #define WriteVector(to, v) MACRO_BEGIN { WriteFloat(to, v.x); WriteFloat(to, v.y); WriteFloat(to, v.z); } MACRO_END
354 #define WriteVector2D(to, v) MACRO_BEGIN { WriteFloat(to, v.x); WriteFloat(to, v.y); } MACRO_END
356 // this will use the value:
358 // accuracy near zero is APPROXPASTTIME_MAX/(256*255)
359 // accuracy at x is 1/derivative, i.e.
360 // APPROXPASTTIME_MAX * (1 + 256 * (dt / APPROXPASTTIME_MAX))^2 / 65536
361 void WriteApproxPastTime(float dst, float t)
365 // warning: this is approximate; do not resend when you don't have to!
366 // be careful with sendflags here!
367 // we want: 0 -> 0.05, 1 -> 0.1, ..., 255 -> 12.75
370 dt = 256 * (dt / ((APPROXPASTTIME_MAX / 256) + dt));
373 dt = rint(bound(0, dt, 255));
378 // allow writing to also pass through to spectators (like so spectators see the same centerprints as players for example)
379 #define WRITESPECTATABLE_MSG_ONE(to, statement) MACRO_BEGIN { \
380 entity prev = msg_entity; \
382 FOREACH_CLIENT(IS_REAL_CLIENT(it), { \
383 if (it == dst || (it.classname == STR_SPECTATOR && it.enemy == dst)) \