]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_parse.c
326
[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_unusedlh1", //                     51              // unused
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                 // try not to utterly crush the computer with work, that's just rude
208                 Sys_Sleep(1);
209         }
210 }
211
212 void CL_ParseEntityLump(char *entdata)
213 {
214         const char *data;
215         char key[128], value[4096];
216         FOG_clear(); // LordHavoc: no fog until set
217         // LordHavoc: default to the map's sky (q3 shader parsing sets this)
218         R_SetSkyBox(cl.worldmodel->brush.skybox);
219         data = entdata;
220         if (!data)
221                 return;
222         if (!COM_ParseToken(&data, false))
223                 return; // error
224         if (com_token[0] != '{')
225                 return; // error
226         while (1)
227         {
228                 if (!COM_ParseToken(&data, false))
229                         return; // error
230                 if (com_token[0] == '}')
231                         break; // end of worldspawn
232                 if (com_token[0] == '_')
233                         strlcpy (key, com_token + 1, sizeof (key));
234                 else
235                         strlcpy (key, com_token, sizeof (key));
236                 while (key[strlen(key)-1] == ' ') // remove trailing spaces
237                         key[strlen(key)-1] = 0;
238                 if (!COM_ParseToken(&data, false))
239                         return; // error
240                 strlcpy (value, com_token, sizeof (value));
241                 if (!strcmp("sky", key))
242                         R_SetSkyBox(value);
243                 else if (!strcmp("skyname", key)) // non-standard, introduced by QuakeForge... sigh.
244                         R_SetSkyBox(value);
245                 else if (!strcmp("qlsky", key)) // non-standard, introduced by QuakeLives (EEK)
246                         R_SetSkyBox(value);
247                 else if (!strcmp("fog", key))
248                         sscanf(value, "%f %f %f %f", &fog_density, &fog_red, &fog_green, &fog_blue);
249                 else if (!strcmp("fog_density", key))
250                         fog_density = atof(value);
251                 else if (!strcmp("fog_red", key))
252                         fog_red = atof(value);
253                 else if (!strcmp("fog_green", key))
254                         fog_green = atof(value);
255                 else if (!strcmp("fog_blue", key))
256                         fog_blue = atof(value);
257         }
258 }
259
260 /*
261 =====================
262 CL_SignonReply
263
264 An svc_signonnum has been received, perform a client side setup
265 =====================
266 */
267 static void CL_SignonReply (void)
268 {
269         //char  str[8192];
270
271 Con_DPrintf("CL_SignonReply: %i\n", cls.signon);
272
273         switch (cls.signon)
274         {
275         case 1:
276                 MSG_WriteByte (&cls.message, clc_stringcmd);
277                 MSG_WriteString (&cls.message, "prespawn");
278                 break;
279
280         case 2:
281                 MSG_WriteByte (&cls.message, clc_stringcmd);
282                 MSG_WriteString (&cls.message, va("name \"%s\"\n", cl_name.string));
283
284                 MSG_WriteByte (&cls.message, clc_stringcmd);
285                 MSG_WriteString (&cls.message, va("color %i %i\n", cl_color.integer >> 4, cl_color.integer & 15));
286
287                 if (cl_pmodel.integer)
288                 {
289                         MSG_WriteByte (&cls.message, clc_stringcmd);
290                         MSG_WriteString (&cls.message, va("pmodel %i\n", cl_pmodel.integer));
291                 }
292
293                 MSG_WriteByte (&cls.message, clc_stringcmd);
294                 MSG_WriteString (&cls.message, va("rate %i\n", cl_rate.integer));
295
296                 MSG_WriteByte (&cls.message, clc_stringcmd);
297                 MSG_WriteString (&cls.message, "spawn");
298                 break;
299
300         case 3:
301                 MSG_WriteByte (&cls.message, clc_stringcmd);
302                 MSG_WriteString (&cls.message, "begin");
303                 break;
304
305         case 4:
306                 Con_ClearNotify();
307                 break;
308         }
309 }
310
311 /*
312 ==================
313 CL_ParseServerInfo
314 ==================
315 */
316 // FIXME: this is a lot of memory to be keeping around, this needs to be dynamically allocated and freed
317 static char parse_model_precache[MAX_MODELS][MAX_QPATH];
318 static char parse_sound_precache[MAX_SOUNDS][MAX_QPATH];
319 void CL_ParseServerInfo (void)
320 {
321         char *str;
322         int i;
323         int nummodels, numsounds;
324         entity_t *ent;
325
326         Con_DPrint("Serverinfo packet received.\n");
327 //
328 // wipe the client_state_t struct
329 //
330         CL_ClearState ();
331
332 // parse protocol version number
333         i = MSG_ReadLong ();
334         // hack for unmarked Nehahra movie demos which had a custom protocol
335         if (i == PROTOCOL_QUAKE && cls.demoplayback && demo_nehahra.integer)
336                 i = PROTOCOL_NEHAHRAMOVIE;
337         if (i != PROTOCOL_QUAKE && i != PROTOCOL_DARKPLACES1 && i != PROTOCOL_DARKPLACES2 && i != PROTOCOL_DARKPLACES3 && i != PROTOCOL_DARKPLACES4 && i != PROTOCOL_DARKPLACES5 && i != PROTOCOL_NEHAHRAMOVIE)
338         {
339                 Host_Error("CL_ParseServerInfo: Server is protocol %i, not %i (Quake), %i (DP1), %i (DP2), %i (DP3), %i (DP4), %i (DP5), or %i (Nehahra movie)", i, PROTOCOL_QUAKE, PROTOCOL_DARKPLACES1, PROTOCOL_DARKPLACES2, PROTOCOL_DARKPLACES3, PROTOCOL_DARKPLACES4, PROTOCOL_DARKPLACES5, PROTOCOL_NEHAHRAMOVIE);
340                 return;
341         }
342         cl.protocol = i;
343         Con_DPrintf("Protocol %i\n", cl.protocol);
344
345 // parse maxclients
346         cl.maxclients = MSG_ReadByte ();
347         if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD)
348         {
349                 Con_Printf("Bad maxclients (%u) from server\n", cl.maxclients);
350                 return;
351         }
352         Mem_EmptyPool(cl_scores_mempool);
353         cl.scores = Mem_Alloc(cl_scores_mempool, cl.maxclients*sizeof(*cl.scores));
354
355 // parse gametype
356         cl.gametype = MSG_ReadByte ();
357
358 // parse signon message
359         str = MSG_ReadString ();
360         strlcpy (cl.levelname, str, sizeof(cl.levelname));
361
362 // seperate the printfs so the server message can have a color
363         if (cl.protocol != PROTOCOL_NEHAHRAMOVIE) // no messages when playing the Nehahra movie
364                 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);
365
366         // check memory integrity
367         Mem_CheckSentinelsGlobal();
368
369         // disable until we get textures for it
370         R_ResetSkyBox();
371
372         memset(cl.model_precache, 0, sizeof(cl.model_precache));
373         memset(cl.sound_precache, 0, sizeof(cl.sound_precache));
374
375         // parse model precache list
376         for (nummodels=1 ; ; nummodels++)
377         {
378                 str = MSG_ReadString();
379                 if (!str[0])
380                         break;
381                 if (nummodels==MAX_MODELS)
382                         Host_Error ("Server sent too many model precaches\n");
383                 if (strlen(str) >= MAX_QPATH)
384                         Host_Error ("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
385                 strlcpy (parse_model_precache[nummodels], str, sizeof (parse_model_precache[nummodels]));
386         }
387         // parse sound precache list
388         for (numsounds=1 ; ; numsounds++)
389         {
390                 str = MSG_ReadString();
391                 if (!str[0])
392                         break;
393                 if (numsounds==MAX_SOUNDS)
394                         Host_Error("Server sent too many sound precaches\n");
395                 if (strlen(str) >= MAX_QPATH)
396                         Host_Error("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
397                 strlcpy (parse_sound_precache[numsounds], str, sizeof (parse_sound_precache[numsounds]));
398         }
399
400         // touch all of the precached models that are still loaded so we can free
401         // anything that isn't needed
402         Mod_ClearUsed();
403         for (i = 1;i < nummodels;i++)
404         {
405                 CL_KeepaliveMessage();
406                 Mod_FindName(parse_model_precache[i]);
407         }
408         Mod_PurgeUnused();
409
410         // do the same for sounds
411         S_ServerSounds (parse_sound_precache, numsounds);
412
413         // now we try to load everything that is new
414
415         // world model
416         CL_KeepaliveMessage ();
417         cl.model_precache[1] = Mod_ForName(parse_model_precache[1], false, false, true);
418         if (cl.model_precache[1] == NULL)
419                 Con_Printf("Map %s not found\n", parse_model_precache[1]);
420
421         // normal models
422         for (i=2 ; i<nummodels ; i++)
423         {
424                 CL_KeepaliveMessage();
425                 if ((cl.model_precache[i] = Mod_ForName(parse_model_precache[i], false, false, false)) == NULL)
426                         Con_Printf("Model %s not found\n", parse_model_precache[i]);
427         }
428
429         // sounds
430         for (i=1 ; i<numsounds ; i++)
431         {
432                 CL_KeepaliveMessage();
433
434                 // Don't lock the sfx here, S_ServerSounds already did that 
435                 cl.sound_precache[i] = S_PrecacheSound (parse_sound_precache[i], true, false);
436         }
437
438         // local state
439         ent = &cl_entities[0];
440         // entire entity array was cleared, so just fill in a few fields
441         ent->state_current.active = true;
442         ent->render.model = cl.worldmodel = cl.model_precache[1];
443         ent->render.scale = 1; // some of the renderer still relies on scale
444         ent->render.alpha = 1;
445         ent->render.flags = RENDER_SHADOW | RENDER_LIGHT;
446         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, 0, 0, 0, 0, 0, 0, 1);
447         Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
448         CL_BoundingBoxForEntity(&ent->render);
449
450         cl_num_entities = 1;
451
452         R_Modules_NewMap();
453         CL_CGVM_Start();
454
455         // noclip is turned off at start
456         noclip_anglehack = false;
457
458         // check memory integrity
459         Mem_CheckSentinelsGlobal();
460 }
461
462 void CL_ValidateState(entity_state_t *s)
463 {
464         model_t *model;
465
466         if (!s->active)
467                 return;
468
469         if (s->modelindex >= MAX_MODELS)
470                 Host_Error("CL_ValidateState: modelindex (%i) >= MAX_MODELS (%i)\n", s->modelindex, MAX_MODELS);
471
472         // colormap is client index + 1
473         if ((!s->flags & RENDER_COLORMAPPED) && s->colormap > cl.maxclients)
474         {
475                 Con_DPrintf("CL_ValidateState: colormap (%i) > cl.maxclients (%i)\n", s->colormap, cl.maxclients);
476                 s->colormap = 0;
477         }
478
479         model = cl.model_precache[s->modelindex];
480         Mod_CheckLoaded(model);
481         if (model && model->type && s->frame >= model->numframes)
482         {
483                 Con_DPrintf("CL_ValidateState: no such frame %i in \"%s\" (which has %i frames)\n", s->frame, model->name, model->numframes);
484                 s->frame = 0;
485         }
486         if (model && model->type && s->skin > 0 && s->skin >= model->numskins && !(s->lightpflags & PFLAGS_FULLDYNAMIC))
487         {
488                 Con_DPrintf("CL_ValidateState: no such skin %i in \"%s\" (which has %i skins)\n", s->skin, model->name, model->numskins);
489                 s->skin = 0;
490         }
491 }
492
493 void CL_MoveLerpEntityStates(entity_t *ent)
494 {
495         float odelta[3], adelta[3];
496         CL_ValidateState(&ent->state_current);
497         VectorSubtract(ent->state_current.origin, ent->persistent.neworigin, odelta);
498         VectorSubtract(ent->state_current.angles, ent->persistent.newangles, adelta);
499         if (!ent->state_previous.active || ent->state_previous.modelindex != ent->state_current.modelindex)
500         {
501                 // reset all persistent stuff if this is a new entity
502                 ent->persistent.lerpdeltatime = 0;
503                 ent->persistent.lerpstarttime = cl.mtime[1];
504                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
505                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
506                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
507                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
508                 // reset animation interpolation as well
509                 ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_current.frame;
510                 ent->render.frame1time = ent->render.frame2time = cl.time;
511                 ent->render.framelerp = 1;
512                 // reset various persistent stuff
513                 ent->persistent.muzzleflash = 0;
514                 VectorCopy(ent->state_current.origin, ent->persistent.trail_origin);
515         }
516         else if (cls.timedemo || cl_nolerp.integer || DotProduct(odelta, odelta) > 1000*1000)
517         {
518                 // don't interpolate the move
519                 ent->persistent.lerpdeltatime = 0;
520                 ent->persistent.lerpstarttime = cl.mtime[1];
521                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
522                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
523                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
524                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
525         }
526         else if (ent->state_current.flags & RENDER_STEP)
527         {
528                 // monster interpolation
529                 if (DotProduct(odelta, odelta) + DotProduct(adelta, adelta) > 0.01)
530                 {
531                         ent->persistent.lerpdeltatime = bound(0, cl.mtime[1] - ent->persistent.lerpstarttime, 0.1);
532                         ent->persistent.lerpstarttime = cl.mtime[1];
533                         VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
534                         VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
535                         VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
536                         VectorCopy(ent->state_current.angles, ent->persistent.newangles);
537                 }
538         }
539         else
540         {
541                 // not a monster
542                 ent->persistent.lerpstarttime = ent->state_previous.time;
543                 // no lerp if it's singleplayer
544                 if (cl.islocalgame)
545                         ent->persistent.lerpdeltatime = 0;
546                 else
547                         ent->persistent.lerpdeltatime = bound(0, ent->state_current.time - ent->state_previous.time, 0.1);
548                 VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
549                 VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
550                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
551                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
552         }
553 }
554
555 void CL_ReadEntityFrame(void)
556 {
557         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3)
558                 EntityFrame_CL_ReadFrame();
559         else if (cl.protocol == PROTOCOL_DARKPLACES4)
560                 EntityFrame4_CL_ReadFrame();
561         else if (cl.protocol == PROTOCOL_DARKPLACES5)
562                 EntityFrame5_CL_ReadFrame();
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         bits &= 0xFFFF;
611         if (bits & SU_EXTEND1)
612                 bits |= (MSG_ReadByte() << 16);
613         if (bits & SU_EXTEND2)
614                 bits |= (MSG_ReadByte() << 24);
615
616         if (bits & SU_VIEWHEIGHT)
617                 cl.viewheight = MSG_ReadChar ();
618         else
619                 cl.viewheight = DEFAULT_VIEWHEIGHT;
620
621         if (bits & SU_IDEALPITCH)
622                 cl.idealpitch = MSG_ReadChar ();
623         else
624                 cl.idealpitch = 0;
625
626         VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
627         for (i = 0;i < 3;i++)
628         {
629                 if (bits & (SU_PUNCH1<<i) )
630                 {
631                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4 || cl.protocol == PROTOCOL_DARKPLACES5)
632                                 cl.punchangle[i] = MSG_ReadAngle16i();
633                         else if (cl.protocol == PROTOCOL_QUAKE)
634                                 cl.punchangle[i] = MSG_ReadChar();
635                         else
636                                 Host_Error("CL_ParseClientData: unknown cl.protocol\n");
637                 }
638                 else
639                         cl.punchangle[i] = 0;
640                 if (bits & (SU_PUNCHVEC1<<i))
641                 {
642                         if (cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4)
643                                 cl.punchvector[i] = MSG_ReadCoord16i();
644                         else if (cl.protocol == PROTOCOL_DARKPLACES5)
645                                 cl.punchvector[i] = MSG_ReadCoord32f();
646                         else
647                                 Host_Error("CL_ParseClientData: unknown cl.protocol\n");
648                 }
649                 else
650                         cl.punchvector[i] = 0;
651                 if (bits & (SU_VELOCITY1<<i) )
652                 {
653                         if (cl.protocol == PROTOCOL_QUAKE || cl.protocol == PROTOCOL_DARKPLACES1 || cl.protocol == PROTOCOL_DARKPLACES2 || cl.protocol == PROTOCOL_DARKPLACES3 || cl.protocol == PROTOCOL_DARKPLACES4)
654                                 cl.mvelocity[0][i] = MSG_ReadChar()*16;
655                         else if (cl.protocol == PROTOCOL_DARKPLACES5)
656                                 cl.mvelocity[0][i] = MSG_ReadCoord32f();
657                         else
658                                 Host_Error("CL_ParseClientData: unknown cl.protocol\n");
659                 }
660                 else
661                         cl.mvelocity[0][i] = 0;
662         }
663
664         i = MSG_ReadLong ();
665         if (cl.items != i)
666         {       // set flash times
667                 for (j=0 ; j<32 ; j++)
668                         if ( (i & (1<<j)) && !(cl.items & (1<<j)))
669                                 cl.item_gettime[j] = cl.time;
670                 cl.items = i;
671         }
672
673         cl.onground = (bits & SU_ONGROUND) != 0;
674         cl.inwater = (bits & SU_INWATER) != 0;
675
676         if (cl.protocol == PROTOCOL_DARKPLACES5)
677         {
678                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadShort() : 0;
679                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadShort() : 0;
680                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadShort() : 0;
681                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
682                 cl.stats[STAT_AMMO] = MSG_ReadShort();
683
684                 cl.stats[STAT_SHELLS] = MSG_ReadShort();
685                 cl.stats[STAT_NAILS] = MSG_ReadShort();
686                 cl.stats[STAT_ROCKETS] = MSG_ReadShort();
687                 cl.stats[STAT_CELLS] = MSG_ReadShort();
688                 //cl.stats[STAT_GENERIC1] = MSG_ReadShort();
689                 //cl.stats[STAT_GENERIC2] = MSG_ReadShort();
690                 //cl.stats[STAT_GENERIC3] = MSG_ReadShort();
691                 //cl.stats[STAT_GENERIC4] = MSG_ReadShort();
692                 //cl.stats[STAT_GENERIC5] = MSG_ReadShort();
693                 //cl.stats[STAT_GENERIC6] = MSG_ReadShort();
694
695                 i = (unsigned short) MSG_ReadShort ();
696         }
697         else
698         {
699                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadByte() : 0;
700                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadByte() : 0;
701                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadByte() : 0;
702                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
703                 cl.stats[STAT_AMMO] = MSG_ReadByte();
704         
705                 cl.stats[STAT_SHELLS] = MSG_ReadByte();
706                 cl.stats[STAT_NAILS] = MSG_ReadByte();
707                 cl.stats[STAT_ROCKETS] = MSG_ReadByte();
708                 cl.stats[STAT_CELLS] = MSG_ReadByte();
709
710                 i = MSG_ReadByte ();
711                 if (gamemode == GAME_HIPNOTIC || gamemode == GAME_ROGUE)
712                         i = (1<<i);
713         }
714
715         // GAME_NEXUIZ hud needs weapon change time
716         // GAME_NEXUIZ uses a bit number as it's STAT_ACTIVEWEAPON, not a bitfield
717         // like other modes
718         if (cl.stats[STAT_ACTIVEWEAPON] != i)
719                 cl.weapontime = cl.time;
720         cl.stats[STAT_ACTIVEWEAPON] = i;
721
722         cl.viewzoomold = cl.viewzoomnew; // for interpolation
723         if (bits & SU_VIEWZOOM)
724         {
725                 if (cl.protocol == PROTOCOL_DARKPLACES5)
726                         i = (unsigned short) MSG_ReadShort();
727                 else
728                         i = MSG_ReadByte();
729                 if (i < 2)
730                         i = 2;
731                 cl.viewzoomnew = (float) i * (1.0f / 255.0f);
732         }
733         else
734                 cl.viewzoomnew = 1;
735
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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 12, 1, 0.3, 0.1, 1, 1);
1282                 CL_BeamParticle(pos, pos2, 5, 1, 0.9, 0.3, 1, 1);
1283                 break;
1284
1285         case TE_TEI_SMOKE:
1286                 MSG_ReadVector(pos, cl.protocol);
1287                 MSG_ReadVector(dir, cl.protocol);
1288                 count = MSG_ReadByte();
1289                 CL_FindNonSolidLocation(pos, pos, 4);
1290                 CL_Tei_Smoke(pos, dir, count);
1291                 break;
1292
1293         case TE_TEI_BIGEXPLOSION:
1294                 MSG_ReadVector(pos, cl.protocol);
1295                 CL_FindNonSolidLocation(pos, pos, 10);
1296                 CL_ParticleExplosion(pos);
1297                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1298                 CL_AllocDlight(NULL, &tempmatrix, 500, 2.5f, 2.0f, 1.0f, 500, 9999, 0, 0, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1299                 S_StartSound(-1, 0, cl_sfx_r_exp3, pos, 1, 1);
1300                 break;
1301
1302         case TE_TEI_PLASMAHIT:
1303                 MSG_ReadVector(pos, cl.protocol);
1304                 MSG_ReadVector(dir, cl.protocol);
1305                 count = MSG_ReadByte();
1306                 CL_FindNonSolidLocation(pos, pos, 5);
1307                 CL_Tei_PlasmaHit(pos, dir, count);
1308                 Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1309                 CL_AllocDlight(NULL, &tempmatrix, 500, 0.6, 1.2, 2.0f, 2000, 9999, 0, 0, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1310                 break;
1311
1312         default:
1313                 Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
1314         }
1315 }
1316
1317 #define SHOWNET(x) if(cl_shownet.integer==2)Con_Printf("%3i:%s\n", msg_readcount-1, x);
1318
1319 static qbyte cgamenetbuffer[65536];
1320
1321 /*
1322 =====================
1323 CL_ParseServerMessage
1324 =====================
1325 */
1326 int parsingerror = false;
1327 void CL_ParseServerMessage(void)
1328 {
1329         int                     cmd;
1330         int                     i;
1331         qbyte           cmdlog[32];
1332         char            *cmdlogname[32], *temp;
1333         int                     cmdindex, cmdcount = 0;
1334
1335         if (cls.demorecording)
1336                 CL_WriteDemoMessage ();
1337
1338         cl.last_received_message = realtime;
1339
1340 //
1341 // if recording demos, copy the message out
1342 //
1343         if (cl_shownet.integer == 1)
1344                 Con_Printf("%f %i\n", realtime, net_message.cursize);
1345         else if (cl_shownet.integer == 2)
1346                 Con_Print("------------------\n");
1347
1348         cl.onground = false;    // unless the server says otherwise
1349 //
1350 // parse the message
1351 //
1352         //MSG_BeginReading ();
1353
1354         parsingerror = true;
1355
1356         while (1)
1357         {
1358                 if (msg_badread)
1359                         Host_Error ("CL_ParseServerMessage: Bad server message");
1360
1361                 cmd = MSG_ReadByte ();
1362
1363                 if (cmd == -1)
1364                 {
1365                         SHOWNET("END OF MESSAGE");
1366                         break;          // end of message
1367                 }
1368
1369                 cmdindex = cmdcount & 31;
1370                 cmdcount++;
1371                 cmdlog[cmdindex] = cmd;
1372
1373                 // if the high bit of the command byte is set, it is a fast update
1374                 if (cmd & 128)
1375                 {
1376                         // 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)
1377                         temp = "entity";
1378                         cmdlogname[cmdindex] = temp;
1379                         SHOWNET("fast update");
1380                         if (cls.signon == SIGNONS - 1)
1381                         {
1382                                 // first update is the final signon stage
1383                                 cls.signon = SIGNONS;
1384                                 CL_SignonReply ();
1385                         }
1386                         EntityFrameQuake_ReadEntity (cmd&127);
1387                         continue;
1388                 }
1389
1390                 SHOWNET(svc_strings[cmd]);
1391                 cmdlogname[cmdindex] = svc_strings[cmd];
1392                 if (!cmdlogname[cmdindex])
1393                 {
1394                         // 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)
1395                         temp = "<unknown>";
1396                         cmdlogname[cmdindex] = temp;
1397                 }
1398
1399                 // other commands
1400                 switch (cmd)
1401                 {
1402                 default:
1403                         {
1404                                 char description[32*64], temp[64];
1405                                 int count;
1406                                 strcpy (description, "packet dump: ");
1407                                 i = cmdcount - 32;
1408                                 if (i < 0)
1409                                         i = 0;
1410                                 count = cmdcount - i;
1411                                 i &= 31;
1412                                 while(count > 0)
1413                                 {
1414                                         snprintf (temp, sizeof (temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
1415                                         strlcat (description, temp, sizeof (description));
1416                                         count--;
1417                                         i++;
1418                                         i &= 31;
1419                                 }
1420                                 description[strlen(description)-1] = '\n'; // replace the last space with a newline
1421                                 Con_Print(description);
1422                                 Host_Error ("CL_ParseServerMessage: Illegible server message\n");
1423                         }
1424                         break;
1425
1426                 case svc_nop:
1427                         if (cls.signon < SIGNONS)
1428                                 Con_Print("<-- server to client keepalive\n");
1429                         break;
1430
1431                 case svc_time:
1432                         cl.mtime[1] = cl.mtime[0];
1433                         cl.mtime[0] = MSG_ReadFloat ();
1434                         break;
1435
1436                 case svc_clientdata:
1437                         i = (unsigned short) MSG_ReadShort ();
1438                         CL_ParseClientdata (i);
1439                         break;
1440
1441                 case svc_version:
1442                         i = MSG_ReadLong ();
1443                         // hack for unmarked Nehahra movie demos which had a custom protocol
1444                         if (i == PROTOCOL_QUAKE && cls.demoplayback && demo_nehahra.integer)
1445                                 i = PROTOCOL_NEHAHRAMOVIE;
1446                         if (i != PROTOCOL_QUAKE && i != PROTOCOL_DARKPLACES1 && i != PROTOCOL_DARKPLACES2 && i != PROTOCOL_DARKPLACES3 && i != PROTOCOL_DARKPLACES4 && i != PROTOCOL_DARKPLACES5 && i != PROTOCOL_NEHAHRAMOVIE)
1447                                 Host_Error("CL_ParseServerMessage: Server is protocol %i, not %i (Quake), %i (DP1), %i (DP2), %i (DP3), %i (DP4), %i (DP5), or %i (Nehahra movie)", i, PROTOCOL_QUAKE, PROTOCOL_DARKPLACES1, PROTOCOL_DARKPLACES2, PROTOCOL_DARKPLACES3, PROTOCOL_DARKPLACES4, PROTOCOL_DARKPLACES5, PROTOCOL_NEHAHRAMOVIE);
1448                         cl.protocol = i;
1449                         break;
1450
1451                 case svc_disconnect:
1452                         Con_Printf ("Server disconnected\n");
1453                         if (cls.demonum != -1)
1454                                 CL_NextDemo ();
1455                         else
1456                                 CL_Disconnect ();
1457                         break;
1458
1459                 case svc_print:
1460                         Con_Print(MSG_ReadString());
1461                         break;
1462
1463                 case svc_centerprint:
1464                         SCR_CenterPrint(MSG_ReadString ());
1465                         break;
1466
1467                 case svc_stufftext:
1468                         Cbuf_AddText (MSG_ReadString ());
1469                         break;
1470
1471                 case svc_damage:
1472                         V_ParseDamage ();
1473                         break;
1474
1475                 case svc_serverinfo:
1476                         CL_ParseServerInfo ();
1477                         break;
1478
1479                 case svc_setangle:
1480                         for (i=0 ; i<3 ; i++)
1481                                 cl.viewangles[i] = MSG_ReadAngle (cl.protocol);
1482                         break;
1483
1484                 case svc_setview:
1485                         cl.viewentity = (unsigned short)MSG_ReadShort ();
1486                         if (cl.viewentity >= MAX_EDICTS)
1487                                 Host_Error("svc_setview >= MAX_EDICTS\n");
1488                         // LordHavoc: assume first setview recieved is the real player entity
1489                         if (!cl.playerentity)
1490                                 cl.playerentity = cl.viewentity;
1491                         break;
1492
1493                 case svc_lightstyle:
1494                         i = MSG_ReadByte ();
1495                         if (i >= MAX_LIGHTSTYLES)
1496                                 Host_Error ("svc_lightstyle >= MAX_LIGHTSTYLES");
1497                         strlcpy (cl_lightstyle[i].map,  MSG_ReadString(), sizeof (cl_lightstyle[i].map));
1498                         cl_lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
1499                         cl_lightstyle[i].length = strlen(cl_lightstyle[i].map);
1500                         break;
1501
1502                 case svc_sound:
1503                         CL_ParseStartSoundPacket(false);
1504                         break;
1505
1506                 case svc_sound2:
1507                         CL_ParseStartSoundPacket(true);
1508                         break;
1509
1510                 case svc_stopsound:
1511                         i = (unsigned short) MSG_ReadShort();
1512                         S_StopSound(i>>3, i&7);
1513                         break;
1514
1515                 case svc_updatename:
1516                         i = MSG_ReadByte ();
1517                         if (i >= cl.maxclients)
1518                                 Host_Error ("CL_ParseServerMessage: svc_updatename >= cl.maxclients");
1519                         strlcpy (cl.scores[i].name, MSG_ReadString (), sizeof (cl.scores[i].name));
1520                         break;
1521
1522                 case svc_updatefrags:
1523                         i = MSG_ReadByte ();
1524                         if (i >= cl.maxclients)
1525                                 Host_Error ("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
1526                         cl.scores[i].frags = (signed short) MSG_ReadShort ();
1527                         break;
1528
1529                 case svc_updatecolors:
1530                         i = MSG_ReadByte ();
1531                         if (i >= cl.maxclients)
1532                                 Host_Error ("CL_ParseServerMessage: svc_updatecolors >= cl.maxclients");
1533                         cl.scores[i].colors = MSG_ReadByte ();
1534                         break;
1535
1536                 case svc_particle:
1537                         CL_ParseParticleEffect ();
1538                         break;
1539
1540                 case svc_effect:
1541                         CL_ParseEffect ();
1542                         break;
1543
1544                 case svc_effect2:
1545                         CL_ParseEffect2 ();
1546                         break;
1547
1548                 case svc_spawnbaseline:
1549                         i = (unsigned short) MSG_ReadShort ();
1550                         if (i < 0 || i >= MAX_EDICTS)
1551                                 Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
1552                         CL_ParseBaseline (cl_entities + i, false);
1553                         break;
1554                 case svc_spawnbaseline2:
1555                         i = (unsigned short) MSG_ReadShort ();
1556                         if (i < 0 || i >= MAX_EDICTS)
1557                                 Host_Error ("CL_ParseServerMessage: svc_spawnbaseline2: invalid entity number %i", i);
1558                         CL_ParseBaseline (cl_entities + i, true);
1559                         break;
1560                 case svc_spawnstatic:
1561                         CL_ParseStatic (false);
1562                         break;
1563                 case svc_spawnstatic2:
1564                         CL_ParseStatic (true);
1565                         break;
1566                 case svc_temp_entity:
1567                         CL_ParseTempEntity ();
1568                         break;
1569
1570                 case svc_setpause:
1571                         cl.paused = MSG_ReadByte ();
1572                         if (cl.paused)
1573                                 CDAudio_Pause ();
1574                         else
1575                                 CDAudio_Resume ();
1576                         S_PauseGameSounds (cl.paused);
1577                         break;
1578
1579                 case svc_signonnum:
1580                         i = MSG_ReadByte ();
1581                         if (i <= cls.signon)
1582                                 Host_Error ("Received signon %i when at %i", i, cls.signon);
1583                         cls.signon = i;
1584                         CL_SignonReply ();
1585                         break;
1586
1587                 case svc_killedmonster:
1588                         cl.stats[STAT_MONSTERS]++;
1589                         break;
1590
1591                 case svc_foundsecret:
1592                         cl.stats[STAT_SECRETS]++;
1593                         break;
1594
1595                 case svc_updatestat:
1596                         i = MSG_ReadByte ();
1597                         if (i < 0 || i >= MAX_CL_STATS)
1598                                 Host_Error ("svc_updatestat: %i is invalid", i);
1599                         cl.stats[i] = MSG_ReadLong ();
1600                         break;
1601
1602                 case svc_spawnstaticsound:
1603                         CL_ParseStaticSound (false);
1604                         break;
1605
1606                 case svc_spawnstaticsound2:
1607                         CL_ParseStaticSound (true);
1608                         break;
1609
1610                 case svc_cdtrack:
1611                         cl.cdtrack = MSG_ReadByte ();
1612                         cl.looptrack = MSG_ReadByte ();
1613                         if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
1614                                 CDAudio_Play ((qbyte)cls.forcetrack, true);
1615                         else
1616                                 CDAudio_Play ((qbyte)cl.cdtrack, true);
1617                         break;
1618
1619                 case svc_intermission:
1620                         cl.intermission = 1;
1621                         cl.completed_time = cl.time;
1622                         break;
1623
1624                 case svc_finale:
1625                         cl.intermission = 2;
1626                         cl.completed_time = cl.time;
1627                         SCR_CenterPrint(MSG_ReadString ());
1628                         break;
1629
1630                 case svc_cutscene:
1631                         cl.intermission = 3;
1632                         cl.completed_time = cl.time;
1633                         SCR_CenterPrint(MSG_ReadString ());
1634                         break;
1635
1636                 case svc_sellscreen:
1637                         Cmd_ExecuteString ("help", src_command);
1638                         break;
1639                 case svc_hidelmp:
1640                         if (gamemode == GAME_TENEBRAE)
1641                         {
1642                                 // repeating particle effect
1643                                 MSG_ReadCoord(cl.protocol);
1644                                 MSG_ReadCoord(cl.protocol);
1645                                 MSG_ReadCoord(cl.protocol);
1646                                 MSG_ReadCoord(cl.protocol);
1647                                 MSG_ReadCoord(cl.protocol);
1648                                 MSG_ReadCoord(cl.protocol);
1649                                 MSG_ReadByte();
1650                                 MSG_ReadLong();
1651                                 MSG_ReadLong();
1652                                 MSG_ReadString();
1653                         }
1654                         else
1655                                 SHOWLMP_decodehide();
1656                         break;
1657                 case svc_showlmp:
1658                         if (gamemode == GAME_TENEBRAE)
1659                         {
1660                                 // particle effect
1661                                 MSG_ReadCoord(cl.protocol);
1662                                 MSG_ReadCoord(cl.protocol);
1663                                 MSG_ReadCoord(cl.protocol);
1664                                 MSG_ReadByte();
1665                                 MSG_ReadString();
1666                         }
1667                         else
1668                                 SHOWLMP_decodeshow();
1669                         break;
1670                 case svc_skybox:
1671                         R_SetSkyBox(MSG_ReadString());
1672                         break;
1673                 case svc_cgame:
1674                         {
1675                                 int length;
1676                                 length = (int) ((unsigned short) MSG_ReadShort());
1677                                 for (i = 0;i < length;i++)
1678                                         cgamenetbuffer[i] = MSG_ReadByte();
1679                                 if (!msg_badread)
1680                                         CL_CGVM_ParseNetwork(cgamenetbuffer, length);
1681                         }
1682                         break;
1683                 case svc_entities:
1684                         if (cls.signon == SIGNONS - 1)
1685                         {
1686                                 // first update is the final signon stage
1687                                 cls.signon = SIGNONS;
1688                                 CL_SignonReply ();
1689                         }
1690                         CL_ReadEntityFrame();
1691                         break;
1692                 }
1693         }
1694
1695         EntityFrameQuake_ISeeDeadEntities();
1696
1697         parsingerror = false;
1698 }
1699
1700 void CL_Parse_DumpPacket(void)
1701 {
1702         if (!parsingerror)
1703                 return;
1704         Con_Print("Packet dump:\n");
1705         SZ_HexDumpToConsole(&net_message);
1706         parsingerror = false;
1707 }
1708
1709 void CL_Parse_Init(void)
1710 {
1711         // LordHavoc: added demo_nehahra cvar
1712         cl_scores_mempool = Mem_AllocPool("client player info", 0, NULL);
1713         Cvar_RegisterVariable (&demo_nehahra);
1714         if (gamemode == GAME_NEHAHRA)
1715                 Cvar_SetValue("demo_nehahra", 1);
1716         Cvar_RegisterVariable(&developer_networkentities);
1717 }