]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - cl_main.c
the light has been defeated by the shadow (r_light moved into r_shadow)
[xonotic/darkplaces.git] / cl_main.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_main.c  -- client main loop
21
22 #include "quakedef.h"
23 #include "cl_collision.h"
24 #include "cl_gecko.h"
25 #include "cl_video.h"
26 #include "image.h"
27 #include "csprogs.h"
28 #include "r_shadow.h"
29 #include "libcurl.h"
30 #include "snd_main.h"
31
32 // we need to declare some mouse variables here, because the menu system
33 // references them even when on a unix system.
34
35 cvar_t csqc_progname = {0, "csqc_progname","csprogs.dat","name of csprogs.dat file to load"};
36 cvar_t csqc_progcrc = {CVAR_READONLY, "csqc_progcrc","-1","CRC of csprogs.dat file to load (-1 is none), only used during level changes and then reset to -1"};
37 cvar_t csqc_progsize = {CVAR_READONLY, "csqc_progsize","-1","file size of csprogs.dat file to load (-1 is none), only used during level changes and then reset to -1"};
38
39 cvar_t cl_shownet = {0, "cl_shownet","0","1 = print packet size, 2 = print packet message list"};
40 cvar_t cl_nolerp = {0, "cl_nolerp", "0","network update smoothing"};
41
42 cvar_t cl_itembobheight = {0, "cl_itembobheight", "0","how much items bob up and down (try 8)"};
43 cvar_t cl_itembobspeed = {0, "cl_itembobspeed", "0.5","how frequently items bob up and down"};
44
45 cvar_t lookspring = {CVAR_SAVE, "lookspring","0","returns pitch to level with the floor when no longer holding a pitch key"};
46 cvar_t lookstrafe = {CVAR_SAVE, "lookstrafe","0","move instead of turning"};
47 cvar_t sensitivity = {CVAR_SAVE, "sensitivity","3","mouse speed multiplier"};
48
49 cvar_t m_pitch = {CVAR_SAVE, "m_pitch","0.022","mouse pitch speed multiplier"};
50 cvar_t m_yaw = {CVAR_SAVE, "m_yaw","0.022","mouse yaw speed multiplier"};
51 cvar_t m_forward = {CVAR_SAVE, "m_forward","1","mouse forward speed multiplier"};
52 cvar_t m_side = {CVAR_SAVE, "m_side","0.8","mouse side speed multiplier"};
53
54 cvar_t freelook = {CVAR_SAVE, "freelook", "1","mouse controls pitch instead of forward/back"};
55
56 cvar_t cl_autodemo = {CVAR_SAVE, "cl_autodemo", "0", "records every game played, using the date/time and map name to name the demo file" };
57 cvar_t cl_autodemo_nameformat = {CVAR_SAVE, "cl_autodemo_nameformat", "autodemos/%Y-%m-%d_%H-%M", "The format of the cl_autodemo filename, followed by the map name" };
58
59 cvar_t r_draweffects = {0, "r_draweffects", "1","renders temporary sprite effects"};
60
61 cvar_t cl_explosions_alpha_start = {CVAR_SAVE, "cl_explosions_alpha_start", "1.5","starting alpha of an explosion shell"};
62 cvar_t cl_explosions_alpha_end = {CVAR_SAVE, "cl_explosions_alpha_end", "0","end alpha of an explosion shell (just before it disappears)"};
63 cvar_t cl_explosions_size_start = {CVAR_SAVE, "cl_explosions_size_start", "16","starting size of an explosion shell"};
64 cvar_t cl_explosions_size_end = {CVAR_SAVE, "cl_explosions_size_end", "128","ending alpha of an explosion shell (just before it disappears)"};
65 cvar_t cl_explosions_lifetime = {CVAR_SAVE, "cl_explosions_lifetime", "0.5","how long an explosion shell lasts"};
66
67 cvar_t cl_stainmaps = {CVAR_SAVE, "cl_stainmaps", "0","stains lightmaps, much faster than decals but blurred"};
68 cvar_t cl_stainmaps_clearonload = {CVAR_SAVE, "cl_stainmaps_clearonload", "1","clear stainmaps on map restart"};
69
70 cvar_t cl_beams_polygons = {CVAR_SAVE, "cl_beams_polygons", "1","use beam polygons instead of models"};
71 cvar_t cl_beams_quakepositionhack = {CVAR_SAVE, "cl_beams_quakepositionhack", "1", "makes your lightning gun appear to fire from your waist (as in Quake and QuakeWorld)"};
72 cvar_t cl_beams_instantaimhack = {CVAR_SAVE, "cl_beams_instantaimhack", "0", "makes your lightning gun aiming update instantly"};
73 cvar_t cl_beams_lightatend = {CVAR_SAVE, "cl_beams_lightatend", "0", "make a light at the end of the beam"};
74
75 cvar_t cl_noplayershadow = {CVAR_SAVE, "cl_noplayershadow", "0","hide player shadow"};
76
77 cvar_t cl_dlights_decayradius = {CVAR_SAVE, "cl_dlights_decayradius", "1", "reduces size of light flashes over time"};
78 cvar_t cl_dlights_decaybrightness = {CVAR_SAVE, "cl_dlights_decaybrightness", "1", "reduces brightness of light flashes over time"};
79
80 cvar_t qport = {0, "qport", "0", "identification key for playing on qw servers (allows you to maintain a connection to a quakeworld server even if your port changes)"};
81
82 cvar_t cl_prydoncursor = {0, "cl_prydoncursor", "0", "enables a mouse pointer which is able to click on entities in the world, useful for point and click mods, see PRYDON_CLIENTCURSOR extension in dpextensions.qc"};
83
84 cvar_t cl_deathnoviewmodel = {0, "cl_deathnoviewmodel", "1", "hides gun model when dead"};
85
86 cvar_t cl_locs_enable = {CVAR_SAVE, "locs_enable", "1", "enables replacement of certain % codes in chat messages: %l (location), %d (last death location), %h (health), %a (armor), %x (rockets), %c (cells), %r (rocket launcher status), %p (powerup status), %w (weapon status), %t (current time in level)"};
87 cvar_t cl_locs_show = {0, "locs_show", "0", "shows defined locations for editing purposes"};
88
89 client_static_t cls;
90 client_state_t  cl;
91
92 #define MAX_PARTICLES                   32768   // default max # of particles at one time
93 #define MAX_DECALS                              32768   // default max # of decals at one time
94 #define ABSOLUTE_MIN_PARTICLES  512             // no fewer than this no matter what's on the command line
95
96 /*
97 =====================
98 CL_ClearState
99
100 =====================
101 */
102 void CL_ClearState(void)
103 {
104         int i;
105         entity_t *ent;
106
107 // wipe the entire cl structure
108         Mem_EmptyPool(cls.levelmempool);
109         memset (&cl, 0, sizeof(cl));
110
111         S_StopAllSounds();
112
113         // reset the view zoom interpolation
114         cl.mviewzoom[0] = cl.mviewzoom[1] = 1;
115
116         // enable rendering of the world and such
117         cl.csqc_vidvars.drawworld = true;
118         cl.csqc_vidvars.drawenginesbar = true;
119         cl.csqc_vidvars.drawcrosshair = true;
120
121         // set up the float version of the stats array for easier access to float stats
122         cl.statsf = (float *)cl.stats;
123
124         cl.num_entities = 0;
125         cl.num_static_entities = 0;
126         cl.num_temp_entities = 0;
127         cl.num_brushmodel_entities = 0;
128
129         // tweak these if the game runs out
130         cl.max_entities = 256;
131         cl.max_static_entities = 256;
132         cl.max_temp_entities = 512;
133         cl.max_effects = 256;
134         cl.max_beams = 256;
135         cl.max_dlights = MAX_DLIGHTS;
136         cl.max_lightstyle = MAX_LIGHTSTYLES;
137         cl.max_brushmodel_entities = MAX_EDICTS;
138         cl.max_particles = MAX_PARTICLES;
139         cl.max_decals = MAX_DECALS;
140         cl.max_showlmps = 0;
141
142 // COMMANDLINEOPTION: Client: -particles <number> changes maximum number of particles at once, default 32768
143         i = COM_CheckParm ("-particles");
144         if (i && i < com_argc - 1)
145         {
146                 cl.max_particles = (int)(atoi(com_argv[i+1]));
147                 if (cl.max_particles < ABSOLUTE_MIN_PARTICLES)
148                         cl.max_particles = ABSOLUTE_MIN_PARTICLES;
149         }
150
151         cl.num_dlights = 0;
152         cl.num_effects = 0;
153         cl.num_beams = 0;
154
155         cl.entities = (entity_t *)Mem_Alloc(cls.levelmempool, cl.max_entities * sizeof(entity_t));
156         cl.entities_active = (unsigned char *)Mem_Alloc(cls.levelmempool, cl.max_brushmodel_entities * sizeof(unsigned char));
157         cl.static_entities = (entity_t *)Mem_Alloc(cls.levelmempool, cl.max_static_entities * sizeof(entity_t));
158         cl.temp_entities = (entity_t *)Mem_Alloc(cls.levelmempool, cl.max_temp_entities * sizeof(entity_t));
159         cl.effects = (cl_effect_t *)Mem_Alloc(cls.levelmempool, cl.max_effects * sizeof(cl_effect_t));
160         cl.beams = (beam_t *)Mem_Alloc(cls.levelmempool, cl.max_beams * sizeof(beam_t));
161         cl.dlights = (dlight_t *)Mem_Alloc(cls.levelmempool, cl.max_dlights * sizeof(dlight_t));
162         cl.lightstyle = (lightstyle_t *)Mem_Alloc(cls.levelmempool, cl.max_lightstyle * sizeof(lightstyle_t));
163         cl.brushmodel_entities = (int *)Mem_Alloc(cls.levelmempool, cl.max_brushmodel_entities * sizeof(int));
164         cl.particles = (particle_t *) Mem_Alloc(cls.levelmempool, cl.max_particles * sizeof(particle_t));
165         cl.decals = (decal_t *) Mem_Alloc(cls.levelmempool, cl.max_decals * sizeof(decal_t));
166         cl.showlmps = NULL;
167
168         // LordHavoc: have to set up the baseline info for alpha and other stuff
169         for (i = 0;i < cl.max_entities;i++)
170         {
171                 cl.entities[i].state_baseline = defaultstate;
172                 cl.entities[i].state_previous = defaultstate;
173                 cl.entities[i].state_current = defaultstate;
174         }
175
176         if (gamemode == GAME_NEXUIZ)
177         {
178                 VectorSet(cl.playerstandmins, -16, -16, -24);
179                 VectorSet(cl.playerstandmaxs, 16, 16, 45);
180                 VectorSet(cl.playercrouchmins, -16, -16, -24);
181                 VectorSet(cl.playercrouchmaxs, 16, 16, 25);
182         }
183         else
184         {
185                 VectorSet(cl.playerstandmins, -16, -16, -24);
186                 VectorSet(cl.playerstandmaxs, 16, 16, 24);
187                 VectorSet(cl.playercrouchmins, -16, -16, -24);
188                 VectorSet(cl.playercrouchmaxs, 16, 16, 24);
189         }
190
191         // disable until we get textures for it
192         R_ResetSkyBox();
193
194         ent = &cl.entities[0];
195         // entire entity array was cleared, so just fill in a few fields
196         ent->state_current.active = true;
197         ent->render.model = cl.worldmodel = NULL; // no world model yet
198         ent->render.alpha = 1;
199         ent->render.colormap = -1; // no special coloring
200         ent->render.flags = RENDER_SHADOW | RENDER_LIGHT;
201         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, 0, 0, 0, 0, 0, 0, 1);
202         CL_UpdateRenderEntity(&ent->render);
203
204         // noclip is turned off at start
205         noclip_anglehack = false;
206
207         // mark all frames invalid for delta
208         memset(cl.qw_deltasequence, -1, sizeof(cl.qw_deltasequence));
209
210         // set bestweapon data back to Quake data
211         IN_BestWeapon_ResetData();
212
213         CL_Screen_NewMap();
214 }
215
216 void CL_SetInfo(const char *key, const char *value, qboolean send, qboolean allowstarkey, qboolean allowmodel, qboolean quiet)
217 {
218         int i;
219         qboolean fail = false;
220         if (!allowstarkey && key[0] == '*')
221                 fail = true;
222         if (!allowmodel && (!strcasecmp(key, "pmodel") || !strcasecmp(key, "emodel")))
223                 fail = true;
224         for (i = 0;key[i];i++)
225                 if (key[i] <= ' ' || key[i] == '\"')
226                         fail = true;
227         for (i = 0;value[i];i++)
228                 if (value[i] == '\r' || value[i] == '\n' || value[i] == '\"')
229                         fail = true;
230         if (fail)
231         {
232                 if (!quiet)
233                         Con_Printf("Can't setinfo \"%s\" \"%s\"\n", key, value);
234                 return;
235         }
236         InfoString_SetValue(cls.userinfo, sizeof(cls.userinfo), key, value);
237         if (cls.state == ca_connected && cls.netcon)
238         {
239                 if (cls.protocol == PROTOCOL_QUAKEWORLD)
240                 {
241                         MSG_WriteByte(&cls.netcon->message, qw_clc_stringcmd);
242                         MSG_WriteString(&cls.netcon->message, va("setinfo \"%s\" \"%s\"", key, value));
243                 }
244                 else if (!strcasecmp(key, "name"))
245                 {
246                         MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
247                         MSG_WriteString(&cls.netcon->message, va("name \"%s\"", value));
248                 }
249                 else if (!strcasecmp(key, "playermodel"))
250                 {
251                         MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
252                         MSG_WriteString(&cls.netcon->message, va("playermodel \"%s\"", value));
253                 }
254                 else if (!strcasecmp(key, "playerskin"))
255                 {
256                         MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
257                         MSG_WriteString(&cls.netcon->message, va("playerskin \"%s\"", value));
258                 }
259                 else if (!strcasecmp(key, "topcolor"))
260                 {
261                         // don't send anything, the combined color code will be updated manually
262                 }
263                 else if (!strcasecmp(key, "bottomcolor"))
264                 {
265                         // don't send anything, the combined color code will be updated manually
266                 }
267                 else if (!strcasecmp(key, "rate"))
268                 {
269                         MSG_WriteByte(&cls.netcon->message, clc_stringcmd);
270                         MSG_WriteString(&cls.netcon->message, va("rate \"%s\"", value));
271                 }
272         }
273 }
274
275 void CL_ExpandEntities(int num)
276 {
277         int i, oldmaxentities;
278         entity_t *oldentities;
279         if (num >= cl.max_entities)
280         {
281                 if (!cl.entities)
282                         Sys_Error("CL_ExpandEntities: cl.entities not initialized");
283                 if (num >= MAX_EDICTS)
284                         Host_Error("CL_ExpandEntities: num %i >= %i", num, MAX_EDICTS);
285                 oldmaxentities = cl.max_entities;
286                 oldentities = cl.entities;
287                 cl.max_entities = (num & ~255) + 256;
288                 cl.entities = (entity_t *)Mem_Alloc(cls.levelmempool, cl.max_entities * sizeof(entity_t));
289                 memcpy(cl.entities, oldentities, oldmaxentities * sizeof(entity_t));
290                 Mem_Free(oldentities);
291                 for (i = oldmaxentities;i < cl.max_entities;i++)
292                 {
293                         cl.entities[i].state_baseline = defaultstate;
294                         cl.entities[i].state_previous = defaultstate;
295                         cl.entities[i].state_current = defaultstate;
296                 }
297         }
298 }
299
300 void CL_VM_ShutDown (void);
301 /*
302 =====================
303 CL_Disconnect
304
305 Sends a disconnect message to the server
306 This is also called on Host_Error, so it shouldn't cause any errors
307 =====================
308 */
309 void CL_Disconnect(void)
310 {
311         if (cls.state == ca_dedicated)
312                 return;
313
314         Curl_Clear_forthismap();
315
316         Con_DPrintf("CL_Disconnect\n");
317
318         CL_VM_ShutDown();
319 // stop sounds (especially looping!)
320         S_StopAllSounds ();
321
322         cl.parsingtextexpectingpingforscores = 0; // just in case no reply has come yet
323
324         // clear contents blends
325         cl.cshifts[0].percent = 0;
326         cl.cshifts[1].percent = 0;
327         cl.cshifts[2].percent = 0;
328         cl.cshifts[3].percent = 0;
329
330         cl.worldmodel = NULL;
331
332         CL_Parse_ErrorCleanUp();
333
334         if (cls.demoplayback)
335                 CL_StopPlayback();
336         else if (cls.netcon)
337         {
338                 sizebuf_t buf;
339                 unsigned char bufdata[8];
340                 if (cls.demorecording)
341                         CL_Stop_f();
342
343                 // send disconnect message 3 times to improve chances of server
344                 // receiving it (but it still fails sometimes)
345                 memset(&buf, 0, sizeof(buf));
346                 buf.data = bufdata;
347                 buf.maxsize = sizeof(bufdata);
348                 if (cls.protocol == PROTOCOL_QUAKEWORLD)
349                 {
350                         Con_DPrint("Sending drop command\n");
351                         MSG_WriteByte(&buf, qw_clc_stringcmd);
352                         MSG_WriteString(&buf, "drop");
353                 }
354                 else
355                 {
356                         Con_DPrint("Sending clc_disconnect\n");
357                         MSG_WriteByte(&buf, clc_disconnect);
358                 }
359                 NetConn_SendUnreliableMessage(cls.netcon, &buf, cls.protocol, 10000, false);
360                 NetConn_SendUnreliableMessage(cls.netcon, &buf, cls.protocol, 10000, false);
361                 NetConn_SendUnreliableMessage(cls.netcon, &buf, cls.protocol, 10000, false);
362                 NetConn_Close(cls.netcon);
363                 cls.netcon = NULL;
364         }
365         cls.state = ca_disconnected;
366
367         cls.demoplayback = cls.timedemo = false;
368         cls.signon = 0;
369 }
370
371 void CL_Disconnect_f(void)
372 {
373         CL_Disconnect ();
374         if (sv.active)
375                 Host_ShutdownServer ();
376 }
377
378
379
380
381 /*
382 =====================
383 CL_EstablishConnection
384
385 Host should be either "local" or a net address
386 =====================
387 */
388 void CL_EstablishConnection(const char *host)
389 {
390         if (cls.state == ca_dedicated)
391                 return;
392
393         // clear menu's connect error message
394         M_Update_Return_Reason("");
395         cls.demonum = -1;
396
397         // stop demo loop in case this fails
398         if (cls.demoplayback)
399                 CL_StopPlayback();
400
401         // if downloads are running, cancel their finishing action
402         Curl_Clear_forthismap();
403
404         // make sure the client ports are open before attempting to connect
405         NetConn_UpdateSockets();
406
407         // run a network frame
408         //NetConn_ClientFrame();SV_VM_Begin();NetConn_ServerFrame();SV_VM_End();
409
410         if (LHNETADDRESS_FromString(&cls.connect_address, host, 26000) && (cls.connect_mysocket = NetConn_ChooseClientSocketForAddress(&cls.connect_address)))
411         {
412                 cls.connect_trying = true;
413                 cls.connect_remainingtries = 3;
414                 cls.connect_nextsendtime = 0;
415                 M_Update_Return_Reason("Trying to connect...");
416                 // run several network frames to jump into the game quickly
417                 //if (sv.active)
418                 //{
419                 //      NetConn_ClientFrame();SV_VM_Begin();NetConn_ServerFrame();SV_VM_End();
420                 //      NetConn_ClientFrame();SV_VM_Begin();NetConn_ServerFrame();SV_VM_End();
421                 //      NetConn_ClientFrame();SV_VM_Begin();NetConn_ServerFrame();SV_VM_End();
422                 //      NetConn_ClientFrame();SV_VM_Begin();NetConn_ServerFrame();SV_VM_End();
423                 //}
424         }
425         else
426         {
427                 Con_Print("Unable to find a suitable network socket to connect to server.\n");
428                 M_Update_Return_Reason("No network");
429         }
430 }
431
432 /*
433 ==============
434 CL_PrintEntities_f
435 ==============
436 */
437 static void CL_PrintEntities_f(void)
438 {
439         entity_t *ent;
440         int i;
441
442         for (i = 0, ent = cl.entities;i < cl.num_entities;i++, ent++)
443         {
444                 const char* modelname;
445
446                 if (!ent->state_current.active)
447                         continue;
448
449                 if (ent->render.model)
450                         modelname = ent->render.model->name;
451                 else
452                         modelname = "--no model--";
453                 Con_Printf("%3i: %-25s:%4i (%5i %5i %5i) [%3i %3i %3i] %4.2f %5.3f\n", i, modelname, ent->render.frame2, (int) ent->state_current.origin[0], (int) ent->state_current.origin[1], (int) ent->state_current.origin[2], (int) ent->state_current.angles[0] % 360, (int) ent->state_current.angles[1] % 360, (int) ent->state_current.angles[2] % 360, ent->render.scale, ent->render.alpha);
454         }
455 }
456
457 /*
458 ===============
459 CL_ModelIndexList_f
460
461 List information on all models in the client modelindex
462 ===============
463 */
464 static void CL_ModelIndexList_f(void)
465 {
466         int i = 1;
467
468         // Print Header
469         Con_Printf("%3s: %-30s %-8s %-8s\n", "ID", "Name", "Type", "Triangles");
470
471         while(cl.model_precache[i] && i != MAX_MODELS)
472         { // Valid Model
473                 if(cl.model_precache[i]->loaded || cl.model_precache[i]->isworldmodel)
474                         Con_Printf("%3i: %-30s %-8s %-10i\n", i, cl.model_precache[i]->name, cl.model_precache[i]->modeldatatypestring, cl.model_precache[i]->surfmesh.num_triangles);
475                 else
476                         Con_Printf("%3i: %-30s %-30s\n", i, cl.model_precache[i]->name, "--no local model found--");
477                 i++;
478         }
479 }
480
481 /*
482 ===============
483 CL_SoundIndexList_f
484
485 List all sounds in the client soundindex
486 ===============
487 */
488 static void CL_SoundIndexList_f(void)
489 {
490         int i = 1;
491
492         while(cl.sound_precache[i] && i != MAX_SOUNDS)
493         { // Valid Sound
494                 Con_Printf("%i : %s\n", i, cl.sound_precache[i]->name);
495                 i++;
496         }
497 }
498
499 //static const vec3_t nomodelmins = {-16, -16, -16};
500 //static const vec3_t nomodelmaxs = {16, 16, 16};
501 void CL_UpdateRenderEntity(entity_render_t *ent)
502 {
503         vec3_t org;
504         vec_t scale;
505         model_t *model = ent->model;
506         // update the inverse matrix for the renderer
507         Matrix4x4_Invert_Simple(&ent->inversematrix, &ent->matrix);
508         // update the animation blend state
509         R_LerpAnimation(ent);
510         // we need the matrix origin to center the box
511         Matrix4x4_OriginFromMatrix(&ent->matrix, org);
512         // update entity->render.scale because the renderer needs it
513         ent->scale = scale = Matrix4x4_ScaleFromMatrix(&ent->matrix);
514         if (model)
515         {
516                 // NOTE: this directly extracts vector components from the matrix, which relies on the matrix orientation!
517 #ifdef MATRIX4x4_OPENGLORIENTATION
518                 if (ent->matrix.m[0][2] != 0 || ent->matrix.m[1][2] != 0)
519 #else
520                 if (ent->matrix.m[2][0] != 0 || ent->matrix.m[2][1] != 0)
521 #endif
522                 {
523                         // pitch or roll
524                         VectorMA(org, scale, model->rotatedmins, ent->mins);
525                         VectorMA(org, scale, model->rotatedmaxs, ent->maxs);
526                 }
527 #ifdef MATRIX4x4_OPENGLORIENTATION
528                 else if (ent->matrix.m[1][0] != 0 || ent->matrix.m[0][1] != 0)
529 #else
530                 else if (ent->matrix.m[0][1] != 0 || ent->matrix.m[1][0] != 0)
531 #endif
532                 {
533                         // yaw
534                         VectorMA(org, scale, model->yawmins, ent->mins);
535                         VectorMA(org, scale, model->yawmaxs, ent->maxs);
536                 }
537                 else
538                 {
539                         VectorMA(org, scale, model->normalmins, ent->mins);
540                         VectorMA(org, scale, model->normalmaxs, ent->maxs);
541                 }
542         }
543         else
544         {
545                 ent->mins[0] = org[0] - 16;
546                 ent->mins[1] = org[1] - 16;
547                 ent->mins[2] = org[2] - 16;
548                 ent->maxs[0] = org[0] + 16;
549                 ent->maxs[1] = org[1] + 16;
550                 ent->maxs[2] = org[2] + 16;
551         }
552 }
553
554 /*
555 ===============
556 CL_LerpPoint
557
558 Determines the fraction between the last two messages that the objects
559 should be put at.
560 ===============
561 */
562 static float CL_LerpPoint(void)
563 {
564         float f;
565
566         if (cl_nettimesyncboundmode.integer == 1)
567                 cl.time = bound(cl.mtime[1], cl.time, cl.mtime[0]);
568
569         // LordHavoc: lerp in listen games as the server is being capped below the client (usually)
570         if (cl.mtime[0] <= cl.mtime[1])
571         {
572                 cl.time = cl.mtime[0];
573                 return 1;
574         }
575
576         f = (cl.time - cl.mtime[1]) / (cl.mtime[0] - cl.mtime[1]);
577         return bound(0, f, 1);
578 }
579
580 void CL_ClearTempEntities (void)
581 {
582         cl.num_temp_entities = 0;
583 }
584
585 entity_t *CL_NewTempEntity(void)
586 {
587         entity_t *ent;
588
589         if (r_refdef.numentities >= r_refdef.maxentities)
590                 return NULL;
591         if (cl.num_temp_entities >= cl.max_temp_entities)
592                 return NULL;
593         ent = &cl.temp_entities[cl.num_temp_entities++];
594         memset (ent, 0, sizeof(*ent));
595         r_refdef.entities[r_refdef.numentities++] = &ent->render;
596
597         ent->render.colormap = -1; // no special coloring
598         ent->render.alpha = 1;
599         VectorSet(ent->render.colormod, 1, 1, 1);
600         return ent;
601 }
602
603 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate)
604 {
605         int i;
606         cl_effect_t *e;
607         if (!modelindex) // sanity check
608                 return;
609         if (framerate < 1)
610         {
611                 Con_Printf("CL_Effect: framerate %f is < 1\n", framerate);
612                 return;
613         }
614         if (framecount < 1)
615         {
616                 Con_Printf("CL_Effect: framecount %i is < 1\n", framecount);
617                 return;
618         }
619         for (i = 0, e = cl.effects;i < cl.max_effects;i++, e++)
620         {
621                 if (e->active)
622                         continue;
623                 e->active = true;
624                 VectorCopy(org, e->origin);
625                 e->modelindex = modelindex;
626                 e->starttime = cl.time;
627                 e->startframe = startframe;
628                 e->endframe = startframe + framecount;
629                 e->framerate = framerate;
630
631                 e->frame = 0;
632                 e->frame1time = cl.time;
633                 e->frame2time = cl.time;
634                 cl.num_effects = max(cl.num_effects, i + 1);
635                 break;
636         }
637 }
638
639 void CL_AllocLightFlash(entity_render_t *ent, matrix4x4_t *matrix, float radius, float red, float green, float blue, float decay, float lifetime, int cubemapnum, int style, int shadowenable, vec_t corona, vec_t coronasizescale, vec_t ambientscale, vec_t diffusescale, vec_t specularscale, int flags)
640 {
641         int i;
642         dlight_t *dl;
643
644         /*
645 // first look for an exact key match
646         if (ent)
647         {
648                 dl = cl.dlights;
649                 for (i = 0;i < cl.num_dlights;i++, dl++)
650                         if (dl->ent == ent)
651                                 goto dlightsetup;
652         }
653         */
654
655 // then look for anything else
656         dl = cl.dlights;
657         for (i = 0;i < cl.num_dlights;i++, dl++)
658                 if (!dl->radius)
659                         goto dlightsetup;
660         // if we hit the end of the active dlights and found no gaps, add a new one
661         if (i < MAX_DLIGHTS)
662         {
663                 cl.num_dlights = i + 1;
664                 goto dlightsetup;
665         }
666
667         // unable to find one
668         return;
669
670 dlightsetup:
671         //Con_Printf("dlight %i : %f %f %f : %f %f %f\n", i, org[0], org[1], org[2], red * radius, green * radius, blue * radius);
672         memset (dl, 0, sizeof(*dl));
673         Matrix4x4_Normalize(&dl->matrix, matrix);
674         dl->ent = ent;
675         Matrix4x4_OriginFromMatrix(&dl->matrix, dl->origin);
676         CL_FindNonSolidLocation(dl->origin, dl->origin, 6);
677         Matrix4x4_SetOrigin(&dl->matrix, dl->origin[0], dl->origin[1], dl->origin[2]);
678         dl->radius = radius;
679         dl->color[0] = red;
680         dl->color[1] = green;
681         dl->color[2] = blue;
682         dl->initialradius = radius;
683         dl->initialcolor[0] = red;
684         dl->initialcolor[1] = green;
685         dl->initialcolor[2] = blue;
686         dl->decay = decay / radius; // changed decay to be a percentage decrease
687         dl->intensity = 1; // this is what gets decayed
688         if (lifetime)
689                 dl->die = cl.time + lifetime;
690         else
691                 dl->die = 0;
692         if (cubemapnum > 0)
693                 dpsnprintf(dl->cubemapname, sizeof(dl->cubemapname), "cubemaps/%i", cubemapnum);
694         else
695                 dl->cubemapname[0] = 0;
696         dl->style = style;
697         dl->shadow = shadowenable;
698         dl->corona = corona;
699         dl->flags = flags;
700         dl->coronasizescale = coronasizescale;
701         dl->ambientscale = ambientscale;
702         dl->diffusescale = diffusescale;
703         dl->specularscale = specularscale;
704 }
705
706 void CL_DecayLightFlashes(void)
707 {
708         int i, oldmax;
709         dlight_t *dl;
710         float time;
711
712         time = bound(0, cl.time - cl.oldtime, 0.1);
713         oldmax = cl.num_dlights;
714         cl.num_dlights = 0;
715         for (i = 0, dl = cl.dlights;i < oldmax;i++, dl++)
716         {
717                 if (dl->radius)
718                 {
719                         dl->intensity -= time * dl->decay;
720                         if (cl.time < dl->die && dl->intensity > 0)
721                         {
722                                 if (cl_dlights_decayradius.integer)
723                                         dl->radius = dl->initialradius * dl->intensity;
724                                 else
725                                         dl->radius = dl->initialradius;
726                                 if (cl_dlights_decaybrightness.integer)
727                                         VectorScale(dl->initialcolor, dl->intensity, dl->color);
728                                 else
729                                         VectorCopy(dl->initialcolor, dl->color);
730                                 cl.num_dlights = i + 1;
731                         }
732                         else
733                                 dl->radius = 0;
734                 }
735         }
736 }
737
738 // called before entity relinking
739 void CL_RelinkLightFlashes(void)
740 {
741         int i, j, k, l;
742         dlight_t *dl;
743         float frac, f;
744         matrix4x4_t tempmatrix;
745
746         if (r_dynamic.integer)
747         {
748                 for (i = 0, dl = cl.dlights;i < cl.num_dlights && r_refdef.numlights < MAX_DLIGHTS;i++, dl++)
749                 {
750                         if (dl->radius)
751                         {
752                                 tempmatrix = dl->matrix;
753                                 Matrix4x4_Scale(&tempmatrix, dl->radius, 1);
754                                 R_RTLight_Update(&r_refdef.lights[r_refdef.numlights++], false, &tempmatrix, dl->color, dl->style, dl->cubemapname, dl->shadow, dl->corona, dl->coronasizescale, dl->ambientscale, dl->diffusescale, dl->specularscale, dl->flags);
755                         }
756                 }
757         }
758
759 // light animations
760 // 'm' is normal light, 'a' is no light, 'z' is double bright
761         f = cl.time * 10;
762         i = (int)floor(f);
763         frac = f - i;
764         if (!r_lerplightstyles.integer)
765                 frac = 1;
766         for (j = 0;j < cl.max_lightstyle;j++)
767         {
768                 if (!cl.lightstyle || !cl.lightstyle[j].length)
769                 {
770                         r_refdef.lightstylevalue[j] = 256;
771                         continue;
772                 }
773                 k = i % cl.lightstyle[j].length;
774                 l = (i-1) % cl.lightstyle[j].length;
775                 k = cl.lightstyle[j].map[k] - 'a';
776                 l = cl.lightstyle[j].map[l] - 'a';
777                 r_refdef.lightstylevalue[j] = (unsigned short)(((k*frac)+(l*(1-frac)))*22);
778         }
779 }
780
781 void CL_AddQWCTFFlagModel(entity_t *player, int skin)
782 {
783         float f;
784         entity_t *flag;
785         matrix4x4_t flagmatrix;
786
787         // this code taken from QuakeWorld
788         f = 14;
789         if (player->render.frame2 >= 29 && player->render.frame2 <= 40)
790         {
791                 if (player->render.frame2 >= 29 && player->render.frame2 <= 34)
792                 { //axpain
793                         if      (player->render.frame2 == 29) f = f + 2;
794                         else if (player->render.frame2 == 30) f = f + 8;
795                         else if (player->render.frame2 == 31) f = f + 12;
796                         else if (player->render.frame2 == 32) f = f + 11;
797                         else if (player->render.frame2 == 33) f = f + 10;
798                         else if (player->render.frame2 == 34) f = f + 4;
799                 }
800                 else if (player->render.frame2 >= 35 && player->render.frame2 <= 40)
801                 { // pain
802                         if      (player->render.frame2 == 35) f = f + 2;
803                         else if (player->render.frame2 == 36) f = f + 10;
804                         else if (player->render.frame2 == 37) f = f + 10;
805                         else if (player->render.frame2 == 38) f = f + 8;
806                         else if (player->render.frame2 == 39) f = f + 4;
807                         else if (player->render.frame2 == 40) f = f + 2;
808                 }
809         }
810         else if (player->render.frame2 >= 103 && player->render.frame2 <= 118)
811         {
812                 if      (player->render.frame2 >= 103 && player->render.frame2 <= 104) f = f + 6;  //nailattack
813                 else if (player->render.frame2 >= 105 && player->render.frame2 <= 106) f = f + 6;  //light
814                 else if (player->render.frame2 >= 107 && player->render.frame2 <= 112) f = f + 7;  //rocketattack
815                 else if (player->render.frame2 >= 112 && player->render.frame2 <= 118) f = f + 7;  //shotattack
816         }
817         // end of code taken from QuakeWorld
818
819         flag = CL_NewTempEntity();
820         if (!flag)
821                 return;
822
823         flag->render.model = cl.model_precache[cl.qw_modelindex_flag];
824         flag->render.skinnum = skin;
825         flag->render.colormap = -1; // no special coloring
826         flag->render.alpha = 1;
827         VectorSet(flag->render.colormod, 1, 1, 1);
828         // attach the flag to the player matrix
829         Matrix4x4_CreateFromQuakeEntity(&flagmatrix, -f, -22, 0, 0, 0, -45, 1);
830         Matrix4x4_Concat(&flag->render.matrix, &player->render.matrix, &flagmatrix);
831         CL_UpdateRenderEntity(&flag->render);
832 }
833
834 matrix4x4_t viewmodelmatrix;
835
836 static const vec3_t muzzleflashorigin = {18, 0, 0};
837
838 extern void V_DriftPitch(void);
839 extern void V_FadeViewFlashs(void);
840 extern void V_CalcViewBlend(void);
841 extern void V_CalcRefdef(void);
842
843 // note this is a recursive function, recursionlimit should be 32 or so on the initial call
844 void CL_UpdateNetworkEntity(entity_t *e, int recursionlimit, qboolean interpolate)
845 {
846         const matrix4x4_t *matrix;
847         matrix4x4_t blendmatrix, tempmatrix, matrix2;
848         int j, k, l, frame;
849         float origin[3], angles[3], delta[3], lerp, d;
850         entity_t *t;
851         model_t *model;
852         //entity_persistent_t *p = &e->persistent;
853         //entity_render_t *r = &e->render;
854         // skip inactive entities and world
855         if (!e->state_current.active || e == cl.entities)
856                 return;
857         if (recursionlimit < 1)
858                 return;
859         e->render.alpha = e->state_current.alpha * (1.0f / 255.0f); // FIXME: interpolate?
860         e->render.scale = e->state_current.scale * (1.0f / 16.0f); // FIXME: interpolate?
861         e->render.flags = e->state_current.flags;
862         e->render.effects = e->state_current.effects;
863         VectorScale(e->state_current.colormod, (1.0f / 32.0f), e->render.colormod);
864         e->render.entitynumber = e - cl.entities;
865         if (e->state_current.flags & RENDER_COLORMAPPED)
866         {
867                 unsigned char *cbcolor;
868                 e->render.colormap = e->state_current.colormap;
869                 cbcolor = palette_rgb_pantscolormap[e->render.colormap & 0xF];
870                 e->render.colormap_pantscolor[0] = cbcolor[0] * (1.0f / 255.0f);
871                 e->render.colormap_pantscolor[1] = cbcolor[1] * (1.0f / 255.0f);
872                 e->render.colormap_pantscolor[2] = cbcolor[2] * (1.0f / 255.0f);
873                 cbcolor = palette_rgb_shirtcolormap[(e->render.colormap & 0xF0) >> 4];
874                 e->render.colormap_shirtcolor[0] = cbcolor[0] * (1.0f / 255.0f);
875                 e->render.colormap_shirtcolor[1] = cbcolor[1] * (1.0f / 255.0f);
876                 e->render.colormap_shirtcolor[2] = cbcolor[2] * (1.0f / 255.0f);
877         }
878         else if (e->state_current.colormap && cl.scores != NULL && e->state_current.colormap <= cl.maxclients)
879         {
880                 unsigned char *cbcolor;
881                 e->render.colormap = cl.scores[e->state_current.colormap - 1].colors; // color it
882                 cbcolor = palette_rgb_pantscolormap[e->render.colormap & 0xF];
883                 e->render.colormap_pantscolor[0] = cbcolor[0] * (1.0f / 255.0f);
884                 e->render.colormap_pantscolor[1] = cbcolor[1] * (1.0f / 255.0f);
885                 e->render.colormap_pantscolor[2] = cbcolor[2] * (1.0f / 255.0f);
886                 cbcolor = palette_rgb_shirtcolormap[(e->render.colormap & 0xF0) >> 4];
887                 e->render.colormap_shirtcolor[0] = cbcolor[0] * (1.0f / 255.0f);
888                 e->render.colormap_shirtcolor[1] = cbcolor[1] * (1.0f / 255.0f);
889                 e->render.colormap_shirtcolor[2] = cbcolor[2] * (1.0f / 255.0f);
890         }
891         else
892         {
893                 e->render.colormap = -1; // no special coloring
894                 VectorClear(e->render.colormap_pantscolor);
895                 VectorClear(e->render.colormap_shirtcolor);
896         }
897         e->render.skinnum = e->state_current.skin;
898         if (e->state_current.tagentity)
899         {
900                 // attached entity (gun held in player model's hand, etc)
901                 // if the tag entity is currently impossible, skip it
902                 if (e->state_current.tagentity >= cl.num_entities)
903                         return;
904                 t = cl.entities + e->state_current.tagentity;
905                 // if the tag entity is inactive, skip it
906                 if (!t->state_current.active)
907                         return;
908                 // update the parent first
909                 CL_UpdateNetworkEntity(t, recursionlimit - 1, interpolate);
910                 // make relative to the entity
911                 matrix = &t->render.matrix;
912                 // some properties of the tag entity carry over
913                 e->render.flags |= t->render.flags & (RENDER_EXTERIORMODEL | RENDER_VIEWMODEL);
914                 // if a valid tagindex is used, make it relative to that tag instead
915                 // FIXME: use a model function to get tag info (need to handle skeletal)
916                 if (e->state_current.tagentity && e->state_current.tagindex >= 1 && (model = t->render.model))
917                 {
918                         // blend the matrices
919                         memset(&blendmatrix, 0, sizeof(blendmatrix));
920                         for (j = 0;j < 4 && t->render.frameblend[j].lerp > 0;j++)
921                         {
922                                 matrix4x4_t tagmatrix;
923                                 Mod_Alias_GetTagMatrix(model, t->render.frameblend[j].frame, e->state_current.tagindex - 1, &tagmatrix);
924                                 d = t->render.frameblend[j].lerp;
925                                 for (l = 0;l < 4;l++)
926                                         for (k = 0;k < 4;k++)
927                                                 blendmatrix.m[l][k] += d * tagmatrix.m[l][k];
928                         }
929                         // concat the tag matrices onto the entity matrix
930                         Matrix4x4_Concat(&tempmatrix, &t->render.matrix, &blendmatrix);
931                         // use the constructed tag matrix
932                         matrix = &tempmatrix;
933                 }
934         }
935         else if (e->render.flags & RENDER_VIEWMODEL)
936         {
937                 // view-relative entity (guns and such)
938                 if (e->render.effects & EF_NOGUNBOB)
939                         matrix = &r_view.matrix; // really attached to view
940                 else
941                         matrix = &viewmodelmatrix; // attached to gun bob matrix
942         }
943         else
944         {
945                 // world-relative entity (the normal kind)
946                 matrix = &identitymatrix;
947         }
948
949         // movement lerp
950         // if it's the predicted player entity, update according to client movement
951         // but don't lerp if going through a teleporter as it causes a bad lerp
952         // also don't use the predicted location if fixangle was set on both of
953         // the most recent server messages, as that cause means you are spectating
954         // someone or watching a cutscene of some sort
955         if (cl_nolerp.integer || cls.timedemo)
956                 interpolate = false;
957         if (e == cl.entities + cl.playerentity && cl.movement_predicted && (!cl.fixangle[1] || !cl.fixangle[0]))
958         {
959                 lerp = (cl.time - cl.movement_time[2]) / (cl.movement_time[0] - cl.movement_time[1]);
960                 lerp = bound(0, lerp, 1);
961                 if (!interpolate)
962                         lerp = 1;
963                 VectorLerp(cl.movement_oldorigin, lerp, cl.movement_origin, origin);
964                 VectorSet(angles, 0, cl.viewangles[1], 0);
965         }
966         else if (interpolate && e->persistent.lerpdeltatime > 0 && (lerp = (cl.time - e->persistent.lerpstarttime) / e->persistent.lerpdeltatime) < 1)
967         {
968                 // interpolate the origin and angles
969                 lerp = max(0, lerp);
970                 VectorLerp(e->persistent.oldorigin, lerp, e->persistent.neworigin, origin);
971                 VectorSubtract(e->persistent.newangles, e->persistent.oldangles, delta);
972                 if (delta[0] < -180) delta[0] += 360;else if (delta[0] >= 180) delta[0] -= 360;
973                 if (delta[1] < -180) delta[1] += 360;else if (delta[1] >= 180) delta[1] -= 360;
974                 if (delta[2] < -180) delta[2] += 360;else if (delta[2] >= 180) delta[2] -= 360;
975                 VectorMA(e->persistent.oldangles, lerp, delta, angles);
976         }
977         else
978         {
979                 // no interpolation
980                 VectorCopy(e->persistent.neworigin, origin);
981                 VectorCopy(e->persistent.newangles, angles);
982         }
983
984         // model setup and some modelflags
985         frame = e->state_current.frame;
986         if (e->state_current.modelindex < MAX_MODELS)
987                 e->render.model = cl.model_precache[e->state_current.modelindex];
988         else
989                 e->render.model = NULL;
990         if (e->render.model)
991         {
992                 if (e->render.skinnum >= e->render.model->numskins)
993                         e->render.skinnum = 0;
994                 if (frame >= e->render.model->numframes)
995                         frame = 0;
996                 // models can set flags such as EF_ROCKET
997                 // this 0xFF800000 mask is EF_NOMODELFLAGS plus all the higher EF_ flags such as EF_ROCKET
998                 if (!(e->render.effects & 0xFF800000))
999                         e->render.effects |= e->render.model->effects;
1000                 // if model is alias or this is a tenebrae-like dlight, reverse pitch direction
1001                 if (e->render.model->type == mod_alias)
1002                         angles[0] = -angles[0];
1003                 if ((e->render.effects & EF_SELECTABLE) && cl.cmd.cursor_entitynumber == e->state_current.number)
1004                         VectorScale(e->render.colormod, 2, e->render.colormod);
1005         }
1006         // if model is alias or this is a tenebrae-like dlight, reverse pitch direction
1007         else if (e->state_current.lightpflags & PFLAGS_FULLDYNAMIC)
1008                 angles[0] = -angles[0];
1009
1010         if ((e->render.effects & EF_ROTATE) && !(e->render.flags & RENDER_VIEWMODEL))
1011         {
1012                 angles[1] = ANGLEMOD(100*cl.time);
1013                 if (cl_itembobheight.value)
1014                         origin[2] += (cos(cl.time * cl_itembobspeed.value * (2.0 * M_PI)) + 1.0) * 0.5 * cl_itembobheight.value;
1015         }
1016
1017         // animation lerp
1018         if (e->render.frame2 == frame)
1019         {
1020                 // update frame lerp fraction
1021                 e->render.framelerp = 1;
1022                 if (e->render.frame2time > e->render.frame1time)
1023                 {
1024                         // make sure frame lerp won't last longer than 100ms
1025                         // (this mainly helps with models that use framegroups and
1026                         // switch between them infrequently)
1027                         e->render.framelerp = (cl.time - e->render.frame2time) / min(e->render.frame2time - e->render.frame1time, 0.1);
1028                         e->render.framelerp = bound(0, e->render.framelerp, 1);
1029                 }
1030         }
1031         else
1032         {
1033                 // begin a new frame lerp
1034                 e->render.frame1 = e->render.frame2;
1035                 e->render.frame1time = e->render.frame2time;
1036                 e->render.frame2 = frame;
1037                 e->render.frame2time = cl.time;
1038                 e->render.framelerp = 0;
1039         }
1040
1041         // set up the render matrix
1042         if (matrix)
1043         {
1044                 // attached entity, this requires a matrix multiply (concat)
1045                 // FIXME: e->render.scale should go away
1046                 Matrix4x4_CreateFromQuakeEntity(&matrix2, origin[0], origin[1], origin[2], angles[0], angles[1], angles[2], e->render.scale);
1047                 // concat the matrices to make the entity relative to its tag
1048                 Matrix4x4_Concat(&e->render.matrix, matrix, &matrix2);
1049                 // get the origin from the new matrix
1050                 Matrix4x4_OriginFromMatrix(&e->render.matrix, origin);
1051         }
1052         else
1053         {
1054                 // unattached entities are faster to process
1055                 Matrix4x4_CreateFromQuakeEntity(&e->render.matrix, origin[0], origin[1], origin[2], angles[0], angles[1], angles[2], e->render.scale);
1056         }
1057
1058         // make the other useful stuff
1059         CL_UpdateRenderEntity(&e->render);
1060
1061         // tenebrae's sprites are all additive mode (weird)
1062         if (gamemode == GAME_TENEBRAE && e->render.model && e->render.model->type == mod_sprite)
1063                 e->render.effects |= EF_ADDITIVE;
1064         // player model is only shown with chase_active on
1065         if (e->state_current.number == cl.viewentity)
1066                 e->render.flags |= RENDER_EXTERIORMODEL;
1067         // either fullbright or lit
1068         if (!(e->render.effects & EF_FULLBRIGHT) && !r_fullbright.integer)
1069                 e->render.flags |= RENDER_LIGHT;
1070         // hide player shadow during intermission or nehahra movie
1071         if (!(e->render.effects & (EF_NOSHADOW | EF_ADDITIVE | EF_NODEPTHTEST))
1072          && (e->render.alpha >= 1)
1073          && !(e->render.flags & RENDER_VIEWMODEL)
1074          && (!(e->render.flags & RENDER_EXTERIORMODEL) || (!cl.intermission && cls.protocol != PROTOCOL_NEHAHRAMOVIE && !cl_noplayershadow.integer)))
1075                 e->render.flags |= RENDER_SHADOW;
1076         if (e->render.flags & RENDER_VIEWMODEL)
1077                 e->render.flags |= RENDER_NOSELFSHADOW;
1078 }
1079
1080 // creates light and trails from an entity
1081 void CL_UpdateNetworkEntityTrail(entity_t *e)
1082 {
1083         effectnameindex_t trailtype;
1084         vec3_t origin;
1085
1086         // bmodels are treated specially since their origin is usually '0 0 0' and
1087         // their actual geometry is far from '0 0 0'
1088         if (e->render.model && e->render.model->soundfromcenter)
1089         {
1090                 vec3_t o;
1091                 VectorMAM(0.5f, e->render.model->normalmins, 0.5f, e->render.model->normalmaxs, o);
1092                 Matrix4x4_Transform(&e->render.matrix, o, origin);
1093         }
1094         else
1095                 Matrix4x4_OriginFromMatrix(&e->render.matrix, origin);
1096
1097         // handle particle trails and such effects now that we know where this
1098         // entity is in the world...
1099         trailtype = EFFECT_NONE;
1100         // LordHavoc: if the entity has no effects, don't check each
1101         if (e->render.effects & (EF_BRIGHTFIELD | EF_FLAME | EF_STARDUST))
1102         {
1103                 if (e->render.effects & EF_BRIGHTFIELD)
1104                 {
1105                         if (gamemode == GAME_NEXUIZ)
1106                                 trailtype = EFFECT_TR_NEXUIZPLASMA;
1107                         else
1108                                 CL_EntityParticles(e);
1109                 }
1110                 if (e->render.effects & EF_FLAME)
1111                         CL_ParticleTrail(EFFECT_EF_FLAME, bound(0, cl.time - cl.oldtime, 0.1), origin, origin, vec3_origin, vec3_origin, NULL, 0, false, true);
1112                 if (e->render.effects & EF_STARDUST)
1113                         CL_ParticleTrail(EFFECT_EF_STARDUST, bound(0, cl.time - cl.oldtime, 0.1), origin, origin, vec3_origin, vec3_origin, NULL, 0, false, true);
1114         }
1115         if (e->render.internaleffects & (INTEF_FLAG1QW | INTEF_FLAG2QW))
1116         {
1117                 // these are only set on player entities
1118                 CL_AddQWCTFFlagModel(e, (e->render.internaleffects & INTEF_FLAG2QW) != 0);
1119         }
1120         // muzzleflash fades over time
1121         if (e->persistent.muzzleflash > 0)
1122                 e->persistent.muzzleflash -= bound(0, cl.time - cl.oldtime, 0.1) * 20;
1123         // LordHavoc: if the entity has no effects, don't check each
1124         if (e->render.effects && !(e->render.flags & RENDER_VIEWMODEL))
1125         {
1126                 if (e->render.effects & EF_GIB)
1127                         trailtype = EFFECT_TR_BLOOD;
1128                 else if (e->render.effects & EF_ZOMGIB)
1129                         trailtype = EFFECT_TR_SLIGHTBLOOD;
1130                 else if (e->render.effects & EF_TRACER)
1131                         trailtype = EFFECT_TR_WIZSPIKE;
1132                 else if (e->render.effects & EF_TRACER2)
1133                         trailtype = EFFECT_TR_KNIGHTSPIKE;
1134                 else if (e->render.effects & EF_ROCKET)
1135                         trailtype = EFFECT_TR_ROCKET;
1136                 else if (e->render.effects & EF_GRENADE)
1137                 {
1138                         // LordHavoc: e->render.alpha == -1 is for Nehahra dem compatibility (cigar smoke)
1139                         trailtype = e->render.alpha == -1 ? EFFECT_TR_NEHAHRASMOKE : EFFECT_TR_GRENADE;
1140                 }
1141                 else if (e->render.effects & EF_TRACER3)
1142                         trailtype = EFFECT_TR_VORESPIKE;
1143         }
1144         // do trails
1145         if (e->render.flags & RENDER_GLOWTRAIL)
1146                 trailtype = EFFECT_TR_GLOWTRAIL;
1147         // check if a trail is allowed (it is not after a teleport for example)
1148         if (trailtype && e->persistent.trail_allowed)
1149         {
1150                 float len;
1151                 vec3_t vel;
1152                 VectorSubtract(e->state_current.origin, e->state_previous.origin, vel);
1153                 len = e->state_current.time - e->state_previous.time;
1154                 if (len > 0)
1155                         len = 1.0f / len;
1156                 VectorScale(vel, len, vel);
1157                 CL_ParticleTrail(trailtype, 1, e->persistent.trail_origin, origin, vel, vel, e, e->state_current.glowcolor, false, true);
1158         }
1159         // now that the entity has survived one trail update it is allowed to
1160         // leave a real trail on later frames
1161         e->persistent.trail_allowed = true;
1162         VectorCopy(origin, e->persistent.trail_origin);
1163 }
1164
1165
1166 /*
1167 ===============
1168 CL_UpdateViewEntities
1169 ===============
1170 */
1171 void CL_UpdateViewEntities(void)
1172 {
1173         int i;
1174         // update any RENDER_VIEWMODEL entities to use the new view matrix
1175         for (i = 1;i < cl.num_entities;i++)
1176         {
1177                 if (cl.entities_active[i])
1178                 {
1179                         entity_t *ent = cl.entities + i;
1180                         if ((ent->render.flags & RENDER_VIEWMODEL) || ent->state_current.tagentity)
1181                                 CL_UpdateNetworkEntity(ent, 32, true);
1182                 }
1183         }
1184         // and of course the engine viewmodel needs updating as well
1185         CL_UpdateNetworkEntity(&cl.viewent, 32, true);
1186 }
1187
1188 /*
1189 ===============
1190 CL_UpdateNetworkCollisionEntities
1191 ===============
1192 */
1193 void CL_UpdateNetworkCollisionEntities(void)
1194 {
1195         entity_t *ent;
1196         int i;
1197
1198         // start on the entity after the world
1199         cl.num_brushmodel_entities = 0;
1200         for (i = cl.maxclients + 1;i < cl.num_entities;i++)
1201         {
1202                 if (cl.entities_active[i])
1203                 {
1204                         ent = cl.entities + i;
1205                         if (ent->state_current.active && ent->render.model && ent->render.model->name[0] == '*' && ent->render.model->TraceBox)
1206                         {
1207                                 // do not interpolate the bmodels for this
1208                                 CL_UpdateNetworkEntity(ent, 32, false);
1209                                 cl.brushmodel_entities[cl.num_brushmodel_entities++] = i;
1210                         }
1211                 }
1212         }
1213 }
1214
1215 /*
1216 ===============
1217 CL_UpdateNetworkEntities
1218 ===============
1219 */
1220 void CL_UpdateNetworkEntities(void)
1221 {
1222         entity_t *ent;
1223         int i;
1224
1225         // start on the entity after the world
1226         for (i = 1;i < cl.num_entities;i++)
1227         {
1228                 if (cl.entities_active[i])
1229                 {
1230                         ent = cl.entities + i;
1231                         if (ent->state_current.active)
1232                         {
1233                                 CL_UpdateNetworkEntity(ent, 32, true);
1234                                 // view models should never create light/trails
1235                                 if (!(ent->render.flags & RENDER_VIEWMODEL))
1236                                         CL_UpdateNetworkEntityTrail(ent);
1237                         }
1238                         else
1239                                 cl.entities_active[i] = false;
1240                 }
1241         }
1242 }
1243
1244 void CL_UpdateViewModel(void)
1245 {
1246         entity_t *ent;
1247         ent = &cl.viewent;
1248         ent->state_previous = ent->state_current;
1249         ent->state_current = defaultstate;
1250         ent->state_current.time = cl.time;
1251         ent->state_current.number = -1;
1252         ent->state_current.active = true;
1253         ent->state_current.modelindex = cl.stats[STAT_WEAPON];
1254         ent->state_current.frame = cl.stats[STAT_WEAPONFRAME];
1255         ent->state_current.flags = RENDER_VIEWMODEL;
1256         if ((cl.stats[STAT_HEALTH] <= 0 && cl_deathnoviewmodel.integer) || cl.intermission)
1257                 ent->state_current.modelindex = 0;
1258         else if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
1259         {
1260                 if (gamemode == GAME_TRANSFUSION)
1261                         ent->state_current.alpha = 128;
1262                 else
1263                         ent->state_current.modelindex = 0;
1264         }
1265         ent->state_current.alpha = cl.entities[cl.viewentity].state_current.alpha;
1266         ent->state_current.effects = EF_NOSHADOW | (cl.entities[cl.viewentity].state_current.effects & (EF_ADDITIVE | EF_FULLBRIGHT | EF_NODEPTHTEST | EF_NOGUNBOB));
1267
1268         // reset animation interpolation on weaponmodel if model changed
1269         if (ent->state_previous.modelindex != ent->state_current.modelindex)
1270         {
1271                 ent->render.frame1 = ent->render.frame2 = ent->state_current.frame;
1272                 ent->render.frame1time = ent->render.frame2time = cl.time;
1273                 ent->render.framelerp = 1;
1274         }
1275         CL_UpdateNetworkEntity(ent, 32, true);
1276 }
1277
1278 // note this is a recursive function, but it can never get in a runaway loop (because of the delayedlink flags)
1279 void CL_LinkNetworkEntity(entity_t *e)
1280 {
1281         effectnameindex_t trailtype;
1282         vec3_t origin;
1283         vec3_t dlightcolor;
1284         vec_t dlightradius;
1285
1286         // skip inactive entities and world
1287         if (!e->state_current.active || e == cl.entities)
1288                 return;
1289         if (e->state_current.tagentity)
1290         {
1291                 // if the tag entity is currently impossible, skip it
1292                 if (e->state_current.tagentity >= cl.num_entities)
1293                         return;
1294                 // if the tag entity is inactive, skip it
1295                 if (!cl.entities[e->state_current.tagentity].state_current.active)
1296                         return;
1297         }
1298
1299         // create entity dlights associated with this entity
1300         if (e->render.model && e->render.model->soundfromcenter)
1301         {
1302                 // bmodels are treated specially since their origin is usually '0 0 0'
1303                 vec3_t o;
1304                 VectorMAM(0.5f, e->render.model->normalmins, 0.5f, e->render.model->normalmaxs, o);
1305                 Matrix4x4_Transform(&e->render.matrix, o, origin);
1306         }
1307         else
1308                 Matrix4x4_OriginFromMatrix(&e->render.matrix, origin);
1309         trailtype = EFFECT_NONE;
1310         dlightradius = 0;
1311         dlightcolor[0] = 0;
1312         dlightcolor[1] = 0;
1313         dlightcolor[2] = 0;
1314         // LordHavoc: if the entity has no effects, don't check each
1315         if (e->render.effects & (EF_BRIGHTFIELD | EF_DIMLIGHT | EF_BRIGHTLIGHT | EF_RED | EF_BLUE | EF_FLAME | EF_STARDUST))
1316         {
1317                 if (e->render.effects & EF_BRIGHTFIELD)
1318                 {
1319                         if (gamemode == GAME_NEXUIZ)
1320                                 trailtype = EFFECT_TR_NEXUIZPLASMA;
1321                 }
1322                 if (e->render.effects & EF_DIMLIGHT)
1323                 {
1324                         dlightradius = max(dlightradius, 200);
1325                         dlightcolor[0] += 1.50f;
1326                         dlightcolor[1] += 1.50f;
1327                         dlightcolor[2] += 1.50f;
1328                 }
1329                 if (e->render.effects & EF_BRIGHTLIGHT)
1330                 {
1331                         dlightradius = max(dlightradius, 400);
1332                         dlightcolor[0] += 3.00f;
1333                         dlightcolor[1] += 3.00f;
1334                         dlightcolor[2] += 3.00f;
1335                 }
1336                 // LordHavoc: more effects
1337                 if (e->render.effects & EF_RED) // red
1338                 {
1339                         dlightradius = max(dlightradius, 200);
1340                         dlightcolor[0] += 1.50f;
1341                         dlightcolor[1] += 0.15f;
1342                         dlightcolor[2] += 0.15f;
1343                 }
1344                 if (e->render.effects & EF_BLUE) // blue
1345                 {
1346                         dlightradius = max(dlightradius, 200);
1347                         dlightcolor[0] += 0.15f;
1348                         dlightcolor[1] += 0.15f;
1349                         dlightcolor[2] += 1.50f;
1350                 }
1351                 if (e->render.effects & EF_FLAME)
1352                         CL_ParticleTrail(EFFECT_EF_FLAME, 0, origin, origin, vec3_origin, vec3_origin, NULL, 0, true, false);
1353                 if (e->render.effects & EF_STARDUST)
1354                         CL_ParticleTrail(EFFECT_EF_STARDUST, 0, origin, origin, vec3_origin, vec3_origin, NULL, 0, true, false);
1355         }
1356         // muzzleflash fades over time, and is offset a bit
1357         if (e->persistent.muzzleflash > 0 && r_refdef.numlights < MAX_DLIGHTS)
1358         {
1359                 vec3_t v2;
1360                 vec3_t color;
1361                 trace_t trace;
1362                 matrix4x4_t tempmatrix;
1363                 Matrix4x4_Transform(&e->render.matrix, muzzleflashorigin, v2);
1364                 trace = CL_Move(origin, vec3_origin, vec3_origin, v2, MOVE_NOMONSTERS, NULL, SUPERCONTENTS_SOLID | SUPERCONTENTS_SKY, true, false, NULL, false);
1365                 Matrix4x4_Normalize(&tempmatrix, &e->render.matrix);
1366                 Matrix4x4_SetOrigin(&tempmatrix, trace.endpos[0], trace.endpos[1], trace.endpos[2]);
1367                 Matrix4x4_Scale(&tempmatrix, 150, 1);
1368                 VectorSet(color, e->persistent.muzzleflash * 4.0f, e->persistent.muzzleflash * 4.0f, e->persistent.muzzleflash * 4.0f);
1369                 R_RTLight_Update(&r_refdef.lights[r_refdef.numlights++], false, &tempmatrix, color, -1, NULL, true, 0, 0.25, 0, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1370         }
1371         // LordHavoc: if the model has no flags, don't check each
1372         if (e->render.model && e->render.effects && !(e->render.flags & RENDER_VIEWMODEL))
1373         {
1374                 if (e->render.effects & EF_GIB)
1375                         trailtype = EFFECT_TR_BLOOD;
1376                 else if (e->render.effects & EF_ZOMGIB)
1377                         trailtype = EFFECT_TR_SLIGHTBLOOD;
1378                 else if (e->render.effects & EF_TRACER)
1379                         trailtype = EFFECT_TR_WIZSPIKE;
1380                 else if (e->render.effects & EF_TRACER2)
1381                         trailtype = EFFECT_TR_KNIGHTSPIKE;
1382                 else if (e->render.effects & EF_ROCKET)
1383                         trailtype = EFFECT_TR_ROCKET;
1384                 else if (e->render.effects & EF_GRENADE)
1385                 {
1386                         // LordHavoc: e->render.alpha == -1 is for Nehahra dem compatibility (cigar smoke)
1387                         trailtype = e->render.alpha == -1 ? EFFECT_TR_NEHAHRASMOKE : EFFECT_TR_GRENADE;
1388                 }
1389                 else if (e->render.effects & EF_TRACER3)
1390                         trailtype = EFFECT_TR_VORESPIKE;
1391         }
1392         // LordHavoc: customizable glow
1393         if (e->state_current.glowsize)
1394         {
1395                 // * 4 for the expansion from 0-255 to 0-1023 range,
1396                 // / 255 to scale down byte colors
1397                 dlightradius = max(dlightradius, e->state_current.glowsize * 4);
1398                 VectorMA(dlightcolor, (1.0f / 255.0f), palette_rgb[e->state_current.glowcolor], dlightcolor);
1399         }
1400         // make the glow dlight
1401         if (dlightradius > 0 && (dlightcolor[0] || dlightcolor[1] || dlightcolor[2]) && !(e->render.flags & RENDER_VIEWMODEL) && r_refdef.numlights < MAX_DLIGHTS)
1402         {
1403                 matrix4x4_t dlightmatrix;
1404                 Matrix4x4_Normalize(&dlightmatrix, &e->render.matrix);
1405                 // hack to make glowing player light shine on their gun
1406                 //if (e->state_current.number == cl.viewentity/* && !chase_active.integer*/)
1407                 //      Matrix4x4_AdjustOrigin(&dlightmatrix, 0, 0, 30);
1408                 Matrix4x4_Scale(&dlightmatrix, dlightradius, 1);
1409                 R_RTLight_Update(&r_refdef.lights[r_refdef.numlights++], false, &dlightmatrix, dlightcolor, -1, NULL, true, 1, 0.25, 0, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1410         }
1411         // custom rtlight
1412         if ((e->state_current.lightpflags & PFLAGS_FULLDYNAMIC) && r_refdef.numlights < MAX_DLIGHTS)
1413         {
1414                 matrix4x4_t dlightmatrix;
1415                 float light[4];
1416                 VectorScale(e->state_current.light, (1.0f / 256.0f), light);
1417                 light[3] = e->state_current.light[3];
1418                 if (light[0] == 0 && light[1] == 0 && light[2] == 0)
1419                         VectorSet(light, 1, 1, 1);
1420                 if (light[3] == 0)
1421                         light[3] = 350;
1422                 // FIXME: add ambient/diffuse/specular scales as an extension ontop of TENEBRAE_GFX_DLIGHTS?
1423                 Matrix4x4_Normalize(&dlightmatrix, &e->render.matrix);
1424                 Matrix4x4_Scale(&dlightmatrix, light[3], 1);
1425                 R_RTLight_Update(&r_refdef.lights[r_refdef.numlights++], false, &dlightmatrix, light, e->state_current.lightstyle, e->state_current.skin > 0 ? va("cubemaps/%i", e->state_current.skin) : NULL, !(e->state_current.lightpflags & PFLAGS_NOSHADOW), (e->state_current.lightpflags & PFLAGS_CORONA) != 0, 0.25, 0, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1426         }
1427         // do trail light
1428         if (e->render.flags & RENDER_GLOWTRAIL)
1429                 trailtype = EFFECT_TR_GLOWTRAIL;
1430         if (trailtype)
1431                 CL_ParticleTrail(trailtype, 0, origin, origin, vec3_origin, vec3_origin, NULL, e->state_current.glowcolor, true, false);
1432
1433         // don't show viewmodels in certain situations
1434         if (e->render.flags & RENDER_VIEWMODEL)
1435                 if (!r_drawviewmodel.integer || chase_active.integer || r_refdef.envmap)
1436                         return;
1437         // don't show entities with no modelindex (note: this still shows
1438         // entities which have a modelindex that resolved to a NULL model)
1439         if (e->render.model && !(e->render.effects & EF_NODRAW) && r_refdef.numentities < r_refdef.maxentities)
1440                 r_refdef.entities[r_refdef.numentities++] = &e->render;
1441         //if (cl.viewentity && e->state_current.number == cl.viewentity)
1442         //      Matrix4x4_Print(&e->render.matrix);
1443 }
1444
1445 void CL_RelinkWorld(void)
1446 {
1447         entity_t *ent = &cl.entities[0];
1448         // FIXME: this should be done at load
1449         ent->render.matrix = identitymatrix;
1450         CL_UpdateRenderEntity(&ent->render);
1451         ent->render.flags = RENDER_SHADOW;
1452         if (!r_fullbright.integer)
1453                 ent->render.flags |= RENDER_LIGHT;
1454         VectorSet(ent->render.colormod, 1, 1, 1);
1455         r_refdef.worldentity = &ent->render;
1456         r_refdef.worldmodel = cl.worldmodel;
1457 }
1458
1459 static void CL_RelinkStaticEntities(void)
1460 {
1461         int i;
1462         entity_t *e;
1463         for (i = 0, e = cl.static_entities;i < cl.num_static_entities && r_refdef.numentities < r_refdef.maxentities;i++, e++)
1464         {
1465                 e->render.flags = 0;
1466                 // if the model was not loaded when the static entity was created we
1467                 // need to re-fetch the model pointer
1468                 e->render.model = cl.model_precache[e->state_baseline.modelindex];
1469                 CL_UpdateRenderEntity(&e->render);
1470                 // either fullbright or lit
1471                 if (!(e->render.effects & EF_FULLBRIGHT) && !r_fullbright.integer)
1472                         e->render.flags |= RENDER_LIGHT;
1473                 // hide player shadow during intermission or nehahra movie
1474                 if (!(e->render.effects & (EF_NOSHADOW | EF_ADDITIVE | EF_NODEPTHTEST)) && (e->render.alpha >= 1))
1475                         e->render.flags |= RENDER_SHADOW;
1476                 VectorSet(e->render.colormod, 1, 1, 1);
1477                 R_LerpAnimation(&e->render);
1478                 r_refdef.entities[r_refdef.numentities++] = &e->render;
1479         }
1480 }
1481
1482 /*
1483 ===============
1484 CL_RelinkEntities
1485 ===============
1486 */
1487 static void CL_RelinkNetworkEntities(void)
1488 {
1489         entity_t *ent;
1490         int i;
1491
1492         // start on the entity after the world
1493         for (i = 1;i < cl.num_entities;i++)
1494         {
1495                 if (cl.entities_active[i])
1496                 {
1497                         ent = cl.entities + i;
1498                         if (ent->state_current.active)
1499                                 CL_LinkNetworkEntity(ent);
1500                         else
1501                                 cl.entities_active[i] = false;
1502                 }
1503         }
1504 }
1505
1506 static void CL_RelinkEffects(void)
1507 {
1508         int i, intframe;
1509         cl_effect_t *e;
1510         entity_t *ent;
1511         float frame;
1512
1513         for (i = 0, e = cl.effects;i < cl.num_effects;i++, e++)
1514         {
1515                 if (e->active)
1516                 {
1517                         frame = (cl.time - e->starttime) * e->framerate + e->startframe;
1518                         intframe = (int)frame;
1519                         if (intframe < 0 || intframe >= e->endframe)
1520                         {
1521                                 memset(e, 0, sizeof(*e));
1522                                 while (cl.num_effects > 0 && !cl.effects[cl.num_effects - 1].active)
1523                                         cl.num_effects--;
1524                                 continue;
1525                         }
1526
1527                         if (intframe != e->frame)
1528                         {
1529                                 e->frame = intframe;
1530                                 e->frame1time = e->frame2time;
1531                                 e->frame2time = cl.time;
1532                         }
1533
1534                         // if we're drawing effects, get a new temp entity
1535                         // (NewTempEntity adds it to the render entities list for us)
1536                         if (r_draweffects.integer && (ent = CL_NewTempEntity()))
1537                         {
1538                                 // interpolation stuff
1539                                 ent->render.frame1 = intframe;
1540                                 ent->render.frame2 = intframe + 1;
1541                                 if (ent->render.frame2 >= e->endframe)
1542                                         ent->render.frame2 = -1; // disappear
1543                                 ent->render.framelerp = frame - intframe;
1544                                 ent->render.frame1time = e->frame1time;
1545                                 ent->render.frame2time = e->frame2time;
1546
1547                                 // normal stuff
1548                                 if(e->modelindex < MAX_MODELS)
1549                                         ent->render.model = cl.model_precache[e->modelindex];
1550                                 else
1551                                         ent->render.model = cl.csqc_model_precache[-(e->modelindex+1)];
1552                                 ent->render.colormap = -1; // no special coloring
1553                                 ent->render.alpha = 1;
1554                                 VectorSet(ent->render.colormod, 1, 1, 1);
1555
1556                                 Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, e->origin[0], e->origin[1], e->origin[2], 0, 0, 0, 1);
1557                                 CL_UpdateRenderEntity(&ent->render);
1558                         }
1559                 }
1560         }
1561 }
1562
1563 void CL_Beam_CalculatePositions(const beam_t *b, vec3_t start, vec3_t end)
1564 {
1565         VectorCopy(b->start, start);
1566         VectorCopy(b->end, end);
1567
1568         // if coming from the player, update the start position
1569         if (b->entity == cl.viewentity)
1570         {
1571                 if (cl_beams_quakepositionhack.integer && !chase_active.integer)
1572                 {
1573                         // LordHavoc: this is a stupid hack from Quake that makes your
1574                         // lightning appear to come from your waist and cover less of your
1575                         // view
1576                         // in Quake this hack was applied to all players (causing the
1577                         // infamous crotch-lightning), but in darkplaces and QuakeWorld it
1578                         // only applies to your own lightning, and only in first person
1579                         Matrix4x4_OriginFromMatrix(&cl.entities[cl.viewentity].render.matrix, start);
1580                 }
1581                 if (cl_beams_instantaimhack.integer)
1582                 {
1583                         vec3_t dir, localend;
1584                         vec_t len;
1585                         // LordHavoc: this updates the beam direction to match your
1586                         // viewangles
1587                         VectorSubtract(end, start, dir);
1588                         len = VectorLength(dir);
1589                         VectorNormalize(dir);
1590                         VectorSet(localend, len, 0, 0);
1591                         Matrix4x4_Transform(&r_view.matrix, localend, end);
1592                 }
1593         }
1594 }
1595
1596 void CL_RelinkBeams(void)
1597 {
1598         int i;
1599         beam_t *b;
1600         vec3_t dist, org, start, end;
1601         float d;
1602         entity_t *ent;
1603         double yaw, pitch;
1604         float forward;
1605         matrix4x4_t tempmatrix;
1606
1607         for (i = 0, b = cl.beams;i < cl.num_beams;i++, b++)
1608         {
1609                 if (!b->model)
1610                         continue;
1611                 if (b->endtime < cl.time)
1612                 {
1613                         b->model = NULL;
1614                         continue;
1615                 }
1616
1617                 CL_Beam_CalculatePositions(b, start, end);
1618
1619                 if (b->lightning)
1620                 {
1621                         if (cl_beams_lightatend.integer && r_refdef.numlights < MAX_DLIGHTS)
1622                         {
1623                                 // FIXME: create a matrix from the beam start/end orientation
1624                                 vec3_t dlightcolor;
1625                                 VectorSet(dlightcolor, 0.3, 0.7, 1);
1626                                 Matrix4x4_CreateFromQuakeEntity(&tempmatrix, end[0], end[1], end[2], 0, 0, 0, 200);
1627                                 R_RTLight_Update(&r_refdef.lights[r_refdef.numlights++], false, &tempmatrix, dlightcolor, -1, NULL, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1628                         }
1629                         if (cl_beams_polygons.integer)
1630                                 continue;
1631                 }
1632
1633                 // calculate pitch and yaw
1634                 // (this is similar to the QuakeC builtin function vectoangles)
1635                 VectorSubtract(end, start, dist);
1636                 if (dist[1] == 0 && dist[0] == 0)
1637                 {
1638                         yaw = 0;
1639                         if (dist[2] > 0)
1640                                 pitch = 90;
1641                         else
1642                                 pitch = 270;
1643                 }
1644                 else
1645                 {
1646                         yaw = atan2(dist[1], dist[0]) * 180 / M_PI;
1647                         if (yaw < 0)
1648                                 yaw += 360;
1649
1650                         forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]);
1651                         pitch = atan2(dist[2], forward) * 180 / M_PI;
1652                         if (pitch < 0)
1653                                 pitch += 360;
1654                 }
1655
1656                 // add new entities for the lightning
1657                 VectorCopy (start, org);
1658                 d = VectorNormalizeLength(dist);
1659                 while (d > 0)
1660                 {
1661                         ent = CL_NewTempEntity ();
1662                         if (!ent)
1663                                 return;
1664                         //VectorCopy (org, ent->render.origin);
1665                         ent->render.model = b->model;
1666                         //ent->render.effects = EF_FULLBRIGHT;
1667                         //ent->render.angles[0] = pitch;
1668                         //ent->render.angles[1] = yaw;
1669                         //ent->render.angles[2] = rand()%360;
1670                         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, org[0], org[1], org[2], -pitch, yaw, lhrandom(0, 360), 1);
1671                         CL_UpdateRenderEntity(&ent->render);
1672                         VectorMA(org, 30, dist, org);
1673                         d -= 30;
1674                 }
1675         }
1676
1677         while (cl.num_beams > 0 && !cl.beams[cl.num_beams - 1].model)
1678                 cl.num_beams--;
1679 }
1680
1681 static void CL_RelinkQWNails(void)
1682 {
1683         int i;
1684         vec_t *v;
1685         entity_t *ent;
1686
1687         for (i = 0;i < cl.qw_num_nails;i++)
1688         {
1689                 v = cl.qw_nails[i];
1690
1691                 // if we're drawing effects, get a new temp entity
1692                 // (NewTempEntity adds it to the render entities list for us)
1693                 if (!(ent = CL_NewTempEntity()))
1694                         continue;
1695
1696                 // normal stuff
1697                 ent->render.model = cl.model_precache[cl.qw_modelindex_spike];
1698                 ent->render.colormap = -1; // no special coloring
1699                 ent->render.alpha = 1;
1700                 VectorSet(ent->render.colormod, 1, 1, 1);
1701
1702                 Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, v[0], v[1], v[2], v[3], v[4], v[5], 1);
1703                 CL_UpdateRenderEntity(&ent->render);
1704         }
1705 }
1706
1707 void CL_LerpPlayer(float frac)
1708 {
1709         int i;
1710
1711         cl.viewzoom = cl.mviewzoom[1] + frac * (cl.mviewzoom[0] - cl.mviewzoom[1]);
1712         for (i = 0;i < 3;i++)
1713         {
1714                 cl.punchangle[i] = cl.mpunchangle[1][i] + frac * (cl.mpunchangle[0][i] - cl.mpunchangle[1][i]);
1715                 cl.punchvector[i] = cl.mpunchvector[1][i] + frac * (cl.mpunchvector[0][i] - cl.mpunchvector[1][i]);
1716                 cl.velocity[i] = cl.mvelocity[1][i] + frac * (cl.mvelocity[0][i] - cl.mvelocity[1][i]);
1717         }
1718
1719         // interpolate the angles if playing a demo or spectating someone
1720         if (cls.demoplayback || cl.fixangle[0])
1721         {
1722                 for (i = 0;i < 3;i++)
1723                 {
1724                         float d = cl.mviewangles[0][i] - cl.mviewangles[1][i];
1725                         if (d > 180)
1726                                 d -= 360;
1727                         else if (d < -180)
1728                                 d += 360;
1729                         cl.viewangles[i] = cl.mviewangles[1][i] + frac * d;
1730                 }
1731         }
1732 }
1733
1734 void CSQC_RelinkAllEntities (int drawmask)
1735 {
1736         // link stuff
1737         CL_RelinkWorld();
1738         CL_RelinkStaticEntities();
1739         CL_RelinkBeams();
1740         CL_RelinkEffects();
1741
1742         // link stuff
1743         if (drawmask & ENTMASK_ENGINE)
1744         {
1745                 CL_RelinkNetworkEntities();
1746                 if (drawmask & ENTMASK_ENGINEVIEWMODELS)
1747                         CL_LinkNetworkEntity(&cl.viewent); // link gun model
1748                 CL_RelinkQWNails();
1749         }
1750
1751         // update view blend
1752         V_CalcViewBlend();
1753 }
1754
1755 /*
1756 ===============
1757 CL_UpdateWorld
1758
1759 Update client game world for a new frame
1760 ===============
1761 */
1762 void CL_UpdateWorld(void)
1763 {
1764         r_refdef.extraupdate = !r_speeds.integer;
1765         r_refdef.numentities = 0;
1766         r_refdef.numlights = 0;
1767         r_view.matrix = identitymatrix;
1768
1769         cl.num_brushmodel_entities = 0;
1770
1771         if (cls.state == ca_connected && cls.signon == SIGNONS)
1772         {
1773                 // prepare for a new frame
1774                 CL_LerpPlayer(CL_LerpPoint());
1775                 CL_DecayLightFlashes();
1776                 CL_ClearTempEntities();
1777                 V_DriftPitch();
1778                 V_FadeViewFlashs();
1779
1780                 // if prediction is enabled we have to update all the collidable
1781                 // network entities before the prediction code can be run
1782                 CL_UpdateNetworkCollisionEntities();
1783
1784                 // now update the player prediction
1785                 CL_ClientMovement_Replay();
1786
1787                 // update the player entity (which may be predicted)
1788                 CL_UpdateNetworkEntity(cl.entities + cl.viewentity, 32, true);
1789
1790                 // now update the view (which depends on that player entity)
1791                 V_CalcRefdef();
1792
1793                 // now update all the network entities and create particle trails
1794                 // (some entities may depend on the view)
1795                 CL_UpdateNetworkEntities();
1796
1797                 // update the engine-based viewmodel
1798                 CL_UpdateViewModel();
1799
1800                 CL_RelinkLightFlashes();
1801                 CSQC_RelinkAllEntities(ENTMASK_ENGINE | ENTMASK_ENGINEVIEWMODELS);
1802
1803                 // move decals, particles, and any other effects
1804                 CL_MoveDecals();
1805                 CL_MoveParticles();
1806                 R_MoveExplosions();
1807         }
1808
1809         r_refdef.time = cl.time;
1810 }
1811
1812 // LordHavoc: pausedemo command
1813 static void CL_PauseDemo_f (void)
1814 {
1815         cls.demopaused = !cls.demopaused;
1816         if (cls.demopaused)
1817                 Con_Print("Demo paused\n");
1818         else
1819                 Con_Print("Demo unpaused\n");
1820 }
1821
1822 /*
1823 ======================
1824 CL_Fog_f
1825 ======================
1826 */
1827 static void CL_Fog_f (void)
1828 {
1829         if (Cmd_Argc () == 1)
1830         {
1831                 Con_Printf("\"fog\" is \"%f %f %f %f\"\n", r_refdef.fog_density, r_refdef.fog_red, r_refdef.fog_green, r_refdef.fog_blue);
1832                 return;
1833         }
1834         r_refdef.fog_density = atof(Cmd_Argv(1));
1835         r_refdef.fog_red = atof(Cmd_Argv(2));
1836         r_refdef.fog_green = atof(Cmd_Argv(3));
1837         r_refdef.fog_blue = atof(Cmd_Argv(4));
1838 }
1839
1840 /*
1841 ====================
1842 CL_TimeRefresh_f
1843
1844 For program optimization
1845 ====================
1846 */
1847 static void CL_TimeRefresh_f (void)
1848 {
1849         int i;
1850         float timestart, timedelta;
1851
1852         r_refdef.extraupdate = false;
1853
1854         timestart = Sys_DoubleTime();
1855         for (i = 0;i < 128;i++)
1856         {
1857                 Matrix4x4_CreateFromQuakeEntity(&r_view.matrix, r_view.origin[0], r_view.origin[1], r_view.origin[2], 0, i / 128.0 * 360.0, 0, 1);
1858                 CL_UpdateScreen();
1859         }
1860         timedelta = Sys_DoubleTime() - timestart;
1861
1862         Con_Printf("%f seconds (%f fps)\n", timedelta, 128/timedelta);
1863 }
1864
1865 void CL_AreaStats_f(void)
1866 {
1867         World_PrintAreaStats(&cl.world, "client");
1868 }
1869
1870 cl_locnode_t *CL_Locs_FindNearest(const vec3_t point)
1871 {
1872         int i;
1873         cl_locnode_t *loc;
1874         cl_locnode_t *best;
1875         vec3_t nearestpoint;
1876         vec_t dist, bestdist;
1877         best = NULL;
1878         bestdist = 0;
1879         for (loc = cl.locnodes;loc;loc = loc->next)
1880         {
1881                 for (i = 0;i < 3;i++)
1882                         nearestpoint[i] = bound(loc->mins[i], point[i], loc->maxs[i]);
1883                 dist = VectorDistance2(nearestpoint, point);
1884                 if (bestdist > dist || !best)
1885                 {
1886                         bestdist = dist;
1887                         best = loc;
1888                         if (bestdist < 1)
1889                                 break;
1890                 }
1891         }
1892         return best;
1893 }
1894
1895 void CL_Locs_FindLocationName(char *buffer, size_t buffersize, vec3_t point)
1896 {
1897         cl_locnode_t *loc;
1898         loc = CL_Locs_FindNearest(point);
1899         if (loc)
1900                 strlcpy(buffer, loc->name, buffersize);
1901         else
1902                 dpsnprintf(buffer, buffersize, "LOC=%.0f:%.0f:%.0f", point[0], point[1], point[2]);
1903 }
1904
1905 void CL_Locs_FreeNode(cl_locnode_t *node)
1906 {
1907         cl_locnode_t **pointer, **next;
1908         for (pointer = &cl.locnodes;*pointer;pointer = next)
1909         {
1910                 next = &(*pointer)->next;
1911                 if (*pointer == node)
1912                 {
1913                         *pointer = node->next;
1914                         Mem_Free(node);
1915                 }
1916         }
1917         Con_Printf("CL_Locs_FreeNode: no such node! (%p)\n", node);
1918 }
1919
1920 void CL_Locs_AddNode(vec3_t mins, vec3_t maxs, const char *name)
1921 {
1922         cl_locnode_t *node, **pointer;
1923         int namelen;
1924         if (!name)
1925                 name = "";
1926         namelen = strlen(name);
1927         node = Mem_Alloc(cls.levelmempool, sizeof(cl_locnode_t) + namelen + 1);
1928         VectorSet(node->mins, min(mins[0], maxs[0]), min(mins[1], maxs[1]), min(mins[2], maxs[2]));
1929         VectorSet(node->maxs, max(mins[0], maxs[0]), max(mins[1], maxs[1]), max(mins[2], maxs[2]));
1930         node->name = (char *)(node + 1);
1931         memcpy(node->name, name, namelen);
1932         node->name[namelen] = 0;
1933         // link it into the tail of the list to preserve the order
1934         for (pointer = &cl.locnodes;*pointer;pointer = &(*pointer)->next)
1935                 ;
1936         *pointer = node;
1937 }
1938
1939 void CL_Locs_Add_f(void)
1940 {
1941         vec3_t mins, maxs;
1942         if (Cmd_Argc() != 5 && Cmd_Argc() != 8)
1943         {
1944                 Con_Printf("usage: %s x y z[ x y z] name\n", Cmd_Argv(0));
1945                 return;
1946         }
1947         mins[0] = atof(Cmd_Argv(1));
1948         mins[1] = atof(Cmd_Argv(2));
1949         mins[2] = atof(Cmd_Argv(3));
1950         if (Cmd_Argc() == 8)
1951         {
1952                 maxs[0] = atof(Cmd_Argv(4));
1953                 maxs[1] = atof(Cmd_Argv(5));
1954                 maxs[2] = atof(Cmd_Argv(6));
1955                 CL_Locs_AddNode(mins, maxs, Cmd_Argv(7));
1956         }
1957         else
1958                 CL_Locs_AddNode(mins, mins, Cmd_Argv(4));
1959 }
1960
1961 void CL_Locs_RemoveNearest_f(void)
1962 {
1963         cl_locnode_t *loc;
1964         loc = CL_Locs_FindNearest(r_view.origin);
1965         if (loc)
1966                 CL_Locs_FreeNode(loc);
1967         else
1968                 Con_Printf("no loc point or box found for your location\n");
1969 }
1970
1971 void CL_Locs_Clear_f(void)
1972 {
1973         while (cl.locnodes)
1974                 CL_Locs_FreeNode(cl.locnodes);
1975 }
1976
1977 void CL_Locs_Save_f(void)
1978 {
1979         cl_locnode_t *loc;
1980         qfile_t *outfile;
1981         char locfilename[MAX_QPATH];
1982         if (!cl.locnodes)
1983         {
1984                 Con_Printf("No loc points/boxes exist!\n");
1985                 return;
1986         }
1987         if (cls.state != ca_connected || !cl.worldmodel)
1988         {
1989                 Con_Printf("No level loaded!\n");
1990                 return;
1991         }
1992         FS_StripExtension(cl.worldmodel->name, locfilename, sizeof(locfilename));
1993         strlcat(locfilename, ".loc", sizeof(locfilename));
1994
1995         outfile = FS_Open(locfilename, "w", false, false);
1996         if (!outfile)
1997                 return;
1998         // if any boxes are used then this is a proquake-format loc file, which
1999         // allows comments, so add some relevant information at the start
2000         for (loc = cl.locnodes;loc;loc = loc->next)
2001                 if (!VectorCompare(loc->mins, loc->maxs))
2002                         break;
2003         if (loc)
2004         {
2005                 FS_Printf(outfile, "// %s %s saved by %s\n// x,y,z,x,y,z,\"name\"\n\n", locfilename, Sys_TimeString("%Y-%m-%d"), engineversion);
2006                 for (loc = cl.locnodes;loc;loc = loc->next)
2007                         if (VectorCompare(loc->mins, loc->maxs))
2008                                 break;
2009                 if (loc)
2010                         Con_Printf("Warning: writing loc file containing a mixture of qizmo-style points and proquake-style boxes may not work in qizmo or proquake!\n");
2011         }
2012         for (loc = cl.locnodes;loc;loc = loc->next)
2013         {
2014                 if (VectorCompare(loc->mins, loc->maxs))
2015                 {
2016                         int len;
2017                         const char *s;
2018                         const char *in = loc->name;
2019                         char name[MAX_INPUTLINE];
2020                         for (len = 0;len < (int)sizeof(name) - 1 && *in;)
2021                         {
2022                                 if (*in == ' ') {s = "$loc_name_separator";in++;}
2023                                 else if (!strncmp(in, "SSG", 3)) {s = "$loc_name_ssg";in += 3;}
2024                                 else if (!strncmp(in, "NG", 2)) {s = "$loc_name_ng";in += 2;}
2025                                 else if (!strncmp(in, "SNG", 3)) {s = "$loc_name_sng";in += 3;}
2026                                 else if (!strncmp(in, "GL", 2)) {s = "$loc_name_gl";in += 2;}
2027                                 else if (!strncmp(in, "RL", 2)) {s = "$loc_name_rl";in += 2;}
2028                                 else if (!strncmp(in, "LG", 2)) {s = "$loc_name_lg";in += 2;}
2029                                 else if (!strncmp(in, "GA", 2)) {s = "$loc_name_ga";in += 2;}
2030                                 else if (!strncmp(in, "YA", 2)) {s = "$loc_name_ya";in += 2;}
2031                                 else if (!strncmp(in, "RA", 2)) {s = "$loc_name_ra";in += 2;}
2032                                 else if (!strncmp(in, "MEGA", 4)) {s = "$loc_name_mh";in += 4;}
2033                                 else s = NULL;
2034                                 if (s)
2035                                 {
2036                                         while (len < (int)sizeof(name) - 1 && *s)
2037                                                 name[len++] = *s++;
2038                                         continue;
2039                                 }
2040                                 name[len++] = *in++;
2041                         }
2042                         name[len] = 0;
2043                         FS_Printf(outfile, "%.0f %.0f %.0f %s\n", loc->mins[0]*8, loc->mins[1]*8, loc->mins[2]*8, name);
2044                 }
2045                 else
2046                         FS_Printf(outfile, "%.1f,%.1f,%.1f,%.1f,%.1f,%.1f,\"%s\"\n", loc->mins[0], loc->mins[1], loc->mins[2], loc->maxs[0], loc->maxs[1], loc->maxs[2], loc->name);
2047         }
2048         FS_Close(outfile);
2049 }
2050
2051 void CL_Locs_Reload_f(void)
2052 {
2053         int i, linenumber, limit, len;
2054         const char *s;
2055         char *filedata, *text, *textend, *linestart, *linetext, *lineend;
2056         fs_offset_t filesize;
2057         vec3_t mins, maxs;
2058         char locfilename[MAX_QPATH];
2059         char name[MAX_INPUTLINE];
2060
2061         if (cls.state != ca_connected || !cl.worldmodel)
2062         {
2063                 Con_Printf("No level loaded!\n");
2064                 return;
2065         }
2066
2067         CL_Locs_Clear_f();
2068
2069         // try maps/something.loc first (LordHavoc: where I think they should be)
2070         FS_StripExtension(cl.worldmodel->name, locfilename, sizeof(locfilename));
2071         strlcat(locfilename, ".loc", sizeof(locfilename));
2072         filedata = (char *)FS_LoadFile(locfilename, cls.levelmempool, false, &filesize);
2073         if (!filedata)
2074         {
2075                 // try proquake name as well (LordHavoc: I hate path mangling)
2076                 FS_StripExtension(va("locs/%s", FS_FileWithoutPath(cl.worldmodel->name)), locfilename, sizeof(locfilename));
2077                 strlcat(locfilename, ".loc", sizeof(locfilename));
2078                 filedata = (char *)FS_LoadFile(locfilename, cls.levelmempool, false, &filesize);
2079                 if (!filedata)
2080                         return;
2081         }
2082         text = filedata;
2083         textend = filedata + filesize;
2084         for (linenumber = 1;text < textend;linenumber++)
2085         {
2086                 linestart = text;
2087                 for (;text < textend && *text != '\r' && *text != '\n';text++)
2088                         ;
2089                 lineend = text;
2090                 if (text + 1 < textend && *text == '\r' && text[1] == '\n')
2091                         text++;
2092                 if (text < textend)
2093                         text++;
2094                 // trim trailing whitespace
2095                 while (lineend > linestart && lineend[-1] <= ' ')
2096                         lineend--;
2097                 // trim leading whitespace
2098                 while (linestart < lineend && *linestart <= ' ')
2099                         linestart++;
2100                 // check if this is a comment
2101                 if (linestart + 2 <= lineend && !strncmp(linestart, "//", 2))
2102                         continue;
2103                 linetext = linestart;
2104                 limit = 3;
2105                 for (i = 0;i < limit;i++)
2106                 {
2107                         if (linetext >= lineend)
2108                                 break;
2109                         // note: a missing number is interpreted as 0
2110                         if (i < 3)
2111                                 mins[i] = atof(linetext);
2112                         else
2113                                 maxs[i - 3] = atof(linetext);
2114                         // now advance past the number
2115                         while (linetext < lineend && *linetext > ' ' && *linetext != ',')
2116                                 linetext++;
2117                         // advance through whitespace
2118                         if (linetext < lineend)
2119                         {
2120                                 if (*linetext == ',')
2121                                 {
2122                                         linetext++;
2123                                         limit = 6;
2124                                         // note: comma can be followed by whitespace
2125                                 }
2126                                 if (*linetext <= ' ')
2127                                 {
2128                                         // skip whitespace
2129                                         while (linetext < lineend && *linetext <= ' ')
2130                                                 linetext++;
2131                                 }
2132                         }
2133                 }
2134                 // if this is a quoted name, remove the quotes
2135                 if (i == 6)
2136                 {
2137                         if (linetext >= lineend || *linetext != '"')
2138                                 continue; // proquake location names are always quoted
2139                         lineend--;
2140                         linetext++;
2141                         len = min(lineend - linetext, (int)sizeof(name) - 1);
2142                         memcpy(name, linetext, len);
2143                         name[len] = 0;
2144                         // add the box to the list
2145                         CL_Locs_AddNode(mins, maxs, name);
2146                 }
2147                 // if a point was parsed, it needs to be scaled down by 8 (since
2148                 // point-based loc files were invented by a proxy which dealt
2149                 // directly with quake protocol coordinates, which are *8), turn
2150                 // it into a box
2151                 else if (i == 3)
2152                 {
2153                         // interpret silly fuhquake macros
2154                         for (len = 0;len < (int)sizeof(name) - 1 && linetext < lineend;)
2155                         {
2156                                 if (*linetext == '$')
2157                                 {
2158                                         if (linetext + 18 <= lineend && !strncmp(linetext, "$loc_name_separator", 19)) {s = " ";linetext += 19;}
2159                                         else if (linetext + 13 <= lineend && !strncmp(linetext, "$loc_name_ssg", 13)) {s = "SSG";linetext += 13;}
2160                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ng", 12)) {s = "NG";linetext += 12;}
2161                                         else if (linetext + 13 <= lineend && !strncmp(linetext, "$loc_name_sng", 13)) {s = "SNG";linetext += 13;}
2162                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_gl", 12)) {s = "GL";linetext += 12;}
2163                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_rl", 12)) {s = "RL";linetext += 12;}
2164                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_lg", 12)) {s = "LG";linetext += 12;}
2165                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ga", 12)) {s = "GA";linetext += 12;}
2166                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ya", 12)) {s = "YA";linetext += 12;}
2167                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ra", 12)) {s = "RA";linetext += 12;}
2168                                         else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_mh", 12)) {s = "MEGA";linetext += 12;}
2169                                         else s = NULL;
2170                                         if (s)
2171                                         {
2172                                                 while (len < (int)sizeof(name) - 1 && *s)
2173                                                         name[len++] = *s++;
2174                                                 continue;
2175                                         }
2176                                 }
2177                                 name[len++] = *linetext++;
2178                         }
2179                         name[len] = 0;
2180                         // add the point to the list
2181                         VectorScale(mins, (1.0 / 8.0), mins);
2182                         CL_Locs_AddNode(mins, mins, name);
2183                 }
2184                 else
2185                         continue;
2186         }
2187 }
2188
2189 /*
2190 ===========
2191 CL_Shutdown
2192 ===========
2193 */
2194 void CL_Shutdown (void)
2195 {
2196         CL_Screen_Shutdown();
2197         CL_Particles_Shutdown();
2198         CL_Parse_Shutdown();
2199
2200         Mem_FreePool (&cls.permanentmempool);
2201         Mem_FreePool (&cls.levelmempool);
2202 }
2203
2204 /*
2205 =================
2206 CL_Init
2207 =================
2208 */
2209 void CL_Init (void)
2210 {
2211         cls.levelmempool = Mem_AllocPool("client (per-level memory)", 0, NULL);
2212         cls.permanentmempool = Mem_AllocPool("client (long term memory)", 0, NULL);
2213
2214         memset(&r_refdef, 0, sizeof(r_refdef));
2215         // max entities sent to renderer per frame
2216         r_refdef.maxentities = MAX_EDICTS + 256 + 512;
2217         r_refdef.entities = (entity_render_t **)Mem_Alloc(cls.permanentmempool, sizeof(entity_render_t *) * r_refdef.maxentities);
2218
2219         CL_InitInput ();
2220
2221 //
2222 // register our commands
2223 //
2224         Cvar_RegisterVariable (&cl_upspeed);
2225         Cvar_RegisterVariable (&cl_forwardspeed);
2226         Cvar_RegisterVariable (&cl_backspeed);
2227         Cvar_RegisterVariable (&cl_sidespeed);
2228         Cvar_RegisterVariable (&cl_movespeedkey);
2229         Cvar_RegisterVariable (&cl_yawspeed);
2230         Cvar_RegisterVariable (&cl_pitchspeed);
2231         Cvar_RegisterVariable (&cl_anglespeedkey);
2232         Cvar_RegisterVariable (&cl_shownet);
2233         Cvar_RegisterVariable (&cl_nolerp);
2234         Cvar_RegisterVariable (&lookspring);
2235         Cvar_RegisterVariable (&lookstrafe);
2236         Cvar_RegisterVariable (&sensitivity);
2237         Cvar_RegisterVariable (&freelook);
2238
2239         Cvar_RegisterVariable (&m_pitch);
2240         Cvar_RegisterVariable (&m_yaw);
2241         Cvar_RegisterVariable (&m_forward);
2242         Cvar_RegisterVariable (&m_side);
2243
2244         Cvar_RegisterVariable (&cl_itembobspeed);
2245         Cvar_RegisterVariable (&cl_itembobheight);
2246
2247         Cmd_AddCommand ("entities", CL_PrintEntities_f, "print information on network entities known to client");
2248         Cmd_AddCommand ("disconnect", CL_Disconnect_f, "disconnect from server (or disconnect all clients if running a server)");
2249         Cmd_AddCommand ("record", CL_Record_f, "record a demo");
2250         Cmd_AddCommand ("stop", CL_Stop_f, "stop recording or playing a demo");
2251         Cmd_AddCommand ("playdemo", CL_PlayDemo_f, "watch a demo file");
2252         Cmd_AddCommand ("timedemo", CL_TimeDemo_f, "play back a demo as fast as possible and save statistics to benchmark.log");
2253
2254         // Support Client-side Model Index List
2255         Cmd_AddCommand ("cl_modelindexlist", CL_ModelIndexList_f, "list information on all models in the client modelindex");
2256         // Support Client-side Sound Index List
2257         Cmd_AddCommand ("cl_soundindexlist", CL_SoundIndexList_f, "list all sounds in the client soundindex");
2258
2259         Cvar_RegisterVariable (&cl_autodemo);
2260         Cvar_RegisterVariable (&cl_autodemo_nameformat);
2261
2262         Cmd_AddCommand ("fog", CL_Fog_f, "set global fog parameters (density red green blue)");
2263
2264         // LordHavoc: added pausedemo
2265         Cmd_AddCommand ("pausedemo", CL_PauseDemo_f, "pause demo playback (can also safely pause demo recording if using QUAKE, QUAKEDP or NEHAHRAMOVIE protocol, useful for making movies)");
2266
2267         Cmd_AddCommand ("cl_areastats", CL_AreaStats_f, "prints statistics on entity culling during collision traces");
2268
2269         Cvar_RegisterVariable(&r_draweffects);
2270         Cvar_RegisterVariable(&cl_explosions_alpha_start);
2271         Cvar_RegisterVariable(&cl_explosions_alpha_end);
2272         Cvar_RegisterVariable(&cl_explosions_size_start);
2273         Cvar_RegisterVariable(&cl_explosions_size_end);
2274         Cvar_RegisterVariable(&cl_explosions_lifetime);
2275         Cvar_RegisterVariable(&cl_stainmaps);
2276         Cvar_RegisterVariable(&cl_stainmaps_clearonload);
2277         Cvar_RegisterVariable(&cl_beams_polygons);
2278         Cvar_RegisterVariable(&cl_beams_quakepositionhack);
2279         Cvar_RegisterVariable(&cl_beams_instantaimhack);
2280         Cvar_RegisterVariable(&cl_beams_lightatend);
2281         Cvar_RegisterVariable(&cl_noplayershadow);
2282         Cvar_RegisterVariable(&cl_dlights_decayradius);
2283         Cvar_RegisterVariable(&cl_dlights_decaybrightness);
2284
2285         Cvar_RegisterVariable(&cl_prydoncursor);
2286
2287         Cvar_RegisterVariable(&cl_deathnoviewmodel);
2288
2289         // for QW connections
2290         Cvar_RegisterVariable(&qport);
2291         Cvar_SetValueQuick(&qport, (rand() * RAND_MAX + rand()) & 0xffff);
2292
2293         Cmd_AddCommand("timerefresh", CL_TimeRefresh_f, "turn quickly and print rendering statistcs");
2294
2295         Cvar_RegisterVariable(&cl_locs_enable);
2296         Cvar_RegisterVariable(&cl_locs_show);
2297         Cmd_AddCommand("locs_add", CL_Locs_Add_f, "add a point or box location (usage: x y z[ x y z] \"name\", if two sets of xyz are supplied it is a box, otherwise point)");
2298         Cmd_AddCommand("locs_removenearest", CL_Locs_RemoveNearest_f, "remove the nearest point or box (note: you need to be very near a box to remove it)");
2299         Cmd_AddCommand("locs_clear", CL_Locs_Clear_f, "remove all loc points/boxes");
2300         Cmd_AddCommand("locs_reload", CL_Locs_Reload_f, "reload .loc file for this map");
2301         Cmd_AddCommand("locs_save", CL_Locs_Save_f, "save .loc file for this map containing currently defined points and boxes");
2302
2303         CL_Parse_Init();
2304         CL_Particles_Init();
2305         CL_Screen_Init();
2306
2307         CL_Video_Init();
2308 #ifdef SUPPORT_GECKO
2309         CL_Gecko_Init();
2310 #endif
2311 }
2312
2313
2314