]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_parse.c
Replaced snprintf and vnsprintf calls by dpsnprintf and dpvsnprintf calls, to ensure...
[divverent/darkplaces.git] / cl_parse.c
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 // cl_parse.c  -- parse a message received from the server
21
22 #include "quakedef.h"
23 #include "cdaudio.h"
24 #include "cl_collision.h"
25
26 char *svc_strings[128] =
27 {
28         "svc_bad",
29         "svc_nop",
30         "svc_disconnect",
31         "svc_updatestat",
32         "svc_version",          // [long] server version
33         "svc_setview",          // [short] entity number
34         "svc_sound",                    // <see code>
35         "svc_time",                     // [float] server time
36         "svc_print",                    // [string] null terminated string
37         "svc_stufftext",                // [string] stuffed into client's console buffer
38                                                 // the string should be \n terminated
39         "svc_setangle",         // [vec3] set the view angle to this absolute value
40
41         "svc_serverinfo",               // [long] version
42                                                 // [string] signon string
43                                                 // [string]..[0]model cache [string]...[0]sounds cache
44                                                 // [string]..[0]item cache
45         "svc_lightstyle",               // [byte] [string]
46         "svc_updatename",               // [byte] [string]
47         "svc_updatefrags",      // [byte] [short]
48         "svc_clientdata",               // <shortbits + data>
49         "svc_stopsound",                // <see code>
50         "svc_updatecolors",     // [byte] [byte]
51         "svc_particle",         // [vec3] <variable>
52         "svc_damage",                   // [byte] impact [byte] blood [vec3] from
53
54         "svc_spawnstatic",
55         "OBSOLETE svc_spawnbinary",
56         "svc_spawnbaseline",
57
58         "svc_temp_entity",              // <variable>
59         "svc_setpause",
60         "svc_signonnum",
61         "svc_centerprint",
62         "svc_killedmonster",
63         "svc_foundsecret",
64         "svc_spawnstaticsound",
65         "svc_intermission",
66         "svc_finale",                   // [string] music [string] text
67         "svc_cdtrack",                  // [byte] track [byte] looptrack
68         "svc_sellscreen",
69         "svc_cutscene",
70         "svc_showlmp",  // [string] iconlabel [string] lmpfile [short] x [short] y
71         "svc_hidelmp",  // [string] iconlabel
72         "svc_skybox", // [string] skyname
73         "", // 38
74         "", // 39
75         "", // 40
76         "", // 41
77         "", // 42
78         "", // 43
79         "", // 44
80         "", // 45
81         "", // 46
82         "", // 47
83         "", // 48
84         "", // 49
85         "svc_cgame", //                         50              // [short] length [bytes] data
86         "svc_updatestatubyte", //                       51              // [byte] stat [byte] value
87         "svc_effect", //                        52              // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate
88         "svc_effect2", //                       53              // [vector] org [short] modelindex [short] startframe [byte] framecount [byte] framerate
89         "svc_sound2", //                        54              // short soundindex instead of byte
90         "svc_spawnbaseline2", //        55              // short modelindex instead of byte
91         "svc_spawnstatic2", //          56              // short modelindex instead of byte
92         "svc_entities", //                      57              // [int] deltaframe [int] thisframe [float vector] eye [variable length] entitydata
93         "svc_unusedlh3", //                     58
94         "svc_spawnstaticsound2", //     59              // [coord3] [short] samp [byte] vol [byte] aten
95 };
96
97 //=============================================================================
98
99 cvar_t demo_nehahra = {0, "demo_nehahra", "0"};
100 cvar_t developer_networkentities = {0, "developer_networkentities", "0"};
101
102 mempool_t *cl_scores_mempool;
103
104 /*
105 ==================
106 CL_ParseStartSoundPacket
107 ==================
108 */
109 void CL_ParseStartSoundPacket(int largesoundindex)
110 {
111         vec3_t  pos;
112         int     channel, ent;
113         int     sound_num;
114         int     volume;
115         int     field_mask;
116         float   attenuation;
117
118         field_mask = MSG_ReadByte();
119
120         if (field_mask & SND_VOLUME)
121                 volume = MSG_ReadByte ();
122         else
123                 volume = DEFAULT_SOUND_PACKET_VOLUME;
124
125         if (field_mask & SND_ATTENUATION)
126                 attenuation = MSG_ReadByte () / 64.0;
127         else
128                 attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
129
130         if (field_mask & SND_LARGEENTITY)
131         {
132                 ent = (unsigned short) MSG_ReadShort ();
133                 channel = MSG_ReadByte ();
134         }
135         else
136         {
137                 channel = (unsigned short) MSG_ReadShort ();
138                 ent = channel >> 3;
139                 channel &= 7;
140         }
141
142         if (largesoundindex || field_mask & SND_LARGESOUND)
143                 sound_num = (unsigned short) MSG_ReadShort ();
144         else
145                 sound_num = MSG_ReadByte ();
146
147         if (sound_num >= MAX_SOUNDS)
148                 Host_Error("CL_ParseStartSoundPacket: sound_num (%i) >= MAX_SOUNDS (%i)\n", sound_num, MAX_SOUNDS);
149
150
151         if (ent >= MAX_EDICTS)
152                 Host_Error ("CL_ParseStartSoundPacket: ent = %i", ent);
153
154         MSG_ReadVector(pos, cl.protocol);
155
156         S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0f, attenuation);
157 }
158
159 /*
160 ==================
161 CL_KeepaliveMessage
162
163 When the client is taking a long time to load stuff, send keepalive messages
164 so the server doesn't disconnect.
165 ==================
166 */
167
168 static qbyte olddata[NET_MAXMESSAGE];
169 void CL_KeepaliveMessage (void)
170 {
171         float time;
172         static float lastmsg;
173         int oldreadcount;
174         qboolean oldbadread;
175         sizebuf_t old;
176
177         // no need if server is local and definitely not if this is a demo
178         if (sv.active || cls.demoplayback)
179                 return;
180
181 // read messages from server, should just be nops
182         oldreadcount = msg_readcount;
183         oldbadread = msg_badread;
184         old = net_message;
185         memcpy(olddata, net_message.data, net_message.cursize);
186
187         NetConn_ClientFrame();
188
189         msg_readcount = oldreadcount;
190         msg_badread = oldbadread;
191         net_message = old;
192         memcpy(net_message.data, olddata, net_message.cursize);
193
194         if (cls.netcon && NetConn_CanSendMessage(cls.netcon) && (time = Sys_DoubleTime()) - lastmsg >= 5)
195         {
196                 sizebuf_t       msg;
197                 qbyte           buf[4];
198                 lastmsg = time;
199                 // write out a nop
200                 // LordHavoc: must use unreliable because reliable could kill the sigon message!
201                 Con_Print("--> client to server keepalive\n");
202                 msg.data = buf;
203                 msg.maxsize = sizeof(buf);
204                 msg.cursize = 0;
205                 MSG_WriteChar(&msg, svc_nop);
206                 NetConn_SendUnreliableMessage(cls.netcon, &msg);
207         }
208 }
209
210 void CL_ParseEntityLump(char *entdata)
211 {
212         const char *data;
213         char key[128], value[4096];
214         FOG_clear(); // LordHavoc: no fog until set
215         // LordHavoc: default to the map's sky (q3 shader parsing sets this)
216         R_SetSkyBox(cl.worldmodel->brush.skybox);
217         data = entdata;
218         if (!data)
219                 return;
220         if (!COM_ParseToken(&data, false))
221                 return; // error
222         if (com_token[0] != '{')
223                 return; // error
224         while (1)
225         {
226                 if (!COM_ParseToken(&data, false))
227                         return; // error
228                 if (com_token[0] == '}')
229                         break; // end of worldspawn
230                 if (com_token[0] == '_')
231                         strlcpy (key, com_token + 1, sizeof (key));
232                 else
233                         strlcpy (key, com_token, sizeof (key));
234                 while (key[strlen(key)-1] == ' ') // remove trailing spaces
235                         key[strlen(key)-1] = 0;
236                 if (!COM_ParseToken(&data, false))
237                         return; // error
238                 strlcpy (value, com_token, sizeof (value));
239                 if (!strcmp("sky", key))
240                         R_SetSkyBox(value);
241                 else if (!strcmp("skyname", key)) // non-standard, introduced by QuakeForge... sigh.
242                         R_SetSkyBox(value);
243                 else if (!strcmp("qlsky", key)) // non-standard, introduced by QuakeLives (EEK)
244                         R_SetSkyBox(value);
245                 else if (!strcmp("fog", key))
246                         sscanf(value, "%f %f %f %f", &fog_density, &fog_red, &fog_green, &fog_blue);
247                 else if (!strcmp("fog_density", key))
248                         fog_density = atof(value);
249                 else if (!strcmp("fog_red", key))
250                         fog_red = atof(value);
251                 else if (!strcmp("fog_green", key))
252                         fog_green = atof(value);
253                 else if (!strcmp("fog_blue", key))
254                         fog_blue = atof(value);
255         }
256 }
257
258 /*
259 =====================
260 CL_SignonReply
261
262 An svc_signonnum has been received, perform a client side setup
263 =====================
264 */
265 static void CL_SignonReply (void)
266 {
267         //char  str[8192];
268
269 Con_DPrintf("CL_SignonReply: %i\n", cls.signon);
270
271         switch (cls.signon)
272         {
273         case 1:
274                 MSG_WriteByte (&cls.message, clc_stringcmd);
275                 MSG_WriteString (&cls.message, "prespawn");
276                 break;
277
278         case 2:
279                 MSG_WriteByte (&cls.message, clc_stringcmd);
280                 MSG_WriteString (&cls.message, va("name \"%s\"\n", cl_name.string));
281
282                 MSG_WriteByte (&cls.message, clc_stringcmd);
283                 MSG_WriteString (&cls.message, va("color %i %i\n", cl_color.integer >> 4, cl_color.integer & 15));
284
285                 if (cl_pmodel.integer)
286                 {
287                         MSG_WriteByte (&cls.message, clc_stringcmd);
288                         MSG_WriteString (&cls.message, va("pmodel %i\n", cl_pmodel.integer));
289                 }
290                 if (*cl_playermodel.string)
291                 {
292                         MSG_WriteByte (&cls.message, clc_stringcmd);
293                         MSG_WriteString (&cls.message, va("playermodel %s\n", cl_playermodel.string));
294                 }
295                 if (*cl_playerskin.string)
296                 {
297                         MSG_WriteByte (&cls.message, clc_stringcmd);
298                         MSG_WriteString (&cls.message, va("playerskin %s\n", cl_playerskin.string));
299                 }
300
301                 MSG_WriteByte (&cls.message, clc_stringcmd);
302                 MSG_WriteString (&cls.message, va("rate %i\n", cl_rate.integer));
303
304                 MSG_WriteByte (&cls.message, clc_stringcmd);
305                 MSG_WriteString (&cls.message, "spawn");
306                 break;
307
308         case 3:
309                 MSG_WriteByte (&cls.message, clc_stringcmd);
310                 MSG_WriteString (&cls.message, "begin");
311                 break;
312
313         case 4:
314                 Con_ClearNotify();
315                 break;
316         }
317 }
318
319 /*
320 ==================
321 CL_ParseServerInfo
322 ==================
323 */
324 // FIXME: this is a lot of memory to be keeping around, this needs to be dynamically allocated and freed
325 static char parse_model_precache[MAX_MODELS][MAX_QPATH];
326 static char parse_sound_precache[MAX_SOUNDS][MAX_QPATH];
327 void CL_ParseServerInfo (void)
328 {
329         char *str;
330         int i;
331         int nummodels, numsounds;
332         entity_t *ent;
333
334         Con_DPrint("Serverinfo packet received.\n");
335 //
336 // wipe the client_state_t struct
337 //
338         CL_ClearState ();
339
340 // parse protocol version number
341         i = MSG_ReadLong ();
342         // hack for unmarked Nehahra movie demos which had a custom protocol
343         if (i == PROTOCOL_QUAKE && cls.demoplayback && demo_nehahra.integer)
344                 i = PROTOCOL_NEHAHRAMOVIE;
345         if (i != PROTOCOL_QUAKE && i != PROTOCOL_DARKPLACES1 && i != PROTOCOL_DARKPLACES2 && i != PROTOCOL_DARKPLACES3 && i != PROTOCOL_DARKPLACES4 && i != PROTOCOL_DARKPLACES5 && i != PROTOCOL_DARKPLACES6 && i != PROTOCOL_NEHAHRAMOVIE)
346         {
347                 Host_Error("CL_ParseServerInfo: Server is protocol %i, not %i (Quake), %i (DP1), %i (DP2), %i (DP3), %i (DP4), %i (DP5), %i (DP6), or %i (Nehahra movie)", i, PROTOCOL_QUAKE, PROTOCOL_DARKPLACES1, PROTOCOL_DARKPLACES2, PROTOCOL_DARKPLACES3, PROTOCOL_DARKPLACES4, PROTOCOL_DARKPLACES5, PROTOCOL_DARKPLACES6, PROTOCOL_NEHAHRAMOVIE);
348                 return;
349         }
350         cl.protocol = i;
351         Con_DPrintf("Server protocol is %i\n", cl.protocol);
352
353 // parse maxclients
354         cl.maxclients = MSG_ReadByte ();
355         if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD)
356         {
357                 Host_Error("Bad maxclients (%u) from server\n", cl.maxclients);
358                 return;
359         }
360         Mem_EmptyPool(cl_scores_mempool);
361         cl.scores = Mem_Alloc(cl_scores_mempool, cl.maxclients*sizeof(*cl.scores));
362
363 // parse gametype
364         cl.gametype = MSG_ReadByte ();
365
366 // parse signon message
367         str = MSG_ReadString ();
368         strlcpy (cl.levelname, str, sizeof(cl.levelname));
369
370 // seperate the printfs so the server message can have a color
371         if (cl.protocol != PROTOCOL_NEHAHRAMOVIE) // no messages when playing the Nehahra movie
372                 Con_Printf("\n\n\35\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\37\n\n\2%s\n", str);
373
374         // check memory integrity
375         Mem_CheckSentinelsGlobal();
376
377         S_StopAllSounds();
378         // if server is active, we already began a loading plaque
379         if (!sv.active)
380                 SCR_BeginLoadingPlaque();
381
382         // disable until we get textures for it
383         R_ResetSkyBox();
384
385         memset(cl.model_precache, 0, sizeof(cl.model_precache));
386         memset(cl.sound_precache, 0, sizeof(cl.sound_precache));
387
388         // parse model precache list
389         for (nummodels=1 ; ; nummodels++)
390         {
391                 str = MSG_ReadString();
392                 if (!str[0])
393                         break;
394                 if (nummodels==MAX_MODELS)
395                         Host_Error ("Server sent too many model precaches\n");
396                 if (strlen(str) >= MAX_QPATH)
397                         Host_Error ("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
398                 strlcpy (parse_model_precache[nummodels], str, sizeof (parse_model_precache[nummodels]));
399         }
400         // parse sound precache list
401         for (numsounds=1 ; ; numsounds++)
402         {
403                 str = MSG_ReadString();
404                 if (!str[0])
405                         break;
406                 if (numsounds==MAX_SOUNDS)
407                         Host_Error("Server sent too many sound precaches\n");
408                 if (strlen(str) >= MAX_QPATH)
409                         Host_Error("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
410                 strlcpy (parse_sound_precache[numsounds], str, sizeof (parse_sound_precache[numsounds]));
411         }
412
413         // touch all of the precached models that are still loaded so we can free
414         // anything that isn't needed
415         Mod_ClearUsed();
416         for (i = 1;i < nummodels;i++)
417                 Mod_FindName(parse_model_precache[i]);
418         Mod_PurgeUnused();
419
420         // do the same for sounds
421         S_ServerSounds (parse_sound_precache, numsounds);
422
423         // now we try to load everything that is new
424
425         // world model
426         CL_KeepaliveMessage ();
427         cl.model_precache[1] = Mod_ForName(parse_model_precache[1], false, false, true);
428         if (cl.model_precache[1] == NULL)
429                 Con_Printf("Map %s not found\n", parse_model_precache[1]);
430
431         // normal models
432         for (i=2 ; i<nummodels ; i++)
433         {
434                 CL_KeepaliveMessage();
435                 if ((cl.model_precache[i] = Mod_ForName(parse_model_precache[i], false, false, false)) == NULL)
436                         Con_Printf("Model %s not found\n", parse_model_precache[i]);
437         }
438
439         // sounds
440         for (i=1 ; i<numsounds ; i++)
441         {
442                 CL_KeepaliveMessage();
443
444                 // Don't lock the sfx here, S_ServerSounds already did that 
445                 cl.sound_precache[i] = S_PrecacheSound (parse_sound_precache[i], true, false);
446         }
447
448         // local state
449         ent = &cl_entities[0];
450         // entire entity array was cleared, so just fill in a few fields
451         ent->state_current.active = true;
452         ent->render.model = cl.worldmodel = cl.model_precache[1];
453         ent->render.scale = 1; // some of the renderer still relies on scale
454         ent->render.alpha = 1;
455         ent->render.flags = RENDER_SHADOW | RENDER_LIGHT;
456         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, 0, 0, 0, 0, 0, 0, 1);
457         Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
458         CL_BoundingBoxForEntity(&ent->render);
459
460         cl_num_entities = 1;
461
462         R_Modules_NewMap();
463         CL_CGVM_Start();
464
465         // noclip is turned off at start
466         noclip_anglehack = false;
467
468         // check memory integrity
469         Mem_CheckSentinelsGlobal();
470 }
471
472 void CL_ValidateState(entity_state_t *s)
473 {
474         model_t *model;
475
476         if (!s->active)
477                 return;
478
479         if (s->modelindex >= MAX_MODELS)
480                 Host_Error("CL_ValidateState: modelindex (%i) >= MAX_MODELS (%i)\n", s->modelindex, MAX_MODELS);
481
482         // colormap is client index + 1
483         if ((!s->flags & RENDER_COLORMAPPED) && s->colormap > cl.maxclients)
484         {
485                 Con_DPrintf("CL_ValidateState: colormap (%i) > cl.maxclients (%i)\n", s->colormap, cl.maxclients);
486                 s->colormap = 0;
487         }
488
489         model = cl.model_precache[s->modelindex];
490         Mod_CheckLoaded(model);
491         if (model && model->type && s->frame >= model->numframes)
492         {
493                 Con_DPrintf("CL_ValidateState: no such frame %i in \"%s\" (which has %i frames)\n", s->frame, model->name, model->numframes);
494                 s->frame = 0;
495         }
496         if (model && model->type && s->skin > 0 && s->skin >= model->numskins && !(s->lightpflags & PFLAGS_FULLDYNAMIC))
497         {
498                 Con_DPrintf("CL_ValidateState: no such skin %i in \"%s\" (which has %i skins)\n", s->skin, model->name, model->numskins);
499                 s->skin = 0;
500         }
501 }
502
503 void CL_MoveLerpEntityStates(entity_t *ent)
504 {
505         float odelta[3], adelta[3];
506         CL_ValidateState(&ent->state_current);
507         VectorSubtract(ent->state_current.origin, ent->persistent.neworigin, odelta);
508         VectorSubtract(ent->state_current.angles, ent->persistent.newangles, adelta);
509         if (!ent->state_previous.active || ent->state_previous.modelindex != ent->state_current.modelindex)
510         {
511                 // reset all persistent stuff if this is a new entity
512                 ent->persistent.lerpdeltatime = 0;
513                 ent->persistent.lerpstarttime = cl.mtime[1];
514                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
515                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
516                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
517                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
518                 // reset animation interpolation as well
519                 ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_current.frame;
520                 ent->render.frame1time = ent->render.frame2time = cl.time;
521                 ent->render.framelerp = 1;
522                 // reset various persistent stuff
523                 ent->persistent.muzzleflash = 0;
524                 VectorCopy(ent->state_current.origin, ent->persistent.trail_origin);
525         }
526         else if (cls.timedemo || cl_nolerp.integer || DotProduct(odelta, odelta) > 1000*1000)
527         {
528                 // don't interpolate the move
529                 ent->persistent.lerpdeltatime = 0;
530                 ent->persistent.lerpstarttime = cl.mtime[1];
531                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
532                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
533                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
534                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
535         }
536         else if (ent->state_current.flags & RENDER_STEP)
537         {
538                 // monster interpolation
539                 if (DotProduct(odelta, odelta) + DotProduct(adelta, adelta) > 0.01)
540                 {
541                         ent->persistent.lerpdeltatime = bound(0, cl.mtime[1] - ent->persistent.lerpstarttime, 0.1);
542                         ent->persistent.lerpstarttime = cl.mtime[1];
543                         VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
544                         VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
545                         VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
546                         VectorCopy(ent->state_current.angles, ent->persistent.newangles);
547                 }
548         }
549         else
550         {
551                 // not a monster
552                 ent->persistent.lerpstarttime = ent->state_previous.time;
553                 // no lerp if it's singleplayer
554                 if (cl.islocalgame)
555                         ent->persistent.lerpdeltatime = 0;
556                 else
557                         ent->persistent.lerpdeltatime = bound(0, ent->state_current.time - ent->state_previous.time, 0.1);
558                 VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
559                 VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
560                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
561                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
562         }
563 }
564
565 /*
566 ==================
567 CL_ParseBaseline
568 ==================
569 */
570 void CL_ParseBaseline (entity_t *ent, int large)
571 {
572         int i;
573
574         ent->state_baseline = defaultstate;
575         // FIXME: set ent->state_baseline.number?
576         ent->state_baseline.active = true;
577         if (large)
578         {
579                 ent->state_baseline.modelindex = (unsigned short) MSG_ReadShort ();
580                 ent->state_baseline.frame = (unsigned short) MSG_ReadShort ();
581         }
582         else
583         {
584                 ent->state_baseline.modelindex = MSG_ReadByte ();
585                 ent->state_baseline.frame = MSG_ReadByte ();
586         }
587         ent->state_baseline.colormap = MSG_ReadByte();
588         ent->state_baseline.skin = MSG_ReadByte();
589         for (i = 0;i < 3;i++)
590         {
591                 ent->state_baseline.origin[i] = MSG_ReadCoord(cl.protocol);
592                 ent->state_baseline.angles[i] = MSG_ReadAngle(cl.protocol);
593         }
594         CL_ValidateState(&ent->state_baseline);
595         ent->state_previous = ent->state_current = ent->state_baseline;
596 }
597
598
599 /*
600 ==================
601 CL_ParseClientdata
602
603 Server information pertaining to this client only
604 ==================
605 */
606 void CL_ParseClientdata (int bits)
607 {
608         int i, j;
609
610         VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
611
612         if (cl.protocol != PROTOCOL_DARKPLACES6)
613         {
614                 cl.stats[STAT_VIEWHEIGHT] = DEFAULT_VIEWHEIGHT;
615                 cl.stats[STAT_ITEMS] = 0;
616                 cl.stats[STAT_VIEWZOOM] = 255;
617         }
618         cl.idealpitch = 0;
619         cl.punchangle[0] = 0;
620         cl.punchangle[1] = 0;
621         cl.punchangle[2] = 0;
622         cl.punchvector[0] = 0;
623         cl.punchvector[1] = 0;
624         cl.punchvector[2] = 0;
625         cl.mvelocity[0][0] = 0;
626         cl.mvelocity[0][1] = 0;
627         cl.mvelocity[0][2] = 0;
628
629         bits &= 0xFFFF;
630         if (bits & SU_EXTEND1)
631                 bits |= (MSG_ReadByte() << 16);
632         if (bits & SU_EXTEND2)
633                 bits |= (MSG_ReadByte() << 24);
634
635         if (bits & SU_VIEWHEIGHT)
636                 cl.stats[STAT_VIEWHEIGHT] = MSG_ReadChar ();
637
638         if (bits & SU_IDEALPITCH)
639                 cl.idealpitch = MSG_ReadChar ();
640
641         for (i = 0;i < 3;i++)
642         {
643                 if (bits & (SU_PUNCH1<<i) )
644                 {
645                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4 || cl.protocol == PROTOCOL_DARKPLACES5 || cl.protocol == PROTOCOL_DARKPLACES6)
646                                 cl.punchangle[i] = MSG_ReadAngle16i();
647                         else if (cl.protocol == PROTOCOL_QUAKE || cl.protocol == PROTOCOL_NEHAHRAMOVIE)
648                                 cl.punchangle[i] = MSG_ReadChar();
649                         else
650                                 Host_Error("CL_ParseClientData: unknown cl.protocol %i\n", cl.protocol);
651                 }
652                 if (bits & (SU_PUNCHVEC1<<i))
653                 {
654                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4)
655                                 cl.punchvector[i] = MSG_ReadCoord16i();
656                         else if (cl.protocol == PROTOCOL_DARKPLACES5 || cl.protocol == PROTOCOL_DARKPLACES6)
657                                 cl.punchvector[i] = MSG_ReadCoord32f();
658                         else
659                                 Host_Error("CL_ParseClientData: unknown cl.protocol %i\n", cl.protocol);
660                 }
661                 if (bits & (SU_VELOCITY1<<i) )
662                 {
663                         if (cl.protocol == PROTOCOL_QUAKE || cl.protocol == PROTOCOL_NEHAHRAMOVIE || cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4)
664                                 cl.mvelocity[0][i] = MSG_ReadChar()*16;
665                         else if (cl.protocol == PROTOCOL_DARKPLACES5 || cl.protocol == PROTOCOL_DARKPLACES6)
666                                 cl.mvelocity[0][i] = MSG_ReadCoord32f();
667                         else
668                                 Host_Error("CL_ParseClientData: unknown cl.protocol %i\n", cl.protocol);
669                 }
670         }
671
672         if (bits & SU_ITEMS)
673                 cl.stats[STAT_ITEMS] = MSG_ReadLong ();
674
675         cl.onground = (bits & SU_ONGROUND) != 0;
676         cl.inwater = (bits & SU_INWATER) != 0;
677
678         if (cl.protocol == PROTOCOL_DARKPLACES6)
679         {
680         }
681         else if (cl.protocol == PROTOCOL_DARKPLACES5)
682         {
683                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadShort() : 0;
684                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadShort() : 0;
685                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadShort() : 0;
686                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
687                 cl.stats[STAT_AMMO] = MSG_ReadShort();
688                 cl.stats[STAT_SHELLS] = MSG_ReadShort();
689                 cl.stats[STAT_NAILS] = MSG_ReadShort();
690                 cl.stats[STAT_ROCKETS] = MSG_ReadShort();
691                 cl.stats[STAT_CELLS] = MSG_ReadShort();
692                 cl.stats[STAT_ACTIVEWEAPON] = (unsigned short) MSG_ReadShort ();
693         }
694         else
695         {
696                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadByte() : 0;
697                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadByte() : 0;
698                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadByte() : 0;
699                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
700                 cl.stats[STAT_AMMO] = MSG_ReadByte();
701                 cl.stats[STAT_SHELLS] = MSG_ReadByte();
702                 cl.stats[STAT_NAILS] = MSG_ReadByte();
703                 cl.stats[STAT_ROCKETS] = MSG_ReadByte();
704                 cl.stats[STAT_CELLS] = MSG_ReadByte();
705                 if (gamemode == GAME_HIPNOTIC || gamemode == GAME_ROGUE || gamemode == GAME_NEXUIZ)
706                         cl.stats[STAT_ACTIVEWEAPON] = (1<<MSG_ReadByte ());
707                 else
708                         cl.stats[STAT_ACTIVEWEAPON] = MSG_ReadByte ();
709         }
710
711         if (bits & SU_VIEWZOOM)
712         {
713                 if (cl.protocol == PROTOCOL_DARKPLACES5 || cl.protocol == PROTOCOL_DARKPLACES6)
714                         cl.stats[STAT_VIEWZOOM] = (unsigned short) MSG_ReadShort();
715                 else
716                         cl.stats[STAT_VIEWZOOM] = MSG_ReadByte();
717         }
718
719         // check for important changes
720
721         // set flash times
722         if (cl.olditems != cl.stats[STAT_ITEMS])
723                 for (j = 0;j < 32;j++)
724                         if ((cl.stats[STAT_ITEMS] & (1<<j)) && !(cl.olditems & (1<<j)))
725                                 cl.item_gettime[j] = cl.time;
726         cl.olditems = cl.stats[STAT_ITEMS];
727
728         // GAME_NEXUIZ hud needs weapon change time
729         if (cl.activeweapon != cl.stats[STAT_ACTIVEWEAPON])
730                 cl.weapontime = cl.time;
731         cl.activeweapon = cl.stats[STAT_ACTIVEWEAPON];
732
733         // viewzoom interpolation
734         cl.viewzoomold = cl.viewzoomnew;
735         cl.viewzoomnew = (float) max(cl.stats[STAT_VIEWZOOM], 2) * (1.0f / 255.0f);
736 }
737
738 /*
739 =====================
740 CL_ParseStatic
741 =====================
742 */
743 void CL_ParseStatic (int large)
744 {
745         entity_t *ent;
746
747         if (cl_num_static_entities >= cl_max_static_entities)
748                 Host_Error ("Too many static entities");
749         ent = &cl_static_entities[cl_num_static_entities++];
750         CL_ParseBaseline (ent, large);
751
752 // copy it to the current state
753         ent->render.model = cl.model_precache[ent->state_baseline.modelindex];
754         ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_baseline.frame;
755         ent->render.framelerp = 0;
756         // make torchs play out of sync
757         ent->render.frame1time = ent->render.frame2time = lhrandom(-10, -1);
758         ent->render.colormap = -1; // no special coloring
759         ent->render.skinnum = ent->state_baseline.skin;
760         ent->render.effects = ent->state_baseline.effects;
761         ent->render.alpha = 1;
762         //ent->render.scale = 1;
763
764         //VectorCopy (ent->state_baseline.origin, ent->render.origin);
765         //VectorCopy (ent->state_baseline.angles, ent->render.angles);
766
767         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, ent->state_baseline.origin[0], ent->state_baseline.origin[1], ent->state_baseline.origin[2], ent->state_baseline.angles[0], ent->state_baseline.angles[1], ent->state_baseline.angles[2], 1);
768         Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
769         CL_BoundingBoxForEntity(&ent->render);
770
771         // This is definitely cheating...
772         if (ent->render.model == NULL)
773                 cl_num_static_entities--;
774 }
775
776 /*
777 ===================
778 CL_ParseStaticSound
779 ===================
780 */
781 void CL_ParseStaticSound (int large)
782 {
783         vec3_t          org;
784         int                     sound_num, vol, atten;
785
786         MSG_ReadVector(org, cl.protocol);
787         if (large)
788                 sound_num = (unsigned short) MSG_ReadShort ();
789         else
790                 sound_num = MSG_ReadByte ();
791         vol = MSG_ReadByte ();
792         atten = MSG_ReadByte ();
793
794         S_StaticSound (cl.sound_precache[sound_num], org, vol/255.0f, atten);
795 }
796
797 void CL_ParseEffect (void)
798 {
799         vec3_t          org;
800         int                     modelindex, startframe, framecount, framerate;
801
802         MSG_ReadVector(org, cl.protocol);
803         modelindex = MSG_ReadByte ();
804         startframe = MSG_ReadByte ();
805         framecount = MSG_ReadByte ();
806         framerate = MSG_ReadByte ();
807
808         CL_Effect(org, modelindex, startframe, framecount, framerate);
809 }
810
811 void CL_ParseEffect2 (void)
812 {
813         vec3_t          org;
814         int                     modelindex, startframe, framecount, framerate;
815
816         MSG_ReadVector(org, cl.protocol);
817         modelindex = (unsigned short) MSG_ReadShort ();
818         startframe = (unsigned short) MSG_ReadShort ();
819         framecount = MSG_ReadByte ();
820         framerate = MSG_ReadByte ();
821
822         CL_Effect(org, modelindex, startframe, framecount, framerate);
823 }
824
825 model_t *cl_model_bolt = NULL;
826 model_t *cl_model_bolt2 = NULL;
827 model_t *cl_model_bolt3 = NULL;
828 model_t *cl_model_beam = NULL;
829
830 sfx_t *cl_sfx_wizhit;
831 sfx_t *cl_sfx_knighthit;
832 sfx_t *cl_sfx_tink1;
833 sfx_t *cl_sfx_ric1;
834 sfx_t *cl_sfx_ric2;
835 sfx_t *cl_sfx_ric3;
836 sfx_t *cl_sfx_r_exp3;
837
838 /*
839 =================
840 CL_ParseTEnt
841 =================
842 */
843 void CL_InitTEnts (void)
844 {
845         cl_sfx_wizhit = S_PrecacheSound ("sound/wizard/hit.wav", false, true);
846         cl_sfx_knighthit = S_PrecacheSound ("sound/hknight/hit.wav", false, true);
847         cl_sfx_tink1 = S_PrecacheSound ("sound/weapons/tink1.wav", false, true);
848         cl_sfx_ric1 = S_PrecacheSound ("sound/weapons/ric1.wav", false, true);
849         cl_sfx_ric2 = S_PrecacheSound ("sound/weapons/ric2.wav", false, true);
850         cl_sfx_ric3 = S_PrecacheSound ("sound/weapons/ric3.wav", false, true);
851         cl_sfx_r_exp3 = S_PrecacheSound ("sound/weapons/r_exp3.wav", false, true);
852 }
853
854 void CL_ParseBeam (model_t *m, int lightning)
855 {
856         int i, ent;
857         vec3_t start, end;
858         beam_t *b;
859
860         ent = (unsigned short) MSG_ReadShort ();
861         MSG_ReadVector(start, cl.protocol);
862         MSG_ReadVector(end, cl.protocol);
863
864         if (ent >= MAX_EDICTS)
865         {
866                 Con_Printf("CL_ParseBeam: invalid entity number %i\n", ent);
867                 ent = 0;
868         }
869
870         // override any beam with the same entity
871         for (i = 0, b = cl_beams;i < cl_max_beams;i++, b++)
872         {
873                 if (b->entity == ent)
874                 {
875                         //b->entity = ent;
876                         b->lightning = lightning;
877                         b->relativestartvalid = (ent && cl_entities[ent].state_current.active) ? 2 : 0;
878                         b->model = m;
879                         b->endtime = cl.time + 0.2;
880                         VectorCopy (start, b->start);
881                         VectorCopy (end, b->end);
882                         return;
883                 }
884         }
885
886         // find a free beam
887         for (i = 0, b = cl_beams;i < cl_max_beams;i++, b++)
888         {
889                 if (!b->model || b->endtime < cl.time)
890                 {
891                         b->entity = ent;
892                         b->lightning = lightning;
893                         b->relativestartvalid = (ent && cl_entities[ent].state_current.active) ? 2 : 0;
894                         b->model = m;
895                         b->endtime = cl.time + 0.2;
896                         VectorCopy (start, b->start);
897                         VectorCopy (end, b->end);
898                         return;
899                 }
900         }
901         Con_Print("beam list overflow!\n");
902 }
903
904 void CL_ParseTempEntity(void)
905 {
906         int type;
907         vec3_t pos;
908         vec3_t dir;
909         vec3_t pos2;
910         vec3_t color;
911         int rnd;
912         int colorStart, colorLength, count;
913         float velspeed, radius;
914         qbyte *tempcolor;
915         matrix4x4_t tempmatrix;
916
917         type = MSG_ReadByte();
918         switch (type)
919         {
920         case TE_WIZSPIKE:
921                 // spike hitting wall
922                 MSG_ReadVector(pos, cl.protocol);
923                 CL_FindNonSolidLocation(pos, pos, 4);
924                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
925                 CL_AllocDlight(NULL, &tempmatrix, 100, 0.12f, 0.50f, 0.12f, 500, 0.2, 0, -1, false, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
926                 CL_RunParticleEffect(pos, vec3_origin, 20, 30);
927                 S_StartSound(-1, 0, cl_sfx_wizhit, pos, 1, 1);
928                 break;
929
930         case TE_KNIGHTSPIKE:
931                 // spike hitting wall
932                 MSG_ReadVector(pos, cl.protocol);
933                 CL_FindNonSolidLocation(pos, pos, 4);
934                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
935                 CL_AllocDlight(NULL, &tempmatrix, 100, 0.50f, 0.30f, 0.10f, 500, 0.2, 0, -1, false, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
936                 CL_RunParticleEffect(pos, vec3_origin, 226, 20);
937                 S_StartSound(-1, 0, cl_sfx_knighthit, pos, 1, 1);
938                 break;
939
940         case TE_SPIKE:
941                 // spike hitting wall
942                 MSG_ReadVector(pos, cl.protocol);
943                 CL_FindNonSolidLocation(pos, pos, 4);
944                 if (cl_particles_bulletimpacts.integer)
945                 {
946                         CL_SparkShower(pos, vec3_origin, 15, 1);
947                         CL_Smoke(pos, vec3_origin, 15);
948                         CL_BulletMark(pos);
949                 }
950                 if (rand() % 5)
951                         S_StartSound(-1, 0, cl_sfx_tink1, pos, 1, 1);
952                 else
953                 {
954                         rnd = rand() & 3;
955                         if (rnd == 1)
956                                 S_StartSound(-1, 0, cl_sfx_ric1, pos, 1, 1);
957                         else if (rnd == 2)
958                                 S_StartSound(-1, 0, cl_sfx_ric2, pos, 1, 1);
959                         else
960                                 S_StartSound(-1, 0, cl_sfx_ric3, pos, 1, 1);
961                 }
962                 break;
963         case TE_SPIKEQUAD:
964                 // quad spike hitting wall
965                 MSG_ReadVector(pos, cl.protocol);
966                 CL_FindNonSolidLocation(pos, pos, 4);
967                 // LordHavoc: changed to spark shower
968                 if (cl_particles_bulletimpacts.integer)
969                 {
970                         CL_SparkShower(pos, vec3_origin, 15, 1);
971                         CL_Smoke(pos, vec3_origin, 15);
972                         CL_BulletMark(pos);
973                 }
974                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
975                 CL_AllocDlight(NULL, &tempmatrix, 100, 0.15f, 0.15f, 1.5f, 500, 0.2, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
976                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
977                 if (rand() % 5)
978                         S_StartSound(-1, 0, cl_sfx_tink1, pos, 1, 1);
979                 else
980                 {
981                         rnd = rand() & 3;
982                         if (rnd == 1)
983                                 S_StartSound(-1, 0, cl_sfx_ric1, pos, 1, 1);
984                         else if (rnd == 2)
985                                 S_StartSound(-1, 0, cl_sfx_ric2, pos, 1, 1);
986                         else
987                                 S_StartSound(-1, 0, cl_sfx_ric3, pos, 1, 1);
988                 }
989                 break;
990         case TE_SUPERSPIKE:
991                 // super spike hitting wall
992                 MSG_ReadVector(pos, cl.protocol);
993                 CL_FindNonSolidLocation(pos, pos, 4);
994                 // LordHavoc: changed to dust shower
995                 if (cl_particles_bulletimpacts.integer)
996                 {
997                         CL_SparkShower(pos, vec3_origin, 30, 1);
998                         CL_Smoke(pos, vec3_origin, 30);
999                         CL_BulletMark(pos);
1000                 }
1001                 if (rand() % 5)
1002                         S_StartSound(-1, 0, cl_sfx_tink1, pos, 1, 1);
1003                 else
1004                 {
1005                         rnd = rand() & 3;
1006                         if (rnd == 1)
1007                                 S_StartSound(-1, 0, cl_sfx_ric1, pos, 1, 1);
1008                         else if (rnd == 2)
1009                                 S_StartSound(-1, 0, cl_sfx_ric2, pos, 1, 1);
1010                         else
1011                                 S_StartSound(-1, 0, cl_sfx_ric3, pos, 1, 1);
1012                 }
1013                 break;
1014         case TE_SUPERSPIKEQUAD:
1015                 // quad super spike hitting wall
1016                 MSG_ReadVector(pos, cl.protocol);
1017                 CL_FindNonSolidLocation(pos, pos, 4);
1018                 // LordHavoc: changed to dust shower
1019                 if (cl_particles_bulletimpacts.integer)
1020                 {
1021                         CL_SparkShower(pos, vec3_origin, 30, 1);
1022                         CL_Smoke(pos, vec3_origin, 30);
1023                         CL_BulletMark(pos);
1024                 }
1025                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1026                 CL_AllocDlight(NULL, &tempmatrix, 100, 0.15f, 0.15f, 1.5f, 500, 0.2, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1027                 if (rand() % 5)
1028                         S_StartSound(-1, 0, cl_sfx_tink1, pos, 1, 1);
1029                 else
1030                 {
1031                         rnd = rand() & 3;
1032                         if (rnd == 1)
1033                                 S_StartSound(-1, 0, cl_sfx_ric1, pos, 1, 1);
1034                         else if (rnd == 2)
1035                                 S_StartSound(-1, 0, cl_sfx_ric2, pos, 1, 1);
1036                         else
1037                                 S_StartSound(-1, 0, cl_sfx_ric3, pos, 1, 1);
1038                 }
1039                 break;
1040                 // LordHavoc: added for improved blood splatters
1041         case TE_BLOOD:
1042                 // blood puff
1043                 MSG_ReadVector(pos, cl.protocol);
1044                 CL_FindNonSolidLocation(pos, pos, 4);
1045                 dir[0] = MSG_ReadChar();
1046                 dir[1] = MSG_ReadChar();
1047                 dir[2] = MSG_ReadChar();
1048                 count = MSG_ReadByte();
1049                 CL_BloodPuff(pos, dir, count);
1050                 break;
1051         case TE_SPARK:
1052                 // spark shower
1053                 MSG_ReadVector(pos, cl.protocol);
1054                 CL_FindNonSolidLocation(pos, pos, 4);
1055                 dir[0] = MSG_ReadChar();
1056                 dir[1] = MSG_ReadChar();
1057                 dir[2] = MSG_ReadChar();
1058                 count = MSG_ReadByte();
1059                 CL_SparkShower(pos, dir, count, 1);
1060                 break;
1061         case TE_PLASMABURN:
1062                 MSG_ReadVector(pos, cl.protocol);
1063                 CL_FindNonSolidLocation(pos, pos, 4);
1064                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1065                 CL_AllocDlight(NULL, &tempmatrix, 200, 1, 1, 1, 1000, 0.2, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1066                 CL_PlasmaBurn(pos);
1067                 break;
1068                 // LordHavoc: added for improved gore
1069         case TE_BLOODSHOWER:
1070                 // vaporized body
1071                 MSG_ReadVector(pos, cl.protocol); // mins
1072                 MSG_ReadVector(pos2, cl.protocol); // maxs
1073                 velspeed = MSG_ReadCoord(cl.protocol); // speed
1074                 count = (unsigned short) MSG_ReadShort(); // number of particles
1075                 CL_BloodShower(pos, pos2, velspeed, count);
1076                 break;
1077         case TE_PARTICLECUBE:
1078                 // general purpose particle effect
1079                 MSG_ReadVector(pos, cl.protocol); // mins
1080                 MSG_ReadVector(pos2, cl.protocol); // maxs
1081                 MSG_ReadVector(dir, cl.protocol); // dir
1082                 count = (unsigned short) MSG_ReadShort(); // number of particles
1083                 colorStart = MSG_ReadByte(); // color
1084                 colorLength = MSG_ReadByte(); // gravity (1 or 0)
1085                 velspeed = MSG_ReadCoord(cl.protocol); // randomvel
1086                 CL_ParticleCube(pos, pos2, dir, count, colorStart, colorLength, velspeed);
1087                 break;
1088
1089         case TE_PARTICLERAIN:
1090                 // general purpose particle effect
1091                 MSG_ReadVector(pos, cl.protocol); // mins
1092                 MSG_ReadVector(pos2, cl.protocol); // maxs
1093                 MSG_ReadVector(dir, cl.protocol); // dir
1094                 count = (unsigned short) MSG_ReadShort(); // number of particles
1095                 colorStart = MSG_ReadByte(); // color
1096                 CL_ParticleRain(pos, pos2, dir, count, colorStart, 0);
1097                 break;
1098
1099         case TE_PARTICLESNOW:
1100                 // general purpose particle effect
1101                 MSG_ReadVector(pos, cl.protocol); // mins
1102                 MSG_ReadVector(pos2, cl.protocol); // maxs
1103                 MSG_ReadVector(dir, cl.protocol); // dir
1104                 count = (unsigned short) MSG_ReadShort(); // number of particles
1105                 colorStart = MSG_ReadByte(); // color
1106                 CL_ParticleRain(pos, pos2, dir, count, colorStart, 1);
1107                 break;
1108
1109         case TE_GUNSHOT:
1110                 // bullet hitting wall
1111                 MSG_ReadVector(pos, cl.protocol);
1112                 CL_FindNonSolidLocation(pos, pos, 4);
1113                 CL_SparkShower(pos, vec3_origin, 15, 1);
1114                 CL_Smoke(pos, vec3_origin, 15);
1115                 CL_BulletMark(pos);
1116                 break;
1117
1118         case TE_GUNSHOTQUAD:
1119                 // quad bullet hitting wall
1120                 MSG_ReadVector(pos, cl.protocol);
1121                 CL_FindNonSolidLocation(pos, pos, 4);
1122                 CL_SparkShower(pos, vec3_origin, 15, 1);
1123                 CL_Smoke(pos, vec3_origin, 15);
1124                 CL_BulletMark(pos);
1125                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1126                 CL_AllocDlight(NULL, &tempmatrix, 100, 0.15f, 0.15f, 1.5f, 500, 0.2, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1127                 break;
1128
1129         case TE_EXPLOSION:
1130                 // rocket explosion
1131                 MSG_ReadVector(pos, cl.protocol);
1132                 CL_FindNonSolidLocation(pos, pos, 10);
1133                 CL_ParticleExplosion(pos);
1134                 // LordHavoc: boosted color from 1.0, 0.8, 0.4 to 1.25, 1.0, 0.5
1135                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1136                 CL_AllocDlight(NULL, &tempmatrix, 350, 4.0f, 2.0f, 0.50f, 700, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1137                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1138                 break;
1139
1140         case TE_EXPLOSIONQUAD:
1141                 // quad rocket explosion
1142                 MSG_ReadVector(pos, cl.protocol);
1143                 CL_FindNonSolidLocation(pos, pos, 10);
1144                 CL_ParticleExplosion(pos);
1145                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1146                 CL_AllocDlight(NULL, &tempmatrix, 350, 2.5f, 2.0f, 4.0f, 700, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1147                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1148                 break;
1149
1150         case TE_EXPLOSION3:
1151                 // Nehahra movie colored lighting explosion
1152                 MSG_ReadVector(pos, cl.protocol);
1153                 CL_FindNonSolidLocation(pos, pos, 10);
1154                 CL_ParticleExplosion(pos);
1155                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1156                 color[0] = MSG_ReadCoord(cl.protocol) * (2.0f / 1.0f);
1157                 color[1] = MSG_ReadCoord(cl.protocol) * (2.0f / 1.0f);
1158                 color[2] = MSG_ReadCoord(cl.protocol) * (2.0f / 1.0f);
1159                 CL_AllocDlight(NULL, &tempmatrix, 350, color[0], color[1], color[2], 700, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);        
1160                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1161                 break;
1162
1163         case TE_EXPLOSIONRGB:
1164                 // colored lighting explosion
1165                 MSG_ReadVector(pos, cl.protocol);
1166                 CL_FindNonSolidLocation(pos, pos, 10);
1167                 CL_ParticleExplosion(pos);
1168                 color[0] = MSG_ReadByte() * (2.0f / 255.0f);
1169                 color[1] = MSG_ReadByte() * (2.0f / 255.0f);
1170                 color[2] = MSG_ReadByte() * (2.0f / 255.0f);
1171                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1172                 CL_AllocDlight(NULL, &tempmatrix, 350, color[0], color[1], color[2], 700, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1173                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1174                 break;
1175
1176         case TE_TAREXPLOSION:
1177                 // tarbaby explosion
1178                 MSG_ReadVector(pos, cl.protocol);
1179                 CL_FindNonSolidLocation(pos, pos, 10);
1180                 CL_BlobExplosion(pos);
1181
1182                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1183                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1184                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1185                 CL_AllocDlight(NULL, &tempmatrix, 600, 1.6f, 0.8f, 2.0f, 1200, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1186                 break;
1187
1188         case TE_SMALLFLASH:
1189                 MSG_ReadVector(pos, cl.protocol);
1190                 CL_FindNonSolidLocation(pos, pos, 10);
1191                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1192                 CL_AllocDlight(NULL, &tempmatrix, 200, 2, 2, 2, 1000, 0.2, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1193                 break;
1194
1195         case TE_CUSTOMFLASH:
1196                 MSG_ReadVector(pos, cl.protocol);
1197                 CL_FindNonSolidLocation(pos, pos, 4);
1198                 radius = MSG_ReadByte() * 8;
1199                 velspeed = (MSG_ReadByte() + 1) * (1.0 / 256.0);
1200                 color[0] = MSG_ReadByte() * (2.0f / 255.0f);
1201                 color[1] = MSG_ReadByte() * (2.0f / 255.0f);
1202                 color[2] = MSG_ReadByte() * (2.0f / 255.0f);
1203                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1204                 CL_AllocDlight(NULL, &tempmatrix, radius, color[0], color[1], color[2], radius / velspeed, velspeed, 0, -1, true, 1, 0.25, 1, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1205                 break;
1206
1207         case TE_FLAMEJET:
1208                 MSG_ReadVector(pos, cl.protocol);
1209                 MSG_ReadVector(dir, cl.protocol);
1210                 count = MSG_ReadByte();
1211                 CL_Flames(pos, dir, count);
1212                 break;
1213
1214         case TE_LIGHTNING1:
1215                 // lightning bolts
1216                 if (!cl_model_bolt)
1217                         cl_model_bolt = Mod_ForName("progs/bolt.mdl", false, false, false);
1218                 CL_ParseBeam(cl_model_bolt, true);
1219                 break;
1220
1221         case TE_LIGHTNING2:
1222                 // lightning bolts
1223                 if (!cl_model_bolt2)
1224                         cl_model_bolt2 = Mod_ForName("progs/bolt2.mdl", false, false, false);
1225                 CL_ParseBeam(cl_model_bolt2, true);
1226                 break;
1227
1228         case TE_LIGHTNING3:
1229                 // lightning bolts
1230                 if (!cl_model_bolt3)
1231                         cl_model_bolt3 = Mod_ForName("progs/bolt3.mdl", true, false, false);
1232                 CL_ParseBeam(cl_model_bolt3, false);
1233                 break;
1234
1235 // PGM 01/21/97
1236         case TE_BEAM:
1237                 // grappling hook beam
1238                 if (!cl_model_beam)
1239                         cl_model_beam = Mod_ForName("progs/beam.mdl", true, false, false);
1240                 CL_ParseBeam(cl_model_beam, false);
1241                 break;
1242 // PGM 01/21/97
1243
1244 // LordHavoc: for compatibility with the Nehahra movie...
1245         case TE_LIGHTNING4NEH:
1246                 CL_ParseBeam(Mod_ForName(MSG_ReadString(), true, false, false), false);
1247                 break;
1248
1249         case TE_LAVASPLASH:
1250                 MSG_ReadVector(pos, cl.protocol);
1251                 CL_LavaSplash(pos);
1252                 break;
1253
1254         case TE_TELEPORT:
1255                 MSG_ReadVector(pos, cl.protocol);
1256                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1257                 CL_AllocDlight(NULL, &tempmatrix, 500, 1.0f, 1.0f, 1.0f, 1500, 99.0f, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1258 //              CL_TeleportSplash(pos);
1259                 break;
1260
1261         case TE_EXPLOSION2:
1262                 // color mapped explosion
1263                 MSG_ReadVector(pos, cl.protocol);
1264                 CL_FindNonSolidLocation(pos, pos, 10);
1265                 colorStart = MSG_ReadByte();
1266                 colorLength = MSG_ReadByte();
1267                 CL_ParticleExplosion2(pos, colorStart, colorLength);
1268                 tempcolor = (qbyte *)&palette_complete[(rand()%colorLength) + colorStart];
1269                 color[0] = tempcolor[0] * (2.0f / 255.0f);
1270                 color[1] = tempcolor[1] * (2.0f / 255.0f);
1271                 color[2] = tempcolor[2] * (2.0f / 255.0f);
1272                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1273                 CL_AllocDlight(NULL, &tempmatrix, 350, color[0], color[1], color[2], 700, 0.5, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1274                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1275                 break;
1276
1277         case TE_TEI_G3:
1278                 MSG_ReadVector(pos, cl.protocol);
1279                 MSG_ReadVector(pos2, cl.protocol);
1280                 MSG_ReadVector(dir, cl.protocol);
1281                 CL_BeamParticle(pos, pos2, 8, 1, 1, 1, 1, 1);
1282                 break;
1283
1284         case TE_TEI_SMOKE:
1285                 MSG_ReadVector(pos, cl.protocol);
1286                 MSG_ReadVector(dir, cl.protocol);
1287                 count = MSG_ReadByte();
1288                 CL_FindNonSolidLocation(pos, pos, 4);
1289                 CL_Tei_Smoke(pos, dir, count);
1290                 break;
1291
1292         case TE_TEI_BIGEXPLOSION:
1293                 MSG_ReadVector(pos, cl.protocol);
1294                 CL_FindNonSolidLocation(pos, pos, 10);
1295                 CL_ParticleExplosion(pos);
1296                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1297                 CL_AllocDlight(NULL, &tempmatrix, 500, 2.5f, 2.0f, 1.0f, 500, 9999, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1298                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1299                 break;
1300
1301         case TE_TEI_PLASMAHIT:
1302                 MSG_ReadVector(pos, cl.protocol);
1303                 MSG_ReadVector(dir, cl.protocol);
1304                 count = MSG_ReadByte();
1305                 CL_FindNonSolidLocation(pos, pos, 5);
1306                 CL_Tei_PlasmaHit(pos, dir, count);
1307                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1308                 CL_AllocDlight(NULL, &tempmatrix, 500, 0.6, 1.2, 2.0f, 2000, 9999, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1309                 break;
1310
1311         default:
1312                 Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
1313         }
1314 }
1315
1316 #define SHOWNET(x) if(cl_shownet.integer==2)Con_Printf("%3i:%s\n", msg_readcount-1, x);
1317
1318 static qbyte cgamenetbuffer[65536];
1319
1320 /*
1321 =====================
1322 CL_ParseServerMessage
1323 =====================
1324 */
1325 int parsingerror = false;
1326 void CL_ParseServerMessage(void)
1327 {
1328         int                     cmd;
1329         int                     i;
1330         qbyte           cmdlog[32];
1331         char            *cmdlogname[32], *temp;
1332         int                     cmdindex, cmdcount = 0;
1333
1334         if (cls.demorecording)
1335                 CL_WriteDemoMessage ();
1336
1337         cl.last_received_message = realtime;
1338
1339 //
1340 // if recording demos, copy the message out
1341 //
1342         if (cl_shownet.integer == 1)
1343                 Con_Printf("%f %i\n", realtime, net_message.cursize);
1344         else if (cl_shownet.integer == 2)
1345                 Con_Print("------------------\n");
1346
1347         cl.onground = false;    // unless the server says otherwise
1348 //
1349 // parse the message
1350 //
1351         //MSG_BeginReading ();
1352
1353         parsingerror = true;
1354
1355         while (1)
1356         {
1357                 if (msg_badread)
1358                         Host_Error ("CL_ParseServerMessage: Bad server message");
1359
1360                 cmd = MSG_ReadByte ();
1361
1362                 if (cmd == -1)
1363                 {
1364                         SHOWNET("END OF MESSAGE");
1365                         break;          // end of message
1366                 }
1367
1368                 cmdindex = cmdcount & 31;
1369                 cmdcount++;
1370                 cmdlog[cmdindex] = cmd;
1371
1372                 // if the high bit of the command byte is set, it is a fast update
1373                 if (cmd & 128)
1374                 {
1375                         // LordHavoc: fix for bizarre problem in MSVC that I do not understand (if I assign the string pointer directly it ends up storing a NULL pointer)
1376                         temp = "entity";
1377                         cmdlogname[cmdindex] = temp;
1378                         SHOWNET("fast update");
1379                         if (cls.signon == SIGNONS - 1)
1380                         {
1381                                 // first update is the final signon stage
1382                                 cls.signon = SIGNONS;
1383                                 CL_SignonReply ();
1384                         }
1385                         EntityFrameQuake_ReadEntity (cmd&127);
1386                         continue;
1387                 }
1388
1389                 SHOWNET(svc_strings[cmd]);
1390                 cmdlogname[cmdindex] = svc_strings[cmd];
1391                 if (!cmdlogname[cmdindex])
1392                 {
1393                         // LordHavoc: fix for bizarre problem in MSVC that I do not understand (if I assign the string pointer directly it ends up storing a NULL pointer)
1394                         temp = "<unknown>";
1395                         cmdlogname[cmdindex] = temp;
1396                 }
1397
1398                 // other commands
1399                 switch (cmd)
1400                 {
1401                 default:
1402                         {
1403                                 char description[32*64], temp[64];
1404                                 int count;
1405                                 strcpy (description, "packet dump: ");
1406                                 i = cmdcount - 32;
1407                                 if (i < 0)
1408                                         i = 0;
1409                                 count = cmdcount - i;
1410                                 i &= 31;
1411                                 while(count > 0)
1412                                 {
1413                                         dpsnprintf (temp, sizeof (temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
1414                                         strlcat (description, temp, sizeof (description));
1415                                         count--;
1416                                         i++;
1417                                         i &= 31;
1418                                 }
1419                                 description[strlen(description)-1] = '\n'; // replace the last space with a newline
1420                                 Con_Print(description);
1421                                 Host_Error ("CL_ParseServerMessage: Illegible server message\n");
1422                         }
1423                         break;
1424
1425                 case svc_nop:
1426                         if (cls.signon < SIGNONS)
1427                                 Con_Print("<-- server to client keepalive\n");
1428                         break;
1429
1430                 case svc_time:
1431                         cl.mtime[1] = cl.mtime[0];
1432                         cl.mtime[0] = MSG_ReadFloat ();
1433                         break;
1434
1435                 case svc_clientdata:
1436                         i = (unsigned short) MSG_ReadShort ();
1437                         CL_ParseClientdata (i);
1438                         break;
1439
1440                 case svc_version:
1441                         i = MSG_ReadLong ();
1442                         // hack for unmarked Nehahra movie demos which had a custom protocol
1443                         if (i == PROTOCOL_QUAKE && cls.demoplayback && demo_nehahra.integer)
1444                                 i = PROTOCOL_NEHAHRAMOVIE;
1445                         if (i != PROTOCOL_QUAKE && i != PROTOCOL_DARKPLACES1 && i != PROTOCOL_DARKPLACES2 && i != PROTOCOL_DARKPLACES3 && i != PROTOCOL_DARKPLACES4 && i != PROTOCOL_DARKPLACES5 && i != PROTOCOL_DARKPLACES6 && i != PROTOCOL_NEHAHRAMOVIE)
1446                                 Host_Error("CL_ParseServerMessage: Server is protocol %i, not %i (Quake), %i (DP1), %i (DP2), %i (DP3), %i (DP4), %i (DP5), %i (DP6), or %i (Nehahra movie)", i, PROTOCOL_QUAKE, PROTOCOL_DARKPLACES1, PROTOCOL_DARKPLACES2, PROTOCOL_DARKPLACES3, PROTOCOL_DARKPLACES4, PROTOCOL_DARKPLACES5, PROTOCOL_DARKPLACES6, PROTOCOL_NEHAHRAMOVIE);
1447                         cl.protocol = i;
1448                         break;
1449
1450                 case svc_disconnect:
1451                         Con_Printf ("Server disconnected\n");
1452                         if (cls.demonum != -1)
1453                                 CL_NextDemo ();
1454                         else
1455                                 CL_Disconnect ();
1456                         break;
1457
1458                 case svc_print:
1459                         Con_Print(MSG_ReadString());
1460                         break;
1461
1462                 case svc_centerprint:
1463                         SCR_CenterPrint(MSG_ReadString ());
1464                         break;
1465
1466                 case svc_stufftext:
1467                         Cbuf_AddText (MSG_ReadString ());
1468                         break;
1469
1470                 case svc_damage:
1471                         V_ParseDamage ();
1472                         break;
1473
1474                 case svc_serverinfo:
1475                         CL_ParseServerInfo ();
1476                         break;
1477
1478                 case svc_setangle:
1479                         for (i=0 ; i<3 ; i++)
1480                                 cl.viewangles[i] = MSG_ReadAngle (cl.protocol);
1481                         break;
1482
1483                 case svc_setview:
1484                         cl.viewentity = (unsigned short)MSG_ReadShort ();
1485                         if (cl.viewentity >= MAX_EDICTS)
1486                                 Host_Error("svc_setview >= MAX_EDICTS\n");
1487                         // LordHavoc: assume first setview recieved is the real player entity
1488                         if (!cl.playerentity)
1489                                 cl.playerentity = cl.viewentity;
1490                         break;
1491
1492                 case svc_lightstyle:
1493                         i = MSG_ReadByte ();
1494                         if (i >= MAX_LIGHTSTYLES)
1495                                 Host_Error ("svc_lightstyle >= MAX_LIGHTSTYLES");
1496                         strlcpy (cl_lightstyle[i].map,  MSG_ReadString(), sizeof (cl_lightstyle[i].map));
1497                         cl_lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
1498                         cl_lightstyle[i].length = strlen(cl_lightstyle[i].map);
1499                         break;
1500
1501                 case svc_sound:
1502                         CL_ParseStartSoundPacket(false);
1503                         break;
1504
1505                 case svc_precache:
1506                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3)
1507                         {
1508                                 // was svc_sound2 in protocols 1, 2, 3, removed in 4, 5, changed to svc_precache in 6
1509                                 CL_ParseStartSoundPacket(true);
1510                         }
1511                         else
1512                         {
1513                                 int i = (unsigned short)MSG_ReadShort();
1514                                 char *s = MSG_ReadString();
1515                                 if (i < 32768)
1516                                 {
1517                                         if (i >= 1 && i < MAX_MODELS)
1518                                         {
1519                                                 model_t *model = Mod_ForName(s, false, false, i == 1);
1520                                                 if (!model)
1521                                                         Con_Printf("svc_precache: Mod_ForName(\"%s\") failed\n", s);
1522                                                 cl.model_precache[i] = model;
1523                                         }
1524                                         else
1525                                                 Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_MODELS);
1526                                 }
1527                                 else
1528                                 {
1529                                         i -= 32768;
1530                                         if (i >= 1 && i < MAX_SOUNDS)
1531                                         {
1532                                                 sfx_t *sfx = S_PrecacheSound (s, true, false);
1533                                                 if (!sfx && snd_initialized.integer)
1534                                                         Con_Printf("svc_precache: S_PrecacheSound(\"%s\") failed\n", s);
1535                                                 cl.sound_precache[i] = sfx;
1536                                         }
1537                                         else
1538                                                 Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_SOUNDS);
1539                                 }
1540                         }
1541                         break;
1542
1543                 case svc_stopsound:
1544                         i = (unsigned short) MSG_ReadShort();
1545                         S_StopSound(i>>3, i&7);
1546                         break;
1547
1548                 case svc_updatename:
1549                         i = MSG_ReadByte ();
1550                         if (i >= cl.maxclients)
1551                                 Host_Error ("CL_ParseServerMessage: svc_updatename >= cl.maxclients");
1552                         strlcpy (cl.scores[i].name, MSG_ReadString (), sizeof (cl.scores[i].name));
1553                         break;
1554
1555                 case svc_updatefrags:
1556                         i = MSG_ReadByte ();
1557                         if (i >= cl.maxclients)
1558                                 Host_Error ("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
1559                         cl.scores[i].frags = (signed short) MSG_ReadShort ();
1560                         break;
1561
1562                 case svc_updatecolors:
1563                         i = MSG_ReadByte ();
1564                         if (i >= cl.maxclients)
1565                                 Host_Error ("CL_ParseServerMessage: svc_updatecolors >= cl.maxclients");
1566                         cl.scores[i].colors = MSG_ReadByte ();
1567                         break;
1568
1569                 case svc_particle:
1570                         CL_ParseParticleEffect ();
1571                         break;
1572
1573                 case svc_effect:
1574                         CL_ParseEffect ();
1575                         break;
1576
1577                 case svc_effect2:
1578                         CL_ParseEffect2 ();
1579                         break;
1580
1581                 case svc_spawnbaseline:
1582                         i = (unsigned short) MSG_ReadShort ();
1583                         if (i < 0 || i >= MAX_EDICTS)
1584                                 Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
1585                         CL_ParseBaseline (cl_entities + i, false);
1586                         break;
1587                 case svc_spawnbaseline2:
1588                         i = (unsigned short) MSG_ReadShort ();
1589                         if (i < 0 || i >= MAX_EDICTS)
1590                                 Host_Error ("CL_ParseServerMessage: svc_spawnbaseline2: invalid entity number %i", i);
1591                         CL_ParseBaseline (cl_entities + i, true);
1592                         break;
1593                 case svc_spawnstatic:
1594                         CL_ParseStatic (false);
1595                         break;
1596                 case svc_spawnstatic2:
1597                         CL_ParseStatic (true);
1598                         break;
1599                 case svc_temp_entity:
1600                         CL_ParseTempEntity ();
1601                         break;
1602
1603                 case svc_setpause:
1604                         cl.paused = MSG_ReadByte ();
1605                         if (cl.paused)
1606                                 CDAudio_Pause ();
1607                         else
1608                                 CDAudio_Resume ();
1609                         S_PauseGameSounds (cl.paused);
1610                         break;
1611
1612                 case svc_signonnum:
1613                         i = MSG_ReadByte ();
1614                         // LordHavoc: it's rude to kick off the client if they missed the
1615                         // reconnect somehow, so allow signon 1 even if at signon 1
1616                         if (i <= cls.signon && i != 1)
1617                                 Host_Error ("Received signon %i when at %i", i, cls.signon);
1618                         cls.signon = i;
1619                         CL_SignonReply ();
1620                         break;
1621
1622                 case svc_killedmonster:
1623                         cl.stats[STAT_MONSTERS]++;
1624                         break;
1625
1626                 case svc_foundsecret:
1627                         cl.stats[STAT_SECRETS]++;
1628                         break;
1629
1630                 case svc_updatestat:
1631                         i = MSG_ReadByte ();
1632                         if (i < 0 || i >= MAX_CL_STATS)
1633                                 Host_Error ("svc_updatestat: %i is invalid", i);
1634                         cl.stats[i] = MSG_ReadLong ();
1635                         break;
1636
1637                 case svc_updatestatubyte:
1638                         i = MSG_ReadByte ();
1639                         if (i < 0 || i >= MAX_CL_STATS)
1640                                 Host_Error ("svc_updatestat: %i is invalid", i);
1641                         cl.stats[i] = MSG_ReadByte ();
1642                         break;
1643
1644                 case svc_spawnstaticsound:
1645                         CL_ParseStaticSound (false);
1646                         break;
1647
1648                 case svc_spawnstaticsound2:
1649                         CL_ParseStaticSound (true);
1650                         break;
1651
1652                 case svc_cdtrack:
1653                         cl.cdtrack = MSG_ReadByte ();
1654                         cl.looptrack = MSG_ReadByte ();
1655                         if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
1656                                 CDAudio_Play ((qbyte)cls.forcetrack, true);
1657                         else
1658                                 CDAudio_Play ((qbyte)cl.cdtrack, true);
1659                         break;
1660
1661                 case svc_intermission:
1662                         cl.intermission = 1;
1663                         cl.completed_time = cl.time;
1664                         break;
1665
1666                 case svc_finale:
1667                         cl.intermission = 2;
1668                         cl.completed_time = cl.time;
1669                         SCR_CenterPrint(MSG_ReadString ());
1670                         break;
1671
1672                 case svc_cutscene:
1673                         cl.intermission = 3;
1674                         cl.completed_time = cl.time;
1675                         SCR_CenterPrint(MSG_ReadString ());
1676                         break;
1677
1678                 case svc_sellscreen:
1679                         Cmd_ExecuteString ("help", src_command);
1680                         break;
1681                 case svc_hidelmp:
1682                         if (gamemode == GAME_TENEBRAE)
1683                         {
1684                                 // repeating particle effect
1685                                 MSG_ReadCoord(cl.protocol);
1686                                 MSG_ReadCoord(cl.protocol);
1687                                 MSG_ReadCoord(cl.protocol);
1688                                 MSG_ReadCoord(cl.protocol);
1689                                 MSG_ReadCoord(cl.protocol);
1690                                 MSG_ReadCoord(cl.protocol);
1691                                 MSG_ReadByte();
1692                                 MSG_ReadLong();
1693                                 MSG_ReadLong();
1694                                 MSG_ReadString();
1695                         }
1696                         else
1697                                 SHOWLMP_decodehide();
1698                         break;
1699                 case svc_showlmp:
1700                         if (gamemode == GAME_TENEBRAE)
1701                         {
1702                                 // particle effect
1703                                 MSG_ReadCoord(cl.protocol);
1704                                 MSG_ReadCoord(cl.protocol);
1705                                 MSG_ReadCoord(cl.protocol);
1706                                 MSG_ReadByte();
1707                                 MSG_ReadString();
1708                         }
1709                         else
1710                                 SHOWLMP_decodeshow();
1711                         break;
1712                 case svc_skybox:
1713                         R_SetSkyBox(MSG_ReadString());
1714                         break;
1715                 case svc_cgame:
1716                         {
1717                                 int length;
1718                                 length = (int) ((unsigned short) MSG_ReadShort());
1719                                 for (i = 0;i < length;i++)
1720                                         cgamenetbuffer[i] = MSG_ReadByte();
1721                                 if (!msg_badread)
1722                                         CL_CGVM_ParseNetwork(cgamenetbuffer, length);
1723                         }
1724                         break;
1725                 case svc_entities:
1726                         if (cls.signon == SIGNONS - 1)
1727                         {
1728                                 // first update is the final signon stage
1729                                 cls.signon = SIGNONS;
1730                                 CL_SignonReply ();
1731                         }
1732                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3)
1733                                 EntityFrame_CL_ReadFrame();
1734                         else if (cl.protocol == PROTOCOL_DARKPLACES4)
1735                                 EntityFrame4_CL_ReadFrame();
1736                         else if (cl.protocol == PROTOCOL_DARKPLACES5 || cl.protocol == PROTOCOL_DARKPLACES6)
1737                                 EntityFrame5_CL_ReadFrame();
1738                         else
1739                                 Host_Error("CL_ParseServerMessage: svc_entities: unknown cl.protocol %i\n", cl.protocol);
1740                         break;
1741                 }
1742         }
1743
1744         EntityFrameQuake_ISeeDeadEntities();
1745
1746         parsingerror = false;
1747 }
1748
1749 void CL_Parse_DumpPacket(void)
1750 {
1751         if (!parsingerror)
1752                 return;
1753         Con_Print("Packet dump:\n");
1754         SZ_HexDumpToConsole(&net_message);
1755         parsingerror = false;
1756 }
1757
1758 void CL_Parse_Init(void)
1759 {
1760         // LordHavoc: added demo_nehahra cvar
1761         cl_scores_mempool = Mem_AllocPool("client player info", 0, NULL);
1762         Cvar_RegisterVariable (&demo_nehahra);
1763         if (gamemode == GAME_NEHAHRA)
1764                 Cvar_SetValue("demo_nehahra", 1);
1765         Cvar_RegisterVariable(&developer_networkentities);
1766 }
1767
1768 void CL_Parse_Shutdown(void)
1769 {
1770         Mem_FreePool (&cl_scores_mempool);
1771 }