]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - cl_parse.c
new cvar: mastervolume (controlling both volume and bgmvolume)
[xonotic/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 #include "libcurl.h"
27 #include "utf8lib.h"
28
29 char *svc_strings[128] =
30 {
31         "svc_bad",
32         "svc_nop",
33         "svc_disconnect",
34         "svc_updatestat",
35         "svc_version",          // [int] server version
36         "svc_setview",          // [short] entity number
37         "svc_sound",                    // <see code>
38         "svc_time",                     // [float] server time
39         "svc_print",                    // [string] null terminated string
40         "svc_stufftext",                // [string] stuffed into client's console buffer
41                                                 // the string should be \n terminated
42         "svc_setangle",         // [vec3] set the view angle to this absolute value
43
44         "svc_serverinfo",               // [int] version
45                                                 // [string] signon string
46                                                 // [string]..[0]model cache [string]...[0]sounds cache
47                                                 // [string]..[0]item cache
48         "svc_lightstyle",               // [byte] [string]
49         "svc_updatename",               // [byte] [string]
50         "svc_updatefrags",      // [byte] [short]
51         "svc_clientdata",               // <shortbits + data>
52         "svc_stopsound",                // <see code>
53         "svc_updatecolors",     // [byte] [byte]
54         "svc_particle",         // [vec3] <variable>
55         "svc_damage",                   // [byte] impact [byte] blood [vec3] from
56
57         "svc_spawnstatic",
58         "OBSOLETE svc_spawnbinary",
59         "svc_spawnbaseline",
60
61         "svc_temp_entity",              // <variable>
62         "svc_setpause",
63         "svc_signonnum",
64         "svc_centerprint",
65         "svc_killedmonster",
66         "svc_foundsecret",
67         "svc_spawnstaticsound",
68         "svc_intermission",
69         "svc_finale",                   // [string] music [string] text
70         "svc_cdtrack",                  // [byte] track [byte] looptrack
71         "svc_sellscreen",
72         "svc_cutscene",
73         "svc_showlmp",  // [string] iconlabel [string] lmpfile [short] x [short] y
74         "svc_hidelmp",  // [string] iconlabel
75         "svc_skybox", // [string] skyname
76         "", // 38
77         "", // 39
78         "", // 40
79         "", // 41
80         "", // 42
81         "", // 43
82         "", // 44
83         "", // 45
84         "", // 46
85         "", // 47
86         "", // 48
87         "", // 49
88         "svc_downloaddata", //                          50              // [int] start [short] size [variable length] data
89         "svc_updatestatubyte", //                       51              // [byte] stat [byte] value
90         "svc_effect", //                        52              // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate
91         "svc_effect2", //                       53              // [vector] org [short] modelindex [short] startframe [byte] framecount [byte] framerate
92         "svc_sound2", //                        54              // short soundindex instead of byte
93         "svc_spawnbaseline2", //        55              // short modelindex instead of byte
94         "svc_spawnstatic2", //          56              // short modelindex instead of byte
95         "svc_entities", //                      57              // [int] deltaframe [int] thisframe [float vector] eye [variable length] entitydata
96         "svc_csqcentities", //          58              // [short] entnum [variable length] entitydata ... [short] 0x0000
97         "svc_spawnstaticsound2", //     59              // [coord3] [short] samp [byte] vol [byte] aten
98         "svc_trailparticles", //        60              // [short] entnum [short] effectnum [vector] start [vector] end
99         "svc_pointparticles", //        61              // [short] effectnum [vector] start [vector] velocity [short] count
100         "svc_pointparticles1", //       62              // [short] effectnum [vector] start, same as svc_pointparticles except velocity is zero and count is 1
101 };
102
103 char *qw_svc_strings[128] =
104 {
105         "qw_svc_bad",                                   // 0
106         "qw_svc_nop",                                   // 1
107         "qw_svc_disconnect",                    // 2
108         "qw_svc_updatestat",                    // 3    // [byte] [byte]
109         "",                                                             // 4
110         "qw_svc_setview",                               // 5    // [short] entity number
111         "qw_svc_sound",                                 // 6    // <see code>
112         "",                                                             // 7
113         "qw_svc_print",                                 // 8    // [byte] id [string] null terminated string
114         "qw_svc_stufftext",                             // 9    // [string] stuffed into client's console buffer
115         "qw_svc_setangle",                              // 10   // [angle3] set the view angle to this absolute value
116         "qw_svc_serverdata",                    // 11   // [long] protocol ...
117         "qw_svc_lightstyle",                    // 12   // [byte] [string]
118         "",                                                             // 13
119         "qw_svc_updatefrags",                   // 14   // [byte] [short]
120         "",                                                             // 15
121         "qw_svc_stopsound",                             // 16   // <see code>
122         "",                                                             // 17
123         "",                                                             // 18
124         "qw_svc_damage",                                // 19
125         "qw_svc_spawnstatic",                   // 20
126         "",                                                             // 21
127         "qw_svc_spawnbaseline",                 // 22
128         "qw_svc_temp_entity",                   // 23   // variable
129         "qw_svc_setpause",                              // 24   // [byte] on / off
130         "",                                                             // 25
131         "qw_svc_centerprint",                   // 26   // [string] to put in center of the screen
132         "qw_svc_killedmonster",                 // 27
133         "qw_svc_foundsecret",                   // 28
134         "qw_svc_spawnstaticsound",              // 29   // [coord3] [byte] samp [byte] vol [byte] aten
135         "qw_svc_intermission",                  // 30           // [vec3_t] origin [vec3_t] angle
136         "qw_svc_finale",                                // 31           // [string] text
137         "qw_svc_cdtrack",                               // 32           // [byte] track
138         "qw_svc_sellscreen",                    // 33
139         "qw_svc_smallkick",                             // 34           // set client punchangle to 2
140         "qw_svc_bigkick",                               // 35           // set client punchangle to 4
141         "qw_svc_updateping",                    // 36           // [byte] [short]
142         "qw_svc_updateentertime",               // 37           // [byte] [float]
143         "qw_svc_updatestatlong",                // 38           // [byte] [long]
144         "qw_svc_muzzleflash",                   // 39           // [short] entity
145         "qw_svc_updateuserinfo",                // 40           // [byte] slot [long] uid
146         "qw_svc_download",                              // 41           // [short] size [size bytes]
147         "qw_svc_playerinfo",                    // 42           // variable
148         "qw_svc_nails",                                 // 43           // [byte] num [48 bits] xyzpy 12 12 12 4 8
149         "qw_svc_chokecount",                    // 44           // [byte] packets choked
150         "qw_svc_modellist",                             // 45           // [strings]
151         "qw_svc_soundlist",                             // 46           // [strings]
152         "qw_svc_packetentities",                // 47           // [...]
153         "qw_svc_deltapacketentities",   // 48           // [...]
154         "qw_svc_maxspeed",                              // 49           // maxspeed change, for prediction
155         "qw_svc_entgravity",                    // 50           // gravity change, for prediction
156         "qw_svc_setinfo",                               // 51           // setinfo on a client
157         "qw_svc_serverinfo",                    // 52           // serverinfo
158         "qw_svc_updatepl",                              // 53           // [byte] [byte]
159 };
160
161 //=============================================================================
162
163 cvar_t demo_nehahra = {0, "demo_nehahra", "0", "reads all quake demos as nehahra movie protocol"};
164 cvar_t developer_networkentities = {0, "developer_networkentities", "0", "prints received entities, value is 0-4 (higher for more info)"};
165 cvar_t cl_gameplayfix_soundsmovewithentities = {0, "cl_gameplayfix_soundsmovewithentities", "1", "causes sounds made by lifts, players, projectiles, and any other entities, to move with the entity, so for example a rocket noise follows the rocket rather than staying at the starting position"};
166 cvar_t cl_sound_wizardhit = {0, "cl_sound_wizardhit", "wizard/hit.wav", "sound to play during TE_WIZSPIKE (empty cvar disables sound)"};
167 cvar_t cl_sound_hknighthit = {0, "cl_sound_hknighthit", "hknight/hit.wav", "sound to play during TE_KNIGHTSPIKE (empty cvar disables sound)"};
168 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)"};
169 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)"};
170 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)"};
171 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)"};
172 cvar_t cl_readpicture_force = {0, "cl_readpicture_force", "0", "when enabled, the low quality pictures read by ReadPicture() are preferred over the high quality pictures on the file system"};
173
174 #define RIC_GUNSHOT             1
175 #define RIC_GUNSHOTQUAD 2
176 cvar_t cl_sound_ric_gunshot = {0, "cl_sound_ric_gunshot", "0", "specifies if and when the related cl_sound_ric and cl_sound_tink sounds apply to TE_GUNSHOT/TE_GUNSHOTQUAD, 0 = no sound, 1 = TE_GUNSHOT, 2 = TE_GUNSHOTQUAD, 3 = TE_GUNSHOT and TE_GUNSHOTQUAD"};
177 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)"};
178 cvar_t cl_serverextension_download = {0, "cl_serverextension_download", "0", "indicates whether the server supports the download command"};
179 cvar_t cl_joinbeforedownloadsfinish = {CVAR_SAVE, "cl_joinbeforedownloadsfinish", "1", "if non-zero the game will begin after the map is loaded before other downloads finish"};
180 cvar_t cl_nettimesyncfactor = {CVAR_SAVE, "cl_nettimesyncfactor", "0", "rate at which client time adapts to match server time, 1 = instantly, 0.125 = slowly, 0 = not at all (bounding still applies)"};
181 cvar_t cl_nettimesyncboundmode = {CVAR_SAVE, "cl_nettimesyncboundmode", "6", "method of restricting client time to valid values, 0 = no correction, 1 = tight bounding (jerky with packet loss), 2 = loose bounding (corrects it if out of bounds), 3 = leniant bounding (ignores temporary errors due to varying framerate), 4 = slow adjustment method from Quake3, 5 = slighttly nicer version of Quake3 method, 6 = bounding + Quake3"};
182 cvar_t cl_nettimesyncboundtolerance = {CVAR_SAVE, "cl_nettimesyncboundtolerance", "0.25", "how much error is tolerated by bounding check, as a fraction of frametime, 0.25 = up to 25% margin of error tolerated, 1 = use only new time, 0 = use only old time (same effect as setting cl_nettimesyncfactor to 1)"};
183 cvar_t cl_iplog_name = {CVAR_SAVE, "cl_iplog_name", "darkplaces_iplog.txt", "name of iplog file containing player addresses for iplog_list command and automatic ip logging when parsing status command"};
184
185 static qboolean QW_CL_CheckOrDownloadFile(const char *filename);
186 static void QW_CL_RequestNextDownload(void);
187 static void QW_CL_NextUpload(void);
188 void QW_CL_StartUpload(unsigned char *data, int size);
189 //static qboolean QW_CL_IsUploading(void);
190 static void QW_CL_StopUpload(void);
191 void CL_VM_UpdateIntermissionState(int intermission);
192 qboolean CL_VM_Event_Sound(int sound_num, float volume, int channel, float attenuation, int ent, vec3_t pos);
193
194 /*
195 ==================
196 CL_ParseStartSoundPacket
197 ==================
198 */
199 void CL_ParseStartSoundPacket(int largesoundindex)
200 {
201         vec3_t  pos;
202         int     channel, ent;
203         int     sound_num;
204         int     volume;
205         int     field_mask;
206         float   attenuation;
207
208         if (cls.protocol == PROTOCOL_QUAKEWORLD)
209         {
210                 channel = MSG_ReadShort();
211
212                 if (channel & (1<<15))
213                         volume = MSG_ReadByte ();
214                 else
215                         volume = DEFAULT_SOUND_PACKET_VOLUME;
216
217                 if (channel & (1<<14))
218                         attenuation = MSG_ReadByte () / 64.0;
219                 else
220                         attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
221
222                 ent = (channel>>3)&1023;
223                 channel &= 7;
224
225                 sound_num = MSG_ReadByte ();
226         }
227         else
228         {
229                 field_mask = MSG_ReadByte();
230
231                 if (field_mask & SND_VOLUME)
232                         volume = MSG_ReadByte ();
233                 else
234                         volume = DEFAULT_SOUND_PACKET_VOLUME;
235
236                 if (field_mask & SND_ATTENUATION)
237                         attenuation = MSG_ReadByte () / 64.0;
238                 else
239                         attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
240
241                 if (field_mask & SND_LARGEENTITY)
242                 {
243                         ent = (unsigned short) MSG_ReadShort ();
244                         channel = MSG_ReadByte ();
245                 }
246                 else
247                 {
248                         channel = (unsigned short) MSG_ReadShort ();
249                         ent = channel >> 3;
250                         channel &= 7;
251                 }
252
253                 if (largesoundindex || (field_mask & SND_LARGESOUND) || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3)
254                         sound_num = (unsigned short) MSG_ReadShort ();
255                 else
256                         sound_num = MSG_ReadByte ();
257         }
258
259         MSG_ReadVector(pos, cls.protocol);
260
261         if (sound_num >= MAX_SOUNDS)
262         {
263                 Con_Printf("CL_ParseStartSoundPacket: sound_num (%i) >= MAX_SOUNDS (%i)\n", sound_num, MAX_SOUNDS);
264                 return;
265         }
266
267         if (ent >= MAX_EDICTS)
268         {
269                 Con_Printf("CL_ParseStartSoundPacket: ent = %i", ent);
270                 return;
271         }
272
273         if (ent >= cl.max_entities)
274                 CL_ExpandEntities(ent);
275
276         if( !CL_VM_Event_Sound(sound_num, volume / 255.0f, channel, attenuation, ent, pos) )
277                 S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0f, attenuation);
278 }
279
280 /*
281 ==================
282 CL_KeepaliveMessage
283
284 When the client is taking a long time to load stuff, send keepalive messages
285 so the server doesn't disconnect.
286 ==================
287 */
288
289 static unsigned char olddata[NET_MAXMESSAGE];
290 void CL_KeepaliveMessage (qboolean readmessages)
291 {
292         float time;
293         static double nextmsg = -1;
294         static double nextupdate = -1;
295 #if 0
296         static double lasttime = -1;
297 #endif
298         int oldreadcount;
299         qboolean oldbadread;
300         sizebuf_t old;
301
302         if(cls.state != ca_dedicated)
303         {
304                 if((time = Sys_DoubleTime()) >= nextupdate)
305                 {
306                         SCR_UpdateLoadingScreenIfShown();
307                         nextupdate = time + 2;
308                 }
309         }
310
311         // no need if server is local and definitely not if this is a demo
312         if (!cls.netcon || cls.protocol == PROTOCOL_QUAKEWORLD || cls.signon >= SIGNONS)
313                 return;
314
315         if (readmessages)
316         {
317                 // read messages from server, should just be nops
318                 oldreadcount = msg_readcount;
319                 oldbadread = msg_badread;
320                 old = net_message;
321                 memcpy(olddata, net_message.data, net_message.cursize);
322
323                 NetConn_ClientFrame();
324
325                 msg_readcount = oldreadcount;
326                 msg_badread = oldbadread;
327                 net_message = old;
328                 memcpy(net_message.data, olddata, net_message.cursize);
329         }
330
331 #if 0
332         if((time = Sys_DoubleTime()) >= lasttime + 1)
333         {
334                 Con_Printf("long delta: %f\n", time - lasttime);
335         }
336         lasttime = Sys_DoubleTime();
337 #endif
338
339         if (cls.netcon && (time = Sys_DoubleTime()) >= nextmsg)
340         {
341                 sizebuf_t       msg;
342                 unsigned char           buf[4];
343                 nextmsg = time + 5;
344                 // write out a nop
345                 // LordHavoc: must use unreliable because reliable could kill the sigon message!
346                 Con_Print("--> client to server keepalive\n");
347                 memset(&msg, 0, sizeof(msg));
348                 msg.data = buf;
349                 msg.maxsize = sizeof(buf);
350                 MSG_WriteChar(&msg, clc_nop);
351                 NetConn_SendUnreliableMessage(cls.netcon, &msg, cls.protocol, 10000, false);
352         }
353 }
354
355 void CL_ParseEntityLump(char *entdata)
356 {
357         const char *data;
358         char key[128], value[MAX_INPUTLINE];
359         FOG_clear(); // LordHavoc: no fog until set
360         // LordHavoc: default to the map's sky (q3 shader parsing sets this)
361         R_SetSkyBox(cl.worldmodel->brush.skybox);
362         data = entdata;
363         if (!data)
364                 return;
365         if (!COM_ParseToken_Simple(&data, false, false))
366                 return; // error
367         if (com_token[0] != '{')
368                 return; // error
369         while (1)
370         {
371                 if (!COM_ParseToken_Simple(&data, false, false))
372                         return; // error
373                 if (com_token[0] == '}')
374                         break; // end of worldspawn
375                 if (com_token[0] == '_')
376                         strlcpy (key, com_token + 1, sizeof (key));
377                 else
378                         strlcpy (key, com_token, sizeof (key));
379                 while (key[strlen(key)-1] == ' ') // remove trailing spaces
380                         key[strlen(key)-1] = 0;
381                 if (!COM_ParseToken_Simple(&data, false, false))
382                         return; // error
383                 strlcpy (value, com_token, sizeof (value));
384                 if (!strcmp("sky", key))
385                         R_SetSkyBox(value);
386                 else if (!strcmp("skyname", key)) // non-standard, introduced by QuakeForge... sigh.
387                         R_SetSkyBox(value);
388                 else if (!strcmp("qlsky", key)) // non-standard, introduced by QuakeLives (EEK)
389                         R_SetSkyBox(value);
390                 else if (!strcmp("fog", key))
391                 {
392                         FOG_clear(); // so missing values get good defaults
393                         r_refdef.fog_start = 0;
394                         r_refdef.fog_alpha = 1;
395                         r_refdef.fog_end = 16384;
396                         r_refdef.fog_height = 1<<30;
397                         r_refdef.fog_fadedepth = 128;
398 #if _MSC_VER >= 1400
399 #define sscanf sscanf_s
400 #endif
401                         sscanf(value, "%f %f %f %f %f %f %f %f %f", &r_refdef.fog_density, &r_refdef.fog_red, &r_refdef.fog_green, &r_refdef.fog_blue, &r_refdef.fog_alpha, &r_refdef.fog_start, &r_refdef.fog_end, &r_refdef.fog_height, &r_refdef.fog_fadedepth);
402                 }
403                 else if (!strcmp("fog_density", key))
404                         r_refdef.fog_density = atof(value);
405                 else if (!strcmp("fog_red", key))
406                         r_refdef.fog_red = atof(value);
407                 else if (!strcmp("fog_green", key))
408                         r_refdef.fog_green = atof(value);
409                 else if (!strcmp("fog_blue", key))
410                         r_refdef.fog_blue = atof(value);
411                 else if (!strcmp("fog_alpha", key))
412                         r_refdef.fog_alpha = atof(value);
413                 else if (!strcmp("fog_start", key))
414                         r_refdef.fog_start = atof(value);
415                 else if (!strcmp("fog_end", key))
416                         r_refdef.fog_end = atof(value);
417                 else if (!strcmp("fog_height", key))
418                         r_refdef.fog_height = atof(value);
419                 else if (!strcmp("fog_fadedepth", key))
420                         r_refdef.fog_fadedepth = atof(value);
421                 else if (!strcmp("fog_heighttexture", key))
422                 {
423                         FOG_clear(); // so missing values get good defaults
424 #if _MSC_VER >= 1400
425                         sscanf_s(value, "%f %f %f %f %f %f %f %f %f %s", &r_refdef.fog_density, &r_refdef.fog_red, &r_refdef.fog_green, &r_refdef.fog_blue, &r_refdef.fog_alpha, &r_refdef.fog_start, &r_refdef.fog_end, &r_refdef.fog_height, &r_refdef.fog_fadedepth, r_refdef.fog_height_texturename, (unsigned int)sizeof(r_refdef.fog_height_texturename));
426 #else
427                         sscanf(value, "%f %f %f %f %f %f %f %f %f %63s", &r_refdef.fog_density, &r_refdef.fog_red, &r_refdef.fog_green, &r_refdef.fog_blue, &r_refdef.fog_alpha, &r_refdef.fog_start, &r_refdef.fog_end, &r_refdef.fog_height, &r_refdef.fog_fadedepth, r_refdef.fog_height_texturename);
428 #endif
429                         r_refdef.fog_height_texturename[63] = 0;
430                 }
431         }
432 }
433
434 extern void CL_Locs_Reload_f(void);
435 extern void CL_VM_Init (void);
436 static const vec3_t defaultmins = {-4096, -4096, -4096};
437 static const vec3_t defaultmaxs = {4096, 4096, 4096};
438 static void CL_SetupWorldModel(void)
439 {
440         // update the world model
441         cl.entities[0].render.model = cl.worldmodel = CL_GetModelByIndex(1);
442         CL_UpdateRenderEntity(&cl.entities[0].render);
443
444         // set up csqc world for collision culling
445         if (cl.worldmodel)
446                 World_SetSize(&cl.world, cl.worldmodel->name, cl.worldmodel->normalmins, cl.worldmodel->normalmaxs);
447         else
448                 World_SetSize(&cl.world, "", defaultmins, defaultmaxs);
449         World_Start(&cl.world);
450
451         // load or reload .loc file for team chat messages
452         CL_Locs_Reload_f();
453
454         // make sure we send enough keepalives
455         CL_KeepaliveMessage(false);
456
457         // reset particles and other per-level things
458         R_Modules_NewMap();
459
460         // make sure we send enough keepalives
461         CL_KeepaliveMessage(false);
462
463         // load the team chat beep if possible
464         cl.foundtalk2wav = FS_FileExists("sound/misc/talk2.wav");
465
466         // check memory integrity
467         Mem_CheckSentinelsGlobal();
468
469         // load the csqc now
470         if (cl.loadcsqc)
471         {
472                 cl.loadcsqc = false;
473
474                 CL_VM_Init();
475         }
476 }
477
478 static qboolean QW_CL_CheckOrDownloadFile(const char *filename)
479 {
480         qfile_t *file;
481
482         // see if the file already exists
483         file = FS_OpenVirtualFile(filename, true);
484         if (file)
485         {
486                 FS_Close(file);
487                 return true;
488         }
489
490         // download messages in a demo would be bad
491         if (cls.demorecording)
492         {
493                 Con_Printf("Unable to download \"%s\" when recording.\n", filename);
494                 return true;
495         }
496
497         // don't try to download when playing a demo
498         if (!cls.netcon)
499                 return true;
500
501         strlcpy(cls.qw_downloadname, filename, sizeof(cls.qw_downloadname));
502         Con_Printf("Downloading %s\n", filename);
503
504         if (!cls.qw_downloadmemory)
505         {
506                 cls.qw_downloadmemory = NULL;
507                 cls.qw_downloadmemorycursize = 0;
508                 cls.qw_downloadmemorymaxsize = 1024*1024; // start out with a 1MB buffer
509         }
510
511         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
512         MSG_WriteString(&cls.netcon->message, va("download %s", filename));
513
514         cls.qw_downloadnumber++;
515         cls.qw_downloadpercent = 0;
516         cls.qw_downloadmemorycursize = 0;
517
518         return false;
519 }
520
521 static void QW_CL_ProcessUserInfo(int slot);
522 static void QW_CL_RequestNextDownload(void)
523 {
524         int i;
525
526         // clear name of file that just finished
527         cls.qw_downloadname[0] = 0;
528
529         switch (cls.qw_downloadtype)
530         {
531         case dl_single:
532                 break;
533         case dl_skin:
534                 if (cls.qw_downloadnumber == 0)
535                         Con_Printf("Checking skins...\n");
536                 for (;cls.qw_downloadnumber < cl.maxclients;cls.qw_downloadnumber++)
537                 {
538                         if (!cl.scores[cls.qw_downloadnumber].name[0])
539                                 continue;
540                         // check if we need to download the file, and return if so
541                         if (!QW_CL_CheckOrDownloadFile(va("skins/%s.pcx", cl.scores[cls.qw_downloadnumber].qw_skin)))
542                                 return;
543                 }
544
545                 cls.qw_downloadtype = dl_none;
546
547                 // load any newly downloaded skins
548                 for (i = 0;i < cl.maxclients;i++)
549                         QW_CL_ProcessUserInfo(i);
550
551                 // if we're still in signon stages, request the next one
552                 if (cls.signon != SIGNONS)
553                 {
554                         cls.signon = SIGNONS-1;
555                         // we'll go to SIGNONS when the first entity update is received
556                         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
557                         MSG_WriteString(&cls.netcon->message, va("begin %i", cl.qw_servercount));
558                 }
559                 break;
560         case dl_model:
561                 if (cls.qw_downloadnumber == 0)
562                 {
563                         Con_Printf("Checking models...\n");
564                         cls.qw_downloadnumber = 1;
565                 }
566
567                 for (;cls.qw_downloadnumber < MAX_MODELS && cl.model_name[cls.qw_downloadnumber][0];cls.qw_downloadnumber++)
568                 {
569                         // skip submodels
570                         if (cl.model_name[cls.qw_downloadnumber][0] == '*')
571                                 continue;
572                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/spike.mdl"))
573                                 cl.qw_modelindex_spike = cls.qw_downloadnumber;
574                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/player.mdl"))
575                                 cl.qw_modelindex_player = cls.qw_downloadnumber;
576                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/flag.mdl"))
577                                 cl.qw_modelindex_flag = cls.qw_downloadnumber;
578                         if (!strcmp(cl.model_name[cls.qw_downloadnumber], "progs/s_explod.spr"))
579                                 cl.qw_modelindex_s_explod = cls.qw_downloadnumber;
580                         // check if we need to download the file, and return if so
581                         if (!QW_CL_CheckOrDownloadFile(cl.model_name[cls.qw_downloadnumber]))
582                                 return;
583                 }
584
585                 cls.qw_downloadtype = dl_none;
586
587                 // touch all of the precached models that are still loaded so we can free
588                 // anything that isn't needed
589                 if (!sv.active)
590                         Mod_ClearUsed();
591                 for (i = 1;i < MAX_MODELS && cl.model_name[i][0];i++)
592                         Mod_FindName(cl.model_name[i], cl.model_name[i][0] == '*' ? cl.model_name[1] : NULL);
593                 // precache any models used by the client (this also marks them used)
594                 cl.model_bolt = Mod_ForName("progs/bolt.mdl", false, false, NULL);
595                 cl.model_bolt2 = Mod_ForName("progs/bolt2.mdl", false, false, NULL);
596                 cl.model_bolt3 = Mod_ForName("progs/bolt3.mdl", false, false, NULL);
597                 cl.model_beam = Mod_ForName("progs/beam.mdl", false, false, NULL);
598
599                 // we purge the models and sounds later in CL_SignonReply
600                 //Mod_PurgeUnused();
601
602                 // now we try to load everything that is new
603
604                 // world model
605                 cl.model_precache[1] = Mod_ForName(cl.model_name[1], false, false, NULL);
606                 if (cl.model_precache[1]->Draw == NULL)
607                         Con_Printf("Map %s could not be found or downloaded\n", cl.model_name[1]);
608
609                 // normal models
610                 for (i = 2;i < MAX_MODELS && cl.model_name[i][0];i++)
611                         if ((cl.model_precache[i] = Mod_ForName(cl.model_name[i], false, false, cl.model_name[i][0] == '*' ? cl.model_name[1] : NULL))->Draw == NULL)
612                                 Con_Printf("Model %s could not be found or downloaded\n", cl.model_name[i]);
613
614                 // check memory integrity
615                 Mem_CheckSentinelsGlobal();
616
617                 // now that we have a world model, set up the world entity, renderer
618                 // modules and csqc
619                 CL_SetupWorldModel();
620
621                 // add pmodel/emodel CRCs to userinfo
622                 CL_SetInfo("pmodel", va("%i", FS_CRCFile("progs/player.mdl", NULL)), true, true, true, true);
623                 CL_SetInfo("emodel", va("%i", FS_CRCFile("progs/eyes.mdl", NULL)), true, true, true, true);
624
625                 // done checking sounds and models, send a prespawn command now
626                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
627                 MSG_WriteString(&cls.netcon->message, va("prespawn %i 0 %i", cl.qw_servercount, cl.model_precache[1]->brush.qw_md4sum2));
628
629                 if (cls.qw_downloadmemory)
630                 {
631                         Mem_Free(cls.qw_downloadmemory);
632                         cls.qw_downloadmemory = NULL;
633                 }
634
635                 // done loading
636                 cl.loadfinished = true;
637                 break;
638         case dl_sound:
639                 if (cls.qw_downloadnumber == 0)
640                 {
641                         Con_Printf("Checking sounds...\n");
642                         cls.qw_downloadnumber = 1;
643                 }
644
645                 for (;cl.sound_name[cls.qw_downloadnumber][0];cls.qw_downloadnumber++)
646                 {
647                         // check if we need to download the file, and return if so
648                         if (!QW_CL_CheckOrDownloadFile(va("sound/%s", cl.sound_name[cls.qw_downloadnumber])))
649                                 return;
650                 }
651
652                 cls.qw_downloadtype = dl_none;
653
654                 // clear sound usage flags for purging of unused sounds
655                 S_ClearUsed();
656
657                 // precache any sounds used by the client
658                 cl.sfx_wizhit = S_PrecacheSound(cl_sound_wizardhit.string, false, true);
659                 cl.sfx_knighthit = S_PrecacheSound(cl_sound_hknighthit.string, false, true);
660                 cl.sfx_tink1 = S_PrecacheSound(cl_sound_tink1.string, false, true);
661                 cl.sfx_ric1 = S_PrecacheSound(cl_sound_ric1.string, false, true);
662                 cl.sfx_ric2 = S_PrecacheSound(cl_sound_ric2.string, false, true);
663                 cl.sfx_ric3 = S_PrecacheSound(cl_sound_ric3.string, false, true);
664                 cl.sfx_r_exp3 = S_PrecacheSound(cl_sound_r_exp3.string, false, true);
665
666                 // sounds used by the game
667                 for (i = 1;i < MAX_SOUNDS && cl.sound_name[i][0];i++)
668                         cl.sound_precache[i] = S_PrecacheSound(cl.sound_name[i], true, true);
669
670                 // we purge the models and sounds later in CL_SignonReply
671                 //S_PurgeUnused();
672
673                 // check memory integrity
674                 Mem_CheckSentinelsGlobal();
675
676                 // done with sound downloads, next we check models
677                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
678                 MSG_WriteString(&cls.netcon->message, va("modellist %i %i", cl.qw_servercount, 0));
679                 break;
680         case dl_none:
681         default:
682                 Con_Printf("Unknown download type.\n");
683         }
684 }
685
686 static void QW_CL_ParseDownload(void)
687 {
688         int size = (signed short)MSG_ReadShort();
689         int percent = MSG_ReadByte();
690
691         //Con_Printf("download %i %i%% (%i/%i)\n", size, percent, cls.qw_downloadmemorycursize, cls.qw_downloadmemorymaxsize);
692
693         // skip the download fragment if playing a demo
694         if (!cls.netcon)
695         {
696                 if (size > 0)
697                         msg_readcount += size;
698                 return;
699         }
700
701         if (size == -1)
702         {
703                 Con_Printf("File not found.\n");
704                 QW_CL_RequestNextDownload();
705                 return;
706         }
707
708         if (msg_readcount + (unsigned short)size > net_message.cursize)
709                 Host_Error("corrupt download message\n");
710
711         // make sure the buffer is big enough to include this new fragment
712         if (!cls.qw_downloadmemory || cls.qw_downloadmemorymaxsize < cls.qw_downloadmemorycursize + size)
713         {
714                 unsigned char *old;
715                 while (cls.qw_downloadmemorymaxsize < cls.qw_downloadmemorycursize + size)
716                         cls.qw_downloadmemorymaxsize *= 2;
717                 old = cls.qw_downloadmemory;
718                 cls.qw_downloadmemory = (unsigned char *)Mem_Alloc(cls.permanentmempool, cls.qw_downloadmemorymaxsize);
719                 if (old)
720                 {
721                         memcpy(cls.qw_downloadmemory, old, cls.qw_downloadmemorycursize);
722                         Mem_Free(old);
723                 }
724         }
725
726         // read the fragment out of the packet
727         MSG_ReadBytes(size, cls.qw_downloadmemory + cls.qw_downloadmemorycursize);
728         cls.qw_downloadmemorycursize += size;
729         cls.qw_downloadspeedcount += size;
730
731         cls.qw_downloadpercent = percent;
732
733         if (percent != 100)
734         {
735                 // request next fragment
736                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
737                 MSG_WriteString(&cls.netcon->message, "nextdl");
738         }
739         else
740         {
741                 // finished file
742                 Con_Printf("Downloaded \"%s\"\n", cls.qw_downloadname);
743
744                 FS_WriteFile(cls.qw_downloadname, cls.qw_downloadmemory, cls.qw_downloadmemorycursize);
745
746                 cls.qw_downloadpercent = 0;
747
748                 // start downloading the next file (or join the game)
749                 QW_CL_RequestNextDownload();
750         }
751 }
752
753 static void QW_CL_ParseModelList(void)
754 {
755         int n;
756         int nummodels = MSG_ReadByte();
757         char *str;
758
759         // parse model precache list
760         for (;;)
761         {
762                 str = MSG_ReadString();
763                 if (!str[0])
764                         break;
765                 nummodels++;
766                 if (nummodels==MAX_MODELS)
767                         Host_Error("Server sent too many model precaches");
768                 if (strlen(str) >= MAX_QPATH)
769                         Host_Error("Server sent a precache name of %i characters (max %i)", (int)strlen(str), MAX_QPATH - 1);
770                 strlcpy(cl.model_name[nummodels], str, sizeof (cl.model_name[nummodels]));
771         }
772
773         n = MSG_ReadByte();
774         if (n)
775         {
776                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
777                 MSG_WriteString(&cls.netcon->message, va("modellist %i %i", cl.qw_servercount, n));
778                 return;
779         }
780
781         cls.signon = 2;
782         cls.qw_downloadnumber = 0;
783         cls.qw_downloadtype = dl_model;
784         QW_CL_RequestNextDownload();
785 }
786
787 static void QW_CL_ParseSoundList(void)
788 {
789         int n;
790         int numsounds = MSG_ReadByte();
791         char *str;
792
793         // parse sound precache list
794         for (;;)
795         {
796                 str = MSG_ReadString();
797                 if (!str[0])
798                         break;
799                 numsounds++;
800                 if (numsounds==MAX_SOUNDS)
801                         Host_Error("Server sent too many sound precaches");
802                 if (strlen(str) >= MAX_QPATH)
803                         Host_Error("Server sent a precache name of %i characters (max %i)", (int)strlen(str), MAX_QPATH - 1);
804                 strlcpy(cl.sound_name[numsounds], str, sizeof (cl.sound_name[numsounds]));
805         }
806
807         n = MSG_ReadByte();
808
809         if (n)
810         {
811                 MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
812                 MSG_WriteString(&cls.netcon->message, va("soundlist %i %i", cl.qw_servercount, n));
813                 return;
814         }
815
816         cls.signon = 2;
817         cls.qw_downloadnumber = 0;
818         cls.qw_downloadtype = dl_sound;
819         QW_CL_RequestNextDownload();
820 }
821
822 static void QW_CL_Skins_f(void)
823 {
824         cls.qw_downloadnumber = 0;
825         cls.qw_downloadtype = dl_skin;
826         QW_CL_RequestNextDownload();
827 }
828
829 static void QW_CL_Changing_f(void)
830 {
831         if (cls.qw_downloadmemory)  // don't change when downloading
832                 return;
833
834         S_StopAllSounds();
835         cl.intermission = 0;
836         cls.signon = 1; // not active anymore, but not disconnected
837         Con_Printf("\nChanging map...\n");
838 }
839
840 void QW_CL_NextUpload(void)
841 {
842         int r, percent, size;
843
844         if (!cls.qw_uploaddata)
845                 return;
846
847         r = cls.qw_uploadsize - cls.qw_uploadpos;
848         if (r > 768)
849                 r = 768;
850         size = min(1, cls.qw_uploadsize);
851         percent = (cls.qw_uploadpos+r)*100/size;
852
853         MSG_WriteByte(&cls.netcon->message, qw_clc_upload);
854         MSG_WriteShort(&cls.netcon->message, r);
855         MSG_WriteByte(&cls.netcon->message, percent);
856         SZ_Write(&cls.netcon->message, cls.qw_uploaddata + cls.qw_uploadpos, r);
857
858         Con_DPrintf("UPLOAD: %6d: %d written\n", cls.qw_uploadpos, r);
859
860         cls.qw_uploadpos += r;
861
862         if (cls.qw_uploadpos < cls.qw_uploadsize)
863                 return;
864
865         Con_Printf("Upload completed\n");
866
867         QW_CL_StopUpload();
868 }
869
870 void QW_CL_StartUpload(unsigned char *data, int size)
871 {
872         // do nothing in demos or if not connected
873         if (!cls.netcon)
874                 return;
875
876         // abort existing upload if in progress
877         QW_CL_StopUpload();
878
879         Con_DPrintf("Starting upload of %d bytes...\n", size);
880
881         cls.qw_uploaddata = (unsigned char *)Mem_Alloc(cls.permanentmempool, size);
882         memcpy(cls.qw_uploaddata, data, size);
883         cls.qw_uploadsize = size;
884         cls.qw_uploadpos = 0;
885
886         QW_CL_NextUpload();
887 }
888
889 #if 0
890 qboolean QW_CL_IsUploading(void)
891 {
892         return cls.qw_uploaddata != NULL;
893 }
894 #endif
895
896 void QW_CL_StopUpload(void)
897 {
898         if (cls.qw_uploaddata)
899                 Mem_Free(cls.qw_uploaddata);
900         cls.qw_uploaddata = NULL;
901         cls.qw_uploadsize = 0;
902         cls.qw_uploadpos = 0;
903 }
904
905 static void QW_CL_ProcessUserInfo(int slot)
906 {
907         int topcolor, bottomcolor;
908         char temp[2048];
909         InfoString_GetValue(cl.scores[slot].qw_userinfo, "name", cl.scores[slot].name, sizeof(cl.scores[slot].name));
910         InfoString_GetValue(cl.scores[slot].qw_userinfo, "topcolor", temp, sizeof(temp));topcolor = atoi(temp);
911         InfoString_GetValue(cl.scores[slot].qw_userinfo, "bottomcolor", temp, sizeof(temp));bottomcolor = atoi(temp);
912         cl.scores[slot].colors = topcolor * 16 + bottomcolor;
913         InfoString_GetValue(cl.scores[slot].qw_userinfo, "*spectator", temp, sizeof(temp));
914         cl.scores[slot].qw_spectator = temp[0] != 0;
915         InfoString_GetValue(cl.scores[slot].qw_userinfo, "team", cl.scores[slot].qw_team, sizeof(cl.scores[slot].qw_team));
916         InfoString_GetValue(cl.scores[slot].qw_userinfo, "skin", cl.scores[slot].qw_skin, sizeof(cl.scores[slot].qw_skin));
917         if (!cl.scores[slot].qw_skin[0])
918                 strlcpy(cl.scores[slot].qw_skin, "base", sizeof(cl.scores[slot].qw_skin));
919         // TODO: skin cache
920 }
921
922 static void QW_CL_UpdateUserInfo(void)
923 {
924         int slot;
925         slot = MSG_ReadByte();
926         if (slot >= cl.maxclients)
927         {
928                 Con_Printf("svc_updateuserinfo >= cl.maxclients\n");
929                 MSG_ReadLong();
930                 MSG_ReadString();
931                 return;
932         }
933         cl.scores[slot].qw_userid = MSG_ReadLong();
934         strlcpy(cl.scores[slot].qw_userinfo, MSG_ReadString(), sizeof(cl.scores[slot].qw_userinfo));
935
936         QW_CL_ProcessUserInfo(slot);
937 }
938
939 static void QW_CL_SetInfo(void)
940 {
941         int slot;
942         char key[2048];
943         char value[2048];
944         slot = MSG_ReadByte();
945         strlcpy(key, MSG_ReadString(), sizeof(key));
946         strlcpy(value, MSG_ReadString(), sizeof(value));
947         if (slot >= cl.maxclients)
948         {
949                 Con_Printf("svc_setinfo >= cl.maxclients\n");
950                 return;
951         }
952         InfoString_SetValue(cl.scores[slot].qw_userinfo, sizeof(cl.scores[slot].qw_userinfo), key, value);
953
954         QW_CL_ProcessUserInfo(slot);
955 }
956
957 static void QW_CL_ServerInfo(void)
958 {
959         char key[2048];
960         char value[2048];
961         char temp[32];
962         strlcpy(key, MSG_ReadString(), sizeof(key));
963         strlcpy(value, MSG_ReadString(), sizeof(value));
964         Con_DPrintf("SERVERINFO: %s=%s\n", key, value);
965         InfoString_SetValue(cl.qw_serverinfo, sizeof(cl.qw_serverinfo), key, value);
966         InfoString_GetValue(cl.qw_serverinfo, "teamplay", temp, sizeof(temp));
967         cl.qw_teamplay = atoi(temp);
968 }
969
970 static void QW_CL_ParseNails(void)
971 {
972         int i, j;
973         int numnails = MSG_ReadByte();
974         vec_t *v;
975         unsigned char bits[6];
976         for (i = 0;i < numnails;i++)
977         {
978                 for (j = 0;j < 6;j++)
979                         bits[j] = MSG_ReadByte();
980                 if (cl.qw_num_nails > 255)
981                         continue;
982                 v = cl.qw_nails[cl.qw_num_nails++];
983                 v[0] = ( ( bits[0] + ((bits[1]&15)<<8) ) <<1) - 4096;
984                 v[1] = ( ( (bits[1]>>4) + (bits[2]<<4) ) <<1) - 4096;
985                 v[2] = ( ( bits[3] + ((bits[4]&15)<<8) ) <<1) - 4096;
986                 v[3] = -360*(bits[4]>>4)/16;
987                 v[4] = 360*bits[5]/256;
988                 v[5] = 0;
989         }
990 }
991
992 static void CL_UpdateItemsAndWeapon(void)
993 {
994         int j;
995         // check for important changes
996
997         // set flash times
998         if (cl.olditems != cl.stats[STAT_ITEMS])
999                 for (j = 0;j < 32;j++)
1000                         if ((cl.stats[STAT_ITEMS] & (1<<j)) && !(cl.olditems & (1<<j)))
1001                                 cl.item_gettime[j] = cl.time;
1002         cl.olditems = cl.stats[STAT_ITEMS];
1003
1004         // GAME_NEXUIZ hud needs weapon change time
1005         if (cl.activeweapon != cl.stats[STAT_ACTIVEWEAPON])
1006                 cl.weapontime = cl.time;
1007         cl.activeweapon = cl.stats[STAT_ACTIVEWEAPON];
1008 }
1009
1010 #define LOADPROGRESSWEIGHT_SOUND            1.0
1011 #define LOADPROGRESSWEIGHT_MODEL            4.0
1012 #define LOADPROGRESSWEIGHT_WORLDMODEL      30.0
1013 #define LOADPROGRESSWEIGHT_WORLDMODEL_INIT  2.0
1014
1015 void CL_BeginDownloads(qboolean aborteddownload)
1016 {
1017         // quakeworld works differently
1018         if (cls.protocol == PROTOCOL_QUAKEWORLD)
1019                 return;
1020
1021         // this would be a good place to do curl downloads
1022         if(Curl_Have_forthismap())
1023         {
1024                 Curl_Register_predownload(); // come back later
1025                 return;
1026         }
1027
1028         // if we got here...
1029         // curl is done, so let's start with the business
1030         if(!cl.loadbegun)
1031                 SCR_PushLoadingScreen(false, "Loading precaches", 1);
1032         cl.loadbegun = true;
1033
1034         // if already downloading something from the previous level, don't stop it
1035         if (cls.qw_downloadname[0])
1036                 return;
1037
1038         if (cl.downloadcsqc)
1039         {
1040                 size_t progsize;
1041                 cl.downloadcsqc = false;
1042                 if (cls.netcon
1043                  && !sv.active
1044                  && csqc_progname.string
1045                  && csqc_progname.string[0]
1046                  && csqc_progcrc.integer >= 0
1047                  && cl_serverextension_download.integer
1048                  && (FS_CRCFile(csqc_progname.string, &progsize) != csqc_progcrc.integer || ((int)progsize != csqc_progsize.integer && csqc_progsize.integer != -1))
1049                  && !FS_FileExists(va("dlcache/%s.%i.%i", csqc_progname.string, csqc_progsize.integer, csqc_progcrc.integer)))
1050                 {
1051                         Con_Printf("Downloading new CSQC code to dlcache/%s.%i.%i\n", csqc_progname.string, csqc_progsize.integer, csqc_progcrc.integer);
1052                         if(cl_serverextension_download.integer == 2 && FS_HasZlib())
1053                                 Cmd_ForwardStringToServer(va("download %s deflate", csqc_progname.string));
1054                         else
1055                                 Cmd_ForwardStringToServer(va("download %s", csqc_progname.string));
1056                         return;
1057                 }
1058         }
1059
1060         if (cl.loadmodel_current < cl.loadmodel_total)
1061         {
1062                 // loading models
1063                 if(cl.loadmodel_current == 1)
1064                 {
1065                         // worldmodel counts as 16 models (15 + world model setup), for better progress bar
1066                         SCR_PushLoadingScreen(false, "Loading precached models",
1067                                 (
1068                                         (cl.loadmodel_total - 1) * LOADPROGRESSWEIGHT_MODEL
1069                                 +       LOADPROGRESSWEIGHT_WORLDMODEL
1070                                 +       LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1071                                 ) / (
1072                                         (cl.loadmodel_total - 1) * LOADPROGRESSWEIGHT_MODEL
1073                                 +       LOADPROGRESSWEIGHT_WORLDMODEL
1074                                 +       LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1075                                 +       cl.loadsound_total * LOADPROGRESSWEIGHT_SOUND
1076                                 )
1077                         );
1078                         SCR_BeginLoadingPlaque();
1079                 }
1080                 for (;cl.loadmodel_current < cl.loadmodel_total;cl.loadmodel_current++)
1081                 {
1082                         SCR_PushLoadingScreen(false, cl.model_name[cl.loadmodel_current],
1083                                 (
1084                                         (cl.loadmodel_current == 1) ? LOADPROGRESSWEIGHT_WORLDMODEL : LOADPROGRESSWEIGHT_MODEL
1085                                 ) / (
1086                                         (cl.loadmodel_total - 1) * LOADPROGRESSWEIGHT_MODEL
1087                                 +       LOADPROGRESSWEIGHT_WORLDMODEL
1088                                 +       LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1089                                 )
1090                         );
1091                         if (cl.model_precache[cl.loadmodel_current] && cl.model_precache[cl.loadmodel_current]->Draw)
1092                         {
1093                                 SCR_PopLoadingScreen(false);
1094                                 if(cl.loadmodel_current == 1)
1095                                 {
1096                                         SCR_PushLoadingScreen(false, cl.model_name[cl.loadmodel_current], 1.0 / cl.loadmodel_total);
1097                                         SCR_PopLoadingScreen(false);
1098                                 }
1099                                 continue;
1100                         }
1101                         CL_KeepaliveMessage(true);
1102
1103                         // if running a local game, calling Mod_ForName is a completely wasted effort...
1104                         if (sv.active)
1105                                 cl.model_precache[cl.loadmodel_current] = sv.models[cl.loadmodel_current];
1106                         else
1107                         {
1108                                 if(cl.loadmodel_current == 1)
1109                                 {
1110                                         // they'll be soon loaded, but make sure we apply freshly downloaded shaders from a curled pk3
1111                                         Mod_FreeQ3Shaders();
1112                                 }
1113                                 cl.model_precache[cl.loadmodel_current] = Mod_ForName(cl.model_name[cl.loadmodel_current], false, false, cl.model_name[cl.loadmodel_current][0] == '*' ? cl.model_name[1] : NULL);
1114                         }
1115                         SCR_PopLoadingScreen(false);
1116                         if (cl.model_precache[cl.loadmodel_current] && cl.model_precache[cl.loadmodel_current]->Draw && cl.loadmodel_current == 1)
1117                         {
1118                                 // we now have the worldmodel so we can set up the game world
1119                                 SCR_PushLoadingScreen(true, "world model setup",
1120                                         (
1121                                                 LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1122                                         ) / (
1123                                                 (cl.loadmodel_total - 1) * LOADPROGRESSWEIGHT_MODEL
1124                                         +       LOADPROGRESSWEIGHT_WORLDMODEL
1125                                         +       LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1126                                         )
1127                                 );
1128                                 CL_SetupWorldModel();
1129                                 SCR_PopLoadingScreen(true);
1130                                 if (!cl.loadfinished && cl_joinbeforedownloadsfinish.integer)
1131                                 {
1132                                         cl.loadfinished = true;
1133                                         // now issue the spawn to move on to signon 2 like normal
1134                                         if (cls.netcon)
1135                                                 Cmd_ForwardStringToServer("prespawn");
1136                                 }
1137                         }
1138                 }
1139                 SCR_PopLoadingScreen(false);
1140                 // finished loading models
1141         }
1142
1143         if (cl.loadsound_current < cl.loadsound_total)
1144         {
1145                 // loading sounds
1146                 if(cl.loadsound_current == 1)
1147                         SCR_PushLoadingScreen(false, "Loading precached sounds",
1148                                 (
1149                                         cl.loadsound_total * LOADPROGRESSWEIGHT_SOUND
1150                                 ) / (
1151                                         (cl.loadmodel_total - 1) * LOADPROGRESSWEIGHT_MODEL
1152                                 +       LOADPROGRESSWEIGHT_WORLDMODEL
1153                                 +       LOADPROGRESSWEIGHT_WORLDMODEL_INIT
1154                                 +       cl.loadsound_total * LOADPROGRESSWEIGHT_SOUND
1155                                 )
1156                         );
1157                 for (;cl.loadsound_current < cl.loadsound_total;cl.loadsound_current++)
1158                 {
1159                         SCR_PushLoadingScreen(false, cl.sound_name[cl.loadsound_current], 1.0 / cl.loadsound_total);
1160                         if (cl.sound_precache[cl.loadsound_current] && S_IsSoundPrecached(cl.sound_precache[cl.loadsound_current]))
1161                         {
1162                                 SCR_PopLoadingScreen(false);
1163                                 continue;
1164                         }
1165                         CL_KeepaliveMessage(true);
1166                         cl.sound_precache[cl.loadsound_current] = S_PrecacheSound(cl.sound_name[cl.loadsound_current], false, true);
1167                         SCR_PopLoadingScreen(false);
1168                 }
1169                 SCR_PopLoadingScreen(false);
1170                 // finished loading sounds
1171         }
1172
1173         if(gamemode == GAME_NEXUIZ)
1174                 Cvar_SetValueQuick(&cl_serverextension_download, false);
1175                 // in Nexuiz, the built in download protocol is kinda broken (misses lots
1176                 // of dependencies) anyway, and can mess around with the game directory;
1177                 // until this is fixed, only support pk3 downloads via curl, and turn off
1178                 // individual file downloads other than for CSQC
1179                 // on the other end of the download protocol, GAME_NEXUIZ enforces writing
1180                 // to dlcache only
1181                 // idea: support download of pk3 files using this protocol later
1182
1183         // note: the reason these loops skip already-loaded things is that it
1184         // enables this command to be issued during the game if desired
1185
1186         if (cl.downloadmodel_current < cl.loadmodel_total)
1187         {
1188                 // loading models
1189
1190                 for (;cl.downloadmodel_current < cl.loadmodel_total;cl.downloadmodel_current++)
1191                 {
1192                         if (aborteddownload)
1193                         {
1194
1195                                 if (cl.downloadmodel_current == 1)
1196                                 {
1197                                         // the worldmodel failed, but we need to set up anyway
1198                                         Mod_FreeQ3Shaders();
1199                                         CL_SetupWorldModel();
1200                                         if (!cl.loadfinished && cl_joinbeforedownloadsfinish.integer)
1201                                         {
1202                                                 cl.loadfinished = true;
1203                                                 // now issue the spawn to move on to signon 2 like normal
1204                                                 if (cls.netcon)
1205                                                         Cmd_ForwardStringToServer("prespawn");
1206                                         }
1207                                 }
1208                                 aborteddownload = false;
1209                                 continue;
1210                         }
1211                         if (cl.model_precache[cl.downloadmodel_current] && cl.model_precache[cl.downloadmodel_current]->Draw)
1212                                 continue;
1213                         CL_KeepaliveMessage(true);
1214                         if (cl.model_name[cl.downloadmodel_current][0] != '*' && strcmp(cl.model_name[cl.downloadmodel_current], "null") && !FS_FileExists(cl.model_name[cl.downloadmodel_current]))
1215                         {
1216                                 if (cl.downloadmodel_current == 1)
1217                                         Con_Printf("Map %s not found\n", cl.model_name[cl.downloadmodel_current]);
1218                                 else
1219                                         Con_Printf("Model %s not found\n", cl.model_name[cl.downloadmodel_current]);
1220                                 // regarding the * check: don't try to download submodels
1221                                 if (cl_serverextension_download.integer && cls.netcon && cl.model_name[cl.downloadmodel_current][0] != '*' && !sv.active)
1222                                 {
1223                                         Cmd_ForwardStringToServer(va("download %s", cl.model_name[cl.downloadmodel_current]));
1224                                         // we'll try loading again when the download finishes
1225                                         return;
1226                                 }
1227                         }
1228
1229                         if(cl.downloadmodel_current == 1)
1230                         {
1231                                 // they'll be soon loaded, but make sure we apply freshly downloaded shaders from a curled pk3
1232                                 Mod_FreeQ3Shaders();
1233                         }
1234
1235                         cl.model_precache[cl.downloadmodel_current] = Mod_ForName(cl.model_name[cl.downloadmodel_current], false, false, cl.model_name[cl.downloadmodel_current][0] == '*' ? cl.model_name[1] : NULL);
1236                         if (cl.downloadmodel_current == 1)
1237                         {
1238                                 // we now have the worldmodel so we can set up the game world
1239                                 // or maybe we do not have it (cl_serverextension_download 0)
1240                                 // then we need to continue loading ANYWAY!
1241                                 CL_SetupWorldModel();
1242                                 if (!cl.loadfinished && cl_joinbeforedownloadsfinish.integer)
1243                                 {
1244                                         cl.loadfinished = true;
1245                                         // now issue the spawn to move on to signon 2 like normal
1246                                         if (cls.netcon)
1247                                                 Cmd_ForwardStringToServer("prespawn");
1248                                 }
1249                         }
1250                 }
1251
1252                 // finished loading models
1253         }
1254
1255         if (cl.downloadsound_current < cl.loadsound_total)
1256         {
1257                 // loading sounds
1258
1259                 for (;cl.downloadsound_current < cl.loadsound_total;cl.downloadsound_current++)
1260                 {
1261                         char soundname[MAX_QPATH];
1262                         if (aborteddownload)
1263                         {
1264                                 aborteddownload = false;
1265                                 continue;
1266                         }
1267                         if (cl.sound_precache[cl.downloadsound_current] && S_IsSoundPrecached(cl.sound_precache[cl.downloadsound_current]))
1268                                 continue;
1269                         CL_KeepaliveMessage(true);
1270                         dpsnprintf(soundname, sizeof(soundname), "sound/%s", cl.sound_name[cl.downloadsound_current]);
1271                         if (!FS_FileExists(soundname) && !FS_FileExists(cl.sound_name[cl.downloadsound_current]))
1272                         {
1273                                 Con_Printf("Sound %s not found\n", soundname);
1274                                 if (cl_serverextension_download.integer && cls.netcon && !sv.active)
1275                                 {
1276                                         Cmd_ForwardStringToServer(va("download %s", soundname));
1277                                         // we'll try loading again when the download finishes
1278                                         return;
1279                                 }
1280                         }
1281                         cl.sound_precache[cl.downloadsound_current] = S_PrecacheSound(cl.sound_name[cl.downloadsound_current], false, true);
1282                 }
1283
1284                 // finished loading sounds
1285         }
1286
1287         SCR_PopLoadingScreen(false);
1288
1289         if (!cl.loadfinished)
1290         {
1291                 cl.loadfinished = true;
1292
1293                 // check memory integrity
1294                 Mem_CheckSentinelsGlobal();
1295
1296                 // now issue the spawn to move on to signon 2 like normal
1297                 if (cls.netcon)
1298                         Cmd_ForwardStringToServer("prespawn");
1299         }
1300 }
1301
1302 void CL_BeginDownloads_f(void)
1303 {
1304         // prevent cl_begindownloads from being issued multiple times in one match
1305         // to prevent accidentally cancelled downloads
1306         if(cl.loadbegun)
1307                 Con_Printf("cl_begindownloads is only valid once per match\n");
1308         else
1309                 CL_BeginDownloads(false);
1310 }
1311
1312 void CL_StopDownload(int size, int crc)
1313 {
1314         if (cls.qw_downloadmemory && cls.qw_downloadmemorycursize == size && CRC_Block(cls.qw_downloadmemory, cls.qw_downloadmemorycursize) == crc)
1315         {
1316                 int existingcrc;
1317                 size_t existingsize;
1318                 const char *extension;
1319
1320                 if(cls.qw_download_deflate)
1321                 {
1322                         unsigned char *out;
1323                         size_t inflated_size;
1324                         out = FS_Inflate(cls.qw_downloadmemory, cls.qw_downloadmemorycursize, &inflated_size, tempmempool);
1325                         Mem_Free(cls.qw_downloadmemory);
1326                         if(out)
1327                         {
1328                                 Con_Printf("Inflated download: new size: %u (%g%%)\n", (unsigned)inflated_size, 100.0 - 100.0*(cls.qw_downloadmemorycursize / (float)inflated_size));
1329                                 cls.qw_downloadmemory = out;
1330                                 cls.qw_downloadmemorycursize = inflated_size;
1331                         }
1332                         else
1333                         {
1334                                 cls.qw_downloadmemory = NULL;
1335                                 cls.qw_downloadmemorycursize = 0;
1336                                 Con_Printf("Cannot inflate download, possibly corrupt or zlib not present\n");
1337                         }
1338                 }
1339
1340                 if(!cls.qw_downloadmemory)
1341                 {
1342                         Con_Printf("Download \"%s\" is corrupt (see above!)\n", cls.qw_downloadname);
1343                 }
1344                 else
1345                 {
1346                         crc = CRC_Block(cls.qw_downloadmemory, cls.qw_downloadmemorycursize);
1347                         size = cls.qw_downloadmemorycursize;
1348                         // finished file
1349                         // save to disk only if we don't already have it
1350                         // (this is mainly for playing back demos)
1351                         existingcrc = FS_CRCFile(cls.qw_downloadname, &existingsize);
1352                         if (existingsize || gamemode == GAME_NEXUIZ || !strcmp(cls.qw_downloadname, csqc_progname.string))
1353                                 // let csprogs ALWAYS go to dlcache, to prevent "viral csprogs"; also, never put files outside dlcache for Nexuiz
1354                         {
1355                                 if ((int)existingsize != size || existingcrc != crc)
1356                                 {
1357                                         // we have a mismatching file, pick another name for it
1358                                         char name[MAX_QPATH*2];
1359                                         dpsnprintf(name, sizeof(name), "dlcache/%s.%i.%i", cls.qw_downloadname, size, crc);
1360                                         if (!FS_FileExists(name))
1361                                         {
1362                                                 Con_Printf("Downloaded \"%s\" (%i bytes, %i CRC)\n", name, size, crc);
1363                                                 FS_WriteFile(name, cls.qw_downloadmemory, cls.qw_downloadmemorycursize);
1364                                         }
1365                                 }
1366                         }
1367                         else
1368                         {
1369                                 // we either don't have it or have a mismatching file...
1370                                 // so it's time to accept the file
1371                                 // but if we already have a mismatching file we need to rename
1372                                 // this new one, and if we already have this file in renamed form,
1373                                 // we do nothing
1374                                 Con_Printf("Downloaded \"%s\" (%i bytes, %i CRC)\n", cls.qw_downloadname, size, crc);
1375                                 FS_WriteFile(cls.qw_downloadname, cls.qw_downloadmemory, cls.qw_downloadmemorycursize);
1376                                 extension = FS_FileExtension(cls.qw_downloadname);
1377                                 if (!strcasecmp(extension, "pak") || !strcasecmp(extension, "pk3"))
1378                                         FS_Rescan();
1379                         }
1380                 }
1381         }
1382         else if (cls.qw_downloadmemory && size)
1383         {
1384                 Con_Printf("Download \"%s\" is corrupt (%i bytes, %i CRC, should be %i bytes, %i CRC), discarding\n", cls.qw_downloadname, size, crc, (int)cls.qw_downloadmemorycursize, (int)CRC_Block(cls.qw_downloadmemory, cls.qw_downloadmemorycursize));
1385                 CL_BeginDownloads(true);
1386         }
1387
1388         if (cls.qw_downloadmemory)
1389                 Mem_Free(cls.qw_downloadmemory);
1390         cls.qw_downloadmemory = NULL;
1391         cls.qw_downloadname[0] = 0;
1392         cls.qw_downloadmemorymaxsize = 0;
1393         cls.qw_downloadmemorycursize = 0;
1394         cls.qw_downloadpercent = 0;
1395 }
1396
1397 void CL_ParseDownload(void)
1398 {
1399         int i, start, size;
1400         static unsigned char data[NET_MAXMESSAGE];
1401         start = MSG_ReadLong();
1402         size = (unsigned short)MSG_ReadShort();
1403
1404         // record the start/size information to ack in the next input packet
1405         for (i = 0;i < CL_MAX_DOWNLOADACKS;i++)
1406         {
1407                 if (!cls.dp_downloadack[i].start && !cls.dp_downloadack[i].size)
1408                 {
1409                         cls.dp_downloadack[i].start = start;
1410                         cls.dp_downloadack[i].size = size;
1411                         break;
1412                 }
1413         }
1414
1415         MSG_ReadBytes(size, data);
1416
1417         if (!cls.qw_downloadname[0])
1418         {
1419                 if (size > 0)
1420                         Con_Printf("CL_ParseDownload: received %i bytes with no download active\n", size);
1421                 return;
1422         }
1423
1424         if (start + size > cls.qw_downloadmemorymaxsize)
1425                 Host_Error("corrupt download message\n");
1426
1427         // only advance cursize if the data is at the expected position
1428         // (gaps are unacceptable)
1429         memcpy(cls.qw_downloadmemory + start, data, size);
1430         cls.qw_downloadmemorycursize = start + size;
1431         cls.qw_downloadpercent = (int)floor((start+size) * 100.0 / cls.qw_downloadmemorymaxsize);
1432         cls.qw_downloadpercent = bound(0, cls.qw_downloadpercent, 100);
1433         cls.qw_downloadspeedcount += size;
1434 }
1435
1436 void CL_DownloadBegin_f(void)
1437 {
1438         int size = atoi(Cmd_Argv(1));
1439
1440         if (size < 0 || size > 1<<30 || FS_CheckNastyPath(Cmd_Argv(2), false))
1441         {
1442                 Con_Printf("cl_downloadbegin: received bogus information\n");
1443                 CL_StopDownload(0, 0);
1444                 return;
1445         }
1446
1447         if (cls.qw_downloadname[0])
1448                 Con_Printf("Download of %s aborted\n", cls.qw_downloadname);
1449
1450         CL_StopDownload(0, 0);
1451
1452         // we're really beginning a download now, so initialize stuff
1453         strlcpy(cls.qw_downloadname, Cmd_Argv(2), sizeof(cls.qw_downloadname));
1454         cls.qw_downloadmemorymaxsize = size;
1455         cls.qw_downloadmemory = (unsigned char *) Mem_Alloc(cls.permanentmempool, cls.qw_downloadmemorymaxsize);
1456         cls.qw_downloadnumber++;
1457
1458         cls.qw_download_deflate = false;
1459         if(Cmd_Argc() >= 4)
1460         {
1461                 if(!strcmp(Cmd_Argv(3), "deflate"))
1462                         cls.qw_download_deflate = true;
1463                 // check further encodings here
1464         }
1465
1466         Cmd_ForwardStringToServer("sv_startdownload");
1467 }
1468
1469 void CL_StopDownload_f(void)
1470 {
1471         Curl_CancelAll();
1472         if (cls.qw_downloadname[0])
1473         {
1474                 Con_Printf("Download of %s aborted\n", cls.qw_downloadname);
1475                 CL_StopDownload(0, 0);
1476         }
1477         CL_BeginDownloads(true);
1478 }
1479
1480 void CL_DownloadFinished_f(void)
1481 {
1482         if (Cmd_Argc() < 3)
1483         {
1484                 Con_Printf("Malformed cl_downloadfinished command\n");
1485                 return;
1486         }
1487         CL_StopDownload(atoi(Cmd_Argv(1)), atoi(Cmd_Argv(2)));
1488         CL_BeginDownloads(false);
1489 }
1490
1491 static void CL_SendPlayerInfo(void)
1492 {
1493         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1494         MSG_WriteString (&cls.netcon->message, va("name \"%s\"", cl_name.string));
1495
1496         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1497         MSG_WriteString (&cls.netcon->message, va("color %i %i", cl_color.integer >> 4, cl_color.integer & 15));
1498
1499         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1500         MSG_WriteString (&cls.netcon->message, va("rate %i", cl_rate.integer));
1501
1502         if (cl_pmodel.integer)
1503         {
1504                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1505                 MSG_WriteString (&cls.netcon->message, va("pmodel %i", cl_pmodel.integer));
1506         }
1507         if (*cl_playermodel.string)
1508         {
1509                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1510                 MSG_WriteString (&cls.netcon->message, va("playermodel %s", cl_playermodel.string));
1511         }
1512         if (*cl_playerskin.string)
1513         {
1514                 MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1515                 MSG_WriteString (&cls.netcon->message, va("playerskin %s", cl_playerskin.string));
1516         }
1517 }
1518
1519 /*
1520 =====================
1521 CL_SignonReply
1522
1523 An svc_signonnum has been received, perform a client side setup
1524 =====================
1525 */
1526 static void CL_SignonReply (void)
1527 {
1528         Con_DPrintf("CL_SignonReply: %i\n", cls.signon);
1529
1530         switch (cls.signon)
1531         {
1532         case 1:
1533                 if (cls.netcon)
1534                 {
1535                         // send player info before we begin downloads
1536                         // (so that the server can see the player name while downloading)
1537                         CL_SendPlayerInfo();
1538
1539                         // execute cl_begindownloads next frame
1540                         // (after any commands added by svc_stufftext have been executed)
1541                         // when done with downloads the "prespawn" will be sent
1542                         Cbuf_AddText("\ncl_begindownloads\n");
1543
1544                         //MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1545                         //MSG_WriteString (&cls.netcon->message, "prespawn");
1546                 }
1547                 else // playing a demo...  make sure loading occurs as soon as possible
1548                         CL_BeginDownloads(false);
1549                 break;
1550
1551         case 2:
1552                 if (cls.netcon)
1553                 {
1554                         // LordHavoc: quake sent the player info here but due to downloads
1555                         // it is sent earlier instead
1556                         // CL_SendPlayerInfo();
1557
1558                         // LordHavoc: changed to begin a loading stage and issue this when done
1559                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1560                         MSG_WriteString (&cls.netcon->message, "spawn");
1561                 }
1562                 break;
1563
1564         case 3:
1565                 if (cls.netcon)
1566                 {
1567                         MSG_WriteByte (&cls.netcon->message, clc_stringcmd);
1568                         MSG_WriteString (&cls.netcon->message, "begin");
1569                 }
1570                 break;
1571
1572         case 4:
1573                 // after the level has been loaded, we shouldn't need the shaders, and
1574                 // if they are needed again they will be automatically loaded...
1575                 // we also don't need the unused models or sounds from the last level
1576                 Mod_FreeQ3Shaders();
1577                 Mod_PurgeUnused();
1578                 S_PurgeUnused();
1579
1580                 Con_ClearNotify();
1581                 if (COM_CheckParm("-profilegameonly"))
1582                         Sys_AllowProfiling(true);
1583                 break;
1584         }
1585 }
1586
1587 /*
1588 ==================
1589 CL_ParseServerInfo
1590 ==================
1591 */
1592 void CL_ParseServerInfo (void)
1593 {
1594         char *str;
1595         int i;
1596         protocolversion_t protocol;
1597         int nummodels, numsounds;
1598
1599         Con_DPrint("Serverinfo packet received.\n");
1600
1601         // if server is active, we already began a loading plaque
1602         if (!sv.active)
1603         {
1604                 SCR_BeginLoadingPlaque();
1605                 S_StopAllSounds();
1606                 // free q3 shaders so that any newly downloaded shaders will be active
1607                 Mod_FreeQ3Shaders();
1608         }
1609
1610         // check memory integrity
1611         Mem_CheckSentinelsGlobal();
1612
1613         // clear cl_serverextension cvars
1614         Cvar_SetValueQuick(&cl_serverextension_download, 0);
1615
1616 //
1617 // wipe the client_state_t struct
1618 //
1619         CL_ClearState ();
1620
1621 // parse protocol version number
1622         i = MSG_ReadLong ();
1623         protocol = Protocol_EnumForNumber(i);
1624         if (protocol == PROTOCOL_UNKNOWN)
1625         {
1626                 Host_Error("CL_ParseServerInfo: Server is unrecognized protocol number (%i)", i);
1627                 return;
1628         }
1629         // hack for unmarked Nehahra movie demos which had a custom protocol
1630         if (protocol == PROTOCOL_QUAKEDP && cls.demoplayback && demo_nehahra.integer)
1631                 protocol = PROTOCOL_NEHAHRAMOVIE;
1632         cls.protocol = protocol;
1633         Con_DPrintf("Server protocol is %s\n", Protocol_NameForEnum(cls.protocol));
1634
1635         cl.num_entities = 1;
1636
1637         if (protocol == PROTOCOL_QUAKEWORLD)
1638         {
1639                 char gamedir[1][MAX_QPATH];
1640
1641                 cl.qw_servercount = MSG_ReadLong();
1642
1643                 str = MSG_ReadString();
1644                 Con_Printf("server gamedir is %s\n", str);
1645                 strlcpy(gamedir[0], str, sizeof(gamedir[0]));
1646
1647                 // change gamedir if needed
1648                 if (!FS_ChangeGameDirs(1, gamedir, true, false))
1649                         Host_Error("CL_ParseServerInfo: unable to switch to server specified gamedir");
1650
1651                 cl.gametype = GAME_DEATHMATCH;
1652                 cl.maxclients = 32;
1653
1654                 // parse player number
1655                 i = MSG_ReadByte();
1656                 // 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)
1657                 //cl.qw_spectator = (i & 128) != 0;
1658                 cl.realplayerentity = cl.playerentity = cl.viewentity = (i & 127) + 1;
1659                 cl.scores = (scoreboard_t *)Mem_Alloc(cls.levelmempool, cl.maxclients*sizeof(*cl.scores));
1660
1661                 // get the full level name
1662                 str = MSG_ReadString ();
1663                 strlcpy (cl.levelname, str, sizeof(cl.levelname));
1664
1665                 // get the movevars that are defined in the qw protocol
1666                 cl.movevars_gravity            = MSG_ReadFloat();
1667                 cl.movevars_stopspeed          = MSG_ReadFloat();
1668                 cl.movevars_maxspeed           = MSG_ReadFloat();
1669                 cl.movevars_spectatormaxspeed  = MSG_ReadFloat();
1670                 cl.movevars_accelerate         = MSG_ReadFloat();
1671                 cl.movevars_airaccelerate      = MSG_ReadFloat();
1672                 cl.movevars_wateraccelerate    = MSG_ReadFloat();
1673                 cl.movevars_friction           = MSG_ReadFloat();
1674                 cl.movevars_waterfriction      = MSG_ReadFloat();
1675                 cl.movevars_entgravity         = MSG_ReadFloat();
1676
1677                 // other movevars not in the protocol...
1678                 cl.movevars_wallfriction = 0;
1679                 cl.movevars_timescale = 1;
1680                 cl.movevars_jumpvelocity = 270;
1681                 cl.movevars_edgefriction = 1;
1682                 cl.movevars_maxairspeed = 30;
1683                 cl.movevars_stepheight = 18;
1684                 cl.movevars_airaccel_qw = 1;
1685                 cl.movevars_airaccel_sideways_friction = 0;
1686
1687                 // seperate the printfs so the server message can have a color
1688                 Con_Printf("\n\n<===================================>\n\n\2%s\n", str);
1689
1690                 // check memory integrity
1691                 Mem_CheckSentinelsGlobal();
1692
1693                 if (cls.netcon)
1694                 {
1695                         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
1696                         MSG_WriteString(&cls.netcon->message, va("soundlist %i %i", cl.qw_servercount, 0));
1697                 }
1698
1699                 cl.loadbegun = false;
1700                 cl.loadfinished = false;
1701
1702                 cls.state = ca_connected;
1703                 cls.signon = 1;
1704
1705                 // note: on QW protocol we can't set up the gameworld until after
1706                 // downloads finish...
1707                 // (we don't even know the name of the map yet)
1708         }
1709         else
1710         {
1711         // parse maxclients
1712                 cl.maxclients = MSG_ReadByte ();
1713                 if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD)
1714                 {
1715                         Host_Error("Bad maxclients (%u) from server", cl.maxclients);
1716                         return;
1717                 }
1718                 cl.scores = (scoreboard_t *)Mem_Alloc(cls.levelmempool, cl.maxclients*sizeof(*cl.scores));
1719
1720         // parse gametype
1721                 cl.gametype = MSG_ReadByte ();
1722                 // the original id singleplayer demos are bugged and contain
1723                 // GAME_DEATHMATCH even for singleplayer
1724                 if (cl.maxclients == 1 && cls.protocol == PROTOCOL_QUAKE)
1725                         cl.gametype = GAME_COOP;
1726
1727         // parse signon message
1728                 str = MSG_ReadString ();
1729                 strlcpy (cl.levelname, str, sizeof(cl.levelname));
1730
1731         // seperate the printfs so the server message can have a color
1732                 if (cls.protocol != PROTOCOL_NEHAHRAMOVIE) // no messages when playing the Nehahra movie
1733                         Con_Printf("\n<===================================>\n\n\2%s\n", str);
1734
1735                 // check memory integrity
1736                 Mem_CheckSentinelsGlobal();
1737
1738                 // parse model precache list
1739                 for (nummodels=1 ; ; nummodels++)
1740                 {
1741                         str = MSG_ReadString();
1742                         if (!str[0])
1743                                 break;
1744                         if (nummodels==MAX_MODELS)
1745                                 Host_Error ("Server sent too many model precaches");
1746                         if (strlen(str) >= MAX_QPATH)
1747                                 Host_Error ("Server sent a precache name of %i characters (max %i)", (int)strlen(str), MAX_QPATH - 1);
1748                         strlcpy (cl.model_name[nummodels], str, sizeof (cl.model_name[nummodels]));
1749                 }
1750                 // parse sound precache list
1751                 for (numsounds=1 ; ; numsounds++)
1752                 {
1753                         str = MSG_ReadString();
1754                         if (!str[0])
1755                                 break;
1756                         if (numsounds==MAX_SOUNDS)
1757                                 Host_Error("Server sent too many sound precaches");
1758                         if (strlen(str) >= MAX_QPATH)
1759                                 Host_Error("Server sent a precache name of %i characters (max %i)", (int)strlen(str), MAX_QPATH - 1);
1760                         strlcpy (cl.sound_name[numsounds], str, sizeof (cl.sound_name[numsounds]));
1761                 }
1762
1763                 // touch all of the precached models that are still loaded so we can free
1764                 // anything that isn't needed
1765                 if (!sv.active)
1766                         Mod_ClearUsed();
1767                 for (i = 1;i < nummodels;i++)
1768                         Mod_FindName(cl.model_name[i], cl.model_name[i][0] == '*' ? cl.model_name[1] : NULL);
1769                 // precache any models used by the client (this also marks them used)
1770                 cl.model_bolt = Mod_ForName("progs/bolt.mdl", false, false, NULL);
1771                 cl.model_bolt2 = Mod_ForName("progs/bolt2.mdl", false, false, NULL);
1772                 cl.model_bolt3 = Mod_ForName("progs/bolt3.mdl", false, false, NULL);
1773                 cl.model_beam = Mod_ForName("progs/beam.mdl", false, false, NULL);
1774
1775                 // we purge the models and sounds later in CL_SignonReply
1776                 //Mod_PurgeUnused();
1777                 //S_PurgeUnused();
1778
1779                 // clear sound usage flags for purging of unused sounds
1780                 S_ClearUsed();
1781
1782                 // precache any sounds used by the client
1783                 cl.sfx_wizhit = S_PrecacheSound(cl_sound_wizardhit.string, false, true);
1784                 cl.sfx_knighthit = S_PrecacheSound(cl_sound_hknighthit.string, false, true);
1785                 cl.sfx_tink1 = S_PrecacheSound(cl_sound_tink1.string, false, true);
1786                 cl.sfx_ric1 = S_PrecacheSound(cl_sound_ric1.string, false, true);
1787                 cl.sfx_ric2 = S_PrecacheSound(cl_sound_ric2.string, false, true);
1788                 cl.sfx_ric3 = S_PrecacheSound(cl_sound_ric3.string, false, true);
1789                 cl.sfx_r_exp3 = S_PrecacheSound(cl_sound_r_exp3.string, false, true);
1790
1791                 // sounds used by the game
1792                 for (i = 1;i < MAX_SOUNDS && cl.sound_name[i][0];i++)
1793                         cl.sound_precache[i] = S_PrecacheSound(cl.sound_name[i], true, true);
1794
1795                 // now we try to load everything that is new
1796                 cl.loadmodel_current = 1;
1797                 cl.downloadmodel_current = 1;
1798                 cl.loadmodel_total = nummodels;
1799                 cl.loadsound_current = 1;
1800                 cl.downloadsound_current = 1;
1801                 cl.loadsound_total = numsounds;
1802                 cl.downloadcsqc = true;
1803                 cl.loadbegun = false;
1804                 cl.loadfinished = false;
1805                 cl.loadcsqc = true;
1806         }
1807
1808         // check memory integrity
1809         Mem_CheckSentinelsGlobal();
1810
1811 // if cl_autodemo is set, automatically start recording a demo if one isn't being recorded already
1812         if (cl_autodemo.integer && cls.netcon && cls.protocol != PROTOCOL_QUAKEWORLD)
1813         {
1814                 char demofile[MAX_OSPATH];
1815                 char levelname[MAX_QPATH];
1816
1817                 if (cls.demorecording)
1818                 {
1819                         // finish the previous level's demo file
1820                         CL_Stop_f();
1821                 }
1822
1823                 // start a new demo file
1824                 strlcpy(levelname, FS_FileWithoutPath(cl.model_name[1]), sizeof(levelname));
1825                 if (strrchr(levelname, '.'))
1826                         *(strrchr(levelname, '.')) = 0;
1827                 dpsnprintf (demofile, sizeof(demofile), "%s_%s.dem", Sys_TimeString (cl_autodemo_nameformat.string), levelname);
1828
1829                 Con_Printf ("Auto-recording to %s.\n", demofile);
1830
1831                 // Reset bit 0 for every new demo
1832                 Cvar_SetValueQuick(&cl_autodemo_delete,
1833                         (cl_autodemo_delete.integer & ~0x1)
1834                         |
1835                         ((cl_autodemo_delete.integer & 0x2) ? 0x1 : 0)
1836                 );
1837
1838                 cls.demofile = FS_OpenRealFile(demofile, "wb", false);
1839                 if (cls.demofile)
1840                 {
1841                         cls.forcetrack = -1;
1842                         FS_Printf (cls.demofile, "%i\n", cls.forcetrack);
1843                         cls.demorecording = true;
1844                         strlcpy(cls.demoname, demofile, sizeof(cls.demoname));
1845                         cls.demo_lastcsprogssize = -1;
1846                         cls.demo_lastcsprogscrc = -1;
1847                 }
1848                 else
1849                         Con_Print ("ERROR: couldn't open.\n");
1850         }
1851 }
1852
1853 void CL_ValidateState(entity_state_t *s)
1854 {
1855         dp_model_t *model;
1856
1857         if (!s->active)
1858                 return;
1859
1860         if (s->modelindex >= MAX_MODELS)
1861                 Host_Error("CL_ValidateState: modelindex (%i) >= MAX_MODELS (%i)\n", s->modelindex, MAX_MODELS);
1862
1863         // these warnings are only warnings, no corrections are made to the state
1864         // because states are often copied for decoding, which otherwise would
1865         // propogate some of the corrections accidentally
1866         // (this used to happen, sometimes affecting skin and frame)
1867
1868         // colormap is client index + 1
1869         if (!(s->flags & RENDER_COLORMAPPED) && s->colormap > cl.maxclients)
1870                 Con_DPrintf("CL_ValidateState: colormap (%i) > cl.maxclients (%i)\n", s->colormap, cl.maxclients);
1871
1872         model = CL_GetModelByIndex(s->modelindex);
1873         if (model && model->type && s->frame >= model->numframes)
1874                 Con_DPrintf("CL_ValidateState: no such frame %i in \"%s\" (which has %i frames)\n", s->frame, model->name, model->numframes);
1875         if (model && model->type && s->skin > 0 && s->skin >= model->numskins && !(s->lightpflags & PFLAGS_FULLDYNAMIC))
1876                 Con_DPrintf("CL_ValidateState: no such skin %i in \"%s\" (which has %i skins)\n", s->skin, model->name, model->numskins);
1877 }
1878
1879 void CL_MoveLerpEntityStates(entity_t *ent)
1880 {
1881         float odelta[3], adelta[3];
1882         VectorSubtract(ent->state_current.origin, ent->persistent.neworigin, odelta);
1883         VectorSubtract(ent->state_current.angles, ent->persistent.newangles, adelta);
1884         if (!ent->state_previous.active || ent->state_previous.modelindex != ent->state_current.modelindex)
1885         {
1886                 // reset all persistent stuff if this is a new entity
1887                 ent->persistent.lerpdeltatime = 0;
1888                 ent->persistent.lerpstarttime = cl.mtime[1];
1889                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
1890                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
1891                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1892                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1893                 // reset animation interpolation as well
1894                 ent->render.framegroupblend[0].frame = ent->render.framegroupblend[1].frame = ent->state_current.frame;
1895                 ent->render.framegroupblend[0].start = ent->render.framegroupblend[1].start = cl.time;
1896                 ent->render.framegroupblend[0].lerp = 1;ent->render.framegroupblend[1].lerp = 0;
1897                 ent->render.shadertime = cl.time;
1898                 // reset various persistent stuff
1899                 ent->persistent.muzzleflash = 0;
1900                 ent->persistent.trail_allowed = false;
1901         }
1902         else if ((ent->state_previous.effects & EF_TELEPORT_BIT) != (ent->state_current.effects & EF_TELEPORT_BIT))
1903         {
1904                 // don't interpolate the move
1905                 ent->persistent.lerpdeltatime = 0;
1906                 ent->persistent.lerpstarttime = cl.mtime[1];
1907                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
1908                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
1909                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1910                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1911                 ent->persistent.trail_allowed = false;
1912
1913                 // if(ent->state_current.frame != ent->state_previous.frame)
1914                 // do this even if we did change the frame
1915                 // teleport bit is only used if an animation restart, or a jump, is necessary
1916                 // so it should be always harmless to do this
1917                 {
1918                         ent->render.framegroupblend[0].frame = ent->render.framegroupblend[1].frame = ent->state_current.frame;
1919                         ent->render.framegroupblend[0].start = ent->render.framegroupblend[1].start = cl.time;
1920                         ent->render.framegroupblend[0].lerp = 1;ent->render.framegroupblend[1].lerp = 0;
1921                 }
1922
1923                 // note that this case must do everything the following case does too
1924         }
1925         else if ((ent->state_previous.effects & EF_RESTARTANIM_BIT) != (ent->state_current.effects & EF_RESTARTANIM_BIT))
1926         {
1927                 ent->render.framegroupblend[1] = ent->render.framegroupblend[0];
1928                 ent->render.framegroupblend[1].lerp = 1;
1929                 ent->render.framegroupblend[0].frame = ent->state_current.frame;
1930                 ent->render.framegroupblend[0].start = cl.time;
1931                 ent->render.framegroupblend[0].lerp = 0;
1932         }
1933         else if (DotProduct(odelta, odelta) > 1000*1000
1934                 || (cl.fixangle[0] && !cl.fixangle[1])
1935                 || (ent->state_previous.tagindex != ent->state_current.tagindex)
1936                 || (ent->state_previous.tagentity != ent->state_current.tagentity))
1937         {
1938                 // don't interpolate the move
1939                 // (the fixangle[] check detects teleports, but not constant fixangles
1940                 //  such as when spectating)
1941                 ent->persistent.lerpdeltatime = 0;
1942                 ent->persistent.lerpstarttime = cl.mtime[1];
1943                 VectorCopy(ent->state_current.origin, ent->persistent.oldorigin);
1944                 VectorCopy(ent->state_current.angles, ent->persistent.oldangles);
1945                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1946                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1947                 ent->persistent.trail_allowed = false;
1948         }
1949         else if (ent->state_current.flags & RENDER_STEP)
1950         {
1951                 // monster interpolation
1952                 if (DotProduct(odelta, odelta) + DotProduct(adelta, adelta) > 0.01)
1953                 {
1954                         ent->persistent.lerpdeltatime = bound(0, cl.mtime[1] - ent->persistent.lerpstarttime, 0.1);
1955                         ent->persistent.lerpstarttime = cl.mtime[1];
1956                         VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
1957                         VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
1958                         VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1959                         VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1960                 }
1961         }
1962         else
1963         {
1964                 // not a monster
1965                 ent->persistent.lerpstarttime = ent->state_previous.time;
1966                 // no lerp if it's singleplayer
1967                 if (cl.islocalgame && !sv_fixedframeratesingleplayer.integer)
1968                         ent->persistent.lerpdeltatime = 0;
1969                 else
1970                         ent->persistent.lerpdeltatime = bound(0, ent->state_current.time - ent->state_previous.time, 0.1);
1971                 VectorCopy(ent->persistent.neworigin, ent->persistent.oldorigin);
1972                 VectorCopy(ent->persistent.newangles, ent->persistent.oldangles);
1973                 VectorCopy(ent->state_current.origin, ent->persistent.neworigin);
1974                 VectorCopy(ent->state_current.angles, ent->persistent.newangles);
1975         }
1976         // trigger muzzleflash effect if necessary
1977         if (ent->state_current.effects & EF_MUZZLEFLASH)
1978                 ent->persistent.muzzleflash = 1;
1979 }
1980
1981 /*
1982 ==================
1983 CL_ParseBaseline
1984 ==================
1985 */
1986 void CL_ParseBaseline (entity_t *ent, int large)
1987 {
1988         int i;
1989
1990         ent->state_baseline = defaultstate;
1991         // FIXME: set ent->state_baseline.number?
1992         ent->state_baseline.active = true;
1993         if (large)
1994         {
1995                 ent->state_baseline.modelindex = (unsigned short) MSG_ReadShort ();
1996                 ent->state_baseline.frame = (unsigned short) MSG_ReadShort ();
1997         }
1998         else if (cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3)
1999         {
2000                 ent->state_baseline.modelindex = (unsigned short) MSG_ReadShort ();
2001                 ent->state_baseline.frame = MSG_ReadByte ();
2002         }
2003         else
2004         {
2005                 ent->state_baseline.modelindex = MSG_ReadByte ();
2006                 ent->state_baseline.frame = MSG_ReadByte ();
2007         }
2008         ent->state_baseline.colormap = MSG_ReadByte();
2009         ent->state_baseline.skin = MSG_ReadByte();
2010         for (i = 0;i < 3;i++)
2011         {
2012                 ent->state_baseline.origin[i] = MSG_ReadCoord(cls.protocol);
2013                 ent->state_baseline.angles[i] = MSG_ReadAngle(cls.protocol);
2014         }
2015         ent->state_previous = ent->state_current = ent->state_baseline;
2016 }
2017
2018
2019 /*
2020 ==================
2021 CL_ParseClientdata
2022
2023 Server information pertaining to this client only
2024 ==================
2025 */
2026 void CL_ParseClientdata (void)
2027 {
2028         int i, bits;
2029
2030         VectorCopy (cl.mpunchangle[0], cl.mpunchangle[1]);
2031         VectorCopy (cl.mpunchvector[0], cl.mpunchvector[1]);
2032         VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
2033         cl.mviewzoom[1] = cl.mviewzoom[0];
2034
2035         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3 || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4 || cls.protocol == PROTOCOL_DARKPLACES5)
2036         {
2037                 cl.stats[STAT_VIEWHEIGHT] = DEFAULT_VIEWHEIGHT;
2038                 cl.stats[STAT_ITEMS] = 0;
2039                 cl.stats[STAT_VIEWZOOM] = 255;
2040         }
2041         cl.idealpitch = 0;
2042         cl.mpunchangle[0][0] = 0;
2043         cl.mpunchangle[0][1] = 0;
2044         cl.mpunchangle[0][2] = 0;
2045         cl.mpunchvector[0][0] = 0;
2046         cl.mpunchvector[0][1] = 0;
2047         cl.mpunchvector[0][2] = 0;
2048         cl.mvelocity[0][0] = 0;
2049         cl.mvelocity[0][1] = 0;
2050         cl.mvelocity[0][2] = 0;
2051         cl.mviewzoom[0] = 1;
2052
2053         bits = (unsigned short) MSG_ReadShort ();
2054         if (bits & SU_EXTEND1)
2055                 bits |= (MSG_ReadByte() << 16);
2056         if (bits & SU_EXTEND2)
2057                 bits |= (MSG_ReadByte() << 24);
2058
2059         if (bits & SU_VIEWHEIGHT)
2060                 cl.stats[STAT_VIEWHEIGHT] = MSG_ReadChar ();
2061
2062         if (bits & SU_IDEALPITCH)
2063                 cl.idealpitch = MSG_ReadChar ();
2064
2065         for (i = 0;i < 3;i++)
2066         {
2067                 if (bits & (SU_PUNCH1<<i) )
2068                 {
2069                         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3)
2070                                 cl.mpunchangle[0][i] = MSG_ReadChar();
2071                         else
2072                                 cl.mpunchangle[0][i] = MSG_ReadAngle16i();
2073                 }
2074                 if (bits & (SU_PUNCHVEC1<<i))
2075                 {
2076                         if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
2077                                 cl.mpunchvector[0][i] = MSG_ReadCoord16i();
2078                         else
2079                                 cl.mpunchvector[0][i] = MSG_ReadCoord32f();
2080                 }
2081                 if (bits & (SU_VELOCITY1<<i) )
2082                 {
2083                         if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3 || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
2084                                 cl.mvelocity[0][i] = MSG_ReadChar()*16;
2085                         else
2086                                 cl.mvelocity[0][i] = MSG_ReadCoord32f();
2087                 }
2088         }
2089
2090         // LordHavoc: hipnotic demos don't have this bit set but should
2091         if (bits & SU_ITEMS || cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3 || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4 || cls.protocol == PROTOCOL_DARKPLACES5)
2092                 cl.stats[STAT_ITEMS] = MSG_ReadLong ();
2093
2094         cl.onground = (bits & SU_ONGROUND) != 0;
2095         cl.inwater = (bits & SU_INWATER) != 0;
2096
2097         if (cls.protocol == PROTOCOL_DARKPLACES5)
2098         {
2099                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadShort() : 0;
2100                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadShort() : 0;
2101                 cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadShort() : 0;
2102                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
2103                 cl.stats[STAT_AMMO] = MSG_ReadShort();
2104                 cl.stats[STAT_SHELLS] = MSG_ReadShort();
2105                 cl.stats[STAT_NAILS] = MSG_ReadShort();
2106                 cl.stats[STAT_ROCKETS] = MSG_ReadShort();
2107                 cl.stats[STAT_CELLS] = MSG_ReadShort();
2108                 cl.stats[STAT_ACTIVEWEAPON] = (unsigned short) MSG_ReadShort ();
2109         }
2110         else if (cls.protocol == PROTOCOL_QUAKE || cls.protocol == PROTOCOL_QUAKEDP || cls.protocol == PROTOCOL_NEHAHRAMOVIE || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3 || cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3 || cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
2111         {
2112                 cl.stats[STAT_WEAPONFRAME] = (bits & SU_WEAPONFRAME) ? MSG_ReadByte() : 0;
2113                 cl.stats[STAT_ARMOR] = (bits & SU_ARMOR) ? MSG_ReadByte() : 0;
2114                 if (cls.protocol == PROTOCOL_NEHAHRABJP || cls.protocol == PROTOCOL_NEHAHRABJP2 || cls.protocol == PROTOCOL_NEHAHRABJP3)
2115                         cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? (unsigned short)MSG_ReadShort() : 0;
2116                 else
2117                         cl.stats[STAT_WEAPON] = (bits & SU_WEAPON) ? MSG_ReadByte() : 0;
2118                 cl.stats[STAT_HEALTH] = MSG_ReadShort();
2119                 cl.stats[STAT_AMMO] = MSG_ReadByte();
2120                 cl.stats[STAT_SHELLS] = MSG_ReadByte();
2121                 cl.stats[STAT_NAILS] = MSG_ReadByte();
2122                 cl.stats[STAT_ROCKETS] = MSG_ReadByte();
2123                 cl.stats[STAT_CELLS] = MSG_ReadByte();
2124                 if (gamemode == GAME_HIPNOTIC || gamemode == GAME_ROGUE || gamemode == GAME_NEXUIZ)
2125                         cl.stats[STAT_ACTIVEWEAPON] = (1<<MSG_ReadByte ());
2126                 else
2127                         cl.stats[STAT_ACTIVEWEAPON] = MSG_ReadByte ();
2128         }
2129
2130         if (bits & SU_VIEWZOOM)
2131         {
2132                 if (cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3 || cls.protocol == PROTOCOL_DARKPLACES4)
2133                         cl.stats[STAT_VIEWZOOM] = MSG_ReadByte();
2134                 else
2135                         cl.stats[STAT_VIEWZOOM] = (unsigned short) MSG_ReadShort();
2136         }
2137
2138         // viewzoom interpolation
2139         cl.mviewzoom[0] = (float) max(cl.stats[STAT_VIEWZOOM], 2) * (1.0f / 255.0f);
2140 }
2141
2142 /*
2143 =====================
2144 CL_ParseStatic
2145 =====================
2146 */
2147 void CL_ParseStatic (int large)
2148 {
2149         entity_t *ent;
2150
2151         if (cl.num_static_entities >= cl.max_static_entities)
2152                 Host_Error ("Too many static entities");
2153         ent = &cl.static_entities[cl.num_static_entities++];
2154         CL_ParseBaseline (ent, large);
2155
2156         if (ent->state_baseline.modelindex == 0)
2157         {
2158                 Con_DPrintf("svc_parsestatic: static entity without model at %f %f %f\n", ent->state_baseline.origin[0], ent->state_baseline.origin[1], ent->state_baseline.origin[2]);
2159                 cl.num_static_entities--;
2160                 // This is definitely a cheesy way to conserve resources...
2161                 return;
2162         }
2163
2164 // copy it to the current state
2165         ent->render.model = CL_GetModelByIndex(ent->state_baseline.modelindex);
2166         ent->render.framegroupblend[0].frame = ent->state_baseline.frame;
2167         ent->render.framegroupblend[0].lerp = 1;
2168         // make torchs play out of sync
2169         ent->render.framegroupblend[0].start = lhrandom(-10, -1);
2170         ent->render.skinnum = ent->state_baseline.skin;
2171         ent->render.effects = ent->state_baseline.effects;
2172         ent->render.alpha = 1;
2173
2174         //VectorCopy (ent->state_baseline.origin, ent->render.origin);
2175         //VectorCopy (ent->state_baseline.angles, ent->render.angles);
2176
2177         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);
2178         ent->render.allowdecals = true;
2179         CL_UpdateRenderEntity(&ent->render);
2180 }
2181
2182 /*
2183 ===================
2184 CL_ParseStaticSound
2185 ===================
2186 */
2187 void CL_ParseStaticSound (int large)
2188 {
2189         vec3_t          org;
2190         int                     sound_num, vol, atten;
2191
2192         MSG_ReadVector(org, cls.protocol);
2193         if (large || cls.protocol == PROTOCOL_NEHAHRABJP2)
2194                 sound_num = (unsigned short) MSG_ReadShort ();
2195         else
2196                 sound_num = MSG_ReadByte ();
2197         vol = MSG_ReadByte ();
2198         atten = MSG_ReadByte ();
2199
2200         S_StaticSound (cl.sound_precache[sound_num], org, vol/255.0f, atten);
2201 }
2202
2203 void CL_ParseEffect (void)
2204 {
2205         vec3_t          org;
2206         int                     modelindex, startframe, framecount, framerate;
2207
2208         MSG_ReadVector(org, cls.protocol);
2209         modelindex = MSG_ReadByte ();
2210         startframe = MSG_ReadByte ();
2211         framecount = MSG_ReadByte ();
2212         framerate = MSG_ReadByte ();
2213
2214         CL_Effect(org, modelindex, startframe, framecount, framerate);
2215 }
2216
2217 void CL_ParseEffect2 (void)
2218 {
2219         vec3_t          org;
2220         int                     modelindex, startframe, framecount, framerate;
2221
2222         MSG_ReadVector(org, cls.protocol);
2223         modelindex = (unsigned short) MSG_ReadShort ();
2224         startframe = (unsigned short) MSG_ReadShort ();
2225         framecount = MSG_ReadByte ();
2226         framerate = MSG_ReadByte ();
2227
2228         CL_Effect(org, modelindex, startframe, framecount, framerate);
2229 }
2230
2231 void CL_NewBeam (int ent, vec3_t start, vec3_t end, dp_model_t *m, int lightning)
2232 {
2233         int i;
2234         beam_t *b = NULL;
2235
2236         if (ent >= MAX_EDICTS)
2237         {
2238                 Con_Printf("CL_NewBeam: invalid entity number %i\n", ent);
2239                 ent = 0;
2240         }
2241
2242         if (ent >= cl.max_entities)
2243                 CL_ExpandEntities(ent);
2244
2245         // override any beam with the same entity
2246         i = cl.max_beams;
2247         if (ent)
2248                 for (i = 0, b = cl.beams;i < cl.max_beams;i++, b++)
2249                         if (b->entity == ent)
2250                                 break;
2251         // if the entity was not found then just replace an unused beam
2252         if (i == cl.max_beams)
2253                 for (i = 0, b = cl.beams;i < cl.max_beams;i++, b++)
2254                         if (!b->model)
2255                                 break;
2256         if (i < cl.max_beams)
2257         {
2258                 cl.num_beams = max(cl.num_beams, i + 1);
2259                 b->entity = ent;
2260                 b->lightning = lightning;
2261                 b->model = m;
2262                 b->endtime = cl.mtime[0] + 0.2;
2263                 VectorCopy (start, b->start);
2264                 VectorCopy (end, b->end);
2265         }
2266         else
2267                 Con_Print("beam list overflow!\n");
2268 }
2269
2270 void CL_ParseBeam (dp_model_t *m, int lightning)
2271 {
2272         int ent;
2273         vec3_t start, end;
2274
2275         ent = (unsigned short) MSG_ReadShort ();
2276         MSG_ReadVector(start, cls.protocol);
2277         MSG_ReadVector(end, cls.protocol);
2278
2279         if (ent >= MAX_EDICTS)
2280         {
2281                 Con_Printf("CL_ParseBeam: invalid entity number %i\n", ent);
2282                 ent = 0;
2283         }
2284
2285         CL_NewBeam(ent, start, end, m, lightning);
2286 }
2287
2288 void CL_ParseTempEntity(void)
2289 {
2290         int type;
2291         vec3_t pos, pos2;
2292         vec3_t vel1, vel2;
2293         vec3_t dir;
2294         vec3_t color;
2295         int rnd;
2296         int colorStart, colorLength, count;
2297         float velspeed, radius;
2298         unsigned char *tempcolor;
2299         matrix4x4_t tempmatrix;
2300
2301         if (cls.protocol == PROTOCOL_QUAKEWORLD)
2302         {
2303                 type = MSG_ReadByte();
2304                 switch (type)
2305                 {
2306                 case QW_TE_WIZSPIKE:
2307                         // spike hitting wall
2308                         MSG_ReadVector(pos, cls.protocol);
2309                         CL_FindNonSolidLocation(pos, pos, 4);
2310                         CL_ParticleEffect(EFFECT_TE_WIZSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2311                         S_StartSound(-1, 0, cl.sfx_wizhit, pos, 1, 1);
2312                         break;
2313
2314                 case QW_TE_KNIGHTSPIKE:
2315                         // spike hitting wall
2316                         MSG_ReadVector(pos, cls.protocol);
2317                         CL_FindNonSolidLocation(pos, pos, 4);
2318                         CL_ParticleEffect(EFFECT_TE_KNIGHTSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2319                         S_StartSound(-1, 0, cl.sfx_knighthit, pos, 1, 1);
2320                         break;
2321
2322                 case QW_TE_SPIKE:
2323                         // spike hitting wall
2324                         MSG_ReadVector(pos, cls.protocol);
2325                         CL_FindNonSolidLocation(pos, pos, 4);
2326                         CL_ParticleEffect(EFFECT_TE_SPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2327                         if (rand() % 5)
2328                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2329                         else
2330                         {
2331                                 rnd = rand() & 3;
2332                                 if (rnd == 1)
2333                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2334                                 else if (rnd == 2)
2335                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2336                                 else
2337                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2338                         }
2339                         break;
2340                 case QW_TE_SUPERSPIKE:
2341                         // super spike hitting wall
2342                         MSG_ReadVector(pos, cls.protocol);
2343                         CL_FindNonSolidLocation(pos, pos, 4);
2344                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2345                         if (rand() % 5)
2346                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2347                         else
2348                         {
2349                                 rnd = rand() & 3;
2350                                 if (rnd == 1)
2351                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2352                                 else if (rnd == 2)
2353                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2354                                 else
2355                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2356                         }
2357                         break;
2358
2359                 case QW_TE_EXPLOSION:
2360                         // rocket explosion
2361                         MSG_ReadVector(pos, cls.protocol);
2362                         CL_FindNonSolidLocation(pos, pos, 10);
2363                         CL_ParticleEffect(EFFECT_TE_EXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2364                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2365                         CL_Effect(pos, cl.qw_modelindex_s_explod, 0, 6, 10);
2366                         break;
2367
2368                 case QW_TE_TAREXPLOSION:
2369                         // tarbaby explosion
2370                         MSG_ReadVector(pos, cls.protocol);
2371                         CL_FindNonSolidLocation(pos, pos, 10);
2372                         CL_ParticleEffect(EFFECT_TE_TAREXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2373                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2374                         break;
2375
2376                 case QW_TE_LIGHTNING1:
2377                         // lightning bolts
2378                         CL_ParseBeam(cl.model_bolt, true);
2379                         break;
2380
2381                 case QW_TE_LIGHTNING2:
2382                         // lightning bolts
2383                         CL_ParseBeam(cl.model_bolt2, true);
2384                         break;
2385
2386                 case QW_TE_LIGHTNING3:
2387                         // lightning bolts
2388                         CL_ParseBeam(cl.model_bolt3, false);
2389                         break;
2390
2391                 case QW_TE_LAVASPLASH:
2392                         MSG_ReadVector(pos, cls.protocol);
2393                         CL_ParticleEffect(EFFECT_TE_LAVASPLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2394                         break;
2395
2396                 case QW_TE_TELEPORT:
2397                         MSG_ReadVector(pos, cls.protocol);
2398                         CL_ParticleEffect(EFFECT_TE_TELEPORT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2399                         break;
2400
2401                 case QW_TE_GUNSHOT:
2402                         // bullet hitting wall
2403                         radius = MSG_ReadByte();
2404                         MSG_ReadVector(pos, cls.protocol);
2405                         CL_FindNonSolidLocation(pos, pos, 4);
2406                         VectorSet(pos2, pos[0] + radius, pos[1] + radius, pos[2] + radius);
2407                         VectorSet(pos, pos[0] - radius, pos[1] - radius, pos[2] - radius);
2408                         CL_ParticleEffect(EFFECT_TE_GUNSHOT, radius, pos, pos2, vec3_origin, vec3_origin, NULL, 0);
2409                         if(cl_sound_ric_gunshot.integer & RIC_GUNSHOT)
2410                         {
2411                                 if (rand() % 5)
2412                                         S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2413                                 else
2414                                 {
2415                                         rnd = rand() & 3;
2416                                         if (rnd == 1)
2417                                                 S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2418                                         else if (rnd == 2)
2419                                                 S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2420                                         else
2421                                                 S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2422                                 }
2423                         }
2424                         break;
2425
2426                 case QW_TE_BLOOD:
2427                         count = MSG_ReadByte();
2428                         MSG_ReadVector(pos, cls.protocol);
2429                         CL_FindNonSolidLocation(pos, pos, 4);
2430                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2431                         break;
2432
2433                 case QW_TE_LIGHTNINGBLOOD:
2434                         MSG_ReadVector(pos, cls.protocol);
2435                         CL_FindNonSolidLocation(pos, pos, 4);
2436                         CL_ParticleEffect(EFFECT_TE_BLOOD, 2.5, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2437                         break;
2438
2439                 default:
2440                         Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
2441                 }
2442         }
2443         else
2444         {
2445                 type = MSG_ReadByte();
2446                 switch (type)
2447                 {
2448                 case TE_WIZSPIKE:
2449                         // spike hitting wall
2450                         MSG_ReadVector(pos, cls.protocol);
2451                         CL_FindNonSolidLocation(pos, pos, 4);
2452                         CL_ParticleEffect(EFFECT_TE_WIZSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2453                         S_StartSound(-1, 0, cl.sfx_wizhit, pos, 1, 1);
2454                         break;
2455
2456                 case TE_KNIGHTSPIKE:
2457                         // spike hitting wall
2458                         MSG_ReadVector(pos, cls.protocol);
2459                         CL_FindNonSolidLocation(pos, pos, 4);
2460                         CL_ParticleEffect(EFFECT_TE_KNIGHTSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2461                         S_StartSound(-1, 0, cl.sfx_knighthit, pos, 1, 1);
2462                         break;
2463
2464                 case TE_SPIKE:
2465                         // spike hitting wall
2466                         MSG_ReadVector(pos, cls.protocol);
2467                         CL_FindNonSolidLocation(pos, pos, 4);
2468                         CL_ParticleEffect(EFFECT_TE_SPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2469                         if (rand() % 5)
2470                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2471                         else
2472                         {
2473                                 rnd = rand() & 3;
2474                                 if (rnd == 1)
2475                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2476                                 else if (rnd == 2)
2477                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2478                                 else
2479                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2480                         }
2481                         break;
2482                 case TE_SPIKEQUAD:
2483                         // quad spike hitting wall
2484                         MSG_ReadVector(pos, cls.protocol);
2485                         CL_FindNonSolidLocation(pos, pos, 4);
2486                         CL_ParticleEffect(EFFECT_TE_SPIKEQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2487                         if (rand() % 5)
2488                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2489                         else
2490                         {
2491                                 rnd = rand() & 3;
2492                                 if (rnd == 1)
2493                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2494                                 else if (rnd == 2)
2495                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2496                                 else
2497                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2498                         }
2499                         break;
2500                 case TE_SUPERSPIKE:
2501                         // super spike hitting wall
2502                         MSG_ReadVector(pos, cls.protocol);
2503                         CL_FindNonSolidLocation(pos, pos, 4);
2504                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKE, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2505                         if (rand() % 5)
2506                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2507                         else
2508                         {
2509                                 rnd = rand() & 3;
2510                                 if (rnd == 1)
2511                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2512                                 else if (rnd == 2)
2513                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2514                                 else
2515                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2516                         }
2517                         break;
2518                 case TE_SUPERSPIKEQUAD:
2519                         // quad super spike hitting wall
2520                         MSG_ReadVector(pos, cls.protocol);
2521                         CL_FindNonSolidLocation(pos, pos, 4);
2522                         CL_ParticleEffect(EFFECT_TE_SUPERSPIKEQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2523                         if (rand() % 5)
2524                                 S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2525                         else
2526                         {
2527                                 rnd = rand() & 3;
2528                                 if (rnd == 1)
2529                                         S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2530                                 else if (rnd == 2)
2531                                         S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2532                                 else
2533                                         S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2534                         }
2535                         break;
2536                         // LordHavoc: added for improved blood splatters
2537                 case TE_BLOOD:
2538                         // blood puff
2539                         MSG_ReadVector(pos, cls.protocol);
2540                         CL_FindNonSolidLocation(pos, pos, 4);
2541                         dir[0] = MSG_ReadChar();
2542                         dir[1] = MSG_ReadChar();
2543                         dir[2] = MSG_ReadChar();
2544                         count = MSG_ReadByte();
2545                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos, dir, dir, NULL, 0);
2546                         break;
2547                 case TE_SPARK:
2548                         // spark shower
2549                         MSG_ReadVector(pos, cls.protocol);
2550                         CL_FindNonSolidLocation(pos, pos, 4);
2551                         dir[0] = MSG_ReadChar();
2552                         dir[1] = MSG_ReadChar();
2553                         dir[2] = MSG_ReadChar();
2554                         count = MSG_ReadByte();
2555                         CL_ParticleEffect(EFFECT_TE_SPARK, count, pos, pos, dir, dir, NULL, 0);
2556                         break;
2557                 case TE_PLASMABURN:
2558                         MSG_ReadVector(pos, cls.protocol);
2559                         CL_FindNonSolidLocation(pos, pos, 4);
2560                         CL_ParticleEffect(EFFECT_TE_PLASMABURN, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2561                         break;
2562                         // LordHavoc: added for improved gore
2563                 case TE_BLOODSHOWER:
2564                         // vaporized body
2565                         MSG_ReadVector(pos, cls.protocol); // mins
2566                         MSG_ReadVector(pos2, cls.protocol); // maxs
2567                         velspeed = MSG_ReadCoord(cls.protocol); // speed
2568                         count = (unsigned short) MSG_ReadShort(); // number of particles
2569                         vel1[0] = -velspeed;
2570                         vel1[1] = -velspeed;
2571                         vel1[2] = -velspeed;
2572                         vel2[0] = velspeed;
2573                         vel2[1] = velspeed;
2574                         vel2[2] = velspeed;
2575                         CL_ParticleEffect(EFFECT_TE_BLOOD, count, pos, pos2, vel1, vel2, NULL, 0);
2576                         break;
2577
2578                 case TE_PARTICLECUBE:
2579                         // general purpose particle effect
2580                         MSG_ReadVector(pos, cls.protocol); // mins
2581                         MSG_ReadVector(pos2, cls.protocol); // maxs
2582                         MSG_ReadVector(dir, cls.protocol); // dir
2583                         count = (unsigned short) MSG_ReadShort(); // number of particles
2584                         colorStart = MSG_ReadByte(); // color
2585                         colorLength = MSG_ReadByte(); // gravity (1 or 0)
2586                         velspeed = MSG_ReadCoord(cls.protocol); // randomvel
2587                         CL_ParticleCube(pos, pos2, dir, count, colorStart, colorLength != 0, velspeed);
2588                         break;
2589
2590                 case TE_PARTICLERAIN:
2591                         // general purpose particle effect
2592                         MSG_ReadVector(pos, cls.protocol); // mins
2593                         MSG_ReadVector(pos2, cls.protocol); // maxs
2594                         MSG_ReadVector(dir, cls.protocol); // dir
2595                         count = (unsigned short) MSG_ReadShort(); // number of particles
2596                         colorStart = MSG_ReadByte(); // color
2597                         CL_ParticleRain(pos, pos2, dir, count, colorStart, 0);
2598                         break;
2599
2600                 case TE_PARTICLESNOW:
2601                         // general purpose particle effect
2602                         MSG_ReadVector(pos, cls.protocol); // mins
2603                         MSG_ReadVector(pos2, cls.protocol); // maxs
2604                         MSG_ReadVector(dir, cls.protocol); // dir
2605                         count = (unsigned short) MSG_ReadShort(); // number of particles
2606                         colorStart = MSG_ReadByte(); // color
2607                         CL_ParticleRain(pos, pos2, dir, count, colorStart, 1);
2608                         break;
2609
2610                 case TE_GUNSHOT:
2611                         // bullet hitting wall
2612                         MSG_ReadVector(pos, cls.protocol);
2613                         CL_FindNonSolidLocation(pos, pos, 4);
2614                         CL_ParticleEffect(EFFECT_TE_GUNSHOT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2615                         if(cl_sound_ric_gunshot.integer & RIC_GUNSHOT)
2616                         {
2617                                 if (rand() % 5)
2618                                         S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2619                                 else
2620                                 {
2621                                         rnd = rand() & 3;
2622                                         if (rnd == 1)
2623                                                 S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2624                                         else if (rnd == 2)
2625                                                 S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2626                                         else
2627                                                 S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2628                                 }
2629                         }
2630                         break;
2631
2632                 case TE_GUNSHOTQUAD:
2633                         // quad bullet hitting wall
2634                         MSG_ReadVector(pos, cls.protocol);
2635                         CL_FindNonSolidLocation(pos, pos, 4);
2636                         CL_ParticleEffect(EFFECT_TE_GUNSHOTQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2637                         if(cl_sound_ric_gunshot.integer & RIC_GUNSHOTQUAD)
2638                         {
2639                                 if (rand() % 5)
2640                                         S_StartSound(-1, 0, cl.sfx_tink1, pos, 1, 1);
2641                                 else
2642                                 {
2643                                         rnd = rand() & 3;
2644                                         if (rnd == 1)
2645                                                 S_StartSound(-1, 0, cl.sfx_ric1, pos, 1, 1);
2646                                         else if (rnd == 2)
2647                                                 S_StartSound(-1, 0, cl.sfx_ric2, pos, 1, 1);
2648                                         else
2649                                                 S_StartSound(-1, 0, cl.sfx_ric3, pos, 1, 1);
2650                                 }
2651                         }
2652                         break;
2653
2654                 case TE_EXPLOSION:
2655                         // rocket explosion
2656                         MSG_ReadVector(pos, cls.protocol);
2657                         CL_FindNonSolidLocation(pos, pos, 10);
2658                         CL_ParticleEffect(EFFECT_TE_EXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2659                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2660                         break;
2661
2662                 case TE_EXPLOSIONQUAD:
2663                         // quad rocket explosion
2664                         MSG_ReadVector(pos, cls.protocol);
2665                         CL_FindNonSolidLocation(pos, pos, 10);
2666                         CL_ParticleEffect(EFFECT_TE_EXPLOSIONQUAD, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2667                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2668                         break;
2669
2670                 case TE_EXPLOSION3:
2671                         // Nehahra movie colored lighting explosion
2672                         MSG_ReadVector(pos, cls.protocol);
2673                         CL_FindNonSolidLocation(pos, pos, 10);
2674                         color[0] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
2675                         color[1] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
2676                         color[2] = MSG_ReadCoord(cls.protocol) * (2.0f / 1.0f);
2677                         CL_ParticleExplosion(pos);
2678                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
2679                         CL_AllocLightFlash(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);
2680                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2681                         break;
2682
2683                 case TE_EXPLOSIONRGB:
2684                         // colored lighting explosion
2685                         MSG_ReadVector(pos, cls.protocol);
2686                         CL_FindNonSolidLocation(pos, pos, 10);
2687                         CL_ParticleExplosion(pos);
2688                         color[0] = MSG_ReadByte() * (2.0f / 255.0f);
2689                         color[1] = MSG_ReadByte() * (2.0f / 255.0f);
2690                         color[2] = MSG_ReadByte() * (2.0f / 255.0f);
2691                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
2692                         CL_AllocLightFlash(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);
2693                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2694                         break;
2695
2696                 case TE_TAREXPLOSION:
2697                         // tarbaby explosion
2698                         MSG_ReadVector(pos, cls.protocol);
2699                         CL_FindNonSolidLocation(pos, pos, 10);
2700                         CL_ParticleEffect(EFFECT_TE_TAREXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2701                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2702                         break;
2703
2704                 case TE_SMALLFLASH:
2705                         MSG_ReadVector(pos, cls.protocol);
2706                         CL_FindNonSolidLocation(pos, pos, 10);
2707                         CL_ParticleEffect(EFFECT_TE_SMALLFLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2708                         break;
2709
2710                 case TE_CUSTOMFLASH:
2711                         MSG_ReadVector(pos, cls.protocol);
2712                         CL_FindNonSolidLocation(pos, pos, 4);
2713                         radius = (MSG_ReadByte() + 1) * 8;
2714                         velspeed = (MSG_ReadByte() + 1) * (1.0 / 256.0);
2715                         color[0] = MSG_ReadByte() * (2.0f / 255.0f);
2716                         color[1] = MSG_ReadByte() * (2.0f / 255.0f);
2717                         color[2] = MSG_ReadByte() * (2.0f / 255.0f);
2718                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
2719                         CL_AllocLightFlash(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);
2720                         break;
2721
2722                 case TE_FLAMEJET:
2723                         MSG_ReadVector(pos, cls.protocol);
2724                         MSG_ReadVector(dir, cls.protocol);
2725                         count = MSG_ReadByte();
2726                         CL_ParticleEffect(EFFECT_TE_FLAMEJET, count, pos, pos, dir, dir, NULL, 0);
2727                         break;
2728
2729                 case TE_LIGHTNING1:
2730                         // lightning bolts
2731                         CL_ParseBeam(cl.model_bolt, true);
2732                         break;
2733
2734                 case TE_LIGHTNING2:
2735                         // lightning bolts
2736                         CL_ParseBeam(cl.model_bolt2, true);
2737                         break;
2738
2739                 case TE_LIGHTNING3:
2740                         // lightning bolts
2741                         CL_ParseBeam(cl.model_bolt3, false);
2742                         break;
2743
2744         // PGM 01/21/97
2745                 case TE_BEAM:
2746                         // grappling hook beam
2747                         CL_ParseBeam(cl.model_beam, false);
2748                         break;
2749         // PGM 01/21/97
2750
2751         // LordHavoc: for compatibility with the Nehahra movie...
2752                 case TE_LIGHTNING4NEH:
2753                         CL_ParseBeam(Mod_ForName(MSG_ReadString(), true, false, NULL), false);
2754                         break;
2755
2756                 case TE_LAVASPLASH:
2757                         MSG_ReadVector(pos, cls.protocol);
2758                         CL_ParticleEffect(EFFECT_TE_LAVASPLASH, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2759                         break;
2760
2761                 case TE_TELEPORT:
2762                         MSG_ReadVector(pos, cls.protocol);
2763                         CL_ParticleEffect(EFFECT_TE_TELEPORT, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2764                         break;
2765
2766                 case TE_EXPLOSION2:
2767                         // color mapped explosion
2768                         MSG_ReadVector(pos, cls.protocol);
2769                         CL_FindNonSolidLocation(pos, pos, 10);
2770                         colorStart = MSG_ReadByte();
2771                         colorLength = MSG_ReadByte();
2772                         CL_ParticleExplosion2(pos, colorStart, colorLength);
2773                         tempcolor = palette_rgb[(rand()%colorLength) + colorStart];
2774                         color[0] = tempcolor[0] * (2.0f / 255.0f);
2775                         color[1] = tempcolor[1] * (2.0f / 255.0f);
2776                         color[2] = tempcolor[2] * (2.0f / 255.0f);
2777                         Matrix4x4_CreateTranslate(&tempmatrix, pos[0], pos[1], pos[2]);
2778                         CL_AllocLightFlash(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);
2779                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2780                         break;
2781
2782                 case TE_TEI_G3:
2783                         MSG_ReadVector(pos, cls.protocol);
2784                         MSG_ReadVector(pos2, cls.protocol);
2785                         MSG_ReadVector(dir, cls.protocol);
2786                         CL_ParticleEffect(EFFECT_TE_TEI_G3, 1, pos, pos2, dir, dir, NULL, 0);
2787                         break;
2788
2789                 case TE_TEI_SMOKE:
2790                         MSG_ReadVector(pos, cls.protocol);
2791                         MSG_ReadVector(dir, cls.protocol);
2792                         count = MSG_ReadByte();
2793                         CL_FindNonSolidLocation(pos, pos, 4);
2794                         CL_ParticleEffect(EFFECT_TE_TEI_SMOKE, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2795                         break;
2796
2797                 case TE_TEI_BIGEXPLOSION:
2798                         MSG_ReadVector(pos, cls.protocol);
2799                         CL_FindNonSolidLocation(pos, pos, 10);
2800                         CL_ParticleEffect(EFFECT_TE_TEI_BIGEXPLOSION, 1, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2801                         S_StartSound(-1, 0, cl.sfx_r_exp3, pos, 1, 1);
2802                         break;
2803
2804                 case TE_TEI_PLASMAHIT:
2805                         MSG_ReadVector(pos, cls.protocol);
2806                         MSG_ReadVector(dir, cls.protocol);
2807                         count = MSG_ReadByte();
2808                         CL_FindNonSolidLocation(pos, pos, 5);
2809                         CL_ParticleEffect(EFFECT_TE_TEI_PLASMAHIT, count, pos, pos, vec3_origin, vec3_origin, NULL, 0);
2810                         break;
2811
2812                 default:
2813                         Host_Error("CL_ParseTempEntity: bad type %d (hex %02X)", type, type);
2814                 }
2815         }
2816 }
2817
2818 void CL_ParseTrailParticles(void)
2819 {
2820         int entityindex;
2821         int effectindex;
2822         vec3_t start, end;
2823         entityindex = (unsigned short)MSG_ReadShort();
2824         if (entityindex >= MAX_EDICTS)
2825                 entityindex = 0;
2826         if (entityindex >= cl.max_entities)
2827                 CL_ExpandEntities(entityindex);
2828         effectindex = (unsigned short)MSG_ReadShort();
2829         MSG_ReadVector(start, cls.protocol);
2830         MSG_ReadVector(end, cls.protocol);
2831         CL_ParticleEffect(effectindex, VectorDistance(start, end), start, end, vec3_origin, vec3_origin, entityindex > 0 ? cl.entities + entityindex : NULL, 0);
2832 }
2833
2834 void CL_ParsePointParticles(void)
2835 {
2836         int effectindex, count;
2837         vec3_t origin, velocity;
2838         effectindex = (unsigned short)MSG_ReadShort();
2839         MSG_ReadVector(origin, cls.protocol);
2840         MSG_ReadVector(velocity, cls.protocol);
2841         count = (unsigned short)MSG_ReadShort();
2842         CL_ParticleEffect(effectindex, count, origin, origin, velocity, velocity, NULL, 0);
2843 }
2844
2845 void CL_ParsePointParticles1(void)
2846 {
2847         int effectindex;
2848         vec3_t origin;
2849         effectindex = (unsigned short)MSG_ReadShort();
2850         MSG_ReadVector(origin, cls.protocol);
2851         CL_ParticleEffect(effectindex, 1, origin, origin, vec3_origin, vec3_origin, NULL, 0);
2852 }
2853
2854 typedef struct cl_iplog_item_s
2855 {
2856         char *address;
2857         char *name;
2858 }
2859 cl_iplog_item_t;
2860
2861 static qboolean cl_iplog_loaded = false;
2862 static int cl_iplog_numitems = 0;
2863 static int cl_iplog_maxitems = 0;
2864 static cl_iplog_item_t *cl_iplog_items;
2865
2866 static void CL_IPLog_Load(void);
2867 static void CL_IPLog_Add(const char *address, const char *name, qboolean checkexisting, qboolean addtofile)
2868 {
2869         int i;
2870         if (!address || !address[0] || !name || !name[0])
2871                 return;
2872         if (!cl_iplog_loaded)
2873                 CL_IPLog_Load();
2874         if (developer_extra.integer)
2875                 Con_DPrintf("CL_IPLog_Add(\"%s\", \"%s\", %i, %i);\n", address, name, checkexisting, addtofile);
2876         // see if it already exists
2877         if (checkexisting)
2878         {
2879                 for (i = 0;i < cl_iplog_numitems;i++)
2880                 {
2881                         if (!strcmp(cl_iplog_items[i].address, address) && !strcmp(cl_iplog_items[i].name, name))
2882                         {
2883                                 if (developer_extra.integer)
2884                                         Con_DPrintf("... found existing \"%s\" \"%s\"\n", cl_iplog_items[i].address, cl_iplog_items[i].name);
2885                                 return;
2886                         }
2887                 }
2888         }
2889         // it does not already exist in the iplog, so add it
2890         if (cl_iplog_maxitems <= cl_iplog_numitems || !cl_iplog_items)
2891         {
2892                 cl_iplog_item_t *olditems = cl_iplog_items;
2893                 cl_iplog_maxitems = max(1024, cl_iplog_maxitems + 256);
2894                 cl_iplog_items = (cl_iplog_item_t *) Mem_Alloc(cls.permanentmempool, cl_iplog_maxitems * sizeof(cl_iplog_item_t));
2895                 if (olditems)
2896                 {
2897                         if (cl_iplog_numitems)
2898                                 memcpy(cl_iplog_items, olditems, cl_iplog_numitems * sizeof(cl_iplog_item_t));
2899                         Mem_Free(olditems);
2900                 }
2901         }
2902         cl_iplog_items[cl_iplog_numitems].address = (char *) Mem_Alloc(cls.permanentmempool, strlen(address) + 1);
2903         cl_iplog_items[cl_iplog_numitems].name = (char *) Mem_Alloc(cls.permanentmempool, strlen(name) + 1);
2904         strlcpy(cl_iplog_items[cl_iplog_numitems].address, address, strlen(address) + 1);
2905         // TODO: maybe it would be better to strip weird characters from name when
2906         // copying it here rather than using a straight strcpy?
2907         strlcpy(cl_iplog_items[cl_iplog_numitems].name, name, strlen(name) + 1);
2908         cl_iplog_numitems++;
2909         if (addtofile)
2910         {
2911                 // add it to the iplog.txt file
2912                 // TODO: this ought to open the one in the userpath version of the base
2913                 // gamedir, not the current gamedir
2914                 Log_Printf(cl_iplog_name.string, "%s %s\n", address, name);
2915                 if (developer_extra.integer)
2916                         Con_DPrintf("CL_IPLog_Add: appending this line to %s: %s %s\n", cl_iplog_name.string, address, name);
2917         }
2918 }
2919
2920 static void CL_IPLog_Load(void)
2921 {
2922         int i, len, linenumber;
2923         char *text, *textend;
2924         unsigned char *filedata;
2925         fs_offset_t filesize;
2926         char line[MAX_INPUTLINE];
2927         char address[MAX_INPUTLINE];
2928         cl_iplog_loaded = true;
2929         // TODO: this ought to open the one in the userpath version of the base
2930         // gamedir, not the current gamedir
2931         filedata = FS_LoadFile(cl_iplog_name.string, tempmempool, true, &filesize);
2932         if (!filedata)
2933                 return;
2934         text = (char *)filedata;
2935         textend = text + filesize;
2936         for (linenumber = 1;text < textend;linenumber++)
2937         {
2938                 for (len = 0;text < textend && *text != '\r' && *text != '\n';text++)
2939                         if (len < (int)sizeof(line) - 1)
2940                                 line[len++] = *text;
2941                 line[len] = 0;
2942                 if (text < textend && *text == '\r' && text[1] == '\n')
2943                         text++;
2944                 if (text < textend && *text == '\n')
2945                         text++;
2946                 if (line[0] == '/' && line[1] == '/')
2947                         continue; // skip comments if anyone happens to add them
2948                 for (i = 0;i < len && !ISWHITESPACE(line[i]);i++)
2949                         address[i] = line[i];
2950                 address[i] = 0;
2951                 // skip exactly one space character
2952                 i++;
2953                 // address contains the address with termination,
2954                 // line + i contains the name with termination
2955                 if (address[0] && line[i])
2956                         CL_IPLog_Add(address, line + i, false, false);
2957                 else
2958                         Con_Printf("%s:%i: could not parse address and name:\n%s\n", cl_iplog_name.string, linenumber, line);
2959         }
2960 }
2961
2962 static void CL_IPLog_List_f(void)
2963 {
2964         int i, j;
2965         const char *addressprefix;
2966         if (Cmd_Argc() > 2)
2967         {
2968                 Con_Printf("usage: %s 123.456.789.\n", Cmd_Argv(0));
2969                 return;
2970         }
2971         addressprefix = "";
2972         if (Cmd_Argc() >= 2)
2973                 addressprefix = Cmd_Argv(1);
2974         if (!cl_iplog_loaded)
2975                 CL_IPLog_Load();
2976         if (addressprefix && addressprefix[0])
2977                 Con_Printf("Listing iplog addresses beginning with %s\n", addressprefix);
2978         else
2979                 Con_Printf("Listing all iplog entries\n");
2980         Con_Printf("address         name\n");
2981         for (i = 0;i < cl_iplog_numitems;i++)
2982         {
2983                 if (addressprefix && addressprefix[0])
2984                 {
2985                         for (j = 0;addressprefix[j];j++)
2986                                 if (addressprefix[j] != cl_iplog_items[i].address[j])
2987                                         break;
2988                         // if this address does not begin with the addressprefix string
2989                         // simply omit it from the output
2990                         if (addressprefix[j])
2991                                 continue;
2992                 }
2993                 // if name is less than 15 characters, left justify it and pad
2994                 // if name is more than 15 characters, print all of it, not worrying
2995                 // about the fact it will misalign the columns
2996                 if (strlen(cl_iplog_items[i].address) < 15)
2997                         Con_Printf("%-15s %s\n", cl_iplog_items[i].address, cl_iplog_items[i].name);
2998                 else
2999                         Con_Printf("%5s %s\n", cl_iplog_items[i].address, cl_iplog_items[i].name);
3000         }
3001 }
3002
3003 // look for anything interesting like player IP addresses or ping reports
3004 qboolean CL_ExaminePrintString(const char *text)
3005 {
3006         int len;
3007         const char *t;
3008         char temp[MAX_INPUTLINE];
3009         if (!strcmp(text, "Client ping times:\n"))
3010         {
3011                 cl.parsingtextmode = CL_PARSETEXTMODE_PING;
3012                 // hide ping reports in demos
3013                 if (cls.demoplayback)
3014                         cl.parsingtextexpectingpingforscores = 1;
3015                 for(cl.parsingtextplayerindex = 0; cl.parsingtextplayerindex < cl.maxclients && !cl.scores[cl.parsingtextplayerindex].name[0]; cl.parsingtextplayerindex++)
3016                         ;
3017                 if (cl.parsingtextplayerindex >= cl.maxclients) // should never happen, since the client itself should be in cl.scores
3018                 {
3019                         Con_Printf("ping reply but empty scoreboard?!?\n");
3020                         cl.parsingtextmode = CL_PARSETEXTMODE_NONE;
3021                         cl.parsingtextexpectingpingforscores = 0;
3022                 }
3023                 cl.parsingtextexpectingpingforscores = cl.parsingtextexpectingpingforscores ? 2 : 0;
3024                 return !cl.parsingtextexpectingpingforscores;
3025         }
3026         if (!strncmp(text, "host:    ", 9))
3027         {
3028                 // cl.parsingtextexpectingpingforscores = false; // really?
3029                 cl.parsingtextmode = CL_PARSETEXTMODE_STATUS;
3030                 cl.parsingtextplayerindex = 0;
3031                 return true;
3032         }
3033         if (cl.parsingtextmode == CL_PARSETEXTMODE_PING)
3034         {
3035                 // if anything goes wrong, we'll assume this is not a ping report
3036                 qboolean expected = cl.parsingtextexpectingpingforscores != 0;
3037                 cl.parsingtextexpectingpingforscores = 0;
3038                 cl.parsingtextmode = CL_PARSETEXTMODE_NONE;
3039                 t = text;
3040                 while (*t == ' ')
3041                         t++;
3042                 if ((*t >= '0' && *t <= '9') || *t == '-')
3043                 {
3044                         int ping = atoi(t);
3045                         while ((*t >= '0' && *t <= '9') || *t == '-')
3046                                 t++;
3047                         if (*t == ' ')
3048                         {
3049                                 int charindex = 0;
3050                                 t++;
3051                                 if(cl.parsingtextplayerindex < cl.maxclients)
3052                                 {
3053                                         for (charindex = 0;cl.scores[cl.parsingtextplayerindex].name[charindex] == t[charindex];charindex++)
3054                                                 ;
3055                                         // 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
3056                                         //if (cl.scores[cl.parsingtextplayerindex].name[charindex] == 0 && t[charindex] == '\n')
3057                                         if (t[charindex] == '\n')
3058                                         {
3059                                                 cl.scores[cl.parsingtextplayerindex].qw_ping = bound(0, ping, 9999);
3060                                                 for (cl.parsingtextplayerindex++;cl.parsingtextplayerindex < cl.maxclients && !cl.scores[cl.parsingtextplayerindex].name[0];cl.parsingtextplayerindex++)
3061                                                         ;
3062                                                 //if (cl.parsingtextplayerindex < cl.maxclients) // we could still get unconnecteds!
3063                                                 {
3064                                                         // we parsed a valid ping entry, so expect another to follow
3065                                                         cl.parsingtextmode = CL_PARSETEXTMODE_PING;
3066                                                         cl.parsingtextexpectingpingforscores = expected;
3067                                                 }
3068                                                 return !expected;
3069                                         }
3070                                 }
3071                                 if (!strncmp(t, "unconnected\n", 12))
3072                                 {
3073                                         // just ignore
3074                                         cl.parsingtextmode = CL_PARSETEXTMODE_PING;
3075                                         cl.parsingtextexpectingpingforscores = expected;
3076                                         return !expected;
3077                                 }
3078                                 else
3079                                         Con_DPrintf("player names '%s' and '%s' didn't match\n", cl.scores[cl.parsingtextplayerindex].name, t);
3080                         }
3081                 }
3082         }
3083         if (cl.parsingtextmode == CL_PARSETEXTMODE_STATUS)
3084         {
3085                 if (!strncmp(text, "players: ", 9))
3086                 {
3087                         cl.parsingtextmode = CL_PARSETEXTMODE_STATUS_PLAYERID;
3088                         cl.parsingtextplayerindex = 0;
3089                         return true;
3090                 }
3091                 else if (!strstr(text, ": "))
3092                 {
3093                         cl.parsingtextmode = CL_PARSETEXTMODE_NONE; // status report ended
3094                         return true;
3095                 }
3096         }
3097         if (cl.parsingtextmode == CL_PARSETEXTMODE_STATUS_PLAYERID)
3098         {
3099                 // if anything goes wrong, we'll assume this is not a status report
3100                 cl.parsingtextmode = CL_PARSETEXTMODE_NONE;
3101                 if (text[0] == '#' && text[1] >= '0' && text[1] <= '9')
3102                 {
3103                         t = text + 1;
3104                         cl.parsingtextplayerindex = atoi(t) - 1;
3105                         while (*t >= '0' && *t <= '9')
3106                                 t++;
3107                         if (*t == ' ')
3108                         {
3109                                 cl.parsingtextmode = CL_PARSETEXTMODE_STATUS_PLAYERIP;
3110                                 return true;
3111                         }
3112                         // the player name follows here, along with frags and time
3113                 }
3114         }
3115         if (cl.parsingtextmode == CL_PARSETEXTMODE_STATUS_PLAYERIP)
3116         {
3117                 // if anything goes wrong, we'll assume this is not a status report
3118                 cl.parsingtextmode = CL_PARSETEXTMODE_NONE;
3119                 if (text[0] == ' ')
3120                 {
3121                         t = text;
3122                         while (*t == ' ')
3123                                 t++;
3124                         for (len = 0;*t && *t != '\n';t++)
3125                                 if (len < (int)sizeof(temp) - 1)
3126                                         temp[len++] = *t;
3127                         temp[len] = 0;
3128                         // botclient is perfectly valid, but we don't care about bots
3129                         // also don't try to look up the name of an invalid player index
3130                         if (strcmp(temp, "botclient")
3131                          && cl.parsingtextplayerindex >= 0
3132                          && cl.parsingtextplayerindex < cl.maxclients
3133                          && cl.scores[cl.parsingtextplayerindex].name[0])
3134                         {
3135                                 // log the player name and IP address string
3136                                 // (this operates entirely on strings to avoid issues with the
3137                                 //  nature of a network address)
3138                                 CL_IPLog_Add(temp, cl.scores[cl.parsingtextplayerindex].name, true, true);
3139                         }
3140                         cl.parsingtextmode = CL_PARSETEXTMODE_STATUS_PLAYERID;
3141                         return true;
3142                 }
3143         }
3144         return true;
3145 }
3146
3147 extern cvar_t slowmo;
3148 extern void CSQC_UpdateNetworkTimes(double newtime, double oldtime);
3149 static void CL_NetworkTimeReceived(double newtime)
3150 {
3151         double timehigh;
3152         cl.mtime[1] = cl.mtime[0];
3153         cl.mtime[0] = newtime;
3154         if (cl_nolerp.integer || cls.timedemo || (cl.islocalgame && !sv_fixedframeratesingleplayer.integer) || cl.mtime[1] == cl.mtime[0] || cls.signon < SIGNONS)
3155                 cl.time = cl.mtime[1] = newtime;
3156         else if (cls.demoplayback)
3157         {
3158                 // when time falls behind during demo playback it means the cl.mtime[1] was altered
3159                 // due to a large time gap, so treat it as an instant change in time
3160                 // (this can also happen during heavy packet loss in the demo)
3161                 if (cl.time < newtime - 0.1)
3162                         cl.mtime[1] = cl.time = newtime;
3163         }
3164         else if (cls.protocol != PROTOCOL_QUAKEWORLD)
3165         {
3166                 cl.mtime[1] = max(cl.mtime[1], cl.mtime[0] - 0.1);
3167                 if (developer_extra.integer && vid_activewindow)
3168                 {
3169                         if (cl.time < cl.mtime[1] - (cl.mtime[0] - cl.mtime[1]))
3170                                 Con_DPrintf("--- cl.time < cl.mtime[1] (%f < %f ... %f)\n", cl.time, cl.mtime[1], cl.mtime[0]);
3171                         else if (cl.time > cl.mtime[0] + (cl.mtime[0] - cl.mtime[1]))
3172                                 Con_DPrintf("--- cl.time > cl.mtime[0] (%f > %f ... %f)\n", cl.time, cl.mtime[1], cl.mtime[0]);
3173                 }
3174                 cl.time += (cl.mtime[1] - cl.time) * bound(0, cl_nettimesyncfactor.value, 1);
3175                 timehigh = cl.mtime[1] + (cl.mtime[0] - cl.mtime[1]) * cl_nettimesyncboundtolerance.value;
3176                 if (cl_nettimesyncboundmode.integer == 1)
3177                         cl.time = bound(cl.mtime[1], cl.time, cl.mtime[0]);
3178                 else if (cl_nettimesyncboundmode.integer == 2)
3179                 {
3180                         if (cl.time < cl.mtime[1] || cl.time > timehigh)
3181                                 cl.time = cl.mtime[1];
3182                 }
3183                 else if (cl_nettimesyncboundmode.integer == 3)
3184                 {
3185                         if ((cl.time < cl.mtime[1] && cl.oldtime < cl.mtime[1]) || (cl.time > timehigh && cl.oldtime > timehigh))
3186                                 cl.time = cl.mtime[1];
3187                 }
3188                 else if (cl_nettimesyncboundmode.integer == 4)
3189                 {
3190                         if (fabs(cl.time - cl.mtime[1]) > 0.5)
3191                                 cl.time = cl.mtime[1]; // reset
3192                         else if (fabs(cl.time - cl.mtime[1]) > 0.1)
3193                                 cl.time += 0.5 * (cl.mtime[1] - cl.time); // fast
3194                         else if (cl.time > cl.mtime[1])
3195                                 cl.time -= 0.002 * cl.movevars_timescale; // fall into the past by 2ms
3196                         else
3197                                 cl.time += 0.001 * cl.movevars_timescale; // creep forward 1ms
3198                 }
3199                 else if (cl_nettimesyncboundmode.integer == 5)
3200                 {
3201                         if (fabs(cl.time - cl.mtime[1]) > 0.5)
3202                                 cl.time = cl.mtime[1]; // reset
3203                         else if (fabs(cl.time - cl.mtime[1]) > 0.1)
3204                                 cl.time += 0.5 * (cl.mtime[1] - cl.time); // fast
3205                         else
3206                                 cl.time = bound(cl.time - 0.002 * cl.movevars_timescale, cl.mtime[1], cl.time + 0.001 * cl.movevars_timescale);
3207                 }
3208                 else if (cl_nettimesyncboundmode.integer == 6)
3209                 {
3210                         cl.time = bound(cl.mtime[1], cl.time, cl.mtime[0]);
3211                         cl.time = bound(cl.time - 0.002 * cl.movevars_timescale, cl.mtime[1], cl.time + 0.001 * cl.movevars_timescale);
3212                 }
3213         }
3214         // this packet probably contains a player entity update, so we will need
3215         // to update the prediction
3216         cl.movement_replay = true;
3217         // this may get updated later in parsing by svc_clientdata
3218         cl.onground = false;
3219         // if true the cl.viewangles are interpolated from cl.mviewangles[]
3220         // during this frame
3221         // (makes spectating players much smoother and prevents mouse movement from turning)
3222         cl.fixangle[1] = cl.fixangle[0];
3223         cl.fixangle[0] = false;
3224         if (!cls.demoplayback)
3225                 VectorCopy(cl.mviewangles[0], cl.mviewangles[1]);
3226         // update the csqc's server timestamps, critical for proper sync
3227         CSQC_UpdateNetworkTimes(cl.mtime[0], cl.mtime[1]);
3228
3229         if (cl.mtime[0] > cl.mtime[1])
3230                 World_Physics_Frame(&cl.world, cl.mtime[0] - cl.mtime[1], cl.movevars_gravity);
3231 }
3232
3233 #define SHOWNET(x) if(cl_shownet.integer==2)Con_Printf("%3i:%s(%i)\n", msg_readcount-1, x, cmd);
3234
3235 //[515]: csqc
3236 qboolean CL_VM_Parse_TempEntity (void);
3237 void CL_VM_Parse_StuffCmd (const char *msg);
3238 void CL_VM_Parse_CenterPrint (const char *msg);
3239 void CSQC_AddPrintText (const char *msg);
3240 void CSQC_ReadEntities (void);
3241
3242 /*
3243 =====================
3244 CL_ParseServerMessage
3245 =====================
3246 */
3247 int parsingerror = false;
3248 extern void CL_UpdateMoveVars(void);
3249 void CL_ParseServerMessage(void)
3250 {
3251         int                     cmd;
3252         int                     i;
3253         protocolversion_t protocol;
3254         unsigned char           cmdlog[32];
3255         char            *cmdlogname[32], *temp;
3256         int                     cmdindex, cmdcount = 0;
3257         qboolean        qwplayerupdatereceived;
3258         qboolean        strip_pqc;
3259
3260         // LordHavoc: moved demo message writing from before the packet parse to
3261         // after the packet parse so that CL_Stop_f can be called by cl_autodemo
3262         // code in CL_ParseServerinfo
3263         //if (cls.demorecording)
3264         //      CL_WriteDemoMessage (&net_message);
3265
3266         cl.last_received_message = realtime;
3267
3268         CL_KeepaliveMessage(false);
3269
3270 //
3271 // if recording demos, copy the message out
3272 //
3273         if (cl_shownet.integer == 1)
3274                 Con_Printf("%f %i\n", realtime, net_message.cursize);
3275         else if (cl_shownet.integer == 2)
3276                 Con_Print("------------------\n");
3277
3278 //
3279 // parse the message
3280 //
3281         //MSG_BeginReading ();
3282
3283         parsingerror = true;
3284
3285         if (cls.protocol == PROTOCOL_QUAKEWORLD)
3286         {
3287                 CL_NetworkTimeReceived(realtime); // qw has no clock
3288
3289                 // kill all qw nails
3290                 cl.qw_num_nails = 0;
3291
3292                 // fade weapon view kick
3293                 cl.qw_weaponkick = min(cl.qw_weaponkick + 10 * bound(0, cl.time - cl.oldtime, 0.1), 0);
3294
3295                 cls.servermovesequence = cls.netcon->qw.incoming_sequence;
3296
3297                 qwplayerupdatereceived = false;
3298
3299                 while (1)
3300                 {
3301                         if (msg_badread)
3302                                 Host_Error ("CL_ParseServerMessage: Bad QW server message");
3303
3304                         cmd = MSG_ReadByte ();
3305
3306                         if (cmd == -1)
3307                         {
3308                                 SHOWNET("END OF MESSAGE");
3309                                 break;          // end of message
3310                         }
3311
3312                         cmdindex = cmdcount & 31;
3313                         cmdcount++;
3314                         cmdlog[cmdindex] = cmd;
3315
3316                         SHOWNET(qw_svc_strings[cmd]);
3317                         cmdlogname[cmdindex] = qw_svc_strings[cmd];
3318                         if (!cmdlogname[cmdindex])
3319                         {
3320                                 // 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)
3321                                 temp = "<unknown>";
3322                                 cmdlogname[cmdindex] = temp;
3323                         }
3324
3325                         // other commands
3326                         switch (cmd)
3327                         {
3328                         default:
3329                                 {
3330                                         char description[32*64], temp[64];
3331                                         int count;
3332                                         strlcpy(description, "packet dump: ", sizeof(description));
3333                                         i = cmdcount - 32;
3334                                         if (i < 0)
3335                                                 i = 0;
3336                                         count = cmdcount - i;
3337                                         i &= 31;
3338                                         while(count > 0)
3339                                         {
3340                                                 dpsnprintf(temp, sizeof(temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
3341                                                 strlcat(description, temp, sizeof(description));
3342                                                 count--;
3343                                                 i++;
3344                                                 i &= 31;
3345                                         }
3346                                         description[strlen(description)-1] = '\n'; // replace the last space with a newline
3347                                         Con_Print(description);
3348                                         Host_Error("CL_ParseServerMessage: Illegible server message");
3349                                 }
3350                                 break;
3351
3352                         case qw_svc_nop:
3353                                 //Con_Printf("qw_svc_nop\n");
3354                                 break;
3355
3356                         case qw_svc_disconnect:
3357                                 Con_Printf("Server disconnected\n");
3358                                 if (cls.demonum != -1)
3359                                         CL_NextDemo();
3360                                 else
3361                                         CL_Disconnect();
3362                                 return;
3363
3364                         case qw_svc_print:
3365                                 i = MSG_ReadByte();
3366                                 temp = MSG_ReadString();
3367                                 if (CL_ExaminePrintString(temp)) // look for anything interesting like player IP addresses or ping reports
3368                                 {
3369                                         if (i == 3) // chat
3370                                                 CSQC_AddPrintText(va("\1%s", temp));    //[515]: csqc
3371                                         else
3372                                                 CSQC_AddPrintText(temp);
3373                                 }
3374                                 break;
3375
3376                         case qw_svc_centerprint:
3377                                 CL_VM_Parse_CenterPrint(MSG_ReadString ());     //[515]: csqc
3378                                 break;
3379
3380                         case qw_svc_stufftext:
3381                                 CL_VM_Parse_StuffCmd(MSG_ReadString ());        //[515]: csqc
3382                                 break;
3383
3384                         case qw_svc_damage:
3385                                 // svc_damage protocol is identical to nq
3386                                 V_ParseDamage ();
3387                                 break;
3388
3389                         case qw_svc_serverdata:
3390                                 //Cbuf_Execute(); // make sure any stuffed commands are done
3391                                 CL_ParseServerInfo();
3392                                 break;
3393
3394                         case qw_svc_setangle:
3395                                 for (i=0 ; i<3 ; i++)
3396                                         cl.viewangles[i] = MSG_ReadAngle (cls.protocol);
3397                                 if (!cls.demoplayback)
3398                                 {
3399                                         cl.fixangle[0] = true;
3400                                         VectorCopy(cl.viewangles, cl.mviewangles[0]);
3401                                         // disable interpolation if this is new
3402                                         if (!cl.fixangle[1])
3403                                                 VectorCopy(cl.viewangles, cl.mviewangles[1]);
3404                                 }
3405                                 break;
3406
3407                         case qw_svc_lightstyle:
3408                                 i = MSG_ReadByte ();
3409                                 if (i >= cl.max_lightstyle)
3410                                 {
3411                                         Con_Printf ("svc_lightstyle >= MAX_LIGHTSTYLES");
3412                                         break;
3413                                 }
3414                                 strlcpy (cl.lightstyle[i].map,  MSG_ReadString(), sizeof (cl.lightstyle[i].map));
3415                                 cl.lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
3416                                 cl.lightstyle[i].length = (int)strlen(cl.lightstyle[i].map);
3417                                 break;
3418
3419                         case qw_svc_sound:
3420                                 CL_ParseStartSoundPacket(false);
3421                                 break;
3422
3423                         case qw_svc_stopsound:
3424                                 i = (unsigned short) MSG_ReadShort();
3425                                 S_StopSound(i>>3, i&7);
3426                                 break;
3427
3428                         case qw_svc_updatefrags:
3429                                 i = MSG_ReadByte();
3430                                 if (i >= cl.maxclients)
3431                                         Host_Error("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
3432                                 cl.scores[i].frags = (signed short) MSG_ReadShort();
3433                                 break;
3434
3435                         case qw_svc_updateping:
3436                                 i = MSG_ReadByte();
3437                                 if (i >= cl.maxclients)
3438                                         Host_Error("CL_ParseServerMessage: svc_updateping >= cl.maxclients");
3439                                 cl.scores[i].qw_ping = MSG_ReadShort();
3440                                 break;
3441
3442                         case qw_svc_updatepl:
3443                                 i = MSG_ReadByte();
3444                                 if (i >= cl.maxclients)
3445                                         Host_Error("CL_ParseServerMessage: svc_updatepl >= cl.maxclients");
3446                                 cl.scores[i].qw_packetloss = MSG_ReadByte();
3447                                 break;
3448
3449                         case qw_svc_updateentertime:
3450                                 i = MSG_ReadByte();
3451                                 if (i >= cl.maxclients)
3452                                         Host_Error("CL_ParseServerMessage: svc_updateentertime >= cl.maxclients");
3453                                 // seconds ago
3454                                 cl.scores[i].qw_entertime = cl.time - MSG_ReadFloat();
3455                                 break;
3456
3457                         case qw_svc_spawnbaseline:
3458                                 i = (unsigned short) MSG_ReadShort();
3459                                 if (i < 0 || i >= MAX_EDICTS)
3460                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
3461                                 if (i >= cl.max_entities)
3462                                         CL_ExpandEntities(i);
3463                                 CL_ParseBaseline(cl.entities + i, false);
3464                                 break;
3465                         case qw_svc_spawnstatic:
3466                                 CL_ParseStatic(false);
3467                                 break;
3468                         case qw_svc_temp_entity:
3469                                 if(!CL_VM_Parse_TempEntity())
3470                                         CL_ParseTempEntity ();
3471                                 break;
3472
3473                         case qw_svc_killedmonster:
3474                                 cl.stats[STAT_MONSTERS]++;
3475                                 break;
3476
3477                         case qw_svc_foundsecret:
3478                                 cl.stats[STAT_SECRETS]++;
3479                                 break;
3480
3481                         case qw_svc_updatestat:
3482                                 i = MSG_ReadByte ();
3483                                 if (i < 0 || i >= MAX_CL_STATS)
3484                                         Host_Error ("svc_updatestat: %i is invalid", i);
3485                                 cl.stats[i] = MSG_ReadByte ();
3486                                 break;
3487
3488                         case qw_svc_updatestatlong:
3489                                 i = MSG_ReadByte ();
3490                                 if (i < 0 || i >= MAX_CL_STATS)
3491                                         Host_Error ("svc_updatestatlong: %i is invalid", i);
3492                                 cl.stats[i] = MSG_ReadLong ();
3493                                 break;
3494
3495                         case qw_svc_spawnstaticsound:
3496                                 CL_ParseStaticSound (false);
3497                                 break;
3498
3499                         case qw_svc_cdtrack:
3500                                 cl.cdtrack = cl.looptrack = MSG_ReadByte ();
3501                                 if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
3502                                         CDAudio_Play ((unsigned char)cls.forcetrack, true);
3503                                 else
3504                                         CDAudio_Play ((unsigned char)cl.cdtrack, true);
3505                                 break;
3506
3507                         case qw_svc_intermission:
3508                                 if(!cl.intermission)
3509                                         cl.completed_time = cl.time;
3510                                 cl.intermission = 1;
3511                                 MSG_ReadVector(cl.qw_intermission_origin, cls.protocol);
3512                                 for (i = 0;i < 3;i++)
3513                                         cl.qw_intermission_angles[i] = MSG_ReadAngle(cls.protocol);
3514                                 break;
3515
3516                         case qw_svc_finale:
3517                                 if(!cl.intermission)
3518                                         cl.completed_time = cl.time;
3519                                 cl.intermission = 2;
3520                                 SCR_CenterPrint(MSG_ReadString ());
3521                                 break;
3522
3523                         case qw_svc_sellscreen:
3524                                 Cmd_ExecuteString ("help", src_command);
3525                                 break;
3526
3527                         case qw_svc_smallkick:
3528                                 cl.qw_weaponkick = -2;
3529                                 break;
3530                         case qw_svc_bigkick:
3531                                 cl.qw_weaponkick = -4;
3532                                 break;
3533
3534                         case qw_svc_muzzleflash:
3535                                 i = (unsigned short) MSG_ReadShort();
3536                                 // NOTE: in QW this only worked on clients
3537                                 if (i < 0 || i >= MAX_EDICTS)
3538                                         Host_Error("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
3539                                 if (i >= cl.max_entities)
3540                                         CL_ExpandEntities(i);
3541                                 cl.entities[i].persistent.muzzleflash = 1.0f;
3542                                 break;
3543
3544                         case qw_svc_updateuserinfo:
3545                                 QW_CL_UpdateUserInfo();
3546                                 break;
3547
3548                         case qw_svc_setinfo:
3549                                 QW_CL_SetInfo();
3550                                 break;
3551
3552                         case qw_svc_serverinfo:
3553                                 QW_CL_ServerInfo();
3554                                 break;
3555
3556                         case qw_svc_download:
3557                                 QW_CL_ParseDownload();
3558                                 break;
3559
3560                         case qw_svc_playerinfo:
3561                                 // slightly kill qw player entities now that we know there is
3562                                 // an update of player entities this frame...
3563                                 if (!qwplayerupdatereceived)
3564                                 {
3565                                         qwplayerupdatereceived = true;
3566                                         for (i = 1;i < cl.maxclients;i++)
3567                                                 cl.entities_active[i] = false;
3568                                 }
3569                                 EntityStateQW_ReadPlayerUpdate();
3570                                 break;
3571
3572                         case qw_svc_nails:
3573                                 QW_CL_ParseNails();
3574                                 break;
3575
3576                         case qw_svc_chokecount:
3577                                 i = MSG_ReadByte();
3578                                 // FIXME: apply to netgraph
3579                                 //for (j = 0;j < i;j++)
3580                                 //      cl.frames[(cls.netcon->qw.incoming_acknowledged-1-j)&QW_UPDATE_MASK].receivedtime = -2;
3581                                 break;
3582
3583                         case qw_svc_modellist:
3584                                 QW_CL_ParseModelList();
3585                                 break;
3586
3587                         case qw_svc_soundlist:
3588                                 QW_CL_ParseSoundList();
3589                                 break;
3590
3591                         case qw_svc_packetentities:
3592                                 EntityFrameQW_CL_ReadFrame(false);
3593                                 // first update is the final signon stage
3594                                 if (cls.signon == SIGNONS - 1)
3595                                 {
3596                                         cls.signon = SIGNONS;
3597                                         CL_SignonReply ();
3598                                 }
3599                                 break;
3600
3601                         case qw_svc_deltapacketentities:
3602                                 EntityFrameQW_CL_ReadFrame(true);
3603                                 // first update is the final signon stage
3604                                 if (cls.signon == SIGNONS - 1)
3605                                 {
3606                                         cls.signon = SIGNONS;
3607                                         CL_SignonReply ();
3608                                 }
3609                                 break;
3610
3611                         case qw_svc_maxspeed:
3612                                 cl.movevars_maxspeed = MSG_ReadFloat();
3613                                 break;
3614
3615                         case qw_svc_entgravity:
3616                                 cl.movevars_entgravity = MSG_ReadFloat();
3617                                 if (!cl.movevars_entgravity)
3618                                         cl.movevars_entgravity = 1.0f;
3619                                 break;
3620
3621                         case qw_svc_setpause:
3622                                 cl.paused = MSG_ReadByte () != 0;
3623                                 if (cl.paused)
3624                                         CDAudio_Pause ();
3625                                 else
3626                                         CDAudio_Resume ();
3627                                 S_PauseGameSounds (cl.paused);
3628                                 break;
3629                         }
3630                 }
3631
3632                 if (qwplayerupdatereceived)
3633                 {
3634                         // fully kill any player entities that were not updated this frame
3635                         for (i = 1;i <= cl.maxclients;i++)
3636                                 if (!cl.entities_active[i])
3637                                         cl.entities[i].state_current.active = false;
3638                 }
3639         }
3640         else
3641         {
3642                 while (1)
3643                 {
3644                         if (msg_badread)
3645                                 Host_Error ("CL_ParseServerMessage: Bad server message");
3646
3647                         cmd = MSG_ReadByte ();
3648
3649                         if (cmd == -1)
3650                         {
3651 //                              R_TimeReport("END OF MESSAGE");
3652                                 SHOWNET("END OF MESSAGE");
3653                                 break;          // end of message
3654                         }
3655
3656                         cmdindex = cmdcount & 31;
3657                         cmdcount++;
3658                         cmdlog[cmdindex] = cmd;
3659
3660                         // if the high bit of the command byte is set, it is a fast update
3661                         if (cmd & 128)
3662                         {
3663                                 // 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)
3664                                 temp = "entity";
3665                                 cmdlogname[cmdindex] = temp;
3666                                 SHOWNET("fast update");
3667                                 if (cls.signon == SIGNONS - 1)
3668                                 {
3669                                         // first update is the final signon stage
3670                                         cls.signon = SIGNONS;
3671                                         CL_SignonReply ();
3672                                 }
3673                                 EntityFrameQuake_ReadEntity (cmd&127);
3674                                 continue;
3675                         }
3676
3677                         SHOWNET(svc_strings[cmd]);
3678                         cmdlogname[cmdindex] = svc_strings[cmd];
3679                         if (!cmdlogname[cmdindex])
3680                         {
3681                                 // 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)
3682                                 temp = "<unknown>";
3683                                 cmdlogname[cmdindex] = temp;
3684                         }
3685
3686                         // other commands
3687                         switch (cmd)
3688                         {
3689                         default:
3690                                 {
3691                                         char description[32*64], temp[64];
3692                                         int count;
3693                                         strlcpy (description, "packet dump: ", sizeof(description));
3694                                         i = cmdcount - 32;
3695                                         if (i < 0)
3696                                                 i = 0;
3697                                         count = cmdcount - i;
3698                                         i &= 31;
3699                                         while(count > 0)
3700                                         {
3701                                                 dpsnprintf (temp, sizeof (temp), "%3i:%s ", cmdlog[i], cmdlogname[i]);
3702                                                 strlcat (description, temp, sizeof (description));
3703                                                 count--;
3704                                                 i++;
3705                                                 i &= 31;
3706                                         }
3707                                         description[strlen(description)-1] = '\n'; // replace the last space with a newline
3708                                         Con_Print(description);
3709                                         Host_Error ("CL_ParseServerMessage: Illegible server message");
3710                                 }
3711                                 break;
3712
3713                         case svc_nop:
3714                                 if (cls.signon < SIGNONS)
3715                                         Con_Print("<-- server to client keepalive\n");
3716                                 break;
3717
3718                         case svc_time:
3719                                 CL_NetworkTimeReceived(MSG_ReadFloat());
3720                                 break;
3721
3722                         case svc_clientdata:
3723                                 CL_ParseClientdata();
3724                                 break;
3725
3726                         case svc_version:
3727                                 i = MSG_ReadLong ();
3728                                 protocol = Protocol_EnumForNumber(i);
3729                                 if (protocol == PROTOCOL_UNKNOWN)
3730                                         Host_Error("CL_ParseServerMessage: Server is unrecognized protocol number (%i)", i);
3731                                 // hack for unmarked Nehahra movie demos which had a custom protocol
3732                                 if (protocol == PROTOCOL_QUAKEDP && cls.demoplayback && demo_nehahra.integer)
3733                                         protocol = PROTOCOL_NEHAHRAMOVIE;
3734                                 cls.protocol = protocol;
3735                                 break;
3736
3737                         case svc_disconnect:
3738                                 Con_Printf ("Server disconnected\n");
3739                                 if (cls.demonum != -1)
3740                                         CL_NextDemo ();
3741                                 else
3742                                         CL_Disconnect ();
3743                                 break;
3744
3745                         case svc_print:
3746                                 temp = MSG_ReadString();
3747                                 if (CL_ExaminePrintString(temp)) // look for anything interesting like player IP addresses or ping reports
3748                                         CSQC_AddPrintText(temp);        //[515]: csqc
3749                                 break;
3750
3751                         case svc_centerprint:
3752                                 CL_VM_Parse_CenterPrint(MSG_ReadString ());     //[515]: csqc
3753                                 break;
3754
3755                         case svc_stufftext:
3756                                 temp = MSG_ReadString();
3757                                 /* if(utf8_enable.integer)
3758                                 {
3759                                         strip_pqc = true;
3760                                         // we can safely strip and even
3761                                         // interpret these in utf8 mode
3762                                 }
3763                                 else */ switch(cls.protocol)
3764                                 {
3765                                         case PROTOCOL_QUAKE:
3766                                         case PROTOCOL_QUAKEDP:
3767                                                 // maybe add other protocols if
3768                                                 // so desired, but not DP7
3769                                                 strip_pqc = true;
3770                                                 break;
3771                                         case PROTOCOL_DARKPLACES7:
3772                                         default:
3773                                                 // ProQuake does not support
3774                                                 // these protocols
3775                                                 strip_pqc = false;
3776                                                 break;
3777                                 }
3778                                 if(strip_pqc)
3779                                 {
3780                                         // skip over ProQuake messages,
3781                                         // TODO actually interpret them
3782                                         // (they are sbar team score
3783                                         // updates), see proquake cl_parse.c
3784                                         if(*temp == 0x01)
3785                                         {
3786                                                 ++temp;
3787                                                 while(*temp >= 0x01 && *temp <= 0x1F)
3788                                                         ++temp;
3789                                         }
3790                                 }
3791                                 CL_VM_Parse_StuffCmd(temp);     //[515]: csqc
3792                                 break;
3793
3794                         case svc_damage:
3795                                 V_ParseDamage ();
3796                                 break;
3797
3798                         case svc_serverinfo:
3799                                 CL_ParseServerInfo ();
3800                                 break;
3801
3802                         case svc_setangle:
3803                                 for (i=0 ; i<3 ; i++)
3804                                         cl.viewangles[i] = MSG_ReadAngle (cls.protocol);
3805                                 if (!cls.demoplayback)
3806                                 {
3807                                         cl.fixangle[0] = true;
3808                                         VectorCopy(cl.viewangles, cl.mviewangles[0]);
3809                                         // disable interpolation if this is new
3810                                         if (!cl.fixangle[1])
3811                                                 VectorCopy(cl.viewangles, cl.mviewangles[1]);
3812                                 }
3813                                 break;
3814
3815                         case svc_setview:
3816                                 cl.viewentity = (unsigned short)MSG_ReadShort ();
3817                                 if (cl.viewentity >= MAX_EDICTS)
3818                                         Host_Error("svc_setview >= MAX_EDICTS");
3819                                 if (cl.viewentity >= cl.max_entities)
3820                                         CL_ExpandEntities(cl.viewentity);
3821                                 // LordHavoc: assume first setview recieved is the real player entity
3822                                 if (!cl.realplayerentity)
3823                                         cl.realplayerentity = cl.viewentity;
3824                                 // update cl.playerentity to this one if it is a valid player
3825                                 if (cl.viewentity >= 1 && cl.viewentity <= cl.maxclients)
3826                                         cl.playerentity = cl.viewentity;
3827                                 break;
3828
3829                         case svc_lightstyle:
3830                                 i = MSG_ReadByte ();
3831                                 if (i >= cl.max_lightstyle)
3832                                 {
3833                                         Con_Printf ("svc_lightstyle >= MAX_LIGHTSTYLES");
3834                                         break;
3835                                 }
3836                                 strlcpy (cl.lightstyle[i].map,  MSG_ReadString(), sizeof (cl.lightstyle[i].map));
3837                                 cl.lightstyle[i].map[MAX_STYLESTRING - 1] = 0;
3838                                 cl.lightstyle[i].length = (int)strlen(cl.lightstyle[i].map);
3839                                 break;
3840
3841                         case svc_sound:
3842                                 CL_ParseStartSoundPacket(false);
3843                                 break;
3844
3845                         case svc_precache:
3846                                 if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3)
3847                                 {
3848                                         // was svc_sound2 in protocols 1, 2, 3, removed in 4, 5, changed to svc_precache in 6
3849                                         CL_ParseStartSoundPacket(true);
3850                                 }
3851                                 else
3852                                 {
3853                                         int i = (unsigned short)MSG_ReadShort();
3854                                         char *s = MSG_ReadString();
3855                                         if (i < 32768)
3856                                         {
3857                                                 if (i >= 1 && i < MAX_MODELS)
3858                                                 {
3859                                                         dp_model_t *model = Mod_ForName(s, false, false, s[0] == '*' ? cl.model_name[1] : NULL);
3860                                                         if (!model)
3861                                                                 Con_DPrintf("svc_precache: Mod_ForName(\"%s\") failed\n", s);
3862                                                         cl.model_precache[i] = model;
3863                                                 }
3864                                                 else
3865                                                         Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_MODELS);
3866                                         }
3867                                         else
3868                                         {
3869                                                 i -= 32768;
3870                                                 if (i >= 1 && i < MAX_SOUNDS)
3871                                                 {
3872                                                         sfx_t *sfx = S_PrecacheSound (s, true, true);
3873                                                         if (!sfx && snd_initialized.integer)
3874                                                                 Con_DPrintf("svc_precache: S_PrecacheSound(\"%s\") failed\n", s);
3875                                                         cl.sound_precache[i] = sfx;
3876                                                 }
3877                                                 else
3878                                                         Con_Printf("svc_precache: index %i outside range %i...%i\n", i, 1, MAX_SOUNDS);
3879                                         }
3880                                 }
3881                                 break;
3882
3883                         case svc_stopsound:
3884                                 i = (unsigned short) MSG_ReadShort();
3885                                 S_StopSound(i>>3, i&7);
3886                                 break;
3887
3888                         case svc_updatename:
3889                                 i = MSG_ReadByte ();
3890                                 if (i >= cl.maxclients)
3891                                         Host_Error ("CL_ParseServerMessage: svc_updatename >= cl.maxclients");
3892                                 strlcpy (cl.scores[i].name, MSG_ReadString (), sizeof (cl.scores[i].name));
3893                                 break;
3894
3895                         case svc_updatefrags:
3896                                 i = MSG_ReadByte ();
3897                                 if (i >= cl.maxclients)
3898                                         Host_Error ("CL_ParseServerMessage: svc_updatefrags >= cl.maxclients");
3899                                 cl.scores[i].frags = (signed short) MSG_ReadShort ();
3900                                 break;
3901
3902                         case svc_updatecolors:
3903                                 i = MSG_ReadByte ();
3904                                 if (i >= cl.maxclients)
3905                                         Host_Error ("CL_ParseServerMessage: svc_updatecolors >= cl.maxclients");
3906                                 cl.scores[i].colors = MSG_ReadByte ();
3907                                 break;
3908
3909                         case svc_particle:
3910                                 CL_ParseParticleEffect ();
3911                                 break;
3912
3913                         case svc_effect:
3914                                 CL_ParseEffect ();
3915                                 break;
3916
3917                         case svc_effect2:
3918                                 CL_ParseEffect2 ();
3919                                 break;
3920
3921                         case svc_spawnbaseline:
3922                                 i = (unsigned short) MSG_ReadShort ();
3923                                 if (i < 0 || i >= MAX_EDICTS)
3924                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline: invalid entity number %i", i);
3925                                 if (i >= cl.max_entities)
3926                                         CL_ExpandEntities(i);
3927                                 CL_ParseBaseline (cl.entities + i, false);
3928                                 break;
3929                         case svc_spawnbaseline2:
3930                                 i = (unsigned short) MSG_ReadShort ();
3931                                 if (i < 0 || i >= MAX_EDICTS)
3932                                         Host_Error ("CL_ParseServerMessage: svc_spawnbaseline2: invalid entity number %i", i);
3933                                 if (i >= cl.max_entities)
3934                                         CL_ExpandEntities(i);
3935                                 CL_ParseBaseline (cl.entities + i, true);
3936                                 break;
3937                         case svc_spawnstatic:
3938                                 CL_ParseStatic (false);
3939                                 break;
3940                         case svc_spawnstatic2:
3941                                 CL_ParseStatic (true);
3942                                 break;
3943                         case svc_temp_entity:
3944                                 if(!CL_VM_Parse_TempEntity())
3945                                         CL_ParseTempEntity ();
3946                                 break;
3947
3948                         case svc_setpause:
3949                                 cl.paused = MSG_ReadByte () != 0;
3950                                 if (cl.paused)
3951                                         CDAudio_Pause ();
3952                                 else
3953                                         CDAudio_Resume ();
3954                                 S_PauseGameSounds (cl.paused);
3955                                 break;
3956
3957                         case svc_signonnum:
3958                                 i = MSG_ReadByte ();
3959                                 // LordHavoc: it's rude to kick off the client if they missed the
3960                                 // reconnect somehow, so allow signon 1 even if at signon 1
3961                                 if (i <= cls.signon && i != 1)
3962                                         Host_Error ("Received signon %i when at %i", i, cls.signon);
3963                                 cls.signon = i;
3964                                 CL_SignonReply ();
3965                                 break;
3966
3967                         case svc_killedmonster:
3968                                 cl.stats[STAT_MONSTERS]++;
3969                                 break;
3970
3971                         case svc_foundsecret:
3972                                 cl.stats[STAT_SECRETS]++;
3973                                 break;
3974
3975                         case svc_updatestat:
3976                                 i = MSG_ReadByte ();
3977                                 if (i < 0 || i >= MAX_CL_STATS)
3978                                         Host_Error ("svc_updatestat: %i is invalid", i);
3979                                 cl.stats[i] = MSG_ReadLong ();
3980                                 break;
3981
3982                         case svc_updatestatubyte:
3983                                 i = MSG_ReadByte ();
3984                                 if (i < 0 || i >= MAX_CL_STATS)
3985                                         Host_Error ("svc_updatestat: %i is invalid", i);
3986                                 cl.stats[i] = MSG_ReadByte ();
3987                                 break;
3988
3989                         case svc_spawnstaticsound:
3990                                 CL_ParseStaticSound (false);
3991                                 break;
3992
3993                         case svc_spawnstaticsound2:
3994                                 CL_ParseStaticSound (true);
3995                                 break;
3996
3997                         case svc_cdtrack:
3998                                 cl.cdtrack = MSG_ReadByte ();
3999                                 cl.looptrack = MSG_ReadByte ();
4000                                 if ( (cls.demoplayback || cls.demorecording) && (cls.forcetrack != -1) )
4001                                         CDAudio_Play ((unsigned char)cls.forcetrack, true);
4002                                 else
4003                                         CDAudio_Play ((unsigned char)cl.cdtrack, true);
4004                                 break;
4005
4006                         case svc_intermission:
4007                                 if(!cl.intermission)
4008                                         cl.completed_time = cl.time;
4009                                 cl.intermission = 1;
4010                                 CL_VM_UpdateIntermissionState(cl.intermission);
4011                                 break;
4012
4013                         case svc_finale:
4014                                 if(!cl.intermission)
4015                                         cl.completed_time = cl.time;
4016                                 cl.intermission = 2;
4017                                 CL_VM_UpdateIntermissionState(cl.intermission);
4018                                 SCR_CenterPrint(MSG_ReadString ());
4019                                 break;
4020
4021                         case svc_cutscene:
4022                                 if(!cl.intermission)
4023                                         cl.completed_time = cl.time;
4024                                 cl.intermission = 3;
4025                                 CL_VM_UpdateIntermissionState(cl.intermission);
4026                                 SCR_CenterPrint(MSG_ReadString ());
4027                                 break;
4028
4029                         case svc_sellscreen:
4030                                 Cmd_ExecuteString ("help", src_command);
4031                                 break;
4032                         case svc_hidelmp:
4033                                 if (gamemode == GAME_TENEBRAE)
4034                                 {
4035                                         // repeating particle effect
4036                                         MSG_ReadCoord(cls.protocol);
4037                                         MSG_ReadCoord(cls.protocol);
4038                                         MSG_ReadCoord(cls.protocol);
4039                                         MSG_ReadCoord(cls.protocol);
4040                                         MSG_ReadCoord(cls.protocol);
4041                                         MSG_ReadCoord(cls.protocol);
4042                                         MSG_ReadByte();
4043                                         MSG_ReadLong();
4044                                         MSG_ReadLong();
4045                                         MSG_ReadString();
4046                                 }
4047                                 else
4048                                         SHOWLMP_decodehide();
4049                                 break;
4050                         case svc_showlmp:
4051                                 if (gamemode == GAME_TENEBRAE)
4052                                 {
4053                                         // particle effect
4054                                         MSG_ReadCoord(cls.protocol);
4055                                         MSG_ReadCoord(cls.protocol);
4056                                         MSG_ReadCoord(cls.protocol);
4057                                         MSG_ReadByte();
4058                                         MSG_ReadString();
4059                                 }
4060                                 else
4061                                         SHOWLMP_decodeshow();
4062                                 break;
4063                         case svc_skybox:
4064                                 R_SetSkyBox(MSG_ReadString());
4065                                 break;
4066                         case svc_entities:
4067                                 if (cls.signon == SIGNONS - 1)
4068                                 {
4069                                         // first update is the final signon stage
4070                                         cls.signon = SIGNONS;
4071                                         CL_SignonReply ();
4072                                 }
4073                                 if (cls.protocol == PROTOCOL_DARKPLACES1 || cls.protocol == PROTOCOL_DARKPLACES2 || cls.protocol == PROTOCOL_DARKPLACES3)
4074                                         EntityFrame_CL_ReadFrame();
4075                                 else if (cls.protocol == PROTOCOL_DARKPLACES4)
4076                                         EntityFrame4_CL_ReadFrame();
4077                                 else
4078                                         EntityFrame5_CL_ReadFrame();
4079                                 break;
4080                         case svc_csqcentities:
4081                                 CSQC_ReadEntities();
4082                                 break;
4083                         case svc_downloaddata:
4084                                 CL_ParseDownload();
4085                                 break;
4086                         case svc_trailparticles:
4087                                 CL_ParseTrailParticles();
4088                                 break;
4089                         case svc_pointparticles:
4090                                 CL_ParsePointParticles();
4091                                 break;
4092                         case svc_pointparticles1:
4093                                 CL_ParsePointParticles1();
4094                                 break;
4095                         }
4096 //                      R_TimeReport(svc_strings[cmd]);
4097                 }
4098         }
4099
4100         if (cls.signon == SIGNONS)
4101                 CL_UpdateItemsAndWeapon();
4102 //      R_TimeReport("UpdateItems");
4103
4104         EntityFrameQuake_ISeeDeadEntities();
4105 //      R_TimeReport("ISeeDeadEntities");
4106
4107         CL_UpdateMoveVars();
4108 //      R_TimeReport("UpdateMoveVars");
4109
4110         parsingerror = false;
4111
4112         // LordHavoc: this was at the start of the function before cl_autodemo was
4113         // implemented
4114         if (cls.demorecording)
4115         {
4116                 CL_WriteDemoMessage (&net_message);
4117 //              R_TimeReport("WriteDemo");
4118         }
4119 }
4120
4121 void CL_Parse_DumpPacket(void)
4122 {
4123         if (!parsingerror)
4124                 return;
4125         Con_Print("Packet dump:\n");
4126         SZ_HexDumpToConsole(&net_message);
4127         parsingerror = false;
4128 }
4129
4130 void CL_Parse_ErrorCleanUp(void)
4131 {
4132         CL_StopDownload(0, 0);
4133         QW_CL_StopUpload();
4134 }
4135
4136 void CL_Parse_Init(void)
4137 {
4138         // LordHavoc: added demo_nehahra cvar
4139         Cvar_RegisterVariable (&demo_nehahra);
4140         if (gamemode == GAME_NEHAHRA)
4141                 Cvar_SetValue("demo_nehahra", 1);
4142         Cvar_RegisterVariable(&developer_networkentities);
4143         Cvar_RegisterVariable(&cl_gameplayfix_soundsmovewithentities);
4144
4145         Cvar_RegisterVariable(&cl_sound_wizardhit);
4146         Cvar_RegisterVariable(&cl_sound_hknighthit);
4147         Cvar_RegisterVariable(&cl_sound_tink1);
4148         Cvar_RegisterVariable(&cl_sound_ric1);
4149         Cvar_RegisterVariable(&cl_sound_ric2);
4150         Cvar_RegisterVariable(&cl_sound_ric3);
4151         Cvar_RegisterVariable(&cl_sound_ric_gunshot);
4152         Cvar_RegisterVariable(&cl_sound_r_exp3);
4153
4154         Cvar_RegisterVariable(&cl_joinbeforedownloadsfinish);
4155
4156         // server extension cvars set by commands issued from the server during connect
4157         Cvar_RegisterVariable(&cl_serverextension_download);
4158
4159         Cvar_RegisterVariable(&cl_nettimesyncfactor);
4160         Cvar_RegisterVariable(&cl_nettimesyncboundmode);
4161         Cvar_RegisterVariable(&cl_nettimesyncboundtolerance);
4162         Cvar_RegisterVariable(&cl_iplog_name);
4163         Cvar_RegisterVariable(&cl_readpicture_force);
4164
4165         Cmd_AddCommand("nextul", QW_CL_NextUpload, "sends next fragment of current upload buffer (screenshot for example)");
4166         Cmd_AddCommand("stopul", QW_CL_StopUpload, "aborts current upload (screenshot for example)");
4167         Cmd_AddCommand("skins", QW_CL_Skins_f, "downloads missing qw skins from server");
4168         Cmd_AddCommand("changing", QW_CL_Changing_f, "sent by qw servers to tell client to wait for level change");
4169         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)");
4170         Cmd_AddCommand("cl_downloadbegin", CL_DownloadBegin_f, "(networking) informs client of download file information, client replies with sv_startsoundload to begin the transfer");
4171         Cmd_AddCommand("stopdownload", CL_StopDownload_f, "terminates a download");
4172         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");
4173         Cmd_AddCommand("iplog_list", CL_IPLog_List_f, "lists names of players whose IP address begins with the supplied text (example: iplog_list 123.456.789)");
4174 }
4175
4176 void CL_Parse_Shutdown(void)
4177 {
4178 }