]> git.xonotic.org Git - xonotic/darkplaces.git/blob - protocol.h
Add .md extension to README so it actually parses the markdown
[xonotic/darkplaces.git] / protocol.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // protocol.h -- communications protocols
21
22 #ifndef PROTOCOL_H
23 #define PROTOCOL_H
24
25 #include <stddef.h>
26 #include "qtypes.h"
27 #include "qdefs.h"
28 #include "qstats.h"
29 struct mempool_s;
30 struct sizebuf_s;
31 // protocolversion_t is defined in common.h
32 enum protocolversion_e;
33
34 enum protocolversion_e Protocol_EnumForName(const char *s);
35 const char *Protocol_NameForEnum(enum protocolversion_e p);
36 enum protocolversion_e Protocol_EnumForNumber(int n);
37 int Protocol_NumberForEnum(enum protocolversion_e p);
38 void Protocol_Names(char *buffer, size_t buffersize);
39
40 #define ENTITYSIZEPROFILING_START(msg, num, flags) \
41         int entityprofiling_startsize = msg->cursize
42
43 #define ENTITYSIZEPROFILING_END(msg, num, flags) \
44         if(developer_networkentities.integer >= 2) \
45         { \
46                 prvm_edict_t *edict = prog->edicts + num; \
47                 Con_Printf("sent entity update of size %u for %d classname %s flags %d\n", (msg->cursize - entityprofiling_startsize), num, PRVM_serveredictstring(edict, classname) ? PRVM_GetString(prog, PRVM_serveredictstring(edict, classname)) : "(no classname)", flags); \
48         }
49
50 // CSQC entity scope values. Bitflags!
51 #define SCOPE_WANTREMOVE 1        // Set if a remove has been scheduled. Never set together with WANTUPDATE.
52 #define SCOPE_WANTUPDATE 2        // Set if an update has been scheduled.
53 #define SCOPE_WANTSEND (SCOPE_WANTREMOVE | SCOPE_WANTUPDATE)
54 #define SCOPE_EXISTED_ONCE 4      // Set if the entity once existed. All these get resent on a full loss.
55 #define SCOPE_ASSUMED_EXISTING 8  // Set if the entity is currently assumed existing and therefore needs removes.
56
57
58 // model effects
59 #define MF_ROCKET       1                       // leave a trail
60 #define MF_GRENADE      2                       // leave a trail
61 #define MF_GIB          4                       // leave a trail
62 #define MF_ROTATE       8                       // rotate (bonus items)
63 #define MF_TRACER       16                      // green split trail
64 #define MF_ZOMGIB       32                      // small blood trail
65 #define MF_TRACER2      64                      // orange split trail + rotate
66 #define MF_TRACER3      128                     // purple trail
67
68 // entity effects
69 #define EF_BRIGHTFIELD                  1
70 #define EF_MUZZLEFLASH                  2
71 #define EF_BRIGHTLIGHT                  4
72 #define EF_DIMLIGHT                     8
73 #define EF_NODRAW                               16
74 #define EF_ADDITIVE                             32
75 #define EF_BLUE                                 64
76 #define EF_RED                                  128
77 #define EF_NOGUNBOB                             256                     // LadyHavoc: when used with .viewmodelforclient this makes the entity attach to the view without gun bobbing and such effects, it also works on the player entity to disable gun bobbing of the engine-managed .viewmodel (without affecting any .viewmodelforclient entities attached to the player)
78 #define EF_FULLBRIGHT                   512                     // LadyHavoc: fullbright
79 #define EF_FLAME                                1024            // LadyHavoc: on fire
80 #define EF_STARDUST                             2048            // LadyHavoc: showering sparks
81 #define EF_NOSHADOW                             4096            // LadyHavoc: does not cast a shadow
82 #define EF_NODEPTHTEST                  8192            // LadyHavoc: shows through walls
83 #define EF_SELECTABLE                   16384           // LadyHavoc: highlights when PRYDON_CLIENTCURSOR mouse is over it
84 #define EF_DOUBLESIDED                  32768           //[515]: disable cull face for this entity
85 #define EF_NOSELFSHADOW                 65536           // LadyHavoc: does not cast a shadow on itself (or any other EF_NOSELFSHADOW entities)
86 #define EF_DYNAMICMODELLIGHT                    131072
87 #define EF_UNUSED18                             262144
88 #define EF_UNUSED19                             524288
89 #define EF_RESTARTANIM_BIT              1048576     // div0: restart animation bit (like teleport bit, but lerps between end and start of the anim, and doesn't stop player lerping)
90 #define EF_TELEPORT_BIT                 2097152         // div0: teleport bit (toggled when teleporting, prevents lerping when the bit has changed)
91 #define EF_LOWPRECISION                 4194304         // LadyHavoc: entity is low precision (integer coordinates) to save network bandwidth  (serverside only)
92 #define EF_NOMODELFLAGS                 8388608         // indicates the model's .effects should be ignored (allows overriding them)
93 #define EF_ROCKET                               16777216        // leave a trail
94 #define EF_GRENADE                              33554432        // leave a trail
95 #define EF_GIB                                  67108864        // leave a trail
96 #define EF_ROTATE                               134217728       // rotate (bonus items)
97 #define EF_TRACER                               268435456       // green split trail
98 #define EF_ZOMGIB                               536870912       // small blood trail
99 #define EF_TRACER2                              1073741824      // orange split trail + rotate
100 #define EF_TRACER3                              0x80000000      // purple trail
101
102 // internaleffects bits (no overlap with EF_ bits):
103 #define INTEF_FLAG1QW                           1
104 #define INTEF_FLAG2QW                           2
105
106 // flags for the pflags field of entities
107 #define PFLAGS_NOSHADOW                 1
108 #define PFLAGS_CORONA                   2
109 #define PFLAGS_FULLDYNAMIC              128 // must be set or the light fields are ignored
110
111 // if the high bit of the servercmd is set, the low bits are fast update flags:
112 #define U_MOREBITS              (1<<0)
113 #define U_ORIGIN1               (1<<1)
114 #define U_ORIGIN2               (1<<2)
115 #define U_ORIGIN3               (1<<3)
116 #define U_ANGLE2                (1<<4)
117 // LadyHavoc: U_NOLERP was only ever used for monsters, so I renamed it U_STEP
118 #define U_STEP                  (1<<5)
119 #define U_FRAME                 (1<<6)
120 // just differentiates from other updates
121 #define U_SIGNAL                (1<<7)
122
123 #define U_ANGLE1                (1<<8)
124 #define U_ANGLE3                (1<<9)
125 #define U_MODEL                 (1<<10)
126 #define U_COLORMAP              (1<<11)
127 #define U_SKIN                  (1<<12)
128 #define U_EFFECTS               (1<<13)
129 #define U_LONGENTITY    (1<<14)
130
131 // LadyHavoc: protocol extension
132 #define U_EXTEND1               (1<<15)
133 // LadyHavoc: first extend byte
134 #define U_DELTA                 (1<<16) // no data, while this is set the entity is delta compressed (uses previous frame as a baseline, meaning only things that have changed from the previous frame are sent, except for the forced full update every half second)
135 #define U_ALPHA                 (1<<17) // 1 byte, 0.0-1.0 maps to 0-255, not sent if exactly 1, and the entity is not sent if <=0 unless it has effects (model effects are checked as well)
136 #define U_SCALE                 (1<<18) // 1 byte, scale / 16 positive, not sent if 1.0
137 #define U_EFFECTS2              (1<<19) // 1 byte, this is .effects & 0xFF00 (second byte)
138 #define U_GLOWSIZE              (1<<20) // 1 byte, encoding is float/4.0, unsigned, not sent if 0
139 #define U_GLOWCOLOR             (1<<21) // 1 byte, palette index, default is 254 (white), this IS used for darklight (allowing colored darklight), however the particles from a darklight are always black, not sent if default value (even if glowsize or glowtrail is set)
140 #define U_COLORMOD              (1<<22) // 1 byte, 3 bit red, 3 bit green, 2 bit blue, this lets you tint an object artifically, so you could make a red rocket, or a blue fiend...
141 #define U_EXTEND2               (1<<23) // another byte to follow
142 // LadyHavoc: second extend byte
143 #define U_GLOWTRAIL             (1<<24) // leaves a trail of particles (of color .glowcolor, or black if it is a negative glowsize)
144 #define U_VIEWMODEL             (1<<25) // attachs the model to the view (origin and angles become relative to it), only shown to owner, a more powerful alternative to .weaponmodel and such
145 #define U_FRAME2                (1<<26) // 1 byte, this is .frame & 0xFF00 (second byte)
146 #define U_MODEL2                (1<<27) // 1 byte, this is .modelindex & 0xFF00 (second byte)
147 #define U_EXTERIORMODEL (1<<28) // causes this model to not be drawn when using a first person view (third person will draw it, first person will not)
148 #define U_UNUSED29              (1<<29) // future expansion
149 #define U_UNUSED30              (1<<30) // future expansion
150 #define U_EXTEND3               (1<<31) // another byte to follow, future expansion
151
152 #define SU_VIEWHEIGHT   (1<<0)
153 #define SU_IDEALPITCH   (1<<1)
154 #define SU_PUNCH1               (1<<2)
155 #define SU_PUNCH2               (1<<3)
156 #define SU_PUNCH3               (1<<4)
157 #define SU_VELOCITY1    (1<<5)
158 #define SU_VELOCITY2    (1<<6)
159 #define SU_VELOCITY3    (1<<7)
160 //define        SU_AIMENT               (1<<8)  AVAILABLE BIT
161 #define SU_ITEMS                (1<<9)
162 #define SU_ONGROUND             (1<<10)         // no data follows, the bit is it
163 #define SU_INWATER              (1<<11)         // no data follows, the bit is it
164 #define SU_WEAPONFRAME  (1<<12)
165 #define SU_ARMOR                (1<<13)
166 #define SU_WEAPON               (1<<14)
167 #define SU_EXTEND1              (1<<15)
168 // first extend byte
169 #define SU_PUNCHVEC1    (1<<16)
170 #define SU_PUNCHVEC2    (1<<17)
171 #define SU_PUNCHVEC3    (1<<18)
172 #define SU_VIEWZOOM             (1<<19) // byte factor (0 = 0.0 (not valid), 255 = 1.0)
173 #define SU_UNUSED20             (1<<20)
174 #define SU_UNUSED21             (1<<21)
175 #define SU_UNUSED22             (1<<22)
176 #define SU_EXTEND2              (1<<23) // another byte to follow, future expansion
177 // second extend byte
178 #define SU_UNUSED24             (1<<24)
179 #define SU_UNUSED25             (1<<25)
180 #define SU_UNUSED26             (1<<26)
181 #define SU_UNUSED27             (1<<27)
182 #define SU_UNUSED28             (1<<28)
183 #define SU_UNUSED29             (1<<29)
184 #define SU_UNUSED30             (1<<30)
185 #define SU_EXTEND3              (1<<31) // another byte to follow, future expansion
186
187 // a sound with no channel is a local only sound
188 #define SND_VOLUME              (1<<0)          // a byte
189 #define SND_ATTENUATION (1<<1)          // a byte
190 #define SND_LOOPING             (1<<2)          // a long
191 #define SND_LARGEENTITY (1<<3)          // a short and a byte (instead of a short)
192 #define SND_LARGESOUND  (1<<4)          // a short (instead of a byte)
193 #define SND_SPEEDUSHORT4000     (1<<5)          // ushort speed*4000 (speed is usually 1.0, a value of 0.0 is the same as 1.0)
194
195
196 // defaults for clientinfo messages
197 #define DEFAULT_VIEWHEIGHT      22
198
199
200 // game types sent by serverinfo
201 // these determine which intermission screen plays
202 #define GAME_COOP                       0
203 #define GAME_DEATHMATCH         1
204
205 //==================
206 // note that there are some defs.qc that mirror to these numbers
207 // also related to svc_strings[] in cl_parse
208 //==================
209
210 //
211 // server to client
212 //
213 #define svc_bad                         0
214 #define svc_nop                         1
215 #define svc_disconnect          2
216 #define svc_updatestat          3       // [byte] [long]
217 #define svc_version                     4       // [long] server version
218 #define svc_setview                     5       // [short] entity number
219 #define svc_sound                       6       // <see code>
220 #define svc_time                        7       // [float] server time
221 #define svc_print                       8       // [string] null terminated string
222 #define svc_stufftext           9       // [string] stuffed into client's console buffer
223                                                                 // the string should be \n terminated
224 #define svc_setangle            10      // [angle3] set the view angle to this absolute value
225
226 #define svc_serverinfo          11      // [long] version
227                                                 // [string] signon string
228                                                 // [string]..[0]model cache
229                                                 // [string]...[0]sounds cache
230 #define svc_lightstyle          12      // [byte] [string]
231 #define svc_updatename          13      // [byte] [string]
232 #define svc_updatefrags         14      // [byte] [short]
233 #define svc_clientdata          15      // <shortbits + data>
234 #define svc_stopsound           16      // <see code>
235 #define svc_updatecolors        17      // [byte] [byte]
236 #define svc_particle            18      // [vec3] <variable>
237 #define svc_damage                      19
238
239 #define svc_spawnstatic         20
240 //      svc_spawnbinary         21
241 #define svc_spawnbaseline       22
242
243 #define svc_temp_entity         23
244
245 #define svc_setpause            24      // [byte] on / off
246 #define svc_signonnum           25      // [byte]  used for the signon sequence
247
248 #define svc_centerprint         26      // [string] to put in center of the screen
249
250 #define svc_killedmonster       27
251 #define svc_foundsecret         28
252
253 #define svc_spawnstaticsound    29      // [coord3] [byte] samp [byte] vol [byte] aten
254
255 #define svc_intermission        30              // [string] music
256 #define svc_finale                      31              // [string] music [string] text
257
258 #define svc_cdtrack                     32              // [byte] track [byte] looptrack
259 #define svc_sellscreen          33
260
261 #define svc_cutscene            34
262
263 #define svc_showlmp                     35              // [string] slotname [string] lmpfilename [short] x [short] y
264 #define svc_hidelmp                     36              // [string] slotname
265 #define svc_skybox                      37              // [string] skyname
266
267 // LadyHavoc: my svc_ range, 50-69
268 #define svc_downloaddata        50              // [int] start [short] size
269 #define svc_updatestatubyte     51              // [byte] stat [byte] value
270 #define svc_effect                      52              // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate
271 #define svc_effect2                     53              // [vector] org [short] modelindex [short] startframe [byte] framecount [byte] framerate
272 #define svc_sound2                      54              // (obsolete in DP6 and later) short soundindex instead of byte
273 #define svc_precache            54              // [short] precacheindex [string] filename, precacheindex is + 0 for modelindex and +32768 for soundindex
274 #define svc_spawnbaseline2      55              // short modelindex instead of byte
275 #define svc_spawnstatic2        56              // short modelindex instead of byte
276 #define svc_entities            57              // [int] deltaframe [int] thisframe [float vector] eye [variable length] entitydata
277 #define svc_csqcentities        58              // [short] entnum [variable length] entitydata ... [short] 0x0000
278 #define svc_spawnstaticsound2   59      // [coord3] [short] samp [byte] vol [byte] aten
279 #define svc_trailparticles      60              // [short] entnum [short] effectnum [vector] start [vector] end
280 #define svc_pointparticles      61              // [short] effectnum [vector] start [vector] velocity [short] count
281 #define svc_pointparticles1     62              // [short] effectnum [vector] start, same as svc_pointparticles except velocity is zero and count is 1
282
283 //
284 // client to server
285 //
286 #define clc_bad                 0
287 #define clc_nop                 1
288 #define clc_disconnect  2
289 #define clc_move                3                       // [usercmd_t]
290 #define clc_stringcmd   4               // [string] message
291
292 // LadyHavoc: my clc_ range, 50-59
293 #define clc_ackframe    50              // [int] framenumber
294 #define clc_ackdownloaddata     51      // [int] start [short] size   (note: exact echo of latest values received in svc_downloaddata, packet-loss handling is in the server)
295 #define clc_unusedlh2   52
296 #define clc_unusedlh3   53
297 #define clc_unusedlh4   54
298 #define clc_unusedlh5   55
299 #define clc_unusedlh6   56
300 #define clc_unusedlh7   57
301 #define clc_unusedlh8   58
302 #define clc_unusedlh9   59
303
304 //
305 // temp entity events
306 //
307 #define TE_SPIKE                        0 // [vector] origin
308 #define TE_SUPERSPIKE           1 // [vector] origin
309 #define TE_GUNSHOT                      2 // [vector] origin
310 #define TE_EXPLOSION            3 // [vector] origin
311 #define TE_TAREXPLOSION         4 // [vector] origin
312 #define TE_LIGHTNING1           5 // [entity] entity [vector] start [vector] end
313 #define TE_LIGHTNING2           6 // [entity] entity [vector] start [vector] end
314 #define TE_WIZSPIKE                     7 // [vector] origin
315 #define TE_KNIGHTSPIKE          8 // [vector] origin
316 #define TE_LIGHTNING3           9 // [entity] entity [vector] start [vector] end
317 #define TE_LAVASPLASH           10 // [vector] origin
318 #define TE_TELEPORT                     11 // [vector] origin
319 #define TE_EXPLOSION2           12 // [vector] origin [byte] startcolor [byte] colorcount
320
321 // PGM 01/21/97
322 #define TE_BEAM                         13 // [entity] entity [vector] start [vector] end
323 // PGM 01/21/97
324
325 // Nehahra effects used in the movie (TE_EXPLOSION3 also got written up in a QSG tutorial, hence it's not marked NEH)
326 #define TE_EXPLOSION3           16 // [vector] origin [coord] red [coord] green [coord] blue
327 #define TE_LIGHTNING4NEH        17 // [string] model [entity] entity [vector] start [vector] end
328
329 // LadyHavoc: added some TE_ codes (block1 - 50-60)
330 #define TE_BLOOD                        50 // [vector] origin [byte] xvel [byte] yvel [byte] zvel [byte] count
331 #define TE_SPARK                        51 // [vector] origin [byte] xvel [byte] yvel [byte] zvel [byte] count
332 #define TE_BLOODSHOWER          52 // [vector] min [vector] max [coord] explosionspeed [short] count
333 #define TE_EXPLOSIONRGB         53 // [vector] origin [byte] red [byte] green [byte] blue
334 #define TE_PARTICLECUBE         54 // [vector] min [vector] max [vector] dir [short] count [byte] color [byte] gravity [coord] randomvel
335 #define TE_PARTICLERAIN         55 // [vector] min [vector] max [vector] dir [short] count [byte] color
336 #define TE_PARTICLESNOW         56 // [vector] min [vector] max [vector] dir [short] count [byte] color
337 #define TE_GUNSHOTQUAD          57 // [vector] origin
338 #define TE_SPIKEQUAD            58 // [vector] origin
339 #define TE_SUPERSPIKEQUAD       59 // [vector] origin
340 // LadyHavoc: block2 - 70-80
341 #define TE_EXPLOSIONQUAD        70 // [vector] origin
342 #define TE_UNUSED1                      71 // unused
343 #define TE_SMALLFLASH           72 // [vector] origin
344 #define TE_CUSTOMFLASH          73 // [vector] origin [byte] radius / 8 - 1 [byte] lifetime / 256 - 1 [byte] red [byte] green [byte] blue
345 #define TE_FLAMEJET                     74 // [vector] origin [vector] velocity [byte] count
346 #define TE_PLASMABURN           75 // [vector] origin
347 // LadyHavoc: Tei grabbed these codes
348 #define TE_TEI_G3                       76 // [vector] start [vector] end [vector] angles
349 #define TE_TEI_SMOKE            77 // [vector] origin [vector] dir [byte] count
350 #define TE_TEI_BIGEXPLOSION     78 // [vector] origin
351 #define TE_TEI_PLASMAHIT        79 // [vector} origin [vector] dir [byte] count
352
353
354 // these are bits for the 'flags' field of the entity_state_t
355 #define RENDER_STEP 1
356 #define RENDER_GLOWTRAIL 2
357 #define RENDER_VIEWMODEL 4
358 #define RENDER_EXTERIORMODEL 8
359 #define RENDER_LOWPRECISION 16 // send as low precision coordinates to save bandwidth
360 #define RENDER_COLORMAPPED 32
361 #define RENDER_WORLDOBJECT 64 // do not cull this entity with r_cullentities
362 #define RENDER_COMPLEXANIMATION 128
363
364 #define RENDER_SHADOW 65536 // cast shadow
365 #define RENDER_LIGHT 131072 // receive light
366 #define RENDER_NOSELFSHADOW 262144 // render lighting on this entity before its own shadow is added to the scene
367 // (note: all RENDER_NOSELFSHADOW entities are grouped together and rendered in a batch before their shadows are rendered, so they can not shadow eachother either)
368 #define RENDER_NODEPTHTEST 1048576
369 #define RENDER_ADDITIVE 2097152
370 #define RENDER_DOUBLESIDED 4194304
371 #define RENDER_CUSTOMIZEDMODELLIGHT 4096
372 #define RENDER_DYNAMICMODELLIGHT 8388608 // origin dependent model light
373
374 typedef struct usercmd_s
375 {
376         vec3_t  viewangles;
377
378 // intended velocities
379         float   forwardmove;
380         float   sidemove;
381         float   upmove;
382
383         vec3_t  cursor_screen;
384         vec3_t  cursor_start;
385         vec3_t  cursor_end;
386         vec3_t  cursor_impact;
387         vec3_t  cursor_normal;
388         vec_t   cursor_fraction;
389         int             cursor_entitynumber;
390
391         double time; // time the move is executed for (non-cl_movement is executed at receivetime)
392         float receivetime; // time the move was received at (used for ping)
393         unsigned char msec; // for predicted moves
394         int buttons;
395         int impulse;
396         unsigned int sequence;
397         qbool applied; // if false we're still accumulating a move
398         qbool predicted; // if true the sequence should be sent as 0
399
400         // derived properties
401         double frametime;
402         qbool canjump;
403         qbool jump;
404         qbool crouch;
405 } usercmd_t;
406
407 #define MAX_FRAMEGROUPBLENDS 4
408 typedef struct framegroupblend_s
409 {
410         // animation number and blend factor
411         // (for most models this is the frame number)
412         int frame;
413         float lerp;
414         // time frame began playing (for framegroup animations)
415         double start;
416 }
417 framegroupblend_t;
418
419 struct matrix4x4_s;
420 struct model_s;
421
422 typedef struct skeleton_s
423 {
424         const struct model_s *model;
425         struct matrix4x4_s *relativetransforms;
426 }
427 skeleton_t;
428
429 typedef enum entity_state_active_e
430 {
431         ACTIVE_NOT = 0,
432         ACTIVE_NETWORK = 1,
433         ACTIVE_SHARED = 2
434 }
435 entity_state_active_t;
436
437 // this was 96 bytes, now 168 bytes (32bit) or 176 bytes (64bit)
438 typedef struct entity_state_s
439 {
440         // ! means this is not sent to client
441         double time; // ! time this state was built (used on client for interpolation)
442         float netcenter[3]; // ! for network prioritization, this is the center of the bounding box (which may differ from the origin)
443         float origin[3];
444         float angles[3];
445         int effects;
446         unsigned int customizeentityforclient; // !
447         unsigned short number; // entity number this state is for
448         unsigned short modelindex;
449         unsigned short frame;
450         unsigned short tagentity;
451         unsigned short specialvisibilityradius; // ! larger if it has effects/light
452         unsigned short viewmodelforclient; // !
453         unsigned short exteriormodelforclient; // ! not shown if first person viewing from this entity, shown in all other cases
454         unsigned short nodrawtoclient; // !
455         unsigned short drawonlytoclient; // !
456         unsigned short traileffectnum;
457         unsigned short light[4]; // color*256 (0.00 to 255.996), and radius*1
458         unsigned char active; // true if a valid state
459         unsigned char lightstyle;
460         unsigned char lightpflags;
461         unsigned char colormap;
462         unsigned char skin; // also chooses cubemap for rtlights if lightpflags & LIGHTPFLAGS_FULLDYNAMIC
463         unsigned char alpha;
464         unsigned char scale;
465         unsigned char glowsize;
466         unsigned char glowcolor;
467         unsigned char flags;
468         unsigned char internaleffects; // INTEF_FLAG1QW and so on
469         unsigned char tagindex;
470         unsigned char colormod[3];
471         unsigned char glowmod[3];
472         // LadyHavoc: very big data here :(
473         framegroupblend_t framegroupblend[4];
474         skeleton_t skeletonobject;
475 }
476 entity_state_t;
477
478 // baseline state values
479 extern entity_state_t defaultstate;
480 // reads a quake entity from the network stream
481 void EntityFrameQuake_ReadEntity(int bits);
482 // checks for stats changes and sets corresponding host_client->statsdeltabits
483 // (also updates host_client->stats array)
484 void Protocol_UpdateClientStats(const int *stats);
485 // writes reliable messages updating stats (not used by DP6 and later
486 // protocols which send updates in their WriteFrame function using a different
487 // method of reliable messaging)
488 void Protocol_WriteStatsReliable(void);
489 // writes a list of quake entities to the network stream
490 // (or as many will fit)
491 qbool EntityFrameQuake_WriteFrame(struct sizebuf_s *msg, int maxsize, int numstates, const entity_state_t **states);
492 // cleans up dead entities each frame after ReadEntity (which doesn't clear unused entities)
493 void EntityFrameQuake_ISeeDeadEntities(void);
494
495 /*
496 PROTOCOL_DARKPLACES3
497 server updates entities according to some (unmentioned) scheme.
498
499 a frame consists of all visible entities, some of which are up to date,
500 often some are not up to date.
501
502 these entities are stored in a range (firstentity/endentity) of structs in the
503 entitydata[] buffer.
504
505 to make a commit the server performs these steps:
506 1. duplicate oldest frame in database (this is the baseline) as new frame, and
507    write frame numbers (oldest frame's number, new frame's number) and eye
508    location to network packet (eye location is obsolete and will be removed in
509    future revisions)
510 2. write an entity change to packet and modify new frame accordingly
511    (this repeats until packet is sufficiently full or new frame is complete)
512 3. write terminator (0xFFFF) to network packet
513    (FIXME: this terminator value conflicts with MAX_EDICTS 32768...)
514
515 to read a commit the client performs these steps:
516 1. reads frame numbers from packet and duplicates baseline frame as new frame,
517    also reads eye location but does nothing with it (obsolete).
518 2. delete frames older than the baseline which was used
519 3. read entity changes from packet until terminator (0xFFFF) is encountered,
520    each change is applied to entity frame.
521 4. sends ack framenumber to server as part of input packet
522
523 if server receives ack message in put packet it performs these steps:
524 1. remove all older frames from database.
525 */
526
527 /*
528 PROTOCOL_DARKPLACES4
529 a frame consists of some visible entities in a range (this is stored as start and end, note that end may be less than start if it wrapped).
530
531 these entities are stored in a range (firstentity/endentity) of structs in the entitydata[] buffer.
532
533 to make a commit the server performs these steps:
534 1. build an entity_frame_t using appropriate functions, containing (some of) the visible entities, this is passed to the Write function to send it.
535
536 This documention is unfinished!
537 the Write function performs these steps:
538 1. check if entity frame is larger than MAX_ENTITYFRAME or is larger than available space in database, if so the baseline is defaults, otherwise it is the current baseline of the database.
539 2. write differences of an entity compared to selected baseline.
540 3. add entity to entity update in database.
541 4. if there are more entities to write and packet is not full, go back to step 2.
542 5. write terminator (0xFFFF) as entity number.
543 6. return.
544
545
546
547
548
549 server updates entities in looping ranges, a frame consists of a range of visible entities (not always all visible entities),
550 */
551
552 #define MAX_ENTITY_HISTORY 64
553 #define MAX_ENTITY_DATABASE (MAX_EDICTS * 2)
554
555 // build entity data in this, to pass to entity read/write functions
556 typedef struct entity_frame_s
557 {
558         double time;
559         int framenum;
560         int numentities;
561         int firstentitynum;
562         int lastentitynum;
563         vec3_t eye;
564         entity_state_t entitydata[MAX_ENTITY_DATABASE];
565 }
566 entity_frame_t;
567
568 typedef struct entity_frameinfo_s
569 {
570         double time;
571         int framenum;
572         int firstentity; // index into entitydata, modulo MAX_ENTITY_DATABASE
573         int endentity; // index into entitydata, firstentity + numentities
574 }
575 entity_frameinfo_t;
576
577 typedef struct entityframe_database_s
578 {
579         // note: these can be far out of range, modulo with MAX_ENTITY_DATABASE to get a valid range (which may wrap)
580         // start and end of used area, when adding a new update to database, store at endpos, and increment endpos
581         // when removing updates from database, nudge down frames array to only contain useful frames
582         // this logic should explain better:
583         // if (numframes >= MAX_ENTITY_HISTORY || (frames[numframes - 1].endentity - frames[0].firstentity) + entitiestoadd > MAX_ENTITY_DATABASE)
584         //     flushdatabase();
585         // note: if numframes == 0, insert at start (0 in entitydata)
586         // the only reason this system is used is to avoid copying memory when frames are removed
587         int numframes;
588         // server only: last sent frame
589         int latestframenum;
590         // server only: last acknowledged frame
591         int ackframenum;
592         // the current state in the database
593         vec3_t eye;
594         // table of entities in the entityhistorydata
595         entity_frameinfo_t frames[MAX_ENTITY_HISTORY];
596         // entities
597         entity_state_t entitydata[MAX_ENTITY_DATABASE];
598
599         // structs for building new frames and reading them
600         entity_frame_t deltaframe;
601         entity_frame_t framedata;
602 }
603 entityframe_database_t;
604
605 // LadyHavoc: these are in approximately sorted order, according to cost and
606 // likelyhood of being used for numerous objects in a frame
607
608 // note that the bytes are not written/read in this order, this is only the
609 // order of the bits to minimize overhead from extend bytes
610
611 // enough to describe a nail, gib, shell casing, bullet hole, or rocket
612 #define E_ORIGIN1               (1<<0)
613 #define E_ORIGIN2               (1<<1)
614 #define E_ORIGIN3               (1<<2)
615 #define E_ANGLE1                (1<<3)
616 #define E_ANGLE2                (1<<4)
617 #define E_ANGLE3                (1<<5)
618 #define E_MODEL1                (1<<6)
619 #define E_EXTEND1               (1<<7)
620
621 // enough to describe almost anything
622 #define E_FRAME1                (1<<8)
623 #define E_EFFECTS1              (1<<9)
624 #define E_ALPHA                 (1<<10)
625 #define E_SCALE                 (1<<11)
626 #define E_COLORMAP              (1<<12)
627 #define E_SKIN                  (1<<13)
628 #define E_FLAGS                 (1<<14)
629 #define E_EXTEND2               (1<<15)
630
631 // players, custom color glows, high model numbers
632 #define E_FRAME2                (1<<16)
633 #define E_MODEL2                (1<<17)
634 #define E_EFFECTS2              (1<<18)
635 #define E_GLOWSIZE              (1<<19)
636 #define E_GLOWCOLOR             (1<<20)
637 #define E_LIGHT                 (1<<21)
638 #define E_LIGHTPFLAGS   (1<<22)
639 #define E_EXTEND3               (1<<23)
640
641 #define E_SOUND1                (1<<24)
642 #define E_SOUNDVOL              (1<<25)
643 #define E_SOUNDATTEN    (1<<26)
644 #define E_TAGATTACHMENT (1<<27)
645 #define E_LIGHTSTYLE    (1<<28)
646 #define E_UNUSED6               (1<<29)
647 #define E_UNUSED7               (1<<30)
648 #define E_EXTEND4               (1<<31)
649
650 // returns difference between two states as E_ flags
651 int EntityState_DeltaBits(const entity_state_t *o, const entity_state_t *n);
652 // write E_ flags to a msg
653 void EntityState_WriteExtendBits(struct sizebuf_s *msg, unsigned int bits);
654 // write values for the E_ flagged fields to a msg
655 void EntityState_WriteFields(const entity_state_t *ent, struct sizebuf_s *msg, unsigned int bits);
656 // write entity number and E_ flags and their values, or a remove number, describing the change from delta to ent
657 void EntityState_WriteUpdate(const entity_state_t *ent, struct sizebuf_s *msg, const entity_state_t *delta);
658 // read E_ flags
659 int EntityState_ReadExtendBits(void);
660 // read values for E_ flagged fields and apply them to a state
661 void EntityState_ReadFields(entity_state_t *e, unsigned int bits);
662
663 // (client and server) allocates a new empty database
664 entityframe_database_t *EntityFrame_AllocDatabase(struct mempool_s *mempool);
665 // (client and server) frees the database
666 void EntityFrame_FreeDatabase(entityframe_database_t *d);
667 // (server) clears the database to contain no frames (thus delta compression
668 // compresses against nothing)
669 void EntityFrame_ClearDatabase(entityframe_database_t *d);
670 // (server and client) removes frames older than 'frame' from database
671 void EntityFrame_AckFrame(entityframe_database_t *d, int frame);
672 // (server) clears frame, to prepare for adding entities
673 void EntityFrame_Clear(entity_frame_t *f, vec3_t eye, int framenum);
674 // (server and client) reads a frame from the database
675 void EntityFrame_FetchFrame(entityframe_database_t *d, int framenum, entity_frame_t *f);
676 // (client) adds a entity_frame to the database, for future reference
677 void EntityFrame_AddFrame_Client(entityframe_database_t *d, vec3_t eye, int framenum, int numentities, const entity_state_t *entitydata);
678 // (server) adds a entity_frame to the database, for future reference
679 void EntityFrame_AddFrame_Server(entityframe_database_t *d, vec3_t eye, int framenum, int numentities, const entity_state_t **entitydata);
680 // (server) writes a frame to network stream
681 qbool EntityFrame_WriteFrame(struct sizebuf_s *msg, int maxsize, entityframe_database_t *d, int numstates, const entity_state_t **states, int viewentnum);
682 // (client) reads a frame from network stream
683 void EntityFrame_CL_ReadFrame(void);
684 // (client) returns the frame number of the most recent frame recieved
685 int EntityFrame_MostRecentlyRecievedFrameNum(entityframe_database_t *d);
686
687 typedef struct entity_database4_commit_s
688 {
689         // frame number this commit represents
690         int framenum;
691         // number of entities in entity[] array
692         int numentities;
693         // maximum number of entities in entity[] array (dynamic resizing)
694         int maxentities;
695         entity_state_t *entity;
696 }
697 entity_database4_commit_t;
698
699 typedef struct entity_database4_s
700 {
701         // what mempool to use for allocations
702         struct mempool_s *mempool;
703         // reference frame
704         int referenceframenum;
705         // reference entities array is resized according to demand
706         int maxreferenceentities;
707         // array of states for entities, these are indexable by their entity number (yes there are gaps)
708         entity_state_t *referenceentity;
709         // commits waiting to be applied to the reference database when confirmed
710         // (commit[i]->numentities == 0 means it is empty)
711         entity_database4_commit_t commit[MAX_ENTITY_HISTORY];
712         // (server only) the current commit being worked on
713         entity_database4_commit_t *currentcommit;
714         // (server only) if a commit won't fit entirely, continue where it left
715         // off next frame
716         int currententitynumber;
717         // (server only)
718         int latestframenumber;
719 }
720 entityframe4_database_t;
721
722 // should-be-private functions that aren't
723 entity_state_t *EntityFrame4_GetReferenceEntity(entityframe4_database_t *d, int number);
724 void EntityFrame4_AddCommitEntity(entityframe4_database_t *d, const entity_state_t *s);
725
726 // allocate a database
727 entityframe4_database_t *EntityFrame4_AllocDatabase(struct mempool_s *pool);
728 // free a database
729 void EntityFrame4_FreeDatabase(entityframe4_database_t *d);
730 // reset a database (resets compression but does not reallocate anything)
731 void EntityFrame4_ResetDatabase(entityframe4_database_t *d);
732 // updates database to account for a frame-received acknowledgment
733 int EntityFrame4_AckFrame(entityframe4_database_t *d, int framenum, int servermode);
734 // writes a frame to the network stream
735 qbool EntityFrame4_WriteFrame(struct sizebuf_s *msg, int maxsize, entityframe4_database_t *d, int numstates, const entity_state_t **states);
736 // reads a frame from the network stream
737 void EntityFrame4_CL_ReadFrame(void);
738
739 // reset all entity fields (typically used if status changed)
740 #define E5_FULLUPDATE (1<<0)
741 // E5_ORIGIN32=0: short[3] = s->origin[0] * 8, s->origin[1] * 8, s->origin[2] * 8
742 // E5_ORIGIN32=1: float[3] = s->origin[0], s->origin[1], s->origin[2]
743 #define E5_ORIGIN (1<<1)
744 // E5_ANGLES16=0: byte[3] = s->angle[0] * 256 / 360, s->angle[1] * 256 / 360, s->angle[2] * 256 / 360
745 // E5_ANGLES16=1: short[3] = s->angle[0] * 65536 / 360, s->angle[1] * 65536 / 360, s->angle[2] * 65536 / 360
746 #define E5_ANGLES (1<<2)
747 // E5_MODEL16=0: byte = s->modelindex
748 // E5_MODEL16=1: short = s->modelindex
749 #define E5_MODEL (1<<3)
750 // E5_FRAME16=0: byte = s->frame
751 // E5_FRAME16=1: short = s->frame
752 #define E5_FRAME (1<<4)
753 // byte = s->skin
754 #define E5_SKIN (1<<5)
755 // E5_EFFECTS16=0 && E5_EFFECTS32=0: byte = s->effects
756 // E5_EFFECTS16=1 && E5_EFFECTS32=0: short = s->effects
757 // E5_EFFECTS16=0 && E5_EFFECTS32=1: int = s->effects
758 // E5_EFFECTS16=1 && E5_EFFECTS32=1: int = s->effects
759 #define E5_EFFECTS (1<<6)
760 // bits >= (1<<8)
761 #define E5_EXTEND1 (1<<7)
762
763 // byte = s->renderflags
764 #define E5_FLAGS (1<<8)
765 // byte = bound(0, s->alpha * 255, 255)
766 #define E5_ALPHA (1<<9)
767 // byte = bound(0, s->scale * 16, 255)
768 #define E5_SCALE (1<<10)
769 // flag
770 #define E5_ORIGIN32 (1<<11)
771 // flag
772 #define E5_ANGLES16 (1<<12)
773 // flag
774 #define E5_MODEL16 (1<<13)
775 // byte = s->colormap
776 #define E5_COLORMAP (1<<14)
777 // bits >= (1<<16)
778 #define E5_EXTEND2 (1<<15)
779
780 // short = s->tagentity
781 // byte = s->tagindex
782 #define E5_ATTACHMENT (1<<16)
783 // short[4] = s->light[0], s->light[1], s->light[2], s->light[3]
784 // byte = s->lightstyle
785 // byte = s->lightpflags
786 #define E5_LIGHT (1<<17)
787 // byte = s->glowsize
788 // byte = s->glowcolor
789 #define E5_GLOW (1<<18)
790 // short = s->effects
791 #define E5_EFFECTS16 (1<<19)
792 // int = s->effects
793 #define E5_EFFECTS32 (1<<20)
794 // flag
795 #define E5_FRAME16 (1<<21)
796 // byte[3] = s->colormod[0], s->colormod[1], s->colormod[2]
797 #define E5_COLORMOD (1<<22)
798 // bits >= (1<<24)
799 #define E5_EXTEND3 (1<<23)
800
801 // byte[3] = s->glowmod[0], s->glowmod[1], s->glowmod[2]
802 #define E5_GLOWMOD (1<<24)
803 // byte type=0 short frames[1] short times[1]
804 // byte type=1 short frames[2] short times[2] byte lerps[2]
805 // byte type=2 short frames[3] short times[3] byte lerps[3]
806 // byte type=3 short frames[4] short times[4] byte lerps[4]
807 // byte type=4 short modelindex byte numbones {short pose7s[7]}
808 // see also RENDER_COMPLEXANIMATION
809 #define E5_COMPLEXANIMATION (1<<25)
810 // ushort traileffectnum
811 #define E5_TRAILEFFECTNUM (1<<26)
812 // unused
813 #define E5_UNUSED27 (1<<27)
814 // unused
815 #define E5_UNUSED28 (1<<28)
816 // unused
817 #define E5_UNUSED29 (1<<29)
818 // unused
819 #define E5_UNUSED30 (1<<30)
820 // bits2 > 0
821 #define E5_EXTEND4 (1<<31)
822
823 #define ENTITYFRAME5_MAXPACKETLOGS 64
824 #define ENTITYFRAME5_MAXSTATES 1024
825 #define ENTITYFRAME5_PRIORITYLEVELS 32
826
827 typedef struct entityframe5_changestate_s
828 {
829         unsigned int number;
830         unsigned int bits;
831 }
832 entityframe5_changestate_t;
833
834 typedef struct entityframe5_packetlog_s
835 {
836         int packetnumber;
837         int numstates;
838         entityframe5_changestate_t states[ENTITYFRAME5_MAXSTATES];
839         unsigned char statsdeltabits[(MAX_CL_STATS+7)/8];
840 }
841 entityframe5_packetlog_t;
842
843 typedef struct entityframe5_database_s
844 {
845         // number of the latest message sent to client
846         int latestframenum;
847         // updated by WriteFrame for internal use
848         int viewentnum;
849
850         // logs of all recently sent messages (between acked and latest)
851         entityframe5_packetlog_t packetlog[ENTITYFRAME5_MAXPACKETLOGS];
852
853         // this goes up as needed and causes all the arrays to be reallocated
854         int maxedicts;
855
856         // which properties of each entity have changed since last send
857         int *deltabits; // [maxedicts]
858         // priorities of entities (updated whenever deltabits change)
859         // (derived from deltabits)
860         unsigned char *priorities; // [maxedicts]
861         // last frame this entity was sent on, for prioritzation
862         int *updateframenum; // [maxedicts]
863
864         // database of current status of all entities
865         entity_state_t *states; // [maxedicts]
866         // which entities are currently active
867         // (duplicate of the active bit of every state in states[])
868         // (derived from states)
869         unsigned char *visiblebits; // [(maxedicts+7)/8]
870
871         // old notes
872
873         // this is used to decide which changestates to set each frame
874         //int numvisiblestates;
875         //entity_state_t visiblestates[MAX_EDICTS];
876
877         // sorted changing states that need to be sent to the client
878         // kept sorted in lowest to highest priority order, because this allows
879         // the numchangestates to simply be decremented whenever an state is sent,
880         // rather than a memmove to remove them from the start.
881         //int numchangestates;
882         //entityframe5_changestate_t changestates[MAX_EDICTS];
883
884         // buffers for building priority info
885         int prioritychaincounts[ENTITYFRAME5_PRIORITYLEVELS];
886         unsigned short prioritychains[ENTITYFRAME5_PRIORITYLEVELS][ENTITYFRAME5_MAXSTATES];
887 }
888 entityframe5_database_t;
889
890 entityframe5_database_t *EntityFrame5_AllocDatabase(struct mempool_s *pool);
891 void EntityFrame5_FreeDatabase(entityframe5_database_t *d);
892 void EntityState5_WriteUpdate(int number, const entity_state_t *s, int changedbits, struct sizebuf_s *msg);
893 int EntityState5_DeltaBitsForState(entity_state_t *o, entity_state_t *n);
894 void EntityFrame5_CL_ReadFrame(void);
895 void EntityFrame5_LostFrame(entityframe5_database_t *d, int framenum);
896 void EntityFrame5_AckFrame(entityframe5_database_t *d, int framenum);
897 qbool EntityFrame5_WriteFrame(struct sizebuf_s *msg, int maxsize, entityframe5_database_t *d, int numstates, const entity_state_t **states, int viewentnum, unsigned int movesequence, qbool need_empty);
898
899 extern struct cvar_s developer_networkentities;
900
901 // QUAKEWORLD
902 // server to client
903 #define qw_svc_bad                              0
904 #define qw_svc_nop                              1
905 #define qw_svc_disconnect               2
906 #define qw_svc_updatestat               3       // [byte] [byte]
907 #define qw_svc_setview                  5       // [short] entity number
908 #define qw_svc_sound                    6       // <see code>
909 #define qw_svc_print                    8       // [byte] id [string] null terminated string
910 #define qw_svc_stufftext                9       // [string] stuffed into client's console buffer
911 #define qw_svc_setangle                 10      // [angle3] set the view angle to this absolute value
912 #define qw_svc_serverdata               11      // [long] protocol ...
913 #define qw_svc_lightstyle               12      // [byte] [string]
914 #define qw_svc_updatefrags              14      // [byte] [short]
915 #define qw_svc_stopsound                16      // <see code>
916 #define qw_svc_damage                   19
917 #define qw_svc_spawnstatic              20
918 #define qw_svc_spawnbaseline    22
919 #define qw_svc_temp_entity              23      // variable
920 #define qw_svc_setpause                 24      // [byte] on / off
921 #define qw_svc_centerprint              26      // [string] to put in center of the screen
922 #define qw_svc_killedmonster    27
923 #define qw_svc_foundsecret              28
924 #define qw_svc_spawnstaticsound 29      // [coord3] [byte] samp [byte] vol [byte] aten
925 #define qw_svc_intermission             30              // [vec3_t] origin [vec3_t] angle
926 #define qw_svc_finale                   31              // [string] text
927 #define qw_svc_cdtrack                  32              // [byte] track
928 #define qw_svc_sellscreen               33
929 #define qw_svc_smallkick                34              // set client punchangle to 2
930 #define qw_svc_bigkick                  35              // set client punchangle to 4
931 #define qw_svc_updateping               36              // [byte] [short]
932 #define qw_svc_updateentertime  37              // [byte] [float]
933 #define qw_svc_updatestatlong   38              // [byte] [long]
934 #define qw_svc_muzzleflash              39              // [short] entity
935 #define qw_svc_updateuserinfo   40              // [byte] slot [long] uid
936 #define qw_svc_download                 41              // [short] size [size bytes]
937 #define qw_svc_playerinfo               42              // variable
938 #define qw_svc_nails                    43              // [byte] num [48 bits] xyzpy 12 12 12 4 8
939 #define qw_svc_chokecount               44              // [byte] packets choked
940 #define qw_svc_modellist                45              // [strings]
941 #define qw_svc_soundlist                46              // [strings]
942 #define qw_svc_packetentities   47              // [...]
943 #define qw_svc_deltapacketentities      48              // [...]
944 #define qw_svc_maxspeed                 49              // maxspeed change, for prediction
945 #define qw_svc_entgravity               50              // gravity change, for prediction
946 #define qw_svc_setinfo                  51              // setinfo on a client
947 #define qw_svc_serverinfo               52              // serverinfo
948 #define qw_svc_updatepl                 53              // [byte] [byte]
949 // QUAKEWORLD
950 // client to server
951 #define qw_clc_bad                      0
952 #define qw_clc_nop                      1
953 #define qw_clc_move                     3               // [[usercmd_t]
954 #define qw_clc_stringcmd        4               // [string] message
955 #define qw_clc_delta            5               // [byte] sequence number, requests delta compression of message
956 #define qw_clc_tmove            6               // teleport request, spectator only
957 #define qw_clc_upload           7               // teleport request, spectator only
958 // QUAKEWORLD
959 // playerinfo flags from server
960 // playerinfo always sends: playernum, flags, origin[] and framenumber
961 #define QW_PF_MSEC                      (1<<0)
962 #define QW_PF_COMMAND           (1<<1)
963 #define QW_PF_VELOCITY1 (1<<2)
964 #define QW_PF_VELOCITY2 (1<<3)
965 #define QW_PF_VELOCITY3 (1<<4)
966 #define QW_PF_MODEL             (1<<5)
967 #define QW_PF_SKINNUM           (1<<6)
968 #define QW_PF_EFFECTS           (1<<7)
969 #define QW_PF_WEAPONFRAME       (1<<8)          // only sent for view player
970 #define QW_PF_DEAD                      (1<<9)          // don't block movement any more
971 #define QW_PF_GIB                       (1<<10)         // offset the view height differently
972 #define QW_PF_NOGRAV            (1<<11)         // don't apply gravity for prediction
973 // QUAKEWORLD
974 // if the high bit of the client to server byte is set, the low bits are
975 // client move cmd bits
976 // ms and angle2 are allways sent, the others are optional
977 #define QW_CM_ANGLE1    (1<<0)
978 #define QW_CM_ANGLE3    (1<<1)
979 #define QW_CM_FORWARD   (1<<2)
980 #define QW_CM_SIDE              (1<<3)
981 #define QW_CM_UP                (1<<4)
982 #define QW_CM_BUTTONS   (1<<5)
983 #define QW_CM_IMPULSE   (1<<6)
984 #define QW_CM_ANGLE2    (1<<7)
985 // QUAKEWORLD
986 // the first 16 bits of a packetentities update holds 9 bits
987 // of entity number and 7 bits of flags
988 #define QW_U_ORIGIN1    (1<<9)
989 #define QW_U_ORIGIN2    (1<<10)
990 #define QW_U_ORIGIN3    (1<<11)
991 #define QW_U_ANGLE2             (1<<12)
992 #define QW_U_FRAME              (1<<13)
993 #define QW_U_REMOVE             (1<<14)         // REMOVE this entity, don't add it
994 #define QW_U_MOREBITS   (1<<15)
995 // if MOREBITS is set, these additional flags are read in next
996 #define QW_U_ANGLE1             (1<<0)
997 #define QW_U_ANGLE3             (1<<1)
998 #define QW_U_MODEL              (1<<2)
999 #define QW_U_COLORMAP   (1<<3)
1000 #define QW_U_SKIN               (1<<4)
1001 #define QW_U_EFFECTS    (1<<5)
1002 #define QW_U_SOLID              (1<<6)          // the entity should be solid for prediction
1003 // QUAKEWORLD
1004 // temp entity events
1005 #define QW_TE_SPIKE                             0
1006 #define QW_TE_SUPERSPIKE                1
1007 #define QW_TE_GUNSHOT                   2
1008 #define QW_TE_EXPLOSION                 3
1009 #define QW_TE_TAREXPLOSION              4
1010 #define QW_TE_LIGHTNING1                5
1011 #define QW_TE_LIGHTNING2                6
1012 #define QW_TE_WIZSPIKE                  7
1013 #define QW_TE_KNIGHTSPIKE               8
1014 #define QW_TE_LIGHTNING3                9
1015 #define QW_TE_LAVASPLASH                10
1016 #define QW_TE_TELEPORT                  11
1017 #define QW_TE_BLOOD                             12
1018 #define QW_TE_LIGHTNINGBLOOD    13
1019 // QUAKEWORLD
1020 // effect flags
1021 #define QW_EF_BRIGHTFIELD               1
1022 #define QW_EF_MUZZLEFLASH               2
1023 #define QW_EF_BRIGHTLIGHT               4
1024 #define QW_EF_DIMLIGHT                  8
1025 #define QW_EF_FLAG1                             16
1026 #define QW_EF_FLAG2                             32
1027 #define QW_EF_BLUE                              64
1028 #define QW_EF_RED                               128
1029
1030 #define QW_UPDATE_BACKUP 64
1031 #define QW_UPDATE_MASK (QW_UPDATE_BACKUP - 1)
1032 #define QW_MAX_PACKET_ENTITIES 64
1033
1034 // note: QW stats are directly compatible with NQ
1035 // (but FRAGS, WEAPONFRAME, and VIEWHEIGHT are unused)
1036 // so these defines are not actually used by darkplaces, but kept for reference
1037 #define QW_STAT_HEALTH                  0
1038 //#define QW_STAT_FRAGS                 1
1039 #define QW_STAT_WEAPON                  2
1040 #define QW_STAT_AMMO                    3
1041 #define QW_STAT_ARMOR                   4
1042 //#define QW_STAT_WEAPONFRAME           5
1043 #define QW_STAT_SHELLS                  6
1044 #define QW_STAT_NAILS                   7
1045 #define QW_STAT_ROCKETS                 8
1046 #define QW_STAT_CELLS                   9
1047 #define QW_STAT_ACTIVEWEAPON    10
1048 #define QW_STAT_TOTALSECRETS    11
1049 #define QW_STAT_TOTALMONSTERS   12
1050 #define QW_STAT_SECRETS                 13 // bumped on client side by svc_foundsecret
1051 #define QW_STAT_MONSTERS                14 // bumped by svc_killedmonster
1052 #define QW_STAT_ITEMS                   15
1053 //#define QW_STAT_VIEWHEIGHT            16
1054
1055 // build entity data in this, to pass to entity read/write functions
1056 typedef struct entityframeqw_snapshot_s
1057 {
1058         double time;
1059         qbool invalid;
1060         int num_entities;
1061         entity_state_t entities[QW_MAX_PACKET_ENTITIES];
1062 }
1063 entityframeqw_snapshot_t;
1064
1065 typedef struct entityframeqw_database_s
1066 {
1067         entityframeqw_snapshot_t snapshot[QW_UPDATE_BACKUP];
1068 }
1069 entityframeqw_database_t;
1070
1071 entityframeqw_database_t *EntityFrameQW_AllocDatabase(struct mempool_s *pool);
1072 void EntityFrameQW_FreeDatabase(entityframeqw_database_t *d);
1073 void EntityStateQW_ReadPlayerUpdate(void);
1074 void EntityFrameQW_CL_ReadFrame(qbool delta);
1075
1076 struct client_s;
1077 void EntityFrameCSQC_LostFrame(struct client_s *client, int framenum);
1078 qbool EntityFrameCSQC_WriteFrame (struct sizebuf_s *msg, int maxsize, int numnumbers, const unsigned short *numbers, int framenum);
1079
1080 #endif
1081