]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_main.c
cl_netlocalping now adds only half as much lag, so that the number specified is rough...
[divverent/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_video.h"
25 #include "image.h"
26
27 // we need to declare some mouse variables here, because the menu system
28 // references them even when on a unix system.
29
30 cvar_t cl_shownet = {0, "cl_shownet","0"};
31 cvar_t cl_nolerp = {0, "cl_nolerp", "0"};
32
33 cvar_t cl_itembobheight = {0, "cl_itembobheight", "0"}; // try 8
34 cvar_t cl_itembobspeed = {0, "cl_itembobspeed", "0.5"};
35
36 cvar_t lookspring = {CVAR_SAVE, "lookspring","0"};
37 cvar_t lookstrafe = {CVAR_SAVE, "lookstrafe","0"};
38 cvar_t sensitivity = {CVAR_SAVE, "sensitivity","3", 1, 30};
39
40 cvar_t m_pitch = {CVAR_SAVE, "m_pitch","0.022"};
41 cvar_t m_yaw = {CVAR_SAVE, "m_yaw","0.022"};
42 cvar_t m_forward = {CVAR_SAVE, "m_forward","1"};
43 cvar_t m_side = {CVAR_SAVE, "m_side","0.8"};
44
45 cvar_t freelook = {CVAR_SAVE, "freelook", "1"};
46
47 cvar_t r_draweffects = {0, "r_draweffects", "1"};
48
49 cvar_t cl_explosions_alpha_start = {CVAR_SAVE, "cl_explosions_alpha_start", "1.5"};
50 cvar_t cl_explosions_alpha_end = {CVAR_SAVE, "cl_explosions_alpha_end", "0"};
51 cvar_t cl_explosions_size_start = {CVAR_SAVE, "cl_explosions_size_start", "16"};
52 cvar_t cl_explosions_size_end = {CVAR_SAVE, "cl_explosions_size_end", "128"};
53 cvar_t cl_explosions_lifetime = {CVAR_SAVE, "cl_explosions_lifetime", "0.5"};
54
55 cvar_t cl_stainmaps = {CVAR_SAVE, "cl_stainmaps", "1"};
56 cvar_t cl_stainmaps_clearonload = {CVAR_SAVE, "cl_stainmaps_clearonload", "1"};
57
58 cvar_t cl_beams_polygons = {CVAR_SAVE, "cl_beams_polygons", "1"};
59 cvar_t cl_beams_relative = {CVAR_SAVE, "cl_beams_relative", "1"};
60 cvar_t cl_beams_lightatend = {CVAR_SAVE, "cl_beams_lightatend", "0"};
61
62 cvar_t cl_noplayershadow = {CVAR_SAVE, "cl_noplayershadow", "0"};
63
64 cvar_t cl_prydoncursor = {0, "cl_prydoncursor", "0"};
65
66 vec3_t cl_playerstandmins;
67 vec3_t cl_playerstandmaxs;
68 vec3_t cl_playercrouchmins;
69 vec3_t cl_playercrouchmaxs;
70
71 mempool_t *cl_mempool;
72
73 client_static_t cls;
74 client_state_t  cl;
75
76 int cl_max_entities;
77 int cl_max_static_entities;
78 int cl_max_temp_entities;
79 int cl_max_effects;
80 int cl_max_beams;
81 int cl_max_dlights;
82 int cl_max_lightstyle;
83 int cl_max_brushmodel_entities;
84
85 entity_t *cl_entities;
86 qbyte *cl_entities_active;
87 entity_t *cl_static_entities;
88 entity_t *cl_temp_entities;
89 cl_effect_t *cl_effects;
90 beam_t *cl_beams;
91 dlight_t *cl_dlights;
92 lightstyle_t *cl_lightstyle;
93 int *cl_brushmodel_entities;
94
95 int cl_num_entities;
96 int cl_num_static_entities;
97 int cl_num_temp_entities;
98 int cl_num_brushmodel_entities;
99
100 /*
101 =====================
102 CL_ClearState
103
104 =====================
105 */
106 void CL_ClearState(void)
107 {
108         int i;
109
110         if (cl_entities) Mem_Free(cl_entities);cl_entities = NULL;
111         if (cl_entities_active) Mem_Free(cl_entities_active);cl_entities_active = NULL;
112         if (cl_static_entities) Mem_Free(cl_static_entities);cl_static_entities = NULL;
113         if (cl_temp_entities) Mem_Free(cl_temp_entities);cl_temp_entities = NULL;
114         if (cl_effects) Mem_Free(cl_effects);cl_effects = NULL;
115         if (cl_beams) Mem_Free(cl_beams);cl_beams = NULL;
116         if (cl_dlights) Mem_Free(cl_dlights);cl_dlights = NULL;
117         if (cl_lightstyle) Mem_Free(cl_lightstyle);cl_lightstyle = NULL;
118         if (cl_brushmodel_entities) Mem_Free(cl_brushmodel_entities);cl_brushmodel_entities = NULL;
119         if (cl.entitydatabase) EntityFrame_FreeDatabase(cl.entitydatabase);cl.entitydatabase = NULL;
120         if (cl.entitydatabase4) EntityFrame4_FreeDatabase(cl.entitydatabase4);cl.entitydatabase4 = NULL;
121         if (cl.scores) Mem_Free(cl.scores);cl.scores = NULL;
122
123         if (!sv.active)
124                 Host_ClearMemory ();
125
126 // wipe the entire cl structure
127         memset (&cl, 0, sizeof(cl));
128         // reset the view zoom interpolation
129         cl.mviewzoom[0] = cl.mviewzoom[1] = 1;
130
131         SZ_Clear (&cls.message);
132
133         cl_num_entities = 0;
134         cl_num_static_entities = 0;
135         cl_num_temp_entities = 0;
136         cl_num_brushmodel_entities = 0;
137
138         // tweak these if the game runs out
139         cl_max_entities = 256;
140         cl_max_static_entities = 256;
141         cl_max_temp_entities = 512;
142         cl_max_effects = 256;
143         cl_max_beams = 256;
144         cl_max_dlights = MAX_DLIGHTS;
145         cl_max_lightstyle = MAX_LIGHTSTYLES;
146         cl_max_brushmodel_entities = MAX_EDICTS;
147
148         cl_entities = Mem_Alloc(cl_mempool, cl_max_entities * sizeof(entity_t));
149         cl_entities_active = Mem_Alloc(cl_mempool, cl_max_brushmodel_entities * sizeof(qbyte));
150         cl_static_entities = Mem_Alloc(cl_mempool, cl_max_static_entities * sizeof(entity_t));
151         cl_temp_entities = Mem_Alloc(cl_mempool, cl_max_temp_entities * sizeof(entity_t));
152         cl_effects = Mem_Alloc(cl_mempool, cl_max_effects * sizeof(cl_effect_t));
153         cl_beams = Mem_Alloc(cl_mempool, cl_max_beams * sizeof(beam_t));
154         cl_dlights = Mem_Alloc(cl_mempool, cl_max_dlights * sizeof(dlight_t));
155         cl_lightstyle = Mem_Alloc(cl_mempool, cl_max_lightstyle * sizeof(lightstyle_t));
156         cl_brushmodel_entities = Mem_Alloc(cl_mempool, cl_max_brushmodel_entities * sizeof(int));
157
158         // LordHavoc: have to set up the baseline info for alpha and other stuff
159         for (i = 0;i < cl_max_entities;i++)
160         {
161                 cl_entities[i].state_baseline = defaultstate;
162                 cl_entities[i].state_previous = defaultstate;
163                 cl_entities[i].state_current = defaultstate;
164         }
165
166         if (gamemode == GAME_NEXUIZ)
167         {
168                 VectorSet(cl_playerstandmins, -16, -16, -24);
169                 VectorSet(cl_playerstandmaxs, 16, 16, 45);
170                 VectorSet(cl_playercrouchmins, -16, -16, -24);
171                 VectorSet(cl_playercrouchmaxs, 16, 16, 25);
172         }
173         else
174         {
175                 VectorSet(cl_playerstandmins, -16, -16, -24);
176                 VectorSet(cl_playerstandmaxs, 16, 16, 24);
177                 VectorSet(cl_playercrouchmins, -16, -16, -24);
178                 VectorSet(cl_playercrouchmaxs, 16, 16, 24);
179         }
180
181         CL_Screen_NewMap();
182         CL_Particles_Clear();
183         CL_CGVM_Clear();
184 }
185
186 void CL_ExpandEntities(int num)
187 {
188         int i, oldmaxentities;
189         entity_t *oldentities;
190         if (num >= cl_max_entities)
191         {
192                 if (!cl_entities)
193                         Host_Error("CL_ExpandEntities: cl_entities not initialized\n");
194                 if (num >= MAX_EDICTS)
195                         Host_Error("CL_ExpandEntities: num %i >= %i\n", num, MAX_EDICTS);
196                 oldmaxentities = cl_max_entities;
197                 oldentities = cl_entities;
198                 cl_max_entities = (num & ~255) + 256;
199                 cl_entities = Mem_Alloc(cl_mempool, cl_max_entities * sizeof(entity_t));
200                 memcpy(cl_entities, oldentities, oldmaxentities * sizeof(entity_t));
201                 Mem_Free(oldentities);
202                 for (i = oldmaxentities;i < cl_max_entities;i++)
203                 {
204                         cl_entities[i].state_baseline = defaultstate;
205                         cl_entities[i].state_previous = defaultstate;
206                         cl_entities[i].state_current = defaultstate;
207                 }
208         }
209 }
210
211 /*
212 =====================
213 CL_Disconnect
214
215 Sends a disconnect message to the server
216 This is also called on Host_Error, so it shouldn't cause any errors
217 =====================
218 */
219 void CL_Disconnect(void)
220 {
221         if (cls.state == ca_dedicated)
222                 return;
223
224         Con_DPrintf("CL_Disconnect\n");
225
226 // stop sounds (especially looping!)
227         S_StopAllSounds ();
228
229         // clear contents blends
230         cl.cshifts[0].percent = 0;
231         cl.cshifts[1].percent = 0;
232         cl.cshifts[2].percent = 0;
233         cl.cshifts[3].percent = 0;
234
235         cl.worldmodel = NULL;
236
237         if (cls.demoplayback)
238                 CL_StopPlayback();
239         else if (cls.netcon)
240         {
241                 if (cls.demorecording)
242                         CL_Stop_f();
243
244                 Con_DPrint("Sending clc_disconnect\n");
245                 SZ_Clear(&cls.message);
246                 MSG_WriteByte(&cls.message, clc_disconnect);
247                 NetConn_SendUnreliableMessage(cls.netcon, &cls.message);
248                 SZ_Clear(&cls.message);
249                 NetConn_Close(cls.netcon);
250                 cls.netcon = NULL;
251         }
252         cls.state = ca_disconnected;
253
254         cls.demoplayback = cls.timedemo = false;
255         cls.signon = 0;
256 }
257
258 void CL_Disconnect_f(void)
259 {
260         CL_Disconnect ();
261         if (sv.active)
262                 Host_ShutdownServer (false);
263 }
264
265
266
267
268 /*
269 =====================
270 CL_EstablishConnection
271
272 Host should be either "local" or a net address
273 =====================
274 */
275 void CL_EstablishConnection(const char *host)
276 {
277         if (cls.state == ca_dedicated)
278                 return;
279
280         // clear menu's connect error message
281         M_Update_Return_Reason("");
282         cls.demonum = -1;
283
284         // stop demo loop in case this fails
285         CL_Disconnect();
286         NetConn_ClientFrame();
287         NetConn_ServerFrame();
288
289         if (LHNETADDRESS_FromString(&cls.connect_address, host, 26000) && (cls.connect_mysocket = NetConn_ChooseClientSocketForAddress(&cls.connect_address)))
290         {
291                 cls.connect_trying = true;
292                 cls.connect_remainingtries = 3;
293                 cls.connect_nextsendtime = 0;
294                 M_Update_Return_Reason("Trying to connect...");
295                 if (sv.active)
296                 {
297                         NetConn_ClientFrame();
298                         NetConn_ServerFrame();
299                         NetConn_ClientFrame();
300                         NetConn_ServerFrame();
301                         NetConn_ClientFrame();
302                         NetConn_ServerFrame();
303                         NetConn_ClientFrame();
304                         NetConn_ServerFrame();
305                 }
306         }
307         else
308         {
309                 Con_Print("Unable to find a suitable network socket to connect to server.\n");
310                 M_Update_Return_Reason("No network");
311         }
312 }
313
314 /*
315 ==============
316 CL_PrintEntities_f
317 ==============
318 */
319 static void CL_PrintEntities_f(void)
320 {
321         entity_t *ent;
322         int i, j;
323         char name[32];
324
325         for (i = 0, ent = cl_entities;i < cl_num_entities;i++, ent++)
326         {
327                 if (!ent->state_current.active)
328                         continue;
329
330                 if (ent->render.model)
331                         strlcpy (name, ent->render.model->name, 25);
332                 else
333                         strcpy(name, "--no model--");
334                 for (j = strlen(name);j < 25;j++)
335                         name[j] = ' ';
336                 Con_Printf("%3i: %s:%04i (%5i %5i %5i) [%3i %3i %3i] %4.2f %5.3f\n", i, name, ent->render.frame, (int) ent->render.origin[0], (int) ent->render.origin[1], (int) ent->render.origin[2], (int) ent->render.angles[0] % 360, (int) ent->render.angles[1] % 360, (int) ent->render.angles[2] % 360, ent->render.scale, ent->render.alpha);
337         }
338 }
339
340 //static const vec3_t nomodelmins = {-16, -16, -16};
341 //static const vec3_t nomodelmaxs = {16, 16, 16};
342 void CL_BoundingBoxForEntity(entity_render_t *ent)
343 {
344         if (ent->model)
345         {
346                 //if (ent->angles[0] || ent->angles[2])
347                 if (ent->matrix.m[2][0] != 0 || ent->matrix.m[2][1] != 0)
348                 {
349                         // pitch or roll
350                         ent->mins[0] = ent->matrix.m[0][3] + ent->model->rotatedmins[0];
351                         ent->mins[1] = ent->matrix.m[1][3] + ent->model->rotatedmins[1];
352                         ent->mins[2] = ent->matrix.m[2][3] + ent->model->rotatedmins[2];
353                         ent->maxs[0] = ent->matrix.m[0][3] + ent->model->rotatedmaxs[0];
354                         ent->maxs[1] = ent->matrix.m[1][3] + ent->model->rotatedmaxs[1];
355                         ent->maxs[2] = ent->matrix.m[2][3] + ent->model->rotatedmaxs[2];
356                         //VectorAdd(ent->origin, ent->model->rotatedmins, ent->mins);
357                         //VectorAdd(ent->origin, ent->model->rotatedmaxs, ent->maxs);
358                 }
359                 //else if (ent->angles[1])
360                 else if (ent->matrix.m[0][1] != 0 || ent->matrix.m[1][0] != 0)
361                 {
362                         // yaw
363                         ent->mins[0] = ent->matrix.m[0][3] + ent->model->yawmins[0];
364                         ent->mins[1] = ent->matrix.m[1][3] + ent->model->yawmins[1];
365                         ent->mins[2] = ent->matrix.m[2][3] + ent->model->yawmins[2];
366                         ent->maxs[0] = ent->matrix.m[0][3] + ent->model->yawmaxs[0];
367                         ent->maxs[1] = ent->matrix.m[1][3] + ent->model->yawmaxs[1];
368                         ent->maxs[2] = ent->matrix.m[2][3] + ent->model->yawmaxs[2];
369                         //VectorAdd(ent->origin, ent->model->yawmins, ent->mins);
370                         //VectorAdd(ent->origin, ent->model->yawmaxs, ent->maxs);
371                 }
372                 else
373                 {
374                         ent->mins[0] = ent->matrix.m[0][3] + ent->model->normalmins[0];
375                         ent->mins[1] = ent->matrix.m[1][3] + ent->model->normalmins[1];
376                         ent->mins[2] = ent->matrix.m[2][3] + ent->model->normalmins[2];
377                         ent->maxs[0] = ent->matrix.m[0][3] + ent->model->normalmaxs[0];
378                         ent->maxs[1] = ent->matrix.m[1][3] + ent->model->normalmaxs[1];
379                         ent->maxs[2] = ent->matrix.m[2][3] + ent->model->normalmaxs[2];
380                         //VectorAdd(ent->origin, ent->model->normalmins, ent->mins);
381                         //VectorAdd(ent->origin, ent->model->normalmaxs, ent->maxs);
382                 }
383         }
384         else
385         {
386                 ent->mins[0] = ent->matrix.m[0][3] - 16;
387                 ent->mins[1] = ent->matrix.m[1][3] - 16;
388                 ent->mins[2] = ent->matrix.m[2][3] - 16;
389                 ent->maxs[0] = ent->matrix.m[0][3] + 16;
390                 ent->maxs[1] = ent->matrix.m[1][3] + 16;
391                 ent->maxs[2] = ent->matrix.m[2][3] + 16;
392                 //VectorAdd(ent->origin, nomodelmins, ent->mins);
393                 //VectorAdd(ent->origin, nomodelmaxs, ent->maxs);
394         }
395 }
396
397 /*
398 ===============
399 CL_LerpPoint
400
401 Determines the fraction between the last two messages that the objects
402 should be put at.
403 ===============
404 */
405 static float CL_LerpPoint(void)
406 {
407         float f;
408
409         // dropped packet, or start of demo
410         if (cl.mtime[1] < cl.mtime[0] - 0.1)
411                 cl.mtime[1] = cl.mtime[0] - 0.1;
412
413         cl.time = bound(cl.mtime[1], cl.time, cl.mtime[0]);
414
415         // LordHavoc: lerp in listen games as the server is being capped below the client (usually)
416         f = cl.mtime[0] - cl.mtime[1];
417         if (!f || cl_nolerp.integer || cls.timedemo || cl.islocalgame)
418         {
419                 cl.time = cl.mtime[0];
420                 return 1;
421         }
422
423         f = (cl.time - cl.mtime[1]) / f;
424         return bound(0, f, 1);
425 }
426
427 void CL_ClearTempEntities (void)
428 {
429         cl_num_temp_entities = 0;
430 }
431
432 entity_t *CL_NewTempEntity(void)
433 {
434         entity_t *ent;
435
436         if (r_refdef.numentities >= r_refdef.maxentities)
437                 return NULL;
438         if (cl_num_temp_entities >= cl_max_temp_entities)
439                 return NULL;
440         ent = &cl_temp_entities[cl_num_temp_entities++];
441         memset (ent, 0, sizeof(*ent));
442         r_refdef.entities[r_refdef.numentities++] = &ent->render;
443
444         ent->render.colormap = -1; // no special coloring
445         ent->render.scale = 1;
446         ent->render.alpha = 1;
447         VectorSet(ent->render.colormod, 1, 1, 1);
448         return ent;
449 }
450
451 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate)
452 {
453         int i;
454         cl_effect_t *e;
455         if (!modelindex) // sanity check
456                 return;
457         for (i = 0, e = cl_effects;i < cl_max_effects;i++, e++)
458         {
459                 if (e->active)
460                         continue;
461                 e->active = true;
462                 VectorCopy(org, e->origin);
463                 e->modelindex = modelindex;
464                 e->starttime = cl.time;
465                 e->startframe = startframe;
466                 e->endframe = startframe + framecount;
467                 e->framerate = framerate;
468
469                 e->frame = 0;
470                 e->frame1time = cl.time;
471                 e->frame2time = cl.time;
472                 break;
473         }
474 }
475
476 void CL_AllocDlight(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)
477 {
478         int i;
479         dlight_t *dl;
480
481         /*
482 // first look for an exact key match
483         if (ent)
484         {
485                 dl = cl_dlights;
486                 for (i = 0;i < MAX_DLIGHTS;i++, dl++)
487                         if (dl->ent == ent)
488                                 goto dlightsetup;
489         }
490         */
491
492 // then look for anything else
493         dl = cl_dlights;
494         for (i = 0;i < MAX_DLIGHTS;i++, dl++)
495                 if (!dl->radius)
496                         goto dlightsetup;
497
498         // unable to find one
499         return;
500
501 dlightsetup:
502         //Con_Printf("dlight %i : %f %f %f : %f %f %f\n", i, org[0], org[1], org[2], red * radius, green * radius, blue * radius);
503         memset (dl, 0, sizeof(*dl));
504         dl->matrix = *matrix;
505         dl->ent = ent;
506         dl->origin[0] = dl->matrix.m[0][3];
507         dl->origin[1] = dl->matrix.m[1][3];
508         dl->origin[2] = dl->matrix.m[2][3];
509         CL_FindNonSolidLocation(dl->origin, dl->origin, 6);
510         dl->matrix.m[0][3] = dl->origin[0];
511         dl->matrix.m[1][3] = dl->origin[1];
512         dl->matrix.m[2][3] = dl->origin[2];
513         dl->radius = radius;
514         dl->color[0] = red;
515         dl->color[1] = green;
516         dl->color[2] = blue;
517         dl->decay = decay;
518         if (lifetime)
519                 dl->die = cl.time + lifetime;
520         else
521                 dl->die = 0;
522         dl->cubemapnum = cubemapnum;
523         dl->style = style;
524         dl->shadow = shadowenable;
525         dl->corona = corona;
526         dl->flags = flags;
527         dl->coronasizescale = coronasizescale;
528         dl->ambientscale = ambientscale;
529         dl->diffusescale = diffusescale;
530         dl->specularscale = specularscale;
531 }
532
533 void CL_DecayLights(void)
534 {
535         int i;
536         dlight_t *dl;
537         float time;
538
539         time = cl.time - cl.oldtime;
540         for (i = 0, dl = cl_dlights;i < MAX_DLIGHTS;i++, dl++)
541                 if (dl->radius)
542                         dl->radius = (cl.time < dl->die) ? max(0, dl->radius - time * dl->decay) : 0;
543 }
544
545 #define MAXVIEWMODELS 32
546 entity_t *viewmodels[MAXVIEWMODELS];
547 int numviewmodels;
548
549 matrix4x4_t viewmodelmatrix;
550
551 static int entitylinkframenumber;
552
553 static const vec3_t muzzleflashorigin = {18, 0, 0};
554
555 extern void V_DriftPitch(void);
556 extern void V_FadeViewFlashs(void);
557 extern void V_CalcViewBlend(void);
558
559 extern void V_CalcRefdef(void);
560 // note this is a recursive function, but it can never get in a runaway loop (because of the delayedlink flags)
561 void CL_LinkNetworkEntity(entity_t *e)
562 {
563         matrix4x4_t *matrix, blendmatrix, tempmatrix, matrix2;
564         //matrix4x4_t dlightmatrix;
565         int j, k, l, trailtype, temp;
566         float origin[3], angles[3], delta[3], lerp, dlightcolor[3], dlightradius, mins[3], maxs[3], v2[3], d;
567         entity_t *t;
568         model_t *model;
569         trace_t trace;
570         //entity_persistent_t *p = &e->persistent;
571         //entity_render_t *r = &e->render;
572         if (e->persistent.linkframe != entitylinkframenumber)
573         {
574                 e->persistent.linkframe = entitylinkframenumber;
575                 // skip inactive entities and world
576                 if (!e->state_current.active || e == cl_entities)
577                         return;
578                 e->render.alpha = e->state_current.alpha * (1.0f / 255.0f); // FIXME: interpolate?
579                 e->render.scale = e->state_current.scale * (1.0f / 16.0f); // FIXME: interpolate?
580                 e->render.flags = e->state_current.flags;
581                 e->render.effects = e->state_current.effects;
582                 if (e->state_current.flags & RENDER_COLORMAPPED)
583                         e->render.colormap = e->state_current.colormap;
584                 else if (cl.scores != NULL && e->state_current.colormap)
585                         e->render.colormap = cl.scores[e->state_current.colormap - 1].colors; // color it
586                 else
587                         e->render.colormap = -1; // no special coloring
588                 e->render.skinnum = e->state_current.skin;
589                 VectorScale(e->state_current.colormod, (1.0f / 32.0f), e->render.colormod);
590                 if (e->render.flags & RENDER_VIEWMODEL)
591                 {
592                         if (!r_drawviewmodel.integer || chase_active.integer || envmap)
593                                 return;
594                         if (cl.viewentity)
595                                 CL_LinkNetworkEntity(cl_entities + cl.viewentity);
596                         matrix = &viewmodelmatrix;
597                         if (e == &cl.viewent && cl_entities[cl.viewentity].state_current.active)
598                         {
599                                 e->state_current.alpha = cl_entities[cl.viewentity].state_current.alpha;
600                                 e->state_current.effects = EF_NOSHADOW | (cl_entities[cl.viewentity].state_current.effects & (EF_ADDITIVE | EF_REFLECTIVE | EF_FULLBRIGHT | EF_NODEPTHTEST));
601                         }
602                 }
603                 else
604                 {
605                         // if the tag entity is currently impossible, skip it
606                         if (e->state_current.tagentity >= cl_num_entities)
607                                 return;
608                         t = cl_entities + e->state_current.tagentity;
609                         // if the tag entity is inactive, skip it
610                         if (!t->state_current.active)
611                                 return;
612                         // note: this can link to world
613                         CL_LinkNetworkEntity(t);
614                         // make relative to the entity
615                         matrix = &t->render.matrix;
616                         // some properties of the tag entity carry over
617                         e->render.flags |= t->render.flags & RENDER_EXTERIORMODEL;
618                         // if a valid tagindex is used, make it relative to that tag instead
619                         // FIXME: use a model function to get tag info (need to handle skeletal)
620                         if (e->state_current.tagentity && e->state_current.tagindex >= 1 && (model = t->render.model))
621                         {
622                                 // blend the matrices
623                                 memset(&blendmatrix, 0, sizeof(blendmatrix));
624                                 for (j = 0;j < 4 && t->render.frameblend[j].lerp > 0;j++)
625                                 {
626                                         matrix4x4_t tagmatrix;
627                                         Mod_Alias_GetTagMatrix(model, t->render.frameblend[j].frame, e->state_current.tagindex - 1, &tagmatrix);
628                                         d = t->render.frameblend[j].lerp;
629                                         for (l = 0;l < 4;l++)
630                                                 for (k = 0;k < 4;k++)
631                                                         blendmatrix.m[l][k] += d * tagmatrix.m[l][k];
632                                 }
633                                 // concat the tag matrices onto the entity matrix
634                                 Matrix4x4_Concat(&tempmatrix, &t->render.matrix, &blendmatrix);
635                                 // use the constructed tag matrix
636                                 matrix = &tempmatrix;
637                         }
638                 }
639
640                 // movement lerp
641                 // if it's the player entity, update according to client movement
642                 if (e == cl_entities + cl.playerentity && cl.movement)
643                 {
644                         lerp = (cl.time - cl.mtime[0]) / (cl.mtime[0] - cl.mtime[1]);
645                         lerp = bound(0, lerp, 1);
646                         VectorLerp(cl.movement_oldorigin, lerp, cl.movement_origin, origin);
647                         VectorSet(angles, 0, cl.viewangles[1], 0);
648                 }
649                 else if (e->persistent.lerpdeltatime > 0 && (lerp = (cl.time - e->persistent.lerpstarttime) / e->persistent.lerpdeltatime) < 1)
650                 {
651                         // interpolate the origin and angles
652                         VectorLerp(e->persistent.oldorigin, lerp, e->persistent.neworigin, origin);
653                         VectorSubtract(e->persistent.newangles, e->persistent.oldangles, delta);
654                         if (delta[0] < -180) delta[0] += 360;else if (delta[0] >= 180) delta[0] -= 360;
655                         if (delta[1] < -180) delta[1] += 360;else if (delta[1] >= 180) delta[1] -= 360;
656                         if (delta[2] < -180) delta[2] += 360;else if (delta[2] >= 180) delta[2] -= 360;
657                         VectorMA(e->persistent.oldangles, lerp, delta, angles);
658                 }
659                 else
660                 {
661                         // no interpolation
662                         VectorCopy(e->persistent.neworigin, origin);
663                         VectorCopy(e->persistent.newangles, angles);
664                 }
665
666                 // model setup and some modelflags
667                 e->render.model = cl.model_precache[e->state_current.modelindex];
668                 if (e->render.model)
669                 {
670                         Mod_CheckLoaded(e->render.model);
671                         // if model is alias or this is a tenebrae-like dlight, reverse pitch direction
672                         if (e->render.model->type == mod_alias || (e->state_current.lightpflags & PFLAGS_FULLDYNAMIC))
673                                 angles[0] = -angles[0];
674                         if ((e->render.model->flags & EF_ROTATE) && (!e->state_current.tagentity && !(e->render.flags & RENDER_VIEWMODEL)))
675                         {
676                                 angles[1] = ANGLEMOD(100*cl.time);
677                                 if (cl_itembobheight.value)
678                                         origin[2] += (cos(cl.time * cl_itembobspeed.value * (2.0 * M_PI)) + 1.0) * 0.5 * cl_itembobheight.value;
679                         }
680                         // transfer certain model flags to effects
681                         e->render.effects |= e->render.model->flags2 & (EF_FULLBRIGHT | EF_ADDITIVE);
682                         if (cl_prydoncursor.integer && (e->render.effects & EF_SELECTABLE) && cl.cmd.cursor_entitynumber == e->state_current.number)
683                                 VectorScale(e->render.colormod, 2, e->render.colormod);
684                 }
685
686                 // animation lerp
687                 if (e->render.frame2 == e->state_current.frame)
688                 {
689                         // update frame lerp fraction
690                         e->render.framelerp = 1;
691                         if (e->render.frame2time > e->render.frame1time)
692                         {
693                                 // make sure frame lerp won't last longer than 100ms
694                                 // (this mainly helps with models that use framegroups and
695                                 // switch between them infrequently)
696                                 e->render.framelerp = (cl.time - e->render.frame2time) / min(e->render.frame2time - e->render.frame1time, 0.1);
697                                 e->render.framelerp = bound(0, e->render.framelerp, 1);
698                         }
699                 }
700                 else
701                 {
702                         // begin a new frame lerp
703                         e->render.frame1 = e->render.frame2;
704                         e->render.frame1time = e->render.frame2time;
705                         e->render.frame = e->render.frame2 = e->state_current.frame;
706                         e->render.frame2time = cl.time;
707                         e->render.framelerp = 0;
708                 }
709                 R_LerpAnimation(&e->render);
710
711                 // set up the render matrix
712                 // FIXME: e->render.scale should go away
713                 Matrix4x4_CreateFromQuakeEntity(&matrix2, origin[0], origin[1], origin[2], angles[0], angles[1], angles[2], e->render.scale);
714                 // concat the matrices to make the entity relative to its tag
715                 Matrix4x4_Concat(&e->render.matrix, matrix, &matrix2);
716                 // make the other useful stuff
717                 Matrix4x4_Invert_Simple(&e->render.inversematrix, &e->render.matrix);
718                 CL_BoundingBoxForEntity(&e->render);
719
720                 // handle effects now that we know where this entity is in the world...
721                 origin[0] = e->render.matrix.m[0][3];
722                 origin[1] = e->render.matrix.m[1][3];
723                 origin[2] = e->render.matrix.m[2][3];
724                 trailtype = -1;
725                 dlightradius = 0;
726                 dlightcolor[0] = 0;
727                 dlightcolor[1] = 0;
728                 dlightcolor[2] = 0;
729                 // LordHavoc: if the entity has no effects, don't check each
730                 if (e->render.effects)
731                 {
732                         if (e->render.effects & EF_BRIGHTFIELD)
733                         {
734                                 if (gamemode == GAME_NEXUIZ)
735                                 {
736                                         dlightradius = max(dlightradius, 200);
737                                         dlightcolor[0] += 0.75f;
738                                         dlightcolor[1] += 1.50f;
739                                         dlightcolor[2] += 3.00f;
740                                         trailtype = 8;
741                                 }
742                                 else
743                                         CL_EntityParticles(e);
744                         }
745                         if (e->render.effects & EF_MUZZLEFLASH)
746                                 e->persistent.muzzleflash = 1.0f;
747                         if (e->render.effects & EF_DIMLIGHT)
748                         {
749                                 dlightradius = max(dlightradius, 200);
750                                 dlightcolor[0] += 1.50f;
751                                 dlightcolor[1] += 1.50f;
752                                 dlightcolor[2] += 1.50f;
753                         }
754                         if (e->render.effects & EF_BRIGHTLIGHT)
755                         {
756                                 dlightradius = max(dlightradius, 400);
757                                 dlightcolor[0] += 3.00f;
758                                 dlightcolor[1] += 3.00f;
759                                 dlightcolor[2] += 3.00f;
760                         }
761                         // LordHavoc: more effects
762                         if (e->render.effects & EF_RED) // red
763                         {
764                                 dlightradius = max(dlightradius, 200);
765                                 dlightcolor[0] += 1.50f;
766                                 dlightcolor[1] += 0.15f;
767                                 dlightcolor[2] += 0.15f;
768                         }
769                         if (e->render.effects & EF_BLUE) // blue
770                         {
771                                 dlightradius = max(dlightradius, 200);
772                                 dlightcolor[0] += 0.15f;
773                                 dlightcolor[1] += 0.15f;
774                                 dlightcolor[2] += 1.50f;
775                         }
776                         if (e->render.effects & EF_FLAME)
777                         {
778                                 mins[0] = origin[0] - 16.0f;
779                                 mins[1] = origin[1] - 16.0f;
780                                 mins[2] = origin[2] - 16.0f;
781                                 maxs[0] = origin[0] + 16.0f;
782                                 maxs[1] = origin[1] + 16.0f;
783                                 maxs[2] = origin[2] + 16.0f;
784                                 // how many flames to make
785                                 temp = (int) (cl.time * 300) - (int) (cl.oldtime * 300);
786                                 CL_FlameCube(mins, maxs, temp);
787                                 d = lhrandom(0.75f, 1);
788                                 dlightradius = max(dlightradius, 200);
789                                 dlightcolor[0] += d * 2.0f;
790                                 dlightcolor[1] += d * 1.5f;
791                                 dlightcolor[2] += d * 0.5f;
792                         }
793                         if (e->render.effects & EF_STARDUST)
794                         {
795                                 mins[0] = origin[0] - 16.0f;
796                                 mins[1] = origin[1] - 16.0f;
797                                 mins[2] = origin[2] - 16.0f;
798                                 maxs[0] = origin[0] + 16.0f;
799                                 maxs[1] = origin[1] + 16.0f;
800                                 maxs[2] = origin[2] + 16.0f;
801                                 // how many particles to make
802                                 temp = (int) (cl.time * 200) - (int) (cl.oldtime * 200);
803                                 CL_Stardust(mins, maxs, temp);
804                                 dlightradius = max(dlightradius, 200);
805                                 dlightcolor[0] += 1.0f;
806                                 dlightcolor[1] += 0.7f;
807                                 dlightcolor[2] += 0.3f;
808                         }
809                 }
810                 // muzzleflash fades over time, and is offset a bit
811                 if (e->persistent.muzzleflash > 0)
812                 {
813                         Matrix4x4_Transform(&e->render.matrix, muzzleflashorigin, v2);
814                         trace = CL_TraceBox(origin, vec3_origin, vec3_origin, v2, true, NULL, SUPERCONTENTS_SOLID | SUPERCONTENTS_SKY, false);
815                         tempmatrix = e->render.matrix;
816                         tempmatrix.m[0][3] = trace.endpos[0];
817                         tempmatrix.m[1][3] = trace.endpos[1];
818                         tempmatrix.m[2][3] = trace.endpos[2];
819                         CL_AllocDlight(NULL, &tempmatrix, 100, e->persistent.muzzleflash, e->persistent.muzzleflash, e->persistent.muzzleflash, 0, 0, 0, -1, true, 0, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
820                         e->persistent.muzzleflash -= cl.frametime * 10;
821                 }
822                 // LordHavoc: if the model has no flags, don't check each
823                 if (e->render.model && e->render.model->flags && (!e->state_current.tagentity && !(e->render.flags & RENDER_VIEWMODEL)))
824                 {
825                         if (e->render.model->flags & EF_GIB)
826                                 trailtype = 2;
827                         else if (e->render.model->flags & EF_ZOMGIB)
828                                 trailtype = 4;
829                         else if (e->render.model->flags & EF_TRACER)
830                         {
831                                 trailtype = 3;
832                                 dlightradius = max(dlightradius, 100);
833                                 dlightcolor[0] += 0.25f;
834                                 dlightcolor[1] += 1.00f;
835                                 dlightcolor[2] += 0.25f;
836                         }
837                         else if (e->render.model->flags & EF_TRACER2)
838                         {
839                                 trailtype = 5;
840                                 dlightradius = max(dlightradius, 100);
841                                 dlightcolor[0] += 1.00f;
842                                 dlightcolor[1] += 0.60f;
843                                 dlightcolor[2] += 0.20f;
844                         }
845                         else if (e->render.model->flags & EF_ROCKET)
846                         {
847                                 trailtype = 0;
848                                 dlightradius = max(dlightradius, 200);
849                                 dlightcolor[0] += 3.00f;
850                                 dlightcolor[1] += 1.50f;
851                                 dlightcolor[2] += 0.50f;
852                         }
853                         else if (e->render.model->flags & EF_GRENADE)
854                         {
855                                 // LordHavoc: e->render.alpha == -1 is for Nehahra dem compatibility (cigar smoke)
856                                 trailtype = e->render.alpha == -1 ? 7 : 1;
857                         }
858                         else if (e->render.model->flags & EF_TRACER3)
859                         {
860                                 trailtype = 6;
861                                 if (gamemode == GAME_PRYDON)
862                                 {
863                                         dlightradius = max(dlightradius, 100);
864                                         dlightcolor[0] += 0.30f;
865                                         dlightcolor[1] += 0.60f;
866                                         dlightcolor[2] += 1.20f;
867                                 }
868                                 else
869                                 {
870                                         dlightradius = max(dlightradius, 200);
871                                         dlightcolor[0] += 1.20f;
872                                         dlightcolor[1] += 0.50f;
873                                         dlightcolor[2] += 1.00f;
874                                 }
875                         }
876                 }
877                 // LordHavoc: customizable glow
878                 if (e->state_current.glowsize)
879                 {
880                         // * 4 for the expansion from 0-255 to 0-1023 range,
881                         // / 255 to scale down byte colors
882                         dlightradius = max(dlightradius, e->state_current.glowsize * 4);
883                         VectorMA(dlightcolor, (1.0f / 255.0f), (qbyte *)&palette_complete[e->state_current.glowcolor], dlightcolor);
884                 }
885                 // make the glow dlight
886                 if (dlightradius > 0 && (dlightcolor[0] || dlightcolor[1] || dlightcolor[2]) && !(e->render.flags & RENDER_VIEWMODEL))
887                 {
888                         //dlightmatrix = e->render.matrix;
889                         // hack to make glowing player light shine on their gun
890                         //if (e->state_current.number == cl.viewentity/* && !chase_active.integer*/)
891                         //      dlightmatrix.m[2][3] += 30;
892                         CL_AllocDlight(&e->render, &e->render.matrix, dlightradius, dlightcolor[0], dlightcolor[1], dlightcolor[2], 0, 0, 0, -1, true, 1, 0.25, 0.25, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
893                 }
894                 // custom rtlight
895                 if (e->state_current.lightpflags & PFLAGS_FULLDYNAMIC)
896                 {
897                         float light[4];
898                         VectorScale(e->state_current.light, (1.0f / 256.0f), light);
899                         light[3] = e->state_current.light[3];
900                         if (light[0] == 0 && light[1] == 0 && light[2] == 0)
901                                 VectorSet(light, 1, 1, 1);
902                         if (light[3] == 0)
903                                 light[3] = 350;
904                         // FIXME: add ambient/diffuse/specular scales as an extension ontop of TENEBRAE_GFX_DLIGHTS?
905                         CL_AllocDlight(&e->render, &e->render.matrix, light[3], light[0], light[1], light[2], 0, 0, e->state_current.skin, e->state_current.lightstyle, !(e->state_current.lightpflags & PFLAGS_NOSHADOW), (e->state_current.lightpflags & PFLAGS_CORONA) != 0, 0.25, 0, 1, 1, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
906                 }
907                 // do trails
908                 if (e->render.flags & RENDER_GLOWTRAIL)
909                         trailtype = 9;
910                 if (trailtype >= 0)
911                         CL_RocketTrail(e->persistent.trail_origin, origin, trailtype, e->state_current.glowcolor, e);
912                 VectorCopy(origin, e->persistent.trail_origin);
913                 // tenebrae's sprites are all additive mode (weird)
914                 if (gamemode == GAME_TENEBRAE && e->render.model && e->render.model->type == mod_sprite)
915                         e->render.effects |= EF_ADDITIVE;
916                 // player model is only shown with chase_active on
917                 if (e->state_current.number == cl.viewentity)
918                         e->render.flags |= RENDER_EXTERIORMODEL;
919                 // transparent stuff can't be lit during the opaque stage
920                 if (e->render.effects & (EF_ADDITIVE | EF_NODEPTHTEST) || e->render.alpha < 1)
921                         e->render.flags |= RENDER_TRANSPARENT;
922                 // either fullbright or lit
923                 if (!(e->render.effects & EF_FULLBRIGHT) && !r_fullbright.integer)
924                         e->render.flags |= RENDER_LIGHT;
925                 // hide player shadow during intermission or nehahra movie
926                 if (!(e->render.effects & EF_NOSHADOW)
927                  && !(e->render.flags & (RENDER_VIEWMODEL | RENDER_TRANSPARENT))
928                  && (!(e->render.flags & RENDER_EXTERIORMODEL) || (!cl.intermission && cl.protocol != PROTOCOL_NEHAHRAMOVIE && !cl_noplayershadow.integer)))
929                         e->render.flags |= RENDER_SHADOW;
930                 // as soon as player is known we can call V_CalcRefDef
931                 if (e->state_current.number == cl.viewentity)
932                         V_CalcRefdef();
933                 if (e->render.model && e->render.model->name[0] == '*' && e->render.model->TraceBox)
934                         cl_brushmodel_entities[cl_num_brushmodel_entities++] = e->state_current.number;
935                 // don't show entities with no modelindex (note: this still shows
936                 // entities which have a modelindex that resolved to a NULL model)
937                 if (e->render.model && !(e->render.effects & EF_NODRAW) && r_refdef.numentities < r_refdef.maxentities)
938                         r_refdef.entities[r_refdef.numentities++] = &e->render;
939                 //if (cl.viewentity && e->state_current.number == cl.viewentity)
940                 //      Matrix4x4_Print(&e->render.matrix);
941         }
942 }
943
944 void CL_RelinkWorld(void)
945 {
946         entity_t *ent = &cl_entities[0];
947         cl_brushmodel_entities[cl_num_brushmodel_entities++] = 0;
948         // FIXME: this should be done at load
949         Matrix4x4_CreateIdentity(&ent->render.matrix);
950         Matrix4x4_CreateIdentity(&ent->render.inversematrix);
951         R_LerpAnimation(&ent->render);
952         CL_BoundingBoxForEntity(&ent->render);
953         ent->render.flags = RENDER_SHADOW;
954         if (!r_fullbright.integer)
955                 ent->render.flags |= RENDER_LIGHT;
956         VectorSet(ent->render.colormod, 1, 1, 1);
957         r_refdef.worldentity = &ent->render;
958         r_refdef.worldmodel = cl.worldmodel;
959 }
960
961 static void CL_RelinkStaticEntities(void)
962 {
963         int i;
964         entity_t *e;
965         for (i = 0, e = cl_static_entities;i < cl_num_static_entities && r_refdef.numentities < r_refdef.maxentities;i++, e++)
966         {
967                 Mod_CheckLoaded(e->render.model);
968                 e->render.flags = 0;
969                 // transparent stuff can't be lit during the opaque stage
970                 if (e->render.effects & (EF_ADDITIVE | EF_NODEPTHTEST) || e->render.alpha < 1)
971                         e->render.flags |= RENDER_TRANSPARENT;
972                 // either fullbright or lit
973                 if (!(e->render.effects & EF_FULLBRIGHT) && !r_fullbright.integer)
974                         e->render.flags |= RENDER_LIGHT;
975                 // hide player shadow during intermission or nehahra movie
976                 if (!(e->render.effects & EF_NOSHADOW) && !(e->render.flags & RENDER_TRANSPARENT))
977                         e->render.flags |= RENDER_SHADOW;
978                 VectorSet(e->render.colormod, 1, 1, 1);
979                 R_LerpAnimation(&e->render);
980                 r_refdef.entities[r_refdef.numentities++] = &e->render;
981         }
982 }
983
984 /*
985 ===============
986 CL_RelinkEntities
987 ===============
988 */
989 static void CL_RelinkNetworkEntities(void)
990 {
991         entity_t *ent;
992         int i;
993
994         ent = &cl.viewent;
995         ent->state_previous = ent->state_current;
996         ent->state_current = defaultstate;
997         ent->state_current.time = cl.time;
998         ent->state_current.number = -1;
999         ent->state_current.active = true;
1000         ent->state_current.modelindex = cl.stats[STAT_WEAPON];
1001         ent->state_current.frame = cl.stats[STAT_WEAPONFRAME];
1002         ent->state_current.flags = RENDER_VIEWMODEL;
1003         if (cl.stats[STAT_HEALTH] <= 0 || cl.intermission)
1004                 ent->state_current.modelindex = 0;
1005         else if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
1006         {
1007                 if (gamemode == GAME_TRANSFUSION)
1008                         ent->state_current.alpha = 128;
1009                 else
1010                         ent->state_current.modelindex = 0;
1011         }
1012
1013         // reset animation interpolation on weaponmodel if model changed
1014         if (ent->state_previous.modelindex != ent->state_current.modelindex)
1015         {
1016                 ent->render.frame = ent->render.frame1 = ent->render.frame2 = ent->state_current.frame;
1017                 ent->render.frame1time = ent->render.frame2time = cl.time;
1018                 ent->render.framelerp = 1;
1019         }
1020
1021         // start on the entity after the world
1022         entitylinkframenumber++;
1023         for (i = 1;i < cl_num_entities;i++)
1024         {
1025                 if (cl_entities_active[i])
1026                 {
1027                         ent = cl_entities + i;
1028                         if (ent->state_current.active)
1029                                 CL_LinkNetworkEntity(ent);
1030                         else
1031                                 cl_entities_active[i] = false;
1032                 }
1033         }
1034         CL_LinkNetworkEntity(&cl.viewent);
1035 }
1036
1037 static void CL_RelinkEffects(void)
1038 {
1039         int i, intframe;
1040         cl_effect_t *e;
1041         entity_t *ent;
1042         float frame;
1043
1044         for (i = 0, e = cl_effects;i < cl_max_effects;i++, e++)
1045         {
1046                 if (e->active)
1047                 {
1048                         frame = (cl.time - e->starttime) * e->framerate + e->startframe;
1049                         intframe = frame;
1050                         if (intframe < 0 || intframe >= e->endframe)
1051                         {
1052                                 memset(e, 0, sizeof(*e));
1053                                 continue;
1054                         }
1055
1056                         if (intframe != e->frame)
1057                         {
1058                                 e->frame = intframe;
1059                                 e->frame1time = e->frame2time;
1060                                 e->frame2time = cl.time;
1061                         }
1062
1063                         // if we're drawing effects, get a new temp entity
1064                         // (NewTempEntity adds it to the render entities list for us)
1065                         if (r_draweffects.integer && (ent = CL_NewTempEntity()))
1066                         {
1067                                 // interpolation stuff
1068                                 ent->render.frame1 = intframe;
1069                                 ent->render.frame2 = intframe + 1;
1070                                 if (ent->render.frame2 >= e->endframe)
1071                                         ent->render.frame2 = -1; // disappear
1072                                 ent->render.framelerp = frame - intframe;
1073                                 ent->render.frame1time = e->frame1time;
1074                                 ent->render.frame2time = e->frame2time;
1075
1076                                 // normal stuff
1077                                 ent->render.model = cl.model_precache[e->modelindex];
1078                                 ent->render.frame = ent->render.frame2;
1079                                 ent->render.colormap = -1; // no special coloring
1080                                 ent->render.alpha = 1;
1081                                 VectorSet(ent->render.colormod, 1, 1, 1);
1082
1083                                 Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, e->origin[0], e->origin[1], e->origin[2], 0, 0, 0, 1);
1084                                 Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
1085                                 R_LerpAnimation(&ent->render);
1086                                 CL_BoundingBoxForEntity(&ent->render);
1087                         }
1088                 }
1089         }
1090 }
1091
1092 void CL_RelinkBeams(void)
1093 {
1094         int i;
1095         beam_t *b;
1096         vec3_t dist, org;
1097         float d;
1098         entity_t *ent;
1099         float yaw, pitch;
1100         float forward;
1101         matrix4x4_t tempmatrix;
1102
1103         for (i = 0, b = cl_beams;i < cl_max_beams;i++, b++)
1104         {
1105                 if (!b->model || b->endtime < cl.time)
1106                         continue;
1107
1108                 // if coming from the player, update the start position
1109                 //if (b->entity == cl.viewentity)
1110                 //      VectorCopy (cl_entities[cl.viewentity].render.origin, b->start);
1111                 if (cl_beams_relative.integer && b->entity == cl.viewentity && b->entity && cl_entities[b->entity].state_current.active && b->relativestartvalid)
1112                 {
1113                         entity_state_t *p = &cl_entities[b->entity].state_previous;
1114                         //entity_state_t *c = &cl_entities[b->entity].state_current;
1115                         entity_render_t *r = &cl_entities[b->entity].render;
1116                         matrix4x4_t matrix, imatrix;
1117                         if (b->relativestartvalid == 2)
1118                         {
1119                                 // not really valid yet, we need to get the orientation now
1120                                 // (ParseBeam flagged this because it is received before
1121                                 //  entities are received, by now they have been received)
1122                                 // note: because players create lightning in their think
1123                                 // function (which occurs before movement), they actually
1124                                 // have some lag in it's location, so compare to the
1125                                 // previous player state, not the latest
1126                                 if (b->entity == cl.viewentity)
1127                                         Matrix4x4_CreateFromQuakeEntity(&matrix, p->origin[0], p->origin[1], p->origin[2] + 16, cl.viewangles[0], cl.viewangles[1], cl.viewangles[2], 1);
1128                                 else
1129                                         Matrix4x4_CreateFromQuakeEntity(&matrix, p->origin[0], p->origin[1], p->origin[2] + 16, p->angles[0], p->angles[1], p->angles[2], 1);
1130                                 Matrix4x4_Invert_Simple(&imatrix, &matrix);
1131                                 Matrix4x4_Transform(&imatrix, b->start, b->relativestart);
1132                                 Matrix4x4_Transform(&imatrix, b->end, b->relativeend);
1133                                 b->relativestartvalid = 1;
1134                         }
1135                         else
1136                         {
1137                                 if (b->entity == cl.viewentity)
1138                                         Matrix4x4_CreateFromQuakeEntity(&matrix, r->origin[0], r->origin[1], r->origin[2] + 16, cl.viewangles[0], cl.viewangles[1], cl.viewangles[2], 1);
1139                                 else
1140                                         Matrix4x4_CreateFromQuakeEntity(&matrix, r->origin[0], r->origin[1], r->origin[2] + 16, r->angles[0], r->angles[1], r->angles[2], 1);
1141                                 Matrix4x4_Transform(&matrix, b->relativestart, b->start);
1142                                 Matrix4x4_Transform(&matrix, b->relativeend, b->end);
1143                         }
1144                 }
1145
1146                 if (b->lightning)
1147                 {
1148                         if (cl_beams_lightatend.integer)
1149                         {
1150                                 // FIXME: create a matrix from the beam start/end orientation
1151                                 Matrix4x4_CreateTranslate(&tempmatrix, b->end[0], b->end[1], b->end[2]);
1152                                 CL_AllocDlight (NULL, &tempmatrix, 200, 0.3, 0.7, 1, 0, 0, 0, -1, true, 1, 0.25, 1, 0, 0, LIGHTFLAG_NORMALMODE | LIGHTFLAG_REALTIMEMODE);
1153                         }
1154                         if (cl_beams_polygons.integer)
1155                                 continue;
1156                 }
1157
1158                 // calculate pitch and yaw
1159                 VectorSubtract (b->end, b->start, dist);
1160
1161                 if (dist[1] == 0 && dist[0] == 0)
1162                 {
1163                         yaw = 0;
1164                         if (dist[2] > 0)
1165                                 pitch = 90;
1166                         else
1167                                 pitch = 270;
1168                 }
1169                 else
1170                 {
1171                         yaw = (int) (atan2(dist[1], dist[0]) * 180 / M_PI);
1172                         if (yaw < 0)
1173                                 yaw += 360;
1174
1175                         forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]);
1176                         pitch = (int) (atan2(dist[2], forward) * 180 / M_PI);
1177                         if (pitch < 0)
1178                                 pitch += 360;
1179                 }
1180
1181                 // add new entities for the lightning
1182                 VectorCopy (b->start, org);
1183                 d = VectorNormalizeLength(dist);
1184                 while (d > 0)
1185                 {
1186                         ent = CL_NewTempEntity ();
1187                         if (!ent)
1188                                 return;
1189                         //VectorCopy (org, ent->render.origin);
1190                         ent->render.model = b->model;
1191                         //ent->render.effects = EF_FULLBRIGHT;
1192                         //ent->render.angles[0] = pitch;
1193                         //ent->render.angles[1] = yaw;
1194                         //ent->render.angles[2] = rand()%360;
1195                         Matrix4x4_CreateFromQuakeEntity(&ent->render.matrix, org[0], org[1], org[2], -pitch, yaw, lhrandom(0, 360), 1);
1196                         Matrix4x4_Invert_Simple(&ent->render.inversematrix, &ent->render.matrix);
1197                         R_LerpAnimation(&ent->render);
1198                         CL_BoundingBoxForEntity(&ent->render);
1199                         VectorMA(org, 30, dist, org);
1200                         d -= 30;
1201                 }
1202         }
1203 }
1204
1205 void CL_LerpPlayer(float frac)
1206 {
1207         int i;
1208         float d;
1209
1210         cl.viewzoom = cl.mviewzoom[1] + frac * (cl.mviewzoom[0] - cl.mviewzoom[1]);
1211         for (i = 0;i < 3;i++)
1212         {
1213                 cl.punchangle[i] = cl.mpunchangle[1][i] + frac * (cl.mpunchangle[0][i] - cl.mpunchangle[1][i]);
1214                 cl.punchvector[i] = cl.mpunchvector[1][i] + frac * (cl.mpunchvector[0][i] - cl.mpunchvector[1][i]);
1215                 cl.velocity[i] = cl.mvelocity[1][i] + frac * (cl.mvelocity[0][i] - cl.mvelocity[1][i]);
1216         }
1217
1218         if (cls.demoplayback)
1219         {
1220                 // interpolate the angles
1221                 for (i = 0;i < 3;i++)
1222                 {
1223                         d = cl.mviewangles[0][i] - cl.mviewangles[1][i];
1224                         if (d > 180)
1225                                 d -= 360;
1226                         else if (d < -180)
1227                                 d += 360;
1228                         cl.viewangles[i] = cl.mviewangles[1][i] + frac * d;
1229                 }
1230         }
1231 }
1232
1233 /*
1234 ===============
1235 CL_ReadFromServer
1236
1237 Read all incoming data from the server
1238 ===============
1239 */
1240 int CL_ReadFromServer(void)
1241 {
1242         CL_ReadDemoMessage();
1243
1244         r_refdef.time = cl.time;
1245         r_refdef.extraupdate = !r_speeds.integer;
1246         r_refdef.numentities = 0;
1247         cl_num_brushmodel_entities = 0;
1248
1249         if (cls.state == ca_connected && cls.signon == SIGNONS)
1250         {
1251                 // prepare for a new frame
1252                 CL_LerpPlayer(CL_LerpPoint());
1253                 CL_DecayLights();
1254                 CL_ClearTempEntities();
1255                 V_DriftPitch();
1256                 V_FadeViewFlashs();
1257
1258                 // relink network entities (note: this sets up the view!)
1259                 CL_RelinkNetworkEntities();
1260
1261                 // move particles
1262                 CL_MoveParticles();
1263                 R_MoveExplosions();
1264
1265                 // link stuff
1266                 CL_RelinkWorld();
1267                 CL_RelinkStaticEntities();
1268                 CL_RelinkBeams();
1269                 CL_RelinkEffects();
1270
1271                 // run cgame code (which can add more entities)
1272                 CL_CGVM_Frame();
1273
1274                 // update view blend
1275                 V_CalcViewBlend();
1276         }
1277
1278         return 0;
1279 }
1280
1281 /*
1282 =================
1283 CL_SendCmd
1284 =================
1285 */
1286 void CL_UpdatePrydonCursor(void);
1287 void CL_SendCmd(void)
1288 {
1289         if (cls.signon == SIGNONS)
1290                 CL_UpdatePrydonCursor();
1291
1292         if (cls.demoplayback)
1293         {
1294                 SZ_Clear(&cls.message);
1295                 return;
1296         }
1297
1298         // send the reliable message (forwarded commands) if there is one
1299         if (cls.message.cursize && NetConn_CanSendMessage(cls.netcon))
1300         {
1301                 if (developer.integer)
1302                 {
1303                         Con_Print("CL_SendCmd: sending reliable message:\n");
1304                         SZ_HexDumpToConsole(&cls.message);
1305                 }
1306                 if (NetConn_SendReliableMessage(cls.netcon, &cls.message) == -1)
1307                         Host_Error("CL_WriteToServer: lost server connection");
1308                 SZ_Clear(&cls.message);
1309         }
1310 }
1311
1312 // LordHavoc: pausedemo command
1313 static void CL_PauseDemo_f (void)
1314 {
1315         cls.demopaused = !cls.demopaused;
1316         if (cls.demopaused)
1317                 Con_Print("Demo paused\n");
1318         else
1319                 Con_Print("Demo unpaused\n");
1320 }
1321
1322 /*
1323 ======================
1324 CL_Fog_f
1325 ======================
1326 */
1327 static void CL_Fog_f (void)
1328 {
1329         if (Cmd_Argc () == 1)
1330         {
1331                 Con_Printf("\"fog\" is \"%f %f %f %f\"\n", fog_density, fog_red, fog_green, fog_blue);
1332                 return;
1333         }
1334         fog_density = atof(Cmd_Argv(1));
1335         fog_red = atof(Cmd_Argv(2));
1336         fog_green = atof(Cmd_Argv(3));
1337         fog_blue = atof(Cmd_Argv(4));
1338 }
1339
1340 /*
1341 ====================
1342 CL_TimeRefresh_f
1343
1344 For program optimization
1345 ====================
1346 */
1347 static void CL_TimeRefresh_f (void)
1348 {
1349         int i;
1350         float timestart, timedelta, oldangles[3];
1351
1352         r_refdef.extraupdate = false;
1353         VectorCopy(cl.viewangles, oldangles);
1354         VectorClear(cl.viewangles);
1355
1356         timestart = Sys_DoubleTime();
1357         for (i = 0;i < 128;i++)
1358         {
1359                 Matrix4x4_CreateFromQuakeEntity(&r_refdef.viewentitymatrix, r_vieworigin[0], r_vieworigin[1], r_vieworigin[2], 0, i / 128.0 * 360.0, 0, 1);
1360                 CL_UpdateScreen();
1361         }
1362         timedelta = Sys_DoubleTime() - timestart;
1363
1364         VectorCopy(oldangles, cl.viewangles);
1365         Con_Printf("%f seconds (%f fps)\n", timedelta, 128/timedelta);
1366 }
1367
1368 /*
1369 ===========
1370 CL_Shutdown
1371 ===========
1372 */
1373 void CL_Shutdown (void)
1374 {
1375         CL_CGVM_Shutdown();
1376         CL_Particles_Shutdown();
1377         CL_Parse_Shutdown();
1378
1379         Mem_FreePool (&cl_mempool);
1380 }
1381
1382 /*
1383 =================
1384 CL_Init
1385 =================
1386 */
1387 void CL_Init (void)
1388 {
1389         cl_mempool = Mem_AllocPool("client", 0, NULL);
1390
1391         memset(&r_refdef, 0, sizeof(r_refdef));
1392         // max entities sent to renderer per frame
1393         r_refdef.maxentities = MAX_EDICTS + 256 + 512;
1394         r_refdef.entities = Mem_Alloc(cl_mempool, sizeof(entity_render_t *) * r_refdef.maxentities);
1395         // 256k drawqueue buffer
1396         r_refdef.maxdrawqueuesize = 256 * 1024;
1397         r_refdef.drawqueue = Mem_Alloc(cl_mempool, r_refdef.maxdrawqueuesize);
1398
1399         cls.message.data = cls.message_buf;
1400         cls.message.maxsize = sizeof(cls.message_buf);
1401         cls.message.cursize = 0;
1402
1403         CL_InitInput ();
1404
1405 //
1406 // register our commands
1407 //
1408         Cvar_RegisterVariable (&cl_upspeed);
1409         Cvar_RegisterVariable (&cl_forwardspeed);
1410         Cvar_RegisterVariable (&cl_backspeed);
1411         Cvar_RegisterVariable (&cl_sidespeed);
1412         Cvar_RegisterVariable (&cl_movespeedkey);
1413         Cvar_RegisterVariable (&cl_yawspeed);
1414         Cvar_RegisterVariable (&cl_pitchspeed);
1415         Cvar_RegisterVariable (&cl_anglespeedkey);
1416         Cvar_RegisterVariable (&cl_shownet);
1417         Cvar_RegisterVariable (&cl_nolerp);
1418         Cvar_RegisterVariable (&lookspring);
1419         Cvar_RegisterVariable (&lookstrafe);
1420         Cvar_RegisterVariable (&sensitivity);
1421         Cvar_RegisterVariable (&freelook);
1422
1423         Cvar_RegisterVariable (&m_pitch);
1424         Cvar_RegisterVariable (&m_yaw);
1425         Cvar_RegisterVariable (&m_forward);
1426         Cvar_RegisterVariable (&m_side);
1427
1428         Cvar_RegisterVariable (&cl_itembobspeed);
1429         Cvar_RegisterVariable (&cl_itembobheight);
1430
1431         Cmd_AddCommand ("entities", CL_PrintEntities_f);
1432         Cmd_AddCommand ("disconnect", CL_Disconnect_f);
1433         Cmd_AddCommand ("record", CL_Record_f);
1434         Cmd_AddCommand ("stop", CL_Stop_f);
1435         Cmd_AddCommand ("playdemo", CL_PlayDemo_f);
1436         Cmd_AddCommand ("timedemo", CL_TimeDemo_f);
1437
1438         Cmd_AddCommand ("fog", CL_Fog_f);
1439
1440         // LordHavoc: added pausedemo
1441         Cmd_AddCommand ("pausedemo", CL_PauseDemo_f);
1442
1443         Cvar_RegisterVariable(&r_draweffects);
1444         Cvar_RegisterVariable(&cl_explosions_alpha_start);
1445         Cvar_RegisterVariable(&cl_explosions_alpha_end);
1446         Cvar_RegisterVariable(&cl_explosions_size_start);
1447         Cvar_RegisterVariable(&cl_explosions_size_end);
1448         Cvar_RegisterVariable(&cl_explosions_lifetime);
1449         Cvar_RegisterVariable(&cl_stainmaps);
1450         Cvar_RegisterVariable(&cl_stainmaps_clearonload);
1451         Cvar_RegisterVariable(&cl_beams_polygons);
1452         Cvar_RegisterVariable(&cl_beams_relative);
1453         Cvar_RegisterVariable(&cl_beams_lightatend);
1454         Cvar_RegisterVariable(&cl_noplayershadow);
1455
1456         Cvar_RegisterVariable(&cl_prydoncursor);
1457
1458         Cmd_AddCommand("timerefresh", CL_TimeRefresh_f);
1459
1460         CL_Parse_Init();
1461         CL_Particles_Init();
1462         CL_Screen_Init();
1463         CL_CGVM_Init();
1464
1465         CL_Video_Init();
1466 }
1467
1468
1469