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