]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_parse.c
removed all 3 uses of the brown-text message prefix in the server
[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 #include "csprogs.h"
26
27 char *svc_strings[128] =
28 {
29         "svc_bad",
30         "svc_nop",
31         "svc_disconnect",
32         "svc_updatestat",
33         "svc_version",          // [int] server version
34         "svc_setview",          // [short] entity number
35         "svc_sound",                    // <see code>
36         "svc_time",                     // [float] server time
37         "svc_print",                    // [string] null terminated string
38         "svc_stufftext",                // [string] stuffed into client's console buffer
39                                                 // the string should be \n terminated
40         "svc_setangle",         // [vec3] set the view angle to this absolute value
41
42         "svc_serverinfo",               // [int] version
43                                                 // [string] signon string
44                                                 // [string]..[0]model cache [string]...[0]sounds cache
45                                                 // [string]..[0]item cache
46         "svc_lightstyle",               // [byte] [string]
47         "svc_updatename",               // [byte] [string]
48         "svc_updatefrags",      // [byte] [short]
49         "svc_clientdata",               // <shortbits + data>
50         "svc_stopsound",                // <see code>
51         "svc_updatecolors",     // [byte] [byte]
52         "svc_particle",         // [vec3] <variable>
53         "svc_damage",                   // [byte] impact [byte] blood [vec3] from
54
55         "svc_spawnstatic",
56         "OBSOLETE svc_spawnbinary",
57         "svc_spawnbaseline",
58
59         "svc_temp_entity",              // <variable>
60         "svc_setpause",
61         "svc_signonnum",
62         "svc_centerprint",
63         "svc_killedmonster",
64         "svc_foundsecret",
65         "svc_spawnstaticsound",
66         "svc_intermission",
67         "svc_finale",                   // [string] music [string] text
68         "svc_cdtrack",                  // [byte] track [byte] looptrack
69         "svc_sellscreen",
70         "svc_cutscene",
71         "svc_showlmp",  // [string] iconlabel [string] lmpfile [short] x [short] y
72         "svc_hidelmp",  // [string] iconlabel
73         "svc_skybox", // [string] skyname
74         "", // 38
75         "", // 39
76         "", // 40
77         "", // 41
78         "", // 42
79         "", // 43
80         "", // 44
81         "", // 45
82         "", // 46
83         "", // 47
84         "", // 48
85         "", // 49
86         "svc_unusedlh1", //                             50              //
87         "svc_updatestatubyte", //                       51              // [byte] stat [byte] value
88         "svc_effect", //                        52              // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate
89         "svc_effect2", //                       53              // [vector] org [short] modelindex [short] startframe [byte] framecount [byte] framerate
90         "svc_sound2", //                        54              // short soundindex instead of byte
91         "svc_spawnbaseline2", //        55              // short modelindex instead of byte
92         "svc_spawnstatic2", //          56              // short modelindex instead of byte
93         "svc_entities", //                      57              // [int] deltaframe [int] thisframe [float vector] eye [variable length] entitydata
94         "svc_csqcentities", //          58              // [short] entnum [variable length] entitydata ... [short] 0x0000
95         "svc_spawnstaticsound2", //     59              // [coord3] [short] samp [byte] vol [byte] aten
96 };
97
98 char *qw_svc_strings[128] =
99 {
100         "qw_svc_bad",                                   // 0
101         "qw_svc_nop",                                   // 1
102         "qw_svc_disconnect",                    // 2
103         "qw_svc_updatestat",                    // 3    // [byte] [byte]
104         "",                                                             // 4
105         "qw_svc_setview",                               // 5    // [short] entity number
106         "qw_svc_sound",                                 // 6    // <see code>
107         "",                                                             // 7
108         "qw_svc_print",                                 // 8    // [byte] id [string] null terminated string
109         "qw_svc_stufftext",                             // 9    // [string] stuffed into client's console buffer
110         "qw_svc_setangle",                              // 10   // [angle3] set the view angle to this absolute value
111         "qw_svc_serverdata",                    // 11   // [long] protocol ...
112         "qw_svc_lightstyle",                    // 12   // [byte] [string]
113         "",                                                             // 13
114         "qw_svc_updatefrags",                   // 14   // [byte] [short]
115         "",                                                             // 15
116         "qw_svc_stopsound",                             // 16   // <see code>
117         "",                                                             // 17
118         "",                                                             // 18
119         "qw_svc_damage",                                // 19
120         "qw_svc_spawnstatic",                   // 20
121         "",                                                             // 21
122         "qw_svc_spawnbaseline",                 // 22
123         "qw_svc_temp_entity",                   // 23   // variable
124         "qw_svc_setpause",                              // 24   // [byte] on / off
125         "",                                                             // 25
126         "qw_svc_centerprint",                   // 26   // [string] to put in center of the screen
127         "qw_svc_killedmonster",                 // 27
128         "qw_svc_foundsecret",                   // 28
129         "qw_svc_spawnstaticsound",              // 29   // [coord3] [byte] samp [byte] vol [byte] aten
130         "qw_svc_intermission",                  // 30           // [vec3_t] origin [vec3_t] angle
131         "qw_svc_finale",                                // 31           // [string] text
132         "qw_svc_cdtrack",                               // 32           // [byte] track
133         "qw_svc_sellscreen",                    // 33
134         "qw_svc_smallkick",                             // 34           // set client punchangle to 2
135         "qw_svc_bigkick",                               // 35           // set client punchangle to 4
136         "qw_svc_updateping",                    // 36           // [byte] [short]
137         "qw_svc_updateentertime",               // 37           // [byte] [float]
138         "qw_svc_updatestatlong",                // 38           // [byte] [long]
139         "qw_svc_muzzleflash",                   // 39           // [short] entity
140         "qw_svc_updateuserinfo",                // 40           // [byte] slot [long] uid
141         "qw_svc_download",                              // 41           // [short] size [size bytes]
142         "qw_svc_playerinfo",                    // 42           // variable
143         "qw_svc_nails",                                 // 43           // [byte] num [48 bits] xyzpy 12 12 12 4 8
144         "qw_svc_chokecount",                    // 44           // [byte] packets choked
145         "qw_svc_modellist",                             // 45           // [strings]
146         "qw_svc_soundlist",                             // 46           // [strings]
147         "qw_svc_packetentities",                // 47           // [...]
148         "qw_svc_deltapacketentities",   // 48           // [...]
149         "qw_svc_maxspeed",                              // 49           // maxspeed change, for prediction
150         "qw_svc_entgravity",                    // 50           // gravity change, for prediction
151         "qw_svc_setinfo",                               // 51           // setinfo on a client
152         "qw_svc_serverinfo",                    // 52           // serverinfo
153         "qw_svc_updatepl",                              // 53           // [byte] [byte]
154 };
155
156 //=============================================================================
157
158 cvar_t demo_nehahra = {0, "demo_nehahra", "0", "reads all quake demos as nehahra movie protocol"};
159 cvar_t developer_networkentities = {0, "developer_networkentities", "0", "prints received entities, value is 0-4 (higher for more info)"};
160 cvar_t cl_sound_wizardhit = {0, "cl_sound_wizardhit", "wizard/hit.wav", "sound to play during TE_WIZSPIKE (empty cvar disables sound)"};
161 cvar_t cl_sound_hknighthit = {0, "cl_sound_hknighthit", "hknight/hit.wav", "sound to play during TE_KNIGHTSPIKE (empty cvar disables sound)"};
162 cvar_t cl_sound_tink1 = {0, "cl_sound_tink1", "weapons/tink1.wav", "sound to play with 80% chance during TE_SPIKE/TE_SUPERSPIKE (empty cvar disables sound)"};
163 cvar_t cl_sound_ric1 = {0, "cl_sound_ric1", "weapons/ric1.wav", "sound to play with 5% chance during TE_SPIKE/TE_SUPERSPIKE (empty cvar disables sound)"};
164 cvar_t cl_sound_ric2 = {0, "cl_sound_ric2", "weapons/ric2.wav", "sound to play with 5% chance during TE_SPIKE/TE_SUPERSPIKE (empty cvar disables sound)"};
165 cvar_t cl_sound_ric3 = {0, "cl_sound_ric3", "weapons/ric3.wav", "sound to play with 10% chance during TE_SPIKE/TE_SUPERSPIKE (empty cvar disables sound)"};
166 cvar_t cl_sound_r_exp3 = {0, "cl_sound_r_exp3", "weapons/r_exp3.wav", "sound to play during TE_EXPLOSION and related effects (empty cvar disables sound)"};
167
168 static qboolean QW_CL_CheckOrDownloadFile(const char *filename);
169 static void QW_CL_RequestNextDownload(void);
170 static void QW_CL_NextUpload(void);
171 void QW_CL_StartUpload(unsigned char *data, int size);
172 //static qboolean QW_CL_IsUploading(void);
173 static void QW_CL_StopUpload(void);
174
175 /*
176 ==================
177 CL_ParseStartSoundPacket
178 ==================
179 */
180 void CL_ParseStartSoundPacket(int largesoundindex)
181 {
182         vec3_t  pos;
183         int     channel, ent;
184         int     sound_num;
185         int     volume;
186         int     field_mask;
187         float   attenuation;
188
189         if (cls.protocol == PROTOCOL_QUAKEWORLD)
190         {
191                 channel = MSG_ReadShort();
192
193                 if (channel & (1<<15))
194                         volume = MSG_ReadByte ();
195                 else
196                         volume = DEFAULT_SOUND_PACKET_VOLUME;
197
198                 if (channel & (1<<14))
199                         attenuation = MSG_ReadByte () / 64.0;
200                 else
201                         attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
202
203                 ent = (channel>>3)&1023;
204                 channel &= 7;
205
206                 sound_num = MSG_ReadByte ();
207         }
208         else
209         {
210                 field_mask = MSG_ReadByte();
211
212                 if (field_mask & SND_VOLUME)
213                         volume = MSG_ReadByte ();
214                 else
215                         volume = DEFAULT_SOUND_PACKET_VOLUME;
216
217                 if (field_mask & SND_ATTENUATION)
218                         attenuation = MSG_ReadByte () / 64.0;
219                 else
220                         attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
221
222                 if (field_mask & SND_LARGEENTITY)
223                 {
224                         ent = (unsigned short) MSG_ReadShort ();
225                         channel = MSG_ReadByte ();
226                 }
227                 else
228                 {
229                         channel = (unsigned short) MSG_ReadShort ();
230                         ent = channel >> 3;
231                         channel &= 7;
232                 }
233
234                 if (largesoundindex || field_mask & SND_LARGESOUND)
235                         sound_num = (unsigned short) MSG_ReadShort ();
236                 else
237                         sound_num = MSG_ReadByte ();
238         }
239
240         MSG_ReadVector(pos, cls.protocol);
241
242         if (sound_num >= MAX_SOUNDS)
243         {
244                 Con_Printf("CL_ParseStartSoundPacket: sound_num (%i) >= MAX_SOUNDS (%i)\n", sound_num, MAX_SOUNDS);
245                 return;
246         }
247
248         if (ent >= MAX_EDICTS)
249         {
250                 Con_Printf("CL_ParseStartSoundPacket: ent = %i", ent);
251                 return;
252         }
253
254         S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0f, attenuation);
255 }
256
257 /*
258 ==================
259 CL_KeepaliveMessage
260
261 When the client is taking a long time to load stuff, send keepalive messages
262 so the server doesn't disconnect.
263 ==================
264 */
265
266 static unsigned char olddata[NET_MAXMESSAGE];
267 void CL_KeepaliveMessage (void)
268 {
269         float time;
270         static double nextmsg = -1;
271         int oldreadcount;
272         qboolean oldbadread;
273         sizebuf_t old;
274
275         // no need if server is local and definitely not if this is a demo
276         if (sv.active || !cls.netcon || cls.protocol == PROTOCOL_QUAKEWORLD)
277                 return;
278
279 // read messages from server, should just be nops
280         oldreadcount = msg_readcount;
281         oldbadread = msg_badread;
282         old = net_message;
283         memcpy(olddata, net_message.data, net_message.cursize);
284
285         NetConn_ClientFrame();
286
287         msg_readcount = oldreadcount;
288         msg_badread = oldbadread;
289         net_message = old;
290         memcpy(net_message.data, olddata, net_message.cursize);
291
292         if (cls.netcon && (time = Sys_DoubleTime()) >= nextmsg)
293         {
294                 sizebuf_t       msg;
295                 unsigned char           buf[4];
296                 nextmsg = time + 5;
297                 // write out a nop
298                 // LordHavoc: must use unreliable because reliable could kill the sigon message!
299                 Con_Print("--> client to server keepalive\n");
300                 memset(&msg, 0, sizeof(msg));
301                 msg.data = buf;
302                 msg.maxsize = sizeof(buf);
303                 MSG_WriteChar(&msg, svc_nop);
304                 NetConn_SendUnreliableMessage(cls.netcon, &msg, cls.protocol);
305         }
306 }
307
308 void CL_ParseEntityLump(char *entdata)
309 {
310         const char *data;
311         char key[128], value[MAX_INPUTLINE];
312         FOG_clear(); // LordHavoc: no fog until set
313         // LordHavoc: default to the map's sky (q3 shader parsing sets this)
314         R_SetSkyBox(cl.worldmodel->brush.skybox);
315         data = entdata;
316         if (!data)
317                 return;
318         if (!COM_ParseToken(&data, false))
319                 return; // error
320         if (com_token[0] != '{')
321                 return; // error
322         while (1)
323         {
324                 if (!COM_ParseToken(&data, false))
325                         return; // error
326                 if (com_token[0] == '}')
327                         break; // end of worldspawn
328                 if (com_token[0] == '_')
329                         strlcpy (key, com_token + 1, sizeof (key));
330                 else
331                         strlcpy (key, com_token, sizeof (key));
332                 while (key[strlen(key)-1] == ' ') // remove trailing spaces
333                         key[strlen(key)-1] = 0;
334                 if (!COM_ParseToken(&data, false))
335                         return; // error
336                 strlcpy (value, com_token, sizeof (value));
337                 if (!strcmp("sky", key))
338                         R_SetSkyBox(value);
339                 else if (!strcmp("skyname", key)) // non-standard, introduced by QuakeForge... sigh.
340                         R_SetSkyBox(value);
341                 else if (!strcmp("qlsky", key)) // non-standard, introduced by QuakeLives (EEK)
342                         R_SetSkyBox(value);
343                 else if (!strcmp("fog", key))
344                         sscanf(value, "%f %f %f %f", &fog_density, &fog_red, &fog_green, &fog_blue);
345                 else if (!strcmp("fog_density", key))
346                         fog_density = atof(value);
347                 else if (!strcmp("fog_red", key))
348                         fog_red = atof(value);
349                 else if (!strcmp("fog_green", key))
350                         fog_green = atof(value);
351                 else if (!strcmp("fog_blue", key))
352                         fog_blue = atof(value);
353         }
354 }
355
356 static qboolean QW_CL_CheckOrDownloadFile(const char *filename)
357 {
358         qfile_t *file;
359
360         // see if the file already exists
361         file = FS_Open(filename, "rb", true, false);
362         if (file)
363         {
364                 FS_Close(file);
365                 return true;
366         }
367
368         // download messages in a demo would be bad
369         if (cls.demorecording)
370         {
371                 Con_Printf("Unable to download \"%s\" when recording.\n", filename);
372                 return true;
373         }
374
375         // don't try to download when playing a demo
376         if (!cls.netcon)
377                 return true;
378
379         strlcpy(cls.qw_downloadname, filename, sizeof(cls.qw_downloadname));
380         Con_Printf("Downloading %s\n", filename);
381
382         if (!cls.qw_downloadmemory)
383         {
384                 cls.qw_downloadmemory = NULL;
385                 cls.qw_downloadmemorycursize = 0;
386                 cls.qw_downloadmemorymaxsize = 1024*1024; // start out with a 1MB buffer
387         }
388
389         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
390         MSG_WriteString(&cls.netcon->message, va("download %s", filename));
391
392         cls.qw_downloadnumber++;
393         cls.qw_downloadpercent = 0;
394         cls.qw_downloadmemorycursize = 0;
395
396         return false;
397 }
398
399 static void QW_CL_ProcessUserInfo(int slot);
400 static void QW_CL_RequestNextDownload(void)
401 {
402         int i;
403
404         // clear name of file that just finished
405         cls.qw_downloadname[0] = 0;
406
407         switch (cls.qw_downloadtype)
408         {
409         case dl_single:
410                 break;
411         case dl_skin:
412                 if (cls.qw_downloadnumber == 0)
413                         Con_Printf("Checking skins...\n");
414                 for (;cls.qw_downloadnumber < cl.maxclients;cls.qw_downloadnumber++)
415                 {
416                         if (!cl.scores[cls.qw_downloadnumber].name[0])
417                                 continue;
418                         // check if we need to download the file, and return if so
419                         if (!QW_CL_CheckOrDownloadFile(va("skins/%s.pcx", cl.scores[cls.qw_downloadnumber].qw_skin)))
420                                 return;
421                 }
422
423                 cls.qw_downloadtype = dl_none;
424
425                 // load any newly downloaded skins
426                 for (i = 0;i < cl.maxclients;i++)
427                         QW_CL_ProcessUserInfo(i);
428
429                 // if we're still in signon stages, request the next one
430                 if (cls.signon != SIGNONS)
431                 {
432                         cls.signon = SIGNONS-1;
433                         // we'll go to SIGNONS when the first entity update is received
434                         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
435                         MSG_WriteString(&cls.netcon->message, va("begin %i", cl.qw_servercount));
436                 }
437                 break;
438         case dl_model:
439                 if (cls.qw_downloadnumber == 0)
440                 {
441                         Con_Printf("Checking models...\n");
442                         cls.qw_downloadnumber = 1;
443                 }
444
445                 for (;cls.qw_downloadnumber < MAX_MODELS && cl.model_name[cls.qw_downloadnumber][0];cls.qw_downloadnumber++)
446                 {
447                         // skip submodels
448                         if (cl.model_name[cls.qw_downloadnumber][0] == '*')
449                                 continue;
450                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/spike.mdl"))
451                                 cl.qw_modelindex_spike = cls.qw_downloadnumber;
452                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/player.mdl"))
453                                 cl.qw_modelindex_player = cls.qw_downloadnumber;
454                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/flag.mdl"))
455                                 cl.qw_modelindex_flag = cls.qw_downloadnumber;
456                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/s_explod.spr"))
457                                 cl.qw_modelindex_s_explod = cls.qw_downloadnumber;
458                         // check if we need to download the file, and return if so
459                         if (!QW_CL_CheckOrDownloadFile(cl.model_name[cls.qw_downloadnumber]))
460                                 return;
461                 }
462
463                 cls.qw_downloadtype = dl_none;
464
465                 // touch all of the precached models that are still loaded so we can free
466                 // anything that isn't needed
467                 Mod_ClearUsed();
468                 for (i = 1;i < MAX_MODELS && cl.model_name[i][0];i++)
469                         Mod_FindName(cl.model_name[i]);
470                 // precache any models used by the client (this also marks them used)
471                 cl.model_bolt = Mod_ForName("progs/bolt.mdl", false, false, false);
472                 cl.model_bolt2 = Mod_ForName("progs/bolt2.mdl", false, false, false);
473                 cl.model_bolt3 = Mod_ForName("progs/bolt3.mdl", false, false, false);
474                 cl.model_beam = Mod_ForName("progs/beam.mdl", false, false, false);
475                 Mod_PurgeUnused();
476
477                 // now we try to load everything that is new
478
479                 // world model
480                 cl.model_precache[1] = Mod_ForName(cl.model_name[1], false, false, true);
481                 if (cl.model_precache[1]->Draw == NULL)
482                         Con_Printf("Map %s could not be found or downloaded\n", cl.model_name[1]);
483
484                 // normal models
485                 for (i = 2;i < MAX_MODELS && cl.model_name[i][0];i++)
486                         if ((cl.model_precache[i] = Mod_ForName(cl.model_name[i], false, false, false))->Draw == NULL)
487                                 Con_Printf("Model %s could not be found or downloaded\n", cl.model_name[i]);
488
489                 // check memory integrity
490                 Mem_CheckSentinelsGlobal();
491
492                 // now that we have a world model, set up the world entity, renderer
493                 // modules and csqc
494                 cl.entities[0].render.model = cl.worldmodel = cl.model_precache[1];
495                 CL_BoundingBoxForEntity(&cl.entities[0].render);
496
497                 R_Modules_NewMap();
498
499                 // TODO: add pmodel/emodel player.mdl/eyes.mdl CRCs to userinfo
500
501                 // done checking sounds and models, send a prespawn command now
502                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
503                 MSG_WriteString(&cls.netcon->message, va("prespawn %i 0 %i", cl.qw_servercount, cl.model_precache[1]->brush.qw_md4sum2));
504
505                 if (cls.qw_downloadmemory)
506                 {
507                         Mem_Free(cls.qw_downloadmemory);
508                         cls.qw_downloadmemory = NULL;
509                 }
510                 break;
511         case dl_sound:
512                 if (cls.qw_downloadnumber == 0)
513                 {
514                         Con_Printf("Checking sounds...\n");
515                         cls.qw_downloadnumber = 1;
516                 }
517
518                 for (;cl.sound_name[cls.qw_downloadnumber][0];cls.qw_downloadnumber++)
519                 {
520                         // check if we need to download the file, and return if so
521                         if (!QW_CL_CheckOrDownloadFile(va("sound/%s", cl.sound_name[cls.qw_downloadnumber])))
522                                 return;
523                 }
524
525                 cls.qw_downloadtype = dl_none;
526
527                 // load new sounds and unload old ones
528                 // FIXME: S_ServerSounds does not know about cl.sfx_ sounds
529                 S_ServerSounds(cl.sound_name, cls.qw_downloadnumber);
530
531                 // precache any sounds used by the client
532                 cl.sfx_wizhit = S_PrecacheSound(cl_sound_wizardhit.string, false, true);
533                 cl.sfx_knighthit = S_PrecacheSound(cl_sound_hknighthit.string, false, true);
534                 cl.sfx_tink1 = S_PrecacheSound(cl_sound_tink1.string, false, true);
535                 cl.sfx_ric1 = S_PrecacheSound(cl_sound_ric1.string, false, true);
536                 cl.sfx_ric2 = S_PrecacheSound(cl_sound_ric2.string, false, true);
537                 cl.sfx_ric3 = S_PrecacheSound(cl_sound_ric3.string, false, true);
538                 cl.sfx_r_exp3 = S_PrecacheSound(cl_sound_r_exp3.string, false, true);
539
540                 // sounds
541                 for (i = 1;i < MAX_SOUNDS && cl.sound_name[i][0];i++)
542                 {
543                         // Don't lock the sfx here, S_ServerSounds already did that
544                         cl.sound_precache[i] = S_PrecacheSound(cl.sound_name[i], true, false);
545                 }
546
547                 // check memory integrity
548                 Mem_CheckSentinelsGlobal();
549
550                 // done with sound downloads, next we check models
551                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
552                 MSG_WriteString(&cls.netcon->message, va("modellist %i %i", cl.qw_servercount, 0));
553                 break;
554         case dl_none:
555         default:
556                 Con_Printf("Unknown download type.\n");
557         }
558 }
559
560 static void QW_CL_ParseDownload(void)
561 {
562         int size = (signed short)MSG_ReadShort();
563         int percent = MSG_ReadByte();
564
565         //Con_Printf("download %i %i%% (%i/%i)\n", size, percent, cls.qw_downloadmemorycursize, cls.qw_downloadmemorymaxsize);
566
567         // skip the download fragment if playing a demo
568         if (!cls.netcon)
569         {
570                 if (size > 0)
571                         msg_readcount += size;
572                 return;
573         }
574
575         if (size == -1)
576         {
577                 Con_Printf("File not found.\n");
578                 QW_CL_RequestNextDownload();
579                 return;
580         }
581
582         if (msg_readcount + (unsigned short)size > net_message.cursize)
583                 Host_Error("corrupt download message\n");
584
585         // make sure the buffer is big enough to include this new fragment
586         if (!cls.qw_downloadmemory || cls.qw_downloadmemorymaxsize < cls.qw_downloadmemorycursize + size)
587         {
588                 unsigned char *old;
589                 while (cls.qw_downloadmemorymaxsize < cls.qw_downloadmemorycursize + size)
590                         cls.qw_downloadmemorymaxsize *= 2;
591                 old = cls.qw_downloadmemory;
592                 cls.qw_downloadmemory = (unsigned char *)Mem_Alloc(cls.permanentmempool, cls.qw_downloadmemorymaxsize);
593                 if (old)
594                 {
595                         memcpy(cls.qw_downloadmemory, old, cls.qw_downloadmemorycursize);
596                         Mem_Free(old);
597                 }
598         }
599
600         // read the fragment out of the packet
601         MSG_ReadBytes(size, cls.qw_downloadmemory + cls.qw_downloadmemorycursize);
602         cls.qw_downloadmemorycursize += size;
603
604         cls.qw_downloadpercent = percent;
605
606         if (percent != 100)
607         {
608                 // request next fragment
609                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
610                 MSG_WriteString(&cls.netcon->message, "nextdl");
611         }
612         else
613         {
614                 // finished file
615                 Con_Printf("Downloaded \"%s\"\n", cls.qw_downloadname);
616
617                 FS_WriteFile(cls.qw_downloadname, cls.qw_downloadmemory, cls.qw_downloadmemorycursize);
618
619                 cls.qw_downloadpercent = 0;
620
621                 // start downloading the next file (or join the game)
622                 QW_CL_RequestNextDownload();
623         }
624 }
625
626 static void QW_CL_ParseModelList(void)
627 {
628         int n;
629         int nummodels = MSG_ReadByte();
630         char *str;
631
632         // parse model precache list
633         for (;;)
634         {
635                 str = MSG_ReadString();
636                 if (!str[0])
637                         break;
638                 nummodels++;
639                 if (nummodels==MAX_MODELS)
640                         Host_Error("Server sent too many model precaches");
641                 if (strlen(str) >= MAX_QPATH)
642                         Host_Error("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
643                 strlcpy(cl.model_name[nummodels], str, sizeof (cl.model_name[nummodels]));
644         }
645
646         n = MSG_ReadByte();
647         if (n)
648         {
649                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
650                 MSG_WriteString(&cls.netcon->message, va("modellist %i %i", cl.qw_servercount, n));
651                 return;
652         }
653
654         cls.signon = 2;
655         cls.qw_downloadnumber = 0;
656         cls.qw_downloadtype = dl_model;
657         QW_CL_RequestNextDownload();
658 }
659
660 static void QW_CL_ParseSoundList(void)
661 {
662         int n;
663         int numsounds = MSG_ReadByte();
664         char *str;
665
666         // parse sound precache list
667         for (;;)
668         {
669                 str = MSG_ReadString();
670                 if (!str[0])
671                         break;
672                 numsounds++;
673                 if (numsounds==MAX_SOUNDS)
674                         Host_Error("Server sent too many sound precaches");
675                 if (strlen(str) >= MAX_QPATH)
676                         Host_Error("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
677                 strlcpy(cl.sound_name[numsounds], str, sizeof (cl.sound_name[numsounds]));
678         }
679
680         n = MSG_ReadByte();
681
682         if (n)
683         {
684                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
685                 MSG_WriteString(&cls.netcon->message, va("soundlist %i %i", cl.qw_servercount, n));
686                 return;
687         }
688
689         cls.signon = 2;
690         cls.qw_downloadnumber = 0;
691         cls.qw_downloadtype = dl_sound;
692         QW_CL_RequestNextDownload();
693 }
694
695 static void QW_CL_Skins_f(void)
696 {
697         cls.qw_downloadnumber = 0;
698         cls.qw_downloadtype = dl_skin;
699         QW_CL_RequestNextDownload();
700 }
701
702 static void QW_CL_Changing_f(void)
703 {
704         if (cls.qw_downloadmemory)  // don't change when downloading
705                 return;
706
707         S_StopAllSounds();
708         cl.intermission = 0;
709         cls.signon = 1; // not active anymore, but not disconnected
710         Con_Printf("\nChanging map...\n");
711 }
712
713 void QW_CL_NextUpload(void)
714 {
715         int r, percent, size;
716
717         if (!cls.qw_uploaddata)
718                 return;
719
720         r = cls.qw_uploadsize - cls.qw_uploadpos;
721         if (r > 768)
722                 r = 768;
723         size = min(1, cls.qw_uploadsize);
724         percent = (cls.qw_uploadpos+r)*100/size;
725
726         MSG_WriteByte(&cls.netcon->message, qw_clc_upload);
727         MSG_WriteShort(&cls.netcon->message, r);
728         MSG_WriteByte(&cls.netcon->message, percent);
729         SZ_Write(&cls.netcon->message, cls.qw_uploaddata + cls.qw_uploadpos, r);
730
731         Con_DPrintf("UPLOAD: %6d: %d written\n", cls.qw_uploadpos, r);
732
733         cls.qw_uploadpos += r;
734
735         if (cls.qw_uploadpos < cls.qw_uploadsize)
736                 return;
737
738         Con_Printf("Upload completed\n");
739
740         QW_CL_StopUpload();
741 }
742
743 void QW_CL_StartUpload(unsigned char *data, int size)
744 {
745         // do nothing in demos or if not connected
746         if (!cls.netcon)
747                 return;
748
749         // abort existing upload if in progress
750         QW_CL_StopUpload();
751
752         Con_DPrintf("Starting upload of %d bytes...\n", size);
753
754         cls.qw_uploaddata = (unsigned char *)Mem_Alloc(cls.permanentmempool, size);
755         memcpy(cls.qw_uploaddata, data, size);
756         cls.qw_uploadsize = size;
757         cls.qw_uploadpos = 0;
758
759         QW_CL_NextUpload();
760 }
761
762 #if 0
763 qboolean QW_CL_IsUploading(void)
764 {
765         return cls.qw_uploaddata != NULL;
766 }
767 #endif
768
769 void QW_CL_StopUpload(void)
770 {
771         if (cls.qw_uploaddata)
772                 Mem_Free(cls.qw_uploaddata);
773         cls.qw_uploaddata = NULL;
774         cls.qw_uploadsize = 0;
775         cls.qw_uploadpos = 0;
776 }
777
778 static void QW_CL_ProcessUserInfo(int slot)
779 {
780         int topcolor, bottomcolor;
781         char temp[2048];
782         InfoString_GetValue(cl.scores[slot].qw_userinfo, "name", cl.scores[slot].name, sizeof(cl.scores[slot].name));
783         InfoString_GetValue(cl.scores[slot].qw_userinfo, "topcolor", temp, sizeof(temp));topcolor = atoi(temp);
784         InfoString_GetValue(cl.scores[slot].qw_userinfo, "bottomcolor", temp, sizeof(temp));bottomcolor = atoi(temp);
785         cl.scores[slot].colors = topcolor * 16 + bottomcolor;
786         InfoString_GetValue(cl.scores[slot].qw_userinfo, "*spectator", temp, sizeof(temp));
787         cl.scores[slot].qw_spectator = temp[0] != 0;
788         InfoString_GetValue(cl.scores[slot].qw_userinfo, "team", cl.scores[slot].qw_team, sizeof(cl.scores[slot].qw_team));
789         InfoString_GetValue(cl.scores[slot].qw_userinfo, "skin", cl.scores[slot].qw_skin, sizeof(cl.scores[slot].qw_skin));
790         if (!cl.scores[slot].qw_skin[0])
791                 strlcpy(cl.scores[slot].qw_skin, "base", sizeof(cl.scores[slot].qw_skin));
792         // TODO: skin cache
793 }
794
795 static void QW_CL_UpdateUserInfo(void)
796 {
797         int slot;
798         slot = MSG_ReadByte();
799         if (slot >= cl.maxclients)
800         {
801                 Con_Printf("svc_updateuserinfo >= cl.maxclients\n");
802                 MSG_ReadLong();
803                 MSG_ReadString();
804                 return;
805         }
806         cl.scores[slot].qw_userid = MSG_ReadLong();
807         strlcpy(cl.scores[slot].qw_userinfo, MSG_ReadString(), sizeof(cl.scores[slot].qw_userinfo));
808
809         QW_CL_ProcessUserInfo(slot);
810 }
811
812 static void QW_CL_SetInfo(void)
813 {
814         int slot;
815         char key[2048];
816         char value[2048];
817         slot = MSG_ReadByte();
818         strlcpy(key, MSG_ReadString(), sizeof(key));
819         strlcpy(value, MSG_ReadString(), sizeof(value));
820         if (slot >= cl.maxclients)
821         {
822                 Con_Printf("svc_setinfo >= cl.maxclients\n");
823                 return;
824         }
825         InfoString_SetValue(cl.scores[slot].qw_userinfo, sizeof(cl.scores[slot].qw_userinfo), key, value);
826
827         QW_CL_ProcessUserInfo(slot);
828 }
829
830 static void QW_CL_ServerInfo(void)
831 {
832         char key[2048];
833         char value[2048];
834         char temp[32];
835         strlcpy(key, MSG_ReadString(), sizeof(key));
836         strlcpy(value, MSG_ReadString(), sizeof(value));
837         Con_DPrintf("SERVERINFO: %s=%s\n", key, value);
838         InfoString_SetValue(cl.qw_serverinfo, sizeof(cl.qw_serverinfo), key, value);
839         InfoString_GetValue(cl.qw_serverinfo, "teamplay", temp, sizeof(temp));
840         cl.qw_teamplay = atoi(temp);
841 }
842
843 static void QW_CL_ParseNails(void)
844 {
845         int i, j;
846         int numnails = MSG_ReadByte();
847         vec_t *v;
848         unsigned char bits[6];
849         for (i = 0;i < numnails;i++)
850         {
851                 for (j = 0;j < 6;j++)
852                         bits[j] = MSG_ReadByte();
853                 if (cl.qw_num_nails > 255)
854                         continue;
855                 v = cl.qw_nails[cl.qw_num_nails++];
856                 v[0] = ( ( bits[0] + ((bits[1]&15)<<8) ) <<1) - 4096;
857                 v[1] = ( ( (bits[1]>>4) + (bits[2]<<4) ) <<1) - 4096;
858                 v[2] = ( ( bits[3] + ((bits[4]&15)<<8) ) <<1) - 4096;
859                 v[3] = -360*(bits[4]>>4)/16;
860                 v[4] = 360*bits[5]/256;
861                 v[5] = 0;
862         }
863 }
864
865 static void CL_UpdateItemsAndWeapon(void)
866 {
867         int j;
868         // check for important changes
869
870         // set flash times
871         if (cl.olditems != cl.stats[STAT_ITEMS])
872                 for (j = 0;j < 32;j++)
873                         if ((cl.stats[STAT_ITEMS] & (1<<j)) && !(cl.olditems & (1<<j)))
874                                 cl.item_gettime[j] = cl.time;
875         cl.olditems = cl.stats[STAT_ITEMS];
876
877         // GAME_NEXUIZ hud needs weapon change time
878         if (cl.activeweapon != cl.stats[STAT_ACTIVEWEAPON])
879                 cl.weapontime = cl.time;
880         cl.activeweapon = cl.stats[STAT_ACTIVEWEAPON];
881 }
882
883 /*
884 =====================
885 CL_SignonReply
886
887 An svc_signonnum has been received, perform a client side setup
888 =====================
889 */
890 static void CL_SignonReply (void)
891 {
892         Con_DPrintf("CL_SignonReply: %i\n", cls.signon);
893
894         switch (cls.signon)
895         {
896         case 1:
897                 if (cls.netcon)
898                 {
899                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
900                         MSG_WriteString (&cls.netcon->message, "prespawn");
901                 }
902                 break;
903
904         case 2:
905                 if (cls.netcon)
906                 {
907                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
908                         MSG_WriteString (&cls.netcon->message, va("name \"%s\"", cl_name.string));
909
910                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
911                         MSG_WriteString (&cls.netcon->message, va("color %i %i", cl_color.integer >> 4, cl_color.integer & 15));
912
913                         if (cl_pmodel.integer)
914                         {
915                                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
916                                 MSG_WriteString (&cls.netcon->message, va("pmodel %i", cl_pmodel.integer));
917                         }
918                         if (*cl_playermodel.string)
919                         {
920                                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
921                                 MSG_WriteString (&cls.netcon->message, va("playermodel %s", cl_playermodel.string));
922                         }
923                         if (*cl_playerskin.string)
924                         {
925                                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
926                                 MSG_WriteString (&cls.netcon->message, va("playerskin %s", cl_playerskin.string));
927                         }
928
929                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
930                         MSG_WriteString (&cls.netcon->message, va("rate %i", cl_rate.integer));
931
932                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
933                         MSG_WriteString (&cls.netcon->message, "spawn");
934                 }
935                 break;
936
937         case 3:
938                 if (cls.netcon)
939                 {
940                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
941                         MSG_WriteString (&cls.netcon->message, "begin");
942                 }
943                 break;
944
945         case 4:
946                 Con_ClearNotify();
947                 break;
948         }
949 }
950
951 /*
952 ==================
953 CL_ParseServerInfo
954 ==================
955 */
956 void CL_ParseServerInfo (void)
957 {
958         char *str;
959         int i;
960         protocolversion_t protocol;
961         int nummodels, numsounds;
962
963         Con_DPrint("Serverinfo packet received.\n");
964
965         // if server is active, we already began a loading plaque
966         if (!sv.active)
967                 SCR_BeginLoadingPlaque();
968
969         // check memory integrity
970         Mem_CheckSentinelsGlobal();
971
972 //
973 // wipe the client_state_t struct
974 //
975         CL_ClearState ();
976
977 // parse protocol version number
978         i = MSG_ReadLong ();
979         protocol = Protocol_EnumForNumber(i);
980         if (protocol == PROTOCOL_UNKNOWN)
981         {
982                 Host_Error("CL_ParseServerInfo: Server is unrecognized protocol number (%i)", i);
983                 return;
984         }
985         // hack for unmarked Nehahra movie demos which had a custom protocol
986         if (protocol == PROTOCOL_QUAKEDP && cls.demoplayback && demo_nehahra.integer)
987                 protocol = PROTOCOL_NEHAHRAMOVIE;
988         cls.protocol = protocol;
989         Con_DPrintf("Server protocol is %s\n", Protocol_NameForEnum(cls.protocol));
990
991         cl.num_entities = 1;
992
993         if (protocol == PROTOCOL_QUAKEWORLD)
994         {
995                 cl.qw_servercount = MSG_ReadLong();
996
997                 str = MSG_ReadString();
998                 Con_Printf("server gamedir is %s\n", str);
999 #if 0
1000                 // FIXME: change gamedir if needed!
1001                 if (strcasecmp(gamedirfile, str))
1002                 {
1003                         Host_SaveConfig_f();
1004                         cflag = 1;
1005                 }
1006
1007                 Com_Gamedir(str); // change gamedir
1008
1009                 if (cflag)
1010                 {
1011                         // exec the new config stuff
1012                 }
1013 #endif
1014
1015                 cl.gametype = GAME_DEATHMATCH;
1016                 cl.maxclients = 32;
1017
1018                 // parse player number
1019                 i = MSG_ReadByte();
1020                 cl.qw_spectator = (i & 128) != 0;
1021                 cl.playerentity = cl.viewentity = (i & 127) + 1;
1022                 cl.scores = (scoreboard_t *)Mem_Alloc(cls.levelmempool, cl.maxclients*sizeof(*cl.scores));
1023
1024                 // get the full level name
1025                 str = MSG_ReadString ();
1026                 strlcpy (cl.levelname, str, sizeof(cl.levelname));
1027
1028                 // get the movevars
1029                 cl.qw_movevars_gravity            = MSG_ReadFloat();
1030                 cl.qw_movevars_stopspeed          = MSG_ReadFloat();
1031                 cl.qw_movevars_maxspeed           = MSG_ReadFloat();
1032                 cl.qw_movevars_spectatormaxspeed  = MSG_ReadFloat();
1033                 cl.qw_movevars_accelerate         = MSG_ReadFloat();
1034                 cl.qw_movevars_airaccelerate      = MSG_ReadFloat();
1035                 cl.qw_movevars_wateraccelerate    = MSG_ReadFloat();
1036                 cl.qw_movevars_friction           = MSG_ReadFloat();
1037                 cl.qw_movevars_waterfriction      = MSG_ReadFloat();
1038                 cl.qw_movevars_entgravity         = MSG_ReadFloat();
1039
1040                 // seperate the printfs so the server message can have a color
1041                 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);
1042
1043                 // check memory integrity
1044                 Mem_CheckSentinelsGlobal();
1045
1046                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
1047                 MSG_WriteString(&cls.netcon->message, va("soundlist %i %i", cl.qw_servercount, 0));
1048
1049                 cls.state = ca_connected;
1050                 cls.signon = 1;
1051
1052                 // note: on QW protocol we can't set up the gameworld until after
1053                 // downloads finish...
1054                 // (we don't even know the name of the map yet)
1055         }
1056         else
1057         {
1058         // parse maxclients
1059                 cl.maxclients = MSG_ReadByte ();
1060                 if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD)
1061                 {
1062                         Host_Error("Bad maxclients (%u) from server", cl.maxclients);
1063                         return;
1064                 }
1065                 cl.scores = (scoreboard_t *)Mem_Alloc(cls.levelmempool, cl.maxclients*sizeof(*cl.scores));
1066
1067         // parse gametype
1068                 cl.gametype = MSG_ReadByte ();
1069
1070         // parse signon message
1071                 str = MSG_ReadString ();
1072                 strlcpy (cl.levelname, str, sizeof(cl.levelname));
1073
1074         // seperate the printfs so the server message can have a color
1075                 if (cls.protocol != PROTOCOL_NEHAHRAMOVIE) // no messages when playing the Nehahra movie
1076                         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);
1077
1078                 // check memory integrity
1079                 Mem_CheckSentinelsGlobal();
1080
1081                 // parse model precache list
1082                 for (nummodels=1 ; ; nummodels++)
1083                 {
1084                         str = MSG_ReadString();
1085                         if (!str[0])
1086                                 break;
1087                         if (nummodels==MAX_MODELS)
1088                                 Host_Error ("Server sent too many model precaches");
1089                         if (strlen(str) >= MAX_QPATH)
1090                                 Host_Error ("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
1091                         strlcpy (cl.model_name[nummodels], str, sizeof (cl.model_name[nummodels]));
1092                 }
1093                 // parse sound precache list
1094                 for (numsounds=1 ; ; numsounds++)
1095                 {
1096                         str = MSG_ReadString();
1097                         if (!str[0])
1098                                 break;
1099                         if (numsounds==MAX_SOUNDS)
1100                                 Host_Error("Server sent too many sound precaches");
1101                         if (strlen(str) >= MAX_QPATH)
1102                                 Host_Error("Server sent a precache name of %i characters (max %i)", strlen(str), MAX_QPATH - 1);
1103                         strlcpy (cl.sound_name[numsounds], str, sizeof (cl.sound_name[numsounds]));
1104                 }
1105
1106                 // touch all of the precached models that are still loaded so we can free
1107                 // anything that isn't needed
1108                 Mod_ClearUsed();
1109                 for (i = 1;i < nummodels;i++)
1110                         Mod_FindName(cl.model_name[i]);
1111                 // precache any models used by the client (this also marks them used)
1112                 cl.model_bolt = Mod_ForName("progs/bolt.mdl", false, false, false);
1113                 cl.model_bolt2 = Mod_ForName("progs/bolt2.mdl", false, false, false);
1114                 cl.model_bolt3 = Mod_ForName("progs/bolt3.mdl", false, false, false);
1115                 cl.model_beam = Mod_ForName("progs/beam.mdl", false, false, false);
1116                 Mod_PurgeUnused();
1117
1118                 // do the same for sounds
1119                 // FIXME: S_ServerSounds does not know about cl.sfx_ sounds
1120                 S_ServerSounds (cl.sound_name, numsounds);
1121
1122                 // precache any sounds used by the client
1123                 cl.sfx_wizhit = S_PrecacheSound(cl_sound_wizardhit.string, false, true);
1124                 cl.sfx_knighthit = S_PrecacheSound(cl_sound_hknighthit.string, false, true);
1125                 cl.sfx_tink1 = S_PrecacheSound(cl_sound_tink1.string, false, true);
1126                 cl.sfx_ric1 = S_PrecacheSound(cl_sound_ric1.string, false, true);
1127                 cl.sfx_ric2 = S_PrecacheSound(cl_sound_ric2.string, false, true);
1128                 cl.sfx_ric3 = S_PrecacheSound(cl_sound_ric3.string, false, true);
1129                 cl.sfx_r_exp3 = S_PrecacheSound(cl_sound_r_exp3.string, false, true);
1130
1131                 // now we try to load everything that is new
1132
1133                 // world model
1134                 CL_KeepaliveMessage ();
1135                 cl.model_precache[1] = Mod_ForName(cl.model_name[1], false, false, true);
1136                 if (cl.model_precache[1]->Draw == NULL)
1137                         Con_Printf("Map %s not found\n", cl.model_name[1]);
1138
1139                 // normal models
1140                 for (i=2 ; i<nummodels ; i++)
1141                 {
1142                         CL_KeepaliveMessage();
1143                         if ((cl.model_precache[i] = Mod_ForName(cl.model_name[i], false, false, false))->Draw == NULL)
1144                                 Con_Printf("Model %s not found\n", cl.model_name[i]);
1145                 }
1146
1147                 // sounds
1148                 for (i=1 ; i<numsounds ; i++)
1149                 {
1150                         CL_KeepaliveMessage();
1151                         // Don't lock the sfx here, S_ServerSounds already did that
1152                         cl.sound_precache[i] = S_PrecacheSound (cl.sound_name[i], true, false);
1153                 }
1154
1155                 // we now have the worldmodel so we can set up the game world
1156                 cl.entities[0].render.model = cl.worldmodel = cl.model_precache[1];
1157                 CL_BoundingBoxForEntity(&cl.entities[0].render);
1158                 R_Modules_NewMap();
1159         }
1160
1161         // check memory integrity
1162         Mem_CheckSentinelsGlobal();
1163 }
1164
1165 void CL_ValidateState(entity_state_t *s)
1166 {
1167         model_t *model;
1168
1169         if (!s->active)
1170                 return;
1171
1172         if (s->modelindex >= MAX_MODELS && (65536-s->modelindex) >= MAX_MODELS)
1173                 Host_Error("CL_ValidateState: modelindex (%i) >= MAX_MODELS (%i)\n", s->modelindex, MAX_MODELS);
1174
1175         // colormap is client index + 1
1176         if ((!s->flags & RENDER_COLORMAPPED) && s->colormap > cl.maxclients)
1177         {
1178                 Con_DPrintf("CL_ValidateState: colormap (%i) > cl.maxclients (%i)\n", s->colormap, cl.maxclients);
1179                 s->colormap = 0;
1180         }
1181
1182         model = cl.model_precache[s->modelindex];
1183         if (model && model->type && s->frame >= model->numframes)
1184         {
1185                 Con_DPrintf("CL_ValidateState: no such frame %i in \"%s\" (which has %i frames)\n", s->frame, model->name, model->numframes);
1186                 s->frame = 0;
1187         }
1188         if (model && model->type && s->skin > 0 && s->skin >= model->numskins && !(s->lightpflags & PFLAGS_FULLDYNAMIC))
1189         {
1190                 Con_DPrintf("CL_ValidateState: no such skin %i in \"%s\" (which has %i skins)\n", s->skin, model->name, model->numskins);
1191                 s->skin = 0;
1192         }
1193 }
1194
1195 void CL_MoveLerpEntityStates(entity_t *ent)
1196 {
1197         float odelta[3], adelta[3];
1198         CL_ValidateState(&ent->state_current);
1199         VectorSubtract(ent->state_current.origin, ent->persistent.neworigin, odelta);
1200         VectorSubtract(ent->state_current.angles, ent->persistent.newangles, adelta);
1201         if (!ent->state_previous.active || ent->state_previous.modelindex != ent->state_current.modelindex)
1202         {
1203                 // reset all persistent stuff if this is a new entity
1204                 ent->persistent.lerpdeltatime = 0;
1205                 ent->persistent.lerpstarttime = cl.mtime[1];
1206                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
1207                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
1208                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1209                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1210                 // reset animation interpolation as well
1211                 ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_current.frame;
1212                 ent->render.frame1time = ent->render.frame2time = cl.time;
1213                 ent->render.framelerp = 1;
1214                 // reset various persistent stuff
1215                 ent->persistent.muzzleflash = 0;
1216                 VectorCopy(ent->state_current.origin, ent->persistent.trail_origin);
1217         }
1218         else if (cls.timedemo || cl_nolerp.integer || DotProduct(odelta, odelta) > 1000*1000 || (cl.fixangle[0] && !cl.fixangle[1]))
1219         {
1220                 // don't interpolate the move
1221                 // (the fixangle[] check detects teleports, but not constant fixangles
1222                 //  such as when spectating)
1223                 ent->persistent.lerpdeltatime = 0;
1224                 ent->persistent.lerpstarttime = cl.mtime[1];
1225                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
1226                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
1227                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1228                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1229         }
1230         else if (ent->state_current.flags & RENDER_STEP)
1231         {
1232                 // monster interpolation
1233                 if (DotProduct(odelta, odelta) + DotProduct(adelta, adelta) > 0.01)
1234                 {
1235                         ent->persistent.lerpdeltatime = bound(0, cl.mtime[1] - ent->persistent.lerpstarttime, 0.1);
1236                         ent->persistent.lerpstarttime = cl.mtime[1];
1237                         VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
1238                         VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
1239                         VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1240                         VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1241                 }
1242         }
1243         else
1244         {
1245                 // not a monster
1246                 ent->persistent.lerpstarttime = ent->state_previous.time;
1247                 // no lerp if it's singleplayer
1248                 if (cl.islocalgame && !sv_fixedframeratesingleplayer.integer)
1249                         ent->persistent.lerpdeltatime = 0;
1250                 else
1251                         ent->persistent.lerpdeltatime = bound(0, ent->state_current.time - ent->state_previous.time, 0.1);
1252                 VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
1253                 VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
1254                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1255                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1256         }
1257 }
1258
1259 /*
1260 ==================
1261 CL_ParseBaseline
1262 ==================
1263 */
1264 void CL_ParseBaseline (entity_t *ent, int large)
1265 {
1266         int i;
1267
1268         ent->state_baseline = defaultstate;
1269         // FIXME: set ent->state_baseline.number?
1270         ent->state_baseline.active = true;
1271         if (large)
1272         {
1273                 ent->state_baseline.modelindex = (unsigned short) MSG_ReadShort ();
1274                 ent->state_baseline.frame = (unsigned short) MSG_ReadShort ();
1275         }
1276         else
1277         {
1278                 ent->state_baseline.modelindex = MSG_ReadByte ();
1279                 ent->state_baseline.frame = MSG_ReadByte ();
1280         }
1281         ent->state_baseline.colormap = MSG_ReadByte();
1282         ent->state_baseline.skin = MSG_ReadByte();
1283         for (i = 0;i < 3;i++)
1284         {
1285                 ent->state_baseline.origin[i] = MSG_ReadCoord(cls.protocol);
1286                 ent->state_baseline.angles[i] = MSG_ReadAngle(cls.protocol);
1287         }
1288         CL_ValidateState(&ent->state_baseline);
1289         ent->state_previous = ent->state_current = ent->state_baseline;
1290 }
1291
1292
1293 /*
1294 ==================
1295 CL_ParseClientdata
1296
1297 Server information pertaining to this client only
1298 ==================
1299 */
1300 void CL_ParseClientdata (void)
1301 {
1302         int i, bits;
1303
1304         VectorCopy (cl.mpunchangle[0], cl.mpunchangle[1]);
1305         VectorCopy (cl.mpunchvector[0], cl.mpunchvector[1]);
1306         VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
1307         cl.mviewzoom[1] = cl.mviewzoom[0];
1308
1309         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4 || cls.protocol == PROTOCOL_DARKPLACES5)
1310         {
1311                 cl.stats[STAT_VIEWHEIGHT] = DEFAULT_VIEWHEIGHT;
1312                 cl.stats[STAT_ITEMS] = 0;
1313                 cl.stats[STAT_VIEWZOOM] = 255;
1314         }
1315         cl.idealpitch = 0;
1316         cl.mpunchangle[0][0] = 0;
1317         cl.mpunchangle[0][1] = 0;
1318         cl.mpunchangle[0][2] = 0;
1319         cl.mpunchvector[0][0] = 0;
1320         cl.mpunchvector[0][1] = 0;
1321         cl.mpunchvector[0][2] = 0;
1322         cl.mvelocity[0][0] = 0;
1323         cl.mvelocity[0][1] = 0;
1324         cl.mvelocity[0][2] = 0;
1325         cl.mviewzoom[0] = 1;
1326
1327         bits = (unsigned short) MSG_ReadShort ();
1328         if (bits & SU_EXTEND1)
1329                 bits |= (MSG_ReadByte() << 16);
1330         if (bits & SU_EXTEND2)
1331                 bits |= (MSG_ReadByte() << 24);
1332
1333         if (bits & SU_VIEWHEIGHT)
1334                 cl.stats[STAT_VIEWHEIGHT] = MSG_ReadChar ();
1335
1336         if (bits & SU_IDEALPITCH)
1337                 cl.idealpitch = MSG_ReadChar ();
1338
1339         for (i = 0;i < 3;i++)
1340         {
1341                 if (bits & (SU_PUNCH1<<i) )
1342                 {
1343                         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE)
1344                                 cl.mpunchangle[0][i] = MSG_ReadChar();
1345                         else
1346                                 cl.mpunchangle[0][i] = MSG_ReadAngle16i();
1347                 }
1348                 if (bits & (SU_PUNCHVEC1<<i))
1349                 {
1350                         if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
1351                                 cl.mpunchvector[0][i] = MSG_ReadCoord16i();
1352                         else
1353                                 cl.mpunchvector[0][i] = MSG_ReadCoord32f();
1354                 }
1355                 if (bits & (SU_VELOCITY1<<i) )
1356                 {
1357                         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
1358                                 cl.mvelocity[0][i] = MSG_ReadChar()*16;
1359                         else
1360                                 cl.mvelocity[0][i] = MSG_ReadCoord32f();
1361                 }
1362         }
1363
1364         // LordHavoc: hipnotic demos don't have this bit set but should
1365         if (bits & SU_ITEMS || cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4 || cls.protocol == PROTOCOL_DARKPLACES5)
1366                 cl.stats[STAT_ITEMS] = MSG_ReadLong ();
1367
1368         cl.onground = (bits & SU_ONGROUND) != 0;
1369         csqc_onground = cl.onground;    //[515]: cause without this csqc will receive not right value on svc_print =/
1370         cl.inwater = (bits & SU_INWATER) != 0;
1371
1372         if (cls.protocol == PROTOCOL_DARKPLACES5)
1373         {
1374                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadShort() : 0;
1375                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadShort() : 0;
1376                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadShort() : 0;
1377                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
1378                 cl.stats[STAT_AMMO] = MSG_ReadShort();
1379                 cl.stats[STAT_SHELLS] = MSG_ReadShort();
1380                 cl.stats[STAT_NAILS] = MSG_ReadShort();
1381                 cl.stats[STAT_ROCKETS] = MSG_ReadShort();
1382                 cl.stats[STAT_CELLS] = MSG_ReadShort();
1383                 cl.stats[STAT_ACTIVEWEAPON] = (unsigned short) MSG_ReadShort ();
1384         }
1385         else if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
1386         {
1387                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadByte() : 0;
1388                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadByte() : 0;
1389                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadByte() : 0;
1390                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
1391                 cl.stats[STAT_AMMO] = MSG_ReadByte();
1392                 cl.stats[STAT_SHELLS] = MSG_ReadByte();
1393                 cl.stats[STAT_NAILS] = MSG_ReadByte();
1394                 cl.stats[STAT_ROCKETS] = MSG_ReadByte();
1395                 cl.stats[STAT_CELLS] = MSG_ReadByte();
1396                 if (gamemode == GAME_HIPNOTIC || gamemode == GAME_ROGUE || gamemode == GAME_NEXUIZ)
1397                         cl.stats[STAT_ACTIVEWEAPON] = (1<<MSG_ReadByte ());
1398                 else
1399                         cl.stats[STAT_ACTIVEWEAPON] = MSG_ReadByte ();
1400         }
1401
1402         if (bits & SU_VIEWZOOM)
1403         {
1404                 if (cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
1405                         cl.stats[STAT_VIEWZOOM] = MSG_ReadByte();
1406                 else
1407                         cl.stats[STAT_VIEWZOOM] = (unsigned short) MSG_ReadShort();
1408         }
1409
1410         // viewzoom interpolation
1411         cl.mviewzoom[0] = (float) max(cl.stats[STAT_VIEWZOOM], 2) * (1.0f / 255.0f);
1412 }
1413
1414 /*
1415 =====================
1416 CL_ParseStatic
1417 =====================
1418 */
1419 void CL_ParseStatic (int large)
1420 {
1421         entity_t *ent;
1422
1423         if (cl.num_static_entities >= cl.max_static_entities)
1424                 Host_Error ("Too many static entities");
1425         ent = &cl.static_entities[cl.num_static_entities++];
1426         CL_ParseBaseline (ent, large);
1427
1428 // copy it to the current state
1429         ent->render.model = cl.model_precache[ent->state_baseline.modelindex];
1430         ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_baseline.frame;
1431         ent->render.framelerp = 0;
1432         // make torchs play out of sync
1433         ent->render.frame1time = ent->render.frame2time = lhrandom(-10, -1);
1434         ent->render.colormap = -1; // no special coloring
1435         ent->render.skinnum = ent->state_baseline.skin;
1436         ent->render.effects = ent->state_baseline.effects;
1437         ent->render.alpha = 1;
1438         //ent->render.scale = 1;
1439
1440         //VectorCopy (ent->state_baseline.origin, ent->render.origin);
1441         //VectorCopy (ent->state_baseline.angles, ent->render.angles);
1442
1443         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);
1444         Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
1445         CL_BoundingBoxForEntity(&ent->render);
1446
1447         // This is definitely cheating...
1448         if (ent->render.model == NULL)
1449                 cl.num_static_entities--;
1450 }
1451
1452 /*
1453 ===================
1454 CL_ParseStaticSound
1455 ===================
1456 */
1457 void CL_ParseStaticSound (int large)
1458 {
1459         vec3_t          org;
1460         int                     sound_num, vol, atten;
1461
1462         MSG_ReadVector(org, cls.protocol);
1463         if (large)
1464                 sound_num = (unsigned short) MSG_ReadShort ();
1465         else
1466                 sound_num = MSG_ReadByte ();
1467         vol = MSG_ReadByte ();
1468         atten = MSG_ReadByte ();
1469
1470         S_StaticSound (cl.sound_precache[sound_num], org, vol/255.0f, atten);
1471 }
1472
1473 void CL_ParseEffect (void)
1474 {
1475         vec3_t          org;
1476         int                     modelindex, startframe, framecount, framerate;
1477
1478         MSG_ReadVector(org, cls.protocol);
1479         modelindex = MSG_ReadByte ();
1480         startframe = MSG_ReadByte ();
1481         framecount = MSG_ReadByte ();
1482         framerate = MSG_ReadByte ();
1483
1484         CL_Effect(org, modelindex, startframe, framecount, framerate);
1485 }
1486
1487 void CL_ParseEffect2 (void)
1488 {
1489         vec3_t          org;
1490         int                     modelindex, startframe, framecount, framerate;
1491
1492         MSG_ReadVector(org, cls.protocol);
1493         modelindex = (unsigned short) MSG_ReadShort ();
1494         startframe = (unsigned short) MSG_ReadShort ();
1495         framecount = MSG_ReadByte ();
1496         framerate = MSG_ReadByte ();
1497
1498         CL_Effect(org, modelindex, startframe, framecount, framerate);
1499 }
1500
1501 void CL_ParseBeam (model_t *m, int lightning)
1502 {
1503         int i, ent;
1504         vec3_t start, end;
1505         beam_t *b = NULL;
1506
1507         ent = (unsigned short) MSG_ReadShort ();
1508         MSG_ReadVector(start, cls.protocol);
1509         MSG_ReadVector(end, cls.protocol);
1510
1511         if (ent >= MAX_EDICTS)
1512         {
1513                 Con_Printf("CL_ParseBeam: invalid entity number %i\n", ent);
1514                 ent = 0;
1515         }
1516
1517         if (ent >= cl.max_entities)
1518                 CL_ExpandEntities(ent);
1519
1520         // override any beam with the same entity
1521         i = cl.max_beams;
1522         if (ent)
1523                 for (i = 0, b = cl.beams;i < cl.max_beams;i++, b++)
1524                         if (b->entity == ent)
1525                                 break;
1526         // if the entity was not found then just replace an unused beam
1527         if (i == cl.max_beams)
1528                 for (i = 0, b = cl.beams;i < cl.max_beams;i++, b++)
1529                         if (!b->model || b->endtime < cl.time)
1530                                 break;
1531         if (i < cl.max_beams)
1532         {
1533                 cl.num_beams = max(cl.num_beams, i + 1);
1534                 b->entity = ent;
1535                 b->lightning = lightning;
1536                 b->model = m;
1537                 b->endtime = cl.time + 0.2;
1538                 VectorCopy (start, b->start);
1539                 VectorCopy (end, b->end);
1540                 b->relativestartvalid = 0;
1541                 if (ent && cl.entities[ent].state_current.active)
1542                 {
1543                         entity_state_t *p;
1544                         matrix4x4_t matrix, imatrix;
1545                         if (ent == cl.viewentity && cl.movement)
1546                                 p = &cl.entities[b->entity].state_previous;
1547                         else
1548                                 p = &cl.entities[b->entity].state_current;
1549                         // not really valid yet, we need to get the orientation now
1550                         // (ParseBeam flagged this because it is received before
1551                         //  entities are received, by now they have been received)
1552                         // note: because players create lightning in their think
1553                         // function (which occurs before movement), they actually
1554                         // have some lag in it's location, so compare to the
1555                         // previous player state, not the latest
1556                         Matrix4x4_CreateFromQuakeEntity(&matrix, p->origin[0], p->origin[1], p->origin[2], -p->angles[0], p->angles[1], p->angles[2], 1);
1557                         Matrix4x4_Invert_Simple(&imatrix, &matrix);
1558                         Matrix4x4_Transform(&imatrix, b->start, b->relativestart);
1559                         Matrix4x4_Transform(&imatrix, b->end, b->relativeend);
1560                         b->relativestartvalid = 1;
1561                 }
1562         }
1563         else
1564                 Con_Print("beam list overflow!\n");
1565 }
1566
1567 void CL_ParseTempEntity(void)
1568 {
1569         int type;
1570         vec3_t pos, pos2;
1571         vec3_t vel1, vel2;
1572         vec3_t dir;
1573         vec3_t color;
1574         int rnd;
1575         int colorStart, colorLength, count;
1576         float velspeed, radius;
1577         unsigned char *tempcolor;
1578         matrix4x4_t tempmatrix;
1579
1580         if (cls.protocol == PROTOCOL_QUAKEWORLD)
1581         {
1582                 type = MSG_ReadByte();
1583                 switch (type)
1584                 {
1585                 case QW_TE_WIZSPIKE:
1586                         // spike hitting wall
1587                         MSG_ReadVector(pos, cls.protocol);
1588                         CL_FindNonSolidLocation(pos, pos, 4);
1589                         CL_ParticleEffect(EFFECT_TE_WIZSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1590                         S_StartSound(-1, 0, cl.sfx_wizhit, pos, 1, 1);
1591                         break;
1592
1593                 case QW_TE_KNIGHTSPIKE:
1594                         // spike hitting wall
1595                         MSG_ReadVector(pos, cls.protocol);
1596                         CL_FindNonSolidLocation(pos, pos, 4);
1597                         CL_ParticleEffect(EFFECT_TE_KNIGHTSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1598                         S_StartSound(-1, 0, cl.sfx_knighthit, pos, 1, 1);
1599                         break;
1600
1601                 case QW_TE_SPIKE:
1602                         // spike hitting wall
1603                         MSG_ReadVector(pos, cls.protocol);
1604                         CL_FindNonSolidLocation(pos, pos, 4);
1605                         CL_ParticleEffect(EFFECT_TE_SPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1606                         if (rand() % 5)
1607                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1608                         else
1609                         {
1610                                 rnd = rand() & 3;
1611                                 if (rnd == 1)
1612                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1613                                 else if (rnd == 2)
1614                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1615                                 else
1616                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1617                         }
1618                         break;
1619                 case QW_TE_SUPERSPIKE:
1620                         // super spike hitting wall
1621                         MSG_ReadVector(pos, cls.protocol);
1622                         CL_FindNonSolidLocation(pos, pos, 4);
1623                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1624                         if (rand() % 5)
1625                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1626                         else
1627                         {
1628                                 rnd = rand() & 3;
1629                                 if (rnd == 1)
1630                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1631                                 else if (rnd == 2)
1632                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1633                                 else
1634                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1635                         }
1636                         break;
1637
1638                 case QW_TE_EXPLOSION:
1639                         // rocket explosion
1640                         MSG_ReadVector(pos, cls.protocol);
1641                         CL_FindNonSolidLocation(pos, pos, 10);
1642                         CL_ParticleEffect(EFFECT_TE_EXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1643                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1644                         CL_Effect(pos, cl.qw_modelindex_s_explod, 0, 6, 10);
1645                         break;
1646
1647                 case QW_TE_TAREXPLOSION:
1648                         // tarbaby explosion
1649                         MSG_ReadVector(pos, cls.protocol);
1650                         CL_FindNonSolidLocation(pos, pos, 10);
1651                         CL_ParticleEffect(EFFECT_TE_TAREXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1652                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1653                         break;
1654
1655                 case QW_TE_LIGHTNING1:
1656                         // lightning bolts
1657                         CL_ParseBeam(cl.model_bolt, true);
1658                         break;
1659
1660                 case QW_TE_LIGHTNING2:
1661                         // lightning bolts
1662                         CL_ParseBeam(cl.model_bolt2, true);
1663                         break;
1664
1665                 case QW_TE_LIGHTNING3:
1666                         // lightning bolts
1667                         CL_ParseBeam(cl.model_bolt3, false);
1668                         break;
1669
1670                 case QW_TE_LAVASPLASH:
1671                         MSG_ReadVector(pos, cls.protocol);
1672                         CL_ParticleEffect(EFFECT_TE_LAVASPLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1673                         break;
1674
1675                 case QW_TE_TELEPORT:
1676                         MSG_ReadVector(pos, cls.protocol);
1677                         CL_ParticleEffect(EFFECT_TE_TELEPORT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1678                         break;
1679
1680                 case QW_TE_GUNSHOT:
1681                         // bullet hitting wall
1682                         radius = MSG_ReadByte();
1683                         MSG_ReadVector(pos, cls.protocol);
1684                         CL_FindNonSolidLocation(pos, pos, 4);
1685                         VectorSet(pos2, pos[0] + radius, pos[1] + radius, pos[2] + radius);
1686                         VectorSet(pos, pos[0] - radius, pos[1] - radius, pos[2] - radius);
1687                         CL_ParticleEffect(EFFECT_TE_GUNSHOT, radius, pos, pos2, vec3_origin, vec3_origin, NULL, 0);
1688                         break;
1689
1690                 case QW_TE_BLOOD:
1691                         count = MSG_ReadByte();
1692                         MSG_ReadVector(pos, cls.protocol);
1693                         CL_FindNonSolidLocation(pos, pos, 4);
1694                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1695                         break;
1696
1697                 case QW_TE_LIGHTNINGBLOOD:
1698                         MSG_ReadVector(pos, cls.protocol);
1699                         CL_FindNonSolidLocation(pos, pos, 4);
1700                         CL_ParticleEffect(EFFECT_TE_BLOOD, 2.5, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1701                         break;
1702
1703                 default:
1704                         Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
1705                 }
1706         }
1707         else
1708         {
1709                 type = MSG_ReadByte();
1710                 switch (type)
1711                 {
1712                 case TE_WIZSPIKE:
1713                         // spike hitting wall
1714                         MSG_ReadVector(pos, cls.protocol);
1715                         CL_FindNonSolidLocation(pos, pos, 4);
1716                         CL_ParticleEffect(EFFECT_TE_WIZSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1717                         S_StartSound(-1, 0, cl.sfx_wizhit, pos, 1, 1);
1718                         break;
1719
1720                 case TE_KNIGHTSPIKE:
1721                         // spike hitting wall
1722                         MSG_ReadVector(pos, cls.protocol);
1723                         CL_FindNonSolidLocation(pos, pos, 4);
1724                         CL_ParticleEffect(EFFECT_TE_KNIGHTSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1725                         S_StartSound(-1, 0, cl.sfx_knighthit, pos, 1, 1);
1726                         break;
1727
1728                 case TE_SPIKE:
1729                         // spike hitting wall
1730                         MSG_ReadVector(pos, cls.protocol);
1731                         CL_FindNonSolidLocation(pos, pos, 4);
1732                         CL_ParticleEffect(EFFECT_TE_SPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1733                         if (rand() % 5)
1734                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1735                         else
1736                         {
1737                                 rnd = rand() & 3;
1738                                 if (rnd == 1)
1739                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1740                                 else if (rnd == 2)
1741                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1742                                 else
1743                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1744                         }
1745                         break;
1746                 case TE_SPIKEQUAD:
1747                         // quad spike hitting wall
1748                         MSG_ReadVector(pos, cls.protocol);
1749                         CL_FindNonSolidLocation(pos, pos, 4);
1750                         CL_ParticleEffect(EFFECT_TE_SPIKEQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1751                         if (rand() % 5)
1752                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1753                         else
1754                         {
1755                                 rnd = rand() & 3;
1756                                 if (rnd == 1)
1757                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1758                                 else if (rnd == 2)
1759                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1760                                 else
1761                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1762                         }
1763                         break;
1764                 case TE_SUPERSPIKE:
1765                         // super spike hitting wall
1766                         MSG_ReadVector(pos, cls.protocol);
1767                         CL_FindNonSolidLocation(pos, pos, 4);
1768                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1769                         if (rand() % 5)
1770                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1771                         else
1772                         {
1773                                 rnd = rand() & 3;
1774                                 if (rnd == 1)
1775                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1776                                 else if (rnd == 2)
1777                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1778                                 else
1779                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1780                         }
1781                         break;
1782                 case TE_SUPERSPIKEQUAD:
1783                         // quad super spike hitting wall
1784                         MSG_ReadVector(pos, cls.protocol);
1785                         CL_FindNonSolidLocation(pos, pos, 4);
1786                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKEQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1787                         if (rand() % 5)
1788                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
1789                         else
1790                         {
1791                                 rnd = rand() & 3;
1792                                 if (rnd == 1)
1793                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
1794                                 else if (rnd == 2)
1795                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
1796                                 else
1797                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
1798                         }
1799                         break;
1800                         // LordHavoc: added for improved blood splatters
1801                 case TE_BLOOD:
1802                         // blood puff
1803                         MSG_ReadVector(pos, cls.protocol);
1804                         CL_FindNonSolidLocation(pos, pos, 4);
1805                         dir[0] = MSG_ReadChar();
1806                         dir[1] = MSG_ReadChar();
1807                         dir[2] = MSG_ReadChar();
1808                         count = MSG_ReadByte();
1809                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos, dir, dir, NULL, 0);
1810                         break;
1811                 case TE_SPARK:
1812                         // spark shower
1813                         MSG_ReadVector(pos, cls.protocol);
1814                         CL_FindNonSolidLocation(pos, pos, 4);
1815                         dir[0] = MSG_ReadChar();
1816                         dir[1] = MSG_ReadChar();
1817                         dir[2] = MSG_ReadChar();
1818                         count = MSG_ReadByte();
1819                         CL_ParticleEffect(EFFECT_TE_SPARK, count, pos, pos, dir, dir, NULL, 0);
1820                         break;
1821                 case TE_PLASMABURN:
1822                         MSG_ReadVector(pos, cls.protocol);
1823                         CL_FindNonSolidLocation(pos, pos, 4);
1824                         CL_ParticleEffect(EFFECT_TE_PLASMABURN, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1825                         break;
1826                         // LordHavoc: added for improved gore
1827                 case TE_BLOODSHOWER:
1828                         // vaporized body
1829                         MSG_ReadVector(pos, cls.protocol); // mins
1830                         MSG_ReadVector(pos2, cls.protocol); // maxs
1831                         velspeed = MSG_ReadCoord(cls.protocol); // speed
1832                         count = (unsigned short) MSG_ReadShort(); // number of particles
1833                         vel1[0] = -velspeed;
1834                         vel1[1] = -velspeed;
1835                         vel1[2] = -velspeed;
1836                         vel2[0] = velspeed;
1837                         vel2[1] = velspeed;
1838                         vel2[2] = velspeed;
1839                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos2, vel1, vel2, NULL, 0);
1840                         break;
1841
1842                 case TE_PARTICLECUBE:
1843                         // general purpose particle effect
1844                         MSG_ReadVector(pos, cls.protocol); // mins
1845                         MSG_ReadVector(pos2, cls.protocol); // maxs
1846                         MSG_ReadVector(dir, cls.protocol); // dir
1847                         count = (unsigned short) MSG_ReadShort(); // number of particles
1848                         colorStart = MSG_ReadByte(); // color
1849                         colorLength = MSG_ReadByte(); // gravity (1 or 0)
1850                         velspeed = MSG_ReadCoord(cls.protocol); // randomvel
1851                         CL_ParticleCube(pos, pos2, dir, count, colorStart, colorLength != 0, velspeed);
1852                         break;
1853
1854                 case TE_PARTICLERAIN:
1855                         // general purpose particle effect
1856                         MSG_ReadVector(pos, cls.protocol); // mins
1857                         MSG_ReadVector(pos2, cls.protocol); // maxs
1858                         MSG_ReadVector(dir, cls.protocol); // dir
1859                         count = (unsigned short) MSG_ReadShort(); // number of particles
1860                         colorStart = MSG_ReadByte(); // color
1861                         CL_ParticleRain(pos, pos2, dir, count, colorStart, 0);
1862                         break;
1863
1864                 case TE_PARTICLESNOW:
1865                         // general purpose particle effect
1866                         MSG_ReadVector(pos, cls.protocol); // mins
1867                         MSG_ReadVector(pos2, cls.protocol); // maxs
1868                         MSG_ReadVector(dir, cls.protocol); // dir
1869                         count = (unsigned short) MSG_ReadShort(); // number of particles
1870                         colorStart = MSG_ReadByte(); // color
1871                         CL_ParticleRain(pos, pos2, dir, count, colorStart, 1);
1872                         break;
1873
1874                 case TE_GUNSHOT:
1875                         // bullet hitting wall
1876                         MSG_ReadVector(pos, cls.protocol);
1877                         CL_FindNonSolidLocation(pos, pos, 4);
1878                         CL_ParticleEffect(EFFECT_TE_GUNSHOT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1879                         break;
1880
1881                 case TE_GUNSHOTQUAD:
1882                         // quad bullet hitting wall
1883                         MSG_ReadVector(pos, cls.protocol);
1884                         CL_FindNonSolidLocation(pos, pos, 4);
1885                         CL_ParticleEffect(EFFECT_TE_GUNSHOTQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1886                         break;
1887
1888                 case TE_EXPLOSION:
1889                         // rocket explosion
1890                         MSG_ReadVector(pos, cls.protocol);
1891                         CL_FindNonSolidLocation(pos, pos, 10);
1892                         CL_ParticleEffect(EFFECT_TE_EXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1893                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1894                         break;
1895
1896                 case TE_EXPLOSIONQUAD:
1897                         // quad rocket explosion
1898                         MSG_ReadVector(pos, cls.protocol);
1899                         CL_FindNonSolidLocation(pos, pos, 10);
1900                         CL_ParticleEffect(EFFECT_TE_EXPLOSIONQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1901                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1902                         break;
1903
1904                 case TE_EXPLOSION3:
1905                         // Nehahra movie colored lighting explosion
1906                         MSG_ReadVector(pos, cls.protocol);
1907                         CL_FindNonSolidLocation(pos, pos, 10);
1908                         color[0] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
1909                         color[1] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
1910                         color[2] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
1911                         CL_ParticleExplosion(pos);
1912                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1913                         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);
1914                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1915                         break;
1916
1917                 case TE_EXPLOSIONRGB:
1918                         // colored lighting explosion
1919                         MSG_ReadVector(pos, cls.protocol);
1920                         CL_FindNonSolidLocation(pos, pos, 10);
1921                         CL_ParticleExplosion(pos);
1922                         color[0] = MSG_ReadByte() * (2.0f / 255.0f);
1923                         color[1] = MSG_ReadByte() * (2.0f / 255.0f);
1924                         color[2] = MSG_ReadByte() * (2.0f / 255.0f);
1925                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1926                         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);
1927                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1928                         break;
1929
1930                 case TE_TAREXPLOSION:
1931                         // tarbaby explosion
1932                         MSG_ReadVector(pos, cls.protocol);
1933                         CL_FindNonSolidLocation(pos, pos, 10);
1934                         CL_ParticleEffect(EFFECT_TE_TAREXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1935                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
1936                         break;
1937
1938                 case TE_SMALLFLASH:
1939                         MSG_ReadVector(pos, cls.protocol);
1940                         CL_FindNonSolidLocation(pos, pos, 10);
1941                         CL_ParticleEffect(EFFECT_TE_SMALLFLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1942                         break;
1943
1944                 case TE_CUSTOMFLASH:
1945                         MSG_ReadVector(pos, cls.protocol);
1946                         CL_FindNonSolidLocation(pos, pos, 4);
1947                         radius = (MSG_ReadByte() + 1) * 8;
1948                         velspeed = (MSG_ReadByte() + 1) * (1.0 / 256.0);
1949                         color[0] = MSG_ReadByte() * (2.0f / 255.0f);
1950                         color[1] = MSG_ReadByte() * (2.0f / 255.0f);
1951                         color[2] = MSG_ReadByte() * (2.0f / 255.0f);
1952                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
1953                         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);
1954                         break;
1955
1956                 case TE_FLAMEJET:
1957                         MSG_ReadVector(pos, cls.protocol);
1958                         MSG_ReadVector(dir, cls.protocol);
1959                         count = MSG_ReadByte();
1960                         CL_ParticleEffect(EFFECT_TE_FLAMEJET, count, pos, pos, dir, dir, NULL, 0);
1961                         break;
1962
1963                 case TE_LIGHTNING1:
1964                         // lightning bolts
1965                         CL_ParseBeam(cl.model_bolt, true);
1966                         break;
1967
1968                 case TE_LIGHTNING2:
1969                         // lightning bolts
1970                         CL_ParseBeam(cl.model_bolt2, true);
1971                         break;
1972
1973                 case TE_LIGHTNING3:
1974                         // lightning bolts
1975                         CL_ParseBeam(cl.model_bolt3, false);
1976                         break;
1977
1978         // PGM 01/21/97
1979                 case TE_BEAM:
1980                         // grappling hook beam
1981                         CL_ParseBeam(cl.model_beam, false);
1982                         break;
1983         // PGM 01/21/97
1984
1985         // LordHavoc: for compatibility with the Nehahra movie...
1986                 case TE_LIGHTNING4NEH:
1987                         CL_ParseBeam(Mod_ForName(MSG_ReadString(), true, false, false), false);
1988                         break;
1989
1990                 case TE_LAVASPLASH:
1991                         MSG_ReadVector(pos, cls.protocol);
1992                         CL_ParticleEffect(EFFECT_TE_LAVASPLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1993                         break;
1994
1995                 case TE_TELEPORT:
1996                         MSG_ReadVector(pos, cls.protocol);
1997                         CL_ParticleEffect(EFFECT_TE_TELEPORT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
1998                         break;
1999
2000                 case TE_EXPLOSION2:
2001                         // color mapped explosion
2002                         MSG_ReadVector(pos, cls.protocol);
2003                         CL_FindNonSolidLocation(pos, pos, 10);
2004                         colorStart = MSG_ReadByte();
2005                         colorLength = MSG_ReadByte();
2006                         CL_ParticleExplosion2(pos, colorStart, colorLength);
2007                         tempcolor = (unsigned char *)&palette_complete[(rand()%colorLength) + colorStart];
2008                         color[0] = tempcolor[0] * (2.0f / 255.0f);
2009                         color[1] = tempcolor[1] * (2.0f / 255.0f);
2010                         color[2] = tempcolor[2] * (2.0f / 255.0f);
2011                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
2012                         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);
2013                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2014                         break;
2015
2016                 case TE_TEI_G3:
2017                         MSG_ReadVector(pos, cls.protocol);
2018                         MSG_ReadVector(pos2, cls.protocol);
2019                         MSG_ReadVector(dir, cls.protocol);
2020                         CL_ParticleEffect(EFFECT_TE_TEI_G3, 1, pos, pos2, dir, dir, NULL, 0);
2021                         break;
2022
2023                 case TE_TEI_SMOKE:
2024                         MSG_ReadVector(pos, cls.protocol);
2025                         MSG_ReadVector(dir, cls.protocol);
2026                         count = MSG_ReadByte();
2027                         CL_FindNonSolidLocation(pos, pos, 4);
2028                         CL_ParticleEffect(EFFECT_TE_TEI_SMOKE, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2029                         break;
2030
2031                 case TE_TEI_BIGEXPLOSION:
2032                         MSG_ReadVector(pos, cls.protocol);
2033                         CL_FindNonSolidLocation(pos, pos, 10);
2034                         CL_ParticleEffect(EFFECT_TE_TEI_BIGEXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2035                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2036                         break;
2037
2038                 case TE_TEI_PLASMAHIT:
2039                         MSG_ReadVector(pos, cls.protocol);
2040                         MSG_ReadVector(dir, cls.protocol);
2041                         count = MSG_ReadByte();
2042                         CL_FindNonSolidLocation(pos, pos, 5);
2043                         CL_ParticleEffect(EFFECT_TE_TEI_PLASMAHIT, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2044                         break;
2045
2046                 default:
2047                         Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
2048                 }
2049         }
2050 }
2051
2052 #define SHOWNET(x) if(cl_shownet.integer==2)Con_Printf("%3i:%s\n", msg_readcount-1, x);
2053
2054 //[515]: csqc
2055 void CL_VM_Init (void);
2056 qboolean CL_VM_Parse_TempEntity (void);
2057 void CL_VM_Parse_StuffCmd (const char *msg);
2058 void CL_VM_Parse_CenterPrint (const char *msg);
2059 void CSQC_AddPrintText (const char *msg);
2060 void CSQC_ReadEntities (void);
2061
2062 /*
2063 =====================
2064 CL_ParseServerMessage
2065 =====================
2066 */
2067 int parsingerror = false;
2068 void CL_ParseServerMessage(void)
2069 {
2070         int                     cmd;
2071         int                     i;
2072         protocolversion_t protocol;
2073         unsigned char           cmdlog[32];
2074         char            *cmdlogname[32], *temp;
2075         int                     cmdindex, cmdcount = 0;
2076
2077         if (cls.demorecording)
2078                 CL_WriteDemoMessage ();
2079
2080         cl.last_received_message = realtime;
2081
2082 //
2083 // if recording demos, copy the message out
2084 //
2085         if (cl_shownet.integer == 1)
2086                 Con_Printf("%f %i\n", realtime, net_message.cursize);
2087         else if (cl_shownet.integer == 2)
2088                 Con_Print("------------------\n");
2089
2090 //
2091 // parse the message
2092 //
2093         //MSG_BeginReading ();
2094
2095         parsingerror = true;
2096
2097         if (cls.protocol == PROTOCOL_QUAKEWORLD)
2098         {
2099                 cl.mtime[1] = cl.mtime[0];
2100                 cl.mtime[0] = realtime; // qw has no clock
2101                 cl.movement_needupdate = true;
2102                 // if true the cl.viewangles are interpolated from cl.mviewangles[]
2103                 // during this frame
2104                 // (makes spectating players much smoother and prevents mouse movement from turning)
2105                 cl.fixangle[1] = cl.fixangle[0];
2106                 cl.fixangle[0] = false;
2107                 if (!cls.demoplayback)
2108                         VectorCopy(cl.mviewangles[0], cl.mviewangles[1]);
2109
2110                 // slightly kill qw player entities each frame
2111                 for (i = 1;i < cl.maxclients;i++)
2112                         cl.entities_active[i] = false;
2113
2114                 // kill all qw nails
2115                 cl.qw_num_nails = 0;
2116
2117                 // fade weapon view kick
2118                 cl.qw_weaponkick = min(cl.qw_weaponkick + 10 * (cl.time - cl.oldtime), 0);
2119
2120                 while (1)
2121                 {
2122                         if (msg_badread)
2123                                 Host_Error ("CL_ParseServerMessage: Bad QW server message");
2124
2125                         cmd = MSG_ReadByte ();
2126
2127                         if (cmd == -1)
2128                         {
2129                                 SHOWNET("END OF MESSAGE");
2130                                 break;          // end of message
2131                         }
2132
2133                         cmdindex = cmdcount & 31;
2134                         cmdcount++;
2135                         cmdlog[cmdindex] = cmd;
2136
2137                         SHOWNET(qw_svc_strings[cmd]);
2138                         cmdlogname[cmdindex] = qw_svc_strings[cmd];
2139                         if (!cmdlogname[cmdindex])
2140                         {
2141                                 // 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)
2142                                 temp = "<unknown>";
2143                                 cmdlogname[cmdindex] = temp;
2144                         }
2145
2146                         // other commands
2147                         switch (cmd)
2148                         {
2149                         default:
2150                                 {
2151                                         char description[32*64], temp[64];
2152                                         int count;
2153                                         strcpy(description, "packet dump: ");
2154                                         i = cmdcount - 32;
2155                                         if (i < 0)
2156                                                 i = 0;
2157                                         count = cmdcount - i;
2158                                         i &= 31;
2159                                         while(count > 0)
2160                                         {
2161                                                 dpsnprintf(temp, sizeof(temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
2162                                                 strlcat(description, temp, sizeof(description));
2163                                                 count--;
2164                                                 i++;
2165                                                 i &= 31;
2166                                         }
2167                                         description[strlen(description)-1] = '\n'; // replace the last space with a newline
2168                                         Con_Print(description);
2169                                         Host_Error("CL_ParseServerMessage: Illegible server message");
2170                                 }
2171                                 break;
2172
2173                         case qw_svc_nop:
2174                                 //Con_Printf("qw_svc_nop\n");
2175                                 break;
2176
2177                         case qw_svc_disconnect:
2178                                 Con_Printf("Server disconnected\n");
2179                                 if (cls.demonum != -1)
2180                                         CL_NextDemo();
2181                                 else
2182                                         CL_Disconnect();
2183                                 return;
2184
2185                         case qw_svc_print:
2186                                 i = MSG_ReadByte();
2187                                 if (i == 3) // chat
2188                                         CSQC_AddPrintText(va("\1%s", MSG_ReadString()));        //[515]: csqc
2189                                 else
2190                                         CSQC_AddPrintText(MSG_ReadString());
2191                                 break;
2192
2193                         case qw_svc_centerprint:
2194                                 CL_VM_Parse_CenterPrint(MSG_ReadString ());     //[515]: csqc
2195                                 break;
2196
2197                         case qw_svc_stufftext:
2198                                 CL_VM_Parse_StuffCmd(MSG_ReadString ());        //[515]: csqc
2199                                 break;
2200
2201                         case qw_svc_damage:
2202                                 // svc_damage protocol is identical to nq
2203                                 V_ParseDamage ();
2204                                 break;
2205
2206                         case qw_svc_serverdata:
2207                                 //Cbuf_Execute(); // make sure any stuffed commands are done
2208                                 CL_ParseServerInfo();
2209                                 CL_VM_Init();   //[515]: init csqc
2210                                 break;
2211
2212                         case qw_svc_setangle:
2213                                 for (i=0 ; i<3 ; i++)
2214                                         cl.viewangles[i] = MSG_ReadAngle (cls.protocol);
2215                                 if (!cls.demoplayback)
2216                                 {
2217                                         cl.fixangle[0] = true;
2218                                         VectorCopy(cl.viewangles, cl.mviewangles[0]);
2219                                         // disable interpolation if this is new
2220                                         if (!cl.fixangle[1])
2221                                                 VectorCopy(cl.viewangles, cl.mviewangles[1]);
2222                                 }
2223                                 break;
2224
2225                         case qw_svc_lightstyle:
2226                                 i = MSG_ReadByte ();
2227                                 if (i >= cl.max_lightstyle)
2228                                 {
2229                                         Con_Printf ("svc_lightstyle >= MAX_LIGHTSTYLES");
2230                                         break;
2231                                 }
2232                                 strlcpy (cl.lightstyle[i].map,  MSG_ReadString(), sizeof (cl.lightstyle[i].map));
2233                                 cl.lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
2234                                 cl.lightstyle[i].length = (int)strlen(cl.lightstyle[i].map);
2235                                 break;
2236
2237                         case qw_svc_sound:
2238                                 CL_ParseStartSoundPacket(false);
2239                                 break;
2240
2241                         case qw_svc_stopsound:
2242                                 i = (unsigned short) MSG_ReadShort();
2243                                 S_StopSound(i>>3, i&7);
2244                                 break;
2245
2246                         case qw_svc_updatefrags:
2247                                 i = MSG_ReadByte();
2248                                 if (i >= cl.maxclients)
2249                                         Host_Error("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
2250                                 cl.scores[i].frags = (signed short) MSG_ReadShort();
2251                                 break;
2252
2253                         case qw_svc_updateping:
2254                                 i = MSG_ReadByte();
2255                                 if (i >= cl.maxclients)
2256                                         Host_Error("CL_ParseServerMessage: svc_updateping >= cl.maxclients");
2257                                 cl.scores[i].qw_ping = MSG_ReadShort();
2258                                 break;
2259
2260                         case qw_svc_updatepl:
2261                                 i = MSG_ReadByte();
2262                                 if (i >= cl.maxclients)
2263                                         Host_Error("CL_ParseServerMessage: svc_updatepl >= cl.maxclients");
2264                                 cl.scores[i].qw_packetloss = MSG_ReadByte();
2265                                 break;
2266
2267                         case qw_svc_updateentertime:
2268                                 i = MSG_ReadByte();
2269                                 if (i >= cl.maxclients)
2270                                         Host_Error("CL_ParseServerMessage: svc_updateentertime >= cl.maxclients");
2271                                 // seconds ago
2272                                 cl.scores[i].qw_entertime = realtime - MSG_ReadFloat();
2273                                 break;
2274
2275                         case qw_svc_spawnbaseline:
2276                                 i = (unsigned short) MSG_ReadShort();
2277                                 if (i < 0 || i >= MAX_EDICTS)
2278                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
2279                                 if (i >= cl.max_entities)
2280                                         CL_ExpandEntities(i);
2281                                 CL_ParseBaseline(cl.entities + i, false);
2282                                 break;
2283                         case qw_svc_spawnstatic:
2284                                 CL_ParseStatic(false);
2285                                 break;
2286                         case qw_svc_temp_entity:
2287                                 if(!CL_VM_Parse_TempEntity())
2288                                         CL_ParseTempEntity ();
2289                                 break;
2290
2291                         case qw_svc_killedmonster:
2292                                 cl.stats[STAT_MONSTERS]++;
2293                                 break;
2294
2295                         case qw_svc_foundsecret:
2296                                 cl.stats[STAT_SECRETS]++;
2297                                 break;
2298
2299                         case qw_svc_updatestat:
2300                                 i = MSG_ReadByte ();
2301                                 if (i < 0 || i >= MAX_CL_STATS)
2302                                         Host_Error ("svc_updatestat: %i is invalid", i);
2303                                 cl.stats[i] = MSG_ReadByte ();
2304                                 break;
2305
2306                         case qw_svc_updatestatlong:
2307                                 i = MSG_ReadByte ();
2308                                 if (i < 0 || i >= MAX_CL_STATS)
2309                                         Host_Error ("svc_updatestatlong: %i is invalid", i);
2310                                 cl.stats[i] = MSG_ReadLong ();
2311                                 break;
2312
2313                         case qw_svc_spawnstaticsound:
2314                                 CL_ParseStaticSound (false);
2315                                 break;
2316
2317                         case qw_svc_cdtrack:
2318                                 cl.cdtrack = cl.looptrack = MSG_ReadByte ();
2319                                 if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
2320                                         CDAudio_Play ((unsigned char)cls.forcetrack, true);
2321                                 else
2322                                         CDAudio_Play ((unsigned char)cl.cdtrack, true);
2323                                 break;
2324
2325                         case qw_svc_intermission:
2326                                 cl.intermission = 1;
2327                                 cl.completed_time = cl.time;
2328                                 MSG_ReadVector(cl.qw_intermission_origin, cls.protocol);
2329                                 for (i = 0;i < 3;i++)
2330                                         cl.qw_intermission_angles[i] = MSG_ReadAngle(cls.protocol);
2331                                 break;
2332
2333                         case qw_svc_finale:
2334                                 cl.intermission = 2;
2335                                 cl.completed_time = cl.time;
2336                                 SCR_CenterPrint(MSG_ReadString ());
2337                                 break;
2338
2339                         case qw_svc_sellscreen:
2340                                 Cmd_ExecuteString ("help", src_command);
2341                                 break;
2342
2343                         case qw_svc_smallkick:
2344                                 cl.qw_weaponkick = -2;
2345                                 break;
2346                         case qw_svc_bigkick:
2347                                 cl.qw_weaponkick = -4;
2348                                 break;
2349
2350                         case qw_svc_muzzleflash:
2351                                 i = (unsigned short) MSG_ReadShort();
2352                                 // NOTE: in QW this only worked on clients
2353                                 if (i < 0 || i >= MAX_EDICTS)
2354                                         Host_Error("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
2355                                 if (i >= cl.max_entities)
2356                                         CL_ExpandEntities(i);
2357                                 cl.entities[i].persistent.muzzleflash = 1.0f;
2358                                 break;
2359
2360                         case qw_svc_updateuserinfo:
2361                                 QW_CL_UpdateUserInfo();
2362                                 break;
2363
2364                         case qw_svc_setinfo:
2365                                 QW_CL_SetInfo();
2366                                 break;
2367
2368                         case qw_svc_serverinfo:
2369                                 QW_CL_ServerInfo();
2370                                 break;
2371
2372                         case qw_svc_download:
2373                                 QW_CL_ParseDownload();
2374                                 break;
2375
2376                         case qw_svc_playerinfo:
2377                                 EntityStateQW_ReadPlayerUpdate();
2378                                 break;
2379
2380                         case qw_svc_nails:
2381                                 QW_CL_ParseNails();
2382                                 break;
2383
2384                         case qw_svc_chokecount:
2385                                 i = MSG_ReadByte();
2386                                 // FIXME: apply to netgraph
2387                                 //for (j = 0;j < i;j++)
2388                                 //      cl.frames[(cls.netcon->qw.incoming_acknowledged-1-j)&QW_UPDATE_MASK].receivedtime = -2;
2389                                 break;
2390
2391                         case qw_svc_modellist:
2392                                 QW_CL_ParseModelList();
2393                                 break;
2394
2395                         case qw_svc_soundlist:
2396                                 QW_CL_ParseSoundList();
2397                                 break;
2398
2399                         case qw_svc_packetentities:
2400                                 EntityFrameQW_CL_ReadFrame(false);
2401                                 // first update is the final signon stage
2402                                 if (cls.signon == SIGNONS - 1)
2403                                         cls.signon = SIGNONS;
2404                                 break;
2405
2406                         case qw_svc_deltapacketentities:
2407                                 EntityFrameQW_CL_ReadFrame(true);
2408                                 // first update is the final signon stage
2409                                 if (cls.signon == SIGNONS - 1)
2410                                         cls.signon = SIGNONS;
2411                                 break;
2412
2413                         case qw_svc_maxspeed:
2414                                 cl.qw_movevars_maxspeed = MSG_ReadFloat();
2415                                 break;
2416
2417                         case qw_svc_entgravity:
2418                                 cl.qw_movevars_entgravity = MSG_ReadFloat();
2419                                 break;
2420
2421                         case qw_svc_setpause:
2422                                 cl.paused = MSG_ReadByte ();
2423                                 if (cl.paused)
2424                                         CDAudio_Pause ();
2425                                 else
2426                                         CDAudio_Resume ();
2427                                 S_PauseGameSounds (cl.paused);
2428                                 break;
2429                         }
2430                 }
2431
2432                 // fully kill the still slightly dead qw player entities each frame
2433                 for (i = 1;i < cl.maxclients;i++)
2434                         if (!cl.entities_active[i])
2435                                 cl.entities[i].state_current.active = false;
2436         }
2437         else
2438         {
2439                 while (1)
2440                 {
2441                         if (msg_badread)
2442                                 Host_Error ("CL_ParseServerMessage: Bad server message");
2443
2444                         cmd = MSG_ReadByte ();
2445
2446                         if (cmd == -1)
2447                         {
2448                                 SHOWNET("END OF MESSAGE");
2449                                 break;          // end of message
2450                         }
2451
2452                         cmdindex = cmdcount & 31;
2453                         cmdcount++;
2454                         cmdlog[cmdindex] = cmd;
2455
2456                         // if the high bit of the command byte is set, it is a fast update
2457                         if (cmd & 128)
2458                         {
2459                                 // 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)
2460                                 temp = "entity";
2461                                 cmdlogname[cmdindex] = temp;
2462                                 SHOWNET("fast update");
2463                                 if (cls.signon == SIGNONS - 1)
2464                                 {
2465                                         // first update is the final signon stage
2466                                         cls.signon = SIGNONS;
2467                                         CL_SignonReply ();
2468                                 }
2469                                 EntityFrameQuake_ReadEntity (cmd&127);
2470                                 continue;
2471                         }
2472
2473                         SHOWNET(svc_strings[cmd]);
2474                         cmdlogname[cmdindex] = svc_strings[cmd];
2475                         if (!cmdlogname[cmdindex])
2476                         {
2477                                 // 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)
2478                                 temp = "<unknown>";
2479                                 cmdlogname[cmdindex] = temp;
2480                         }
2481
2482                         // other commands
2483                         switch (cmd)
2484                         {
2485                         default:
2486                                 {
2487                                         char description[32*64], temp[64];
2488                                         int count;
2489                                         strcpy (description, "packet dump: ");
2490                                         i = cmdcount - 32;
2491                                         if (i < 0)
2492                                                 i = 0;
2493                                         count = cmdcount - i;
2494                                         i &= 31;
2495                                         while(count > 0)
2496                                         {
2497                                                 dpsnprintf (temp, sizeof (temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
2498                                                 strlcat (description, temp, sizeof (description));
2499                                                 count--;
2500                                                 i++;
2501                                                 i &= 31;
2502                                         }
2503                                         description[strlen(description)-1] = '\n'; // replace the last space with a newline
2504                                         Con_Print(description);
2505                                         Host_Error ("CL_ParseServerMessage: Illegible server message");
2506                                 }
2507                                 break;
2508
2509                         case svc_nop:
2510                                 if (cls.signon < SIGNONS)
2511                                         Con_Print("<-- server to client keepalive\n");
2512                                 break;
2513
2514                         case svc_time:
2515                                 cl.mtime[1] = cl.mtime[0];
2516                                 cl.mtime[0] = MSG_ReadFloat ();
2517                                 cl.movement_needupdate = true;
2518                                 // if true the cl.viewangles are interpolated from cl.mviewangles[]
2519                                 // during this frame
2520                                 // (makes spectating players much smoother and prevents mouse movement from turning)
2521                                 cl.fixangle[1] = cl.fixangle[0];
2522                                 cl.fixangle[0] = false;
2523                                 if (!cls.demoplayback)
2524                                         VectorCopy(cl.mviewangles[0], cl.mviewangles[1]);
2525                                 break;
2526
2527                         case svc_clientdata:
2528                                 CL_ParseClientdata();
2529                                 break;
2530
2531                         case svc_version:
2532                                 i = MSG_ReadLong ();
2533                                 protocol = Protocol_EnumForNumber(i);
2534                                 if (protocol == PROTOCOL_UNKNOWN)
2535                                         Host_Error("CL_ParseServerMessage: Server is unrecognized protocol number (%i)", i);
2536                                 // hack for unmarked Nehahra movie demos which had a custom protocol
2537                                 if (protocol == PROTOCOL_QUAKEDP && cls.demoplayback && demo_nehahra.integer)
2538                                         protocol = PROTOCOL_NEHAHRAMOVIE;
2539                                 cls.protocol = protocol;
2540                                 break;
2541
2542                         case svc_disconnect:
2543                                 Con_Printf ("Server disconnected\n");
2544                                 if (cls.demonum != -1)
2545                                         CL_NextDemo ();
2546                                 else
2547                                         CL_Disconnect ();
2548                                 break;
2549
2550                         case svc_print:
2551                                 CSQC_AddPrintText(MSG_ReadString());    //[515]: csqc
2552                                 break;
2553
2554                         case svc_centerprint:
2555                                 CL_VM_Parse_CenterPrint(MSG_ReadString ());     //[515]: csqc
2556                                 break;
2557
2558                         case svc_stufftext:
2559                                 CL_VM_Parse_StuffCmd(MSG_ReadString ());        //[515]: csqc
2560                                 break;
2561
2562                         case svc_damage:
2563                                 V_ParseDamage ();
2564                                 break;
2565
2566                         case svc_serverinfo:
2567                                 CL_ParseServerInfo ();
2568                                 CL_VM_Init();   //[515]: init csqc
2569                                 break;
2570
2571                         case svc_setangle:
2572                                 for (i=0 ; i<3 ; i++)
2573                                         cl.viewangles[i] = MSG_ReadAngle (cls.protocol);
2574                                 if (!cls.demoplayback)
2575                                 {
2576                                         cl.fixangle[0] = true;
2577                                         VectorCopy(cl.viewangles, cl.mviewangles[0]);
2578                                         // disable interpolation if this is new
2579                                         if (!cl.fixangle[1])
2580                                                 VectorCopy(cl.viewangles, cl.mviewangles[1]);
2581                                 }
2582                                 break;
2583
2584                         case svc_setview:
2585                                 cl.viewentity = (unsigned short)MSG_ReadShort ();
2586                                 if (cl.viewentity >= MAX_EDICTS)
2587                                         Host_Error("svc_setview >= MAX_EDICTS");
2588                                 if (cl.viewentity >= cl.max_entities)
2589                                         CL_ExpandEntities(cl.viewentity);
2590                                 // LordHavoc: assume first setview recieved is the real player entity
2591                                 if (!cl.playerentity)
2592                                         cl.playerentity = cl.viewentity;
2593                                 break;
2594
2595                         case svc_lightstyle:
2596                                 i = MSG_ReadByte ();
2597                                 if (i >= cl.max_lightstyle)
2598                                 {
2599                                         Con_Printf ("svc_lightstyle >= MAX_LIGHTSTYLES");
2600                                         break;
2601                                 }
2602                                 strlcpy (cl.lightstyle[i].map,  MSG_ReadString(), sizeof (cl.lightstyle[i].map));
2603                                 cl.lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
2604                                 cl.lightstyle[i].length = (int)strlen(cl.lightstyle[i].map);
2605                                 break;
2606
2607                         case svc_sound:
2608                                 CL_ParseStartSoundPacket(false);
2609                                 break;
2610
2611                         case svc_precache:
2612                                 if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3)
2613                                 {
2614                                         // was svc_sound2 in protocols 1, 2, 3, removed in 4, 5, changed to svc_precache in 6
2615                                         CL_ParseStartSoundPacket(true);
2616                                 }
2617                                 else
2618                                 {
2619                                         int i = (unsigned short)MSG_ReadShort();
2620                                         char *s = MSG_ReadString();
2621                                         if (i < 32768)
2622                                         {
2623                                                 if (i >= 1 && i < MAX_MODELS)
2624                                                 {
2625                                                         model_t *model = Mod_ForName(s, false, false, i == 1);
2626                                                         if (!model)
2627                                                                 Con_Printf("svc_precache: Mod_ForName(\"%s\") failed\n", s);
2628                                                         cl.model_precache[i] = model;
2629                                                 }
2630                                                 else
2631                                                         Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_MODELS);
2632                                         }
2633                                         else
2634                                         {
2635                                                 i -= 32768;
2636                                                 if (i >= 1 && i < MAX_SOUNDS)
2637                                                 {
2638                                                         sfx_t *sfx = S_PrecacheSound (s, true, false);
2639                                                         if (!sfx && snd_initialized.integer)
2640                                                                 Con_Printf("svc_precache: S_PrecacheSound(\"%s\") failed\n", s);
2641                                                         cl.sound_precache[i] = sfx;
2642                                                 }
2643                                                 else
2644                                                         Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_SOUNDS);
2645                                         }
2646                                 }
2647                                 break;
2648
2649                         case svc_stopsound:
2650                                 i = (unsigned short) MSG_ReadShort();
2651                                 S_StopSound(i>>3, i&7);
2652                                 break;
2653
2654                         case svc_updatename:
2655                                 i = MSG_ReadByte ();
2656                                 if (i >= cl.maxclients)
2657                                         Host_Error ("CL_ParseServerMessage: svc_updatename >= cl.maxclients");
2658                                 strlcpy (cl.scores[i].name, MSG_ReadString (), sizeof (cl.scores[i].name));
2659                                 break;
2660
2661                         case svc_updatefrags:
2662                                 i = MSG_ReadByte ();
2663                                 if (i >= cl.maxclients)
2664                                         Host_Error ("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
2665                                 cl.scores[i].frags = (signed short) MSG_ReadShort ();
2666                                 break;
2667
2668                         case svc_updatecolors:
2669                                 i = MSG_ReadByte ();
2670                                 if (i >= cl.maxclients)
2671                                         Host_Error ("CL_ParseServerMessage: svc_updatecolors >= cl.maxclients");
2672                                 cl.scores[i].colors = MSG_ReadByte ();
2673                                 break;
2674
2675                         case svc_particle:
2676                                 CL_ParseParticleEffect ();
2677                                 break;
2678
2679                         case svc_effect:
2680                                 CL_ParseEffect ();
2681                                 break;
2682
2683                         case svc_effect2:
2684                                 CL_ParseEffect2 ();
2685                                 break;
2686
2687                         case svc_spawnbaseline:
2688                                 i = (unsigned short) MSG_ReadShort ();
2689                                 if (i < 0 || i >= MAX_EDICTS)
2690                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
2691                                 if (i >= cl.max_entities)
2692                                         CL_ExpandEntities(i);
2693                                 CL_ParseBaseline (cl.entities + i, false);
2694                                 break;
2695                         case svc_spawnbaseline2:
2696                                 i = (unsigned short) MSG_ReadShort ();
2697                                 if (i < 0 || i >= MAX_EDICTS)
2698                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline2: invalid entity number %i", i);
2699                                 if (i >= cl.max_entities)
2700                                         CL_ExpandEntities(i);
2701                                 CL_ParseBaseline (cl.entities + i, true);
2702                                 break;
2703                         case svc_spawnstatic:
2704                                 CL_ParseStatic (false);
2705                                 break;
2706                         case svc_spawnstatic2:
2707                                 CL_ParseStatic (true);
2708                                 break;
2709                         case svc_temp_entity:
2710                                 if(!CL_VM_Parse_TempEntity())
2711                                         CL_ParseTempEntity ();
2712                                 break;
2713
2714                         case svc_setpause:
2715                                 cl.paused = MSG_ReadByte ();
2716                                 if (cl.paused)
2717                                         CDAudio_Pause ();
2718                                 else
2719                                         CDAudio_Resume ();
2720                                 S_PauseGameSounds (cl.paused);
2721                                 break;
2722
2723                         case svc_signonnum:
2724                                 i = MSG_ReadByte ();
2725                                 // LordHavoc: it's rude to kick off the client if they missed the
2726                                 // reconnect somehow, so allow signon 1 even if at signon 1
2727                                 if (i <= cls.signon && i != 1)
2728                                         Host_Error ("Received signon %i when at %i", i, cls.signon);
2729                                 cls.signon = i;
2730                                 CL_SignonReply ();
2731                                 break;
2732
2733                         case svc_killedmonster:
2734                                 cl.stats[STAT_MONSTERS]++;
2735                                 break;
2736
2737                         case svc_foundsecret:
2738                                 cl.stats[STAT_SECRETS]++;
2739                                 break;
2740
2741                         case svc_updatestat:
2742                                 i = MSG_ReadByte ();
2743                                 if (i < 0 || i >= MAX_CL_STATS)
2744                                         Host_Error ("svc_updatestat: %i is invalid", i);
2745                                 cl.stats[i] = MSG_ReadLong ();
2746                                 break;
2747
2748                         case svc_updatestatubyte:
2749                                 i = MSG_ReadByte ();
2750                                 if (i < 0 || i >= MAX_CL_STATS)
2751                                         Host_Error ("svc_updatestat: %i is invalid", i);
2752                                 cl.stats[i] = MSG_ReadByte ();
2753                                 break;
2754
2755                         case svc_spawnstaticsound:
2756                                 CL_ParseStaticSound (false);
2757                                 break;
2758
2759                         case svc_spawnstaticsound2:
2760                                 CL_ParseStaticSound (true);
2761                                 break;
2762
2763                         case svc_cdtrack:
2764                                 cl.cdtrack = MSG_ReadByte ();
2765                                 cl.looptrack = MSG_ReadByte ();
2766                                 if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
2767                                         CDAudio_Play ((unsigned char)cls.forcetrack, true);
2768                                 else
2769                                         CDAudio_Play ((unsigned char)cl.cdtrack, true);
2770                                 break;
2771
2772                         case svc_intermission:
2773                                 cl.intermission = 1;
2774                                 cl.completed_time = cl.time;
2775                                 break;
2776
2777                         case svc_finale:
2778                                 cl.intermission = 2;
2779                                 cl.completed_time = cl.time;
2780                                 SCR_CenterPrint(MSG_ReadString ());
2781                                 break;
2782
2783                         case svc_cutscene:
2784                                 cl.intermission = 3;
2785                                 cl.completed_time = cl.time;
2786                                 SCR_CenterPrint(MSG_ReadString ());
2787                                 break;
2788
2789                         case svc_sellscreen:
2790                                 Cmd_ExecuteString ("help", src_command);
2791                                 break;
2792                         case svc_hidelmp:
2793                                 if (gamemode == GAME_TENEBRAE)
2794                                 {
2795                                         // repeating particle effect
2796                                         MSG_ReadCoord(cls.protocol);
2797                                         MSG_ReadCoord(cls.protocol);
2798                                         MSG_ReadCoord(cls.protocol);
2799                                         MSG_ReadCoord(cls.protocol);
2800                                         MSG_ReadCoord(cls.protocol);
2801                                         MSG_ReadCoord(cls.protocol);
2802                                         MSG_ReadByte();
2803                                         MSG_ReadLong();
2804                                         MSG_ReadLong();
2805                                         MSG_ReadString();
2806                                 }
2807                                 else
2808                                         SHOWLMP_decodehide();
2809                                 break;
2810                         case svc_showlmp:
2811                                 if (gamemode == GAME_TENEBRAE)
2812                                 {
2813                                         // particle effect
2814                                         MSG_ReadCoord(cls.protocol);
2815                                         MSG_ReadCoord(cls.protocol);
2816                                         MSG_ReadCoord(cls.protocol);
2817                                         MSG_ReadByte();
2818                                         MSG_ReadString();
2819                                 }
2820                                 else
2821                                         SHOWLMP_decodeshow();
2822                                 break;
2823                         case svc_skybox:
2824                                 R_SetSkyBox(MSG_ReadString());
2825                                 break;
2826                         case svc_entities:
2827                                 if (cls.signon == SIGNONS - 1)
2828                                 {
2829                                         // first update is the final signon stage
2830                                         cls.signon = SIGNONS;
2831                                         CL_SignonReply ();
2832                                 }
2833                                 if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3)
2834                                         EntityFrame_CL_ReadFrame();
2835                                 else if (cls.protocol == PROTOCOL_DARKPLACES4)
2836                                         EntityFrame4_CL_ReadFrame();
2837                                 else
2838                                         EntityFrame5_CL_ReadFrame();
2839                                 break;
2840                         case svc_csqcentities:
2841                                 CSQC_ReadEntities();
2842                                 break;
2843                         }
2844                 }
2845         }
2846
2847         CL_UpdateItemsAndWeapon();
2848
2849         EntityFrameQuake_ISeeDeadEntities();
2850
2851         parsingerror = false;
2852 }
2853
2854 void CL_Parse_DumpPacket(void)
2855 {
2856         if (!parsingerror)
2857                 return;
2858         Con_Print("Packet dump:\n");
2859         SZ_HexDumpToConsole(&net_message);
2860         parsingerror = false;
2861 }
2862
2863 void CL_Parse_ErrorCleanUp(void)
2864 {
2865         if (cls.qw_downloadmemory)
2866         {
2867                 Mem_Free(cls.qw_downloadmemory);
2868                 cls.qw_downloadmemory = NULL;
2869         }
2870         cls.qw_downloadpercent = 0;
2871         QW_CL_StopUpload();
2872 }
2873
2874 void CL_Parse_Init(void)
2875 {
2876         // LordHavoc: added demo_nehahra cvar
2877         Cvar_RegisterVariable (&demo_nehahra);
2878         if (gamemode == GAME_NEHAHRA)
2879                 Cvar_SetValue("demo_nehahra", 1);
2880         Cvar_RegisterVariable(&developer_networkentities);
2881
2882         Cvar_RegisterVariable(&cl_sound_wizardhit);
2883         Cvar_RegisterVariable(&cl_sound_hknighthit);
2884         Cvar_RegisterVariable(&cl_sound_tink1);
2885         Cvar_RegisterVariable(&cl_sound_ric1);
2886         Cvar_RegisterVariable(&cl_sound_ric2);
2887         Cvar_RegisterVariable(&cl_sound_ric3);
2888         Cvar_RegisterVariable(&cl_sound_r_exp3);
2889
2890         Cmd_AddCommand("nextul", QW_CL_NextUpload, "sends next fragment of current upload buffer (screenshot for example)");
2891         Cmd_AddCommand("stopul", QW_CL_StopUpload, "aborts current upload (screenshot for example)");
2892         Cmd_AddCommand("skins", QW_CL_Skins_f, "downloads missing qw skins from server");
2893         Cmd_AddCommand("changing", QW_CL_Changing_f, "sent by qw servers to tell client to wait for level change");
2894 }
2895
2896 void CL_Parse_Shutdown(void)
2897 {
2898 }