]> icculus.org git repositories - divverent/darkplaces.git/blob - r_light.c
SV_Move (and children) now only set trace.ent if there is an impact, not if it was...
[divverent/darkplaces.git] / r_light.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 // r_light.c
21
22 #include "quakedef.h"
23 #include "cl_collision.h"
24 #include "r_shadow.h"
25
26 rdlight_t r_dlight[MAX_DLIGHTS];
27 int r_numdlights = 0;
28
29 cvar_t r_modellights = {CVAR_SAVE, "r_modellights", "4"};
30 cvar_t r_vismarklights = {0, "r_vismarklights", "1"};
31 cvar_t r_coronas = {CVAR_SAVE, "r_coronas", "1"};
32 cvar_t gl_flashblend = {CVAR_SAVE, "gl_flashblend", "1"};
33
34 static rtexture_t *lightcorona;
35 static rtexturepool_t *lighttexturepool;
36
37 void r_light_start(void)
38 {
39         float dx, dy;
40         int x, y, a;
41         qbyte pixels[32][32][4];
42         lighttexturepool = R_AllocTexturePool();
43         for (y = 0;y < 32;y++)
44         {
45                 dy = (y - 15.5f) * (1.0f / 16.0f);
46                 for (x = 0;x < 32;x++)
47                 {
48                         dx = (x - 15.5f) * (1.0f / 16.0f);
49                         a = ((1.0f / (dx * dx + dy * dy + 0.2f)) - (1.0f / (1.0f + 0.2))) * 32.0f / (1.0f / (1.0f + 0.2));
50                         a = bound(0, a, 255);
51                         pixels[y][x][0] = a;
52                         pixels[y][x][1] = a;
53                         pixels[y][x][2] = a;
54                         pixels[y][x][3] = 255;
55                 }
56         }
57         lightcorona = R_LoadTexture2D(lighttexturepool, "lightcorona", 32, 32, &pixels[0][0][0], TEXTYPE_RGBA, TEXF_PRECACHE, NULL);
58 }
59
60 void r_light_shutdown(void)
61 {
62         lighttexturepool = NULL;
63         lightcorona = NULL;
64 }
65
66 void r_light_newmap(void)
67 {
68         int i;
69         for (i = 0;i < 256;i++)
70                 d_lightstylevalue[i] = 264;             // normal light value
71 }
72
73 void R_Light_Init(void)
74 {
75         Cvar_RegisterVariable(&r_modellights);
76         Cvar_RegisterVariable(&r_vismarklights);
77         Cvar_RegisterVariable(&r_coronas);
78         Cvar_RegisterVariable(&gl_flashblend);
79         R_RegisterModule("R_Light", r_light_start, r_light_shutdown, r_light_newmap);
80 }
81
82 /*
83 ==================
84 R_AnimateLight
85 ==================
86 */
87 void R_AnimateLight (void)
88 {
89         int i, j, k;
90
91 //
92 // light animations
93 // 'm' is normal light, 'a' is no light, 'z' is double bright
94         i = (int)(cl.time * 10);
95         for (j = 0;j < MAX_LIGHTSTYLES;j++)
96         {
97                 if (!cl_lightstyle || !cl_lightstyle[j].length)
98                 {
99                         d_lightstylevalue[j] = 256;
100                         continue;
101                 }
102                 k = i % cl_lightstyle[j].length;
103                 k = cl_lightstyle[j].map[k] - 'a';
104                 k = k*22;
105                 d_lightstylevalue[j] = k;
106         }
107 }
108
109
110 void R_BuildLightList(void)
111 {
112         int i;
113         dlight_t *cd;
114         rdlight_t *rd;
115
116         r_numdlights = 0;
117         c_dlights = 0;
118
119         if (!r_dynamic.integer || !cl_dlights)
120                 return;
121
122         for (i = 0;i < MAX_DLIGHTS;i++)
123         {
124                 cd = cl_dlights + i;
125                 if (cd->radius <= 0)
126                         continue;
127                 rd = &r_dlight[r_numdlights++];
128                 VectorCopy(cd->origin, rd->origin);
129                 VectorScale(cd->color, cd->radius * 64.0f, rd->light);
130                 rd->cullradius2 = DotProduct(rd->light, rd->light) * (0.25f / (64.0f * 64.0f)) + 4096.0f;
131                 // clamp radius to avoid overflowing division table in lightmap code
132                 if (rd->cullradius2 > (2048.0f * 2048.0f))
133                         rd->cullradius2 = (2048.0f * 2048.0f);
134                 rd->cullradius = sqrt(rd->cullradius2);
135                 rd->subtract = 1.0f / rd->cullradius2;
136                 rd->ent = cd->ent;
137                 c_dlights++; // count every dlight in use
138         }
139 }
140
141 void R_DrawCoronas(void)
142 {
143         int i;
144         float cscale, scale, viewdist, dist;
145         rdlight_t *rd;
146         if (!r_coronas.integer)
147                 return;
148         R_Mesh_Matrix(&r_identitymatrix);
149         viewdist = DotProduct(r_origin, vpn);
150         for (i = 0;i < r_numdlights;i++)
151         {
152                 rd = r_dlight + i;
153                 dist = (DotProduct(rd->origin, vpn) - viewdist);
154                 if (dist >= 24.0f && CL_TraceLine(rd->origin, r_origin, NULL, NULL, true, NULL, SUPERCONTENTS_SOLID) == 1)
155                 {
156                         cscale = (1.0f / 131072.0f);
157                         scale = rd->cullradius * 0.25f;
158                         if (gl_flashblend.integer)
159                         {
160                                 cscale *= 4.0f;
161                                 scale *= 2.0f;
162                         }
163                         R_DrawSprite(GL_ONE, GL_ONE, lightcorona, true, rd->origin, vright, vup, scale, -scale, -scale, scale, rd->light[0] * cscale, rd->light[1] * cscale, rd->light[2] * cscale, 1);
164                 }
165         }
166 }
167
168 /*
169 =============================================================================
170
171 DYNAMIC LIGHTS
172
173 =============================================================================
174 */
175
176 static int lightpvsbytes;
177 static qbyte lightpvs[(MAX_MAP_LEAFS+7)>>3];
178
179 /*
180 =============
181 R_MarkLights
182 =============
183 */
184 static void R_RecursiveMarkLights(entity_render_t *ent, vec3_t lightorigin, rdlight_t *rd, int bit, int bitindex, mnode_t *node, qbyte *pvs, int pvsbits)
185 {
186         int i;
187         mleaf_t *leaf;
188         float dist;
189
190         // for comparisons to minimum acceptable light
191         while(node->contents >= 0)
192         {
193                 dist = PlaneDiff(lightorigin, node->plane);
194                 if (dist > rd->cullradius)
195                         node = node->children[0];
196                 else
197                 {
198                         if (dist >= -rd->cullradius)
199                                 R_RecursiveMarkLights(ent, lightorigin, rd, bit, bitindex, node->children[0], pvs, pvsbits);
200                         node = node->children[1];
201                 }
202         }
203
204         // check if leaf is visible according to pvs
205         leaf = (mleaf_t *)node;
206         i = (leaf - ent->model->brushq1.leafs) - 1;
207         if (leaf->nummarksurfaces && (i >= pvsbits || pvs[i >> 3] & (1 << (i & 7))))
208         {
209                 int *surfacepvsframes, d, impacts, impactt;
210                 float sdist, maxdist, dist2, impact[3];
211                 msurface_t *surf;
212                 // mark the polygons
213                 maxdist = rd->cullradius2;
214                 surfacepvsframes = ent->model->brushq1.surfacepvsframes;
215                 for (i = 0;i < leaf->nummarksurfaces;i++)
216                 {
217                         if (surfacepvsframes[leaf->firstmarksurface[i]] != ent->model->brushq1.pvsframecount)
218                                 continue;
219                         surf = ent->model->brushq1.surfaces + leaf->firstmarksurface[i];
220                         dist = sdist = PlaneDiff(lightorigin, surf->plane);
221                         if (surf->flags & SURF_PLANEBACK)
222                                 dist = -dist;
223
224                         if (dist < -0.25f && !(surf->flags & SURF_LIGHTBOTHSIDES))
225                                 continue;
226
227                         dist2 = dist * dist;
228                         if (dist2 >= maxdist)
229                                 continue;
230
231                         VectorCopy(lightorigin, impact);
232                         if (surf->plane->type >= 3)
233                                 VectorMA(impact, -sdist, surf->plane->normal, impact);
234                         else
235                                 impact[surf->plane->type] -= sdist;
236
237                         impacts = DotProduct (impact, surf->texinfo->vecs[0]) + surf->texinfo->vecs[0][3] - surf->texturemins[0];
238
239                         d = bound(0, impacts, surf->extents[0] + 16) - impacts;
240                         dist2 += d * d;
241                         if (dist2 > maxdist)
242                                 continue;
243
244                         impactt = DotProduct (impact, surf->texinfo->vecs[1]) + surf->texinfo->vecs[1][3] - surf->texturemins[1];
245
246                         d = bound(0, impactt, surf->extents[1] + 16) - impactt;
247                         dist2 += d * d;
248                         if (dist2 > maxdist)
249                                 continue;
250
251                         if (surf->dlightframe != r_framecount) // not dynamic until now
252                         {
253                                 surf->dlightbits[0] = surf->dlightbits[1] = surf->dlightbits[2] = surf->dlightbits[3] = surf->dlightbits[4] = surf->dlightbits[5] = surf->dlightbits[6] = surf->dlightbits[7] = 0;
254                                 surf->dlightframe = r_framecount;
255                                 surf->cached_dlight = true;
256                         }
257                         surf->dlightbits[bitindex] |= bit;
258                 }
259         }
260 }
261
262 void R_MarkLights(entity_render_t *ent)
263 {
264         int i, bit, bitindex;
265         rdlight_t *rd;
266         vec3_t lightorigin;
267         if (!gl_flashblend.integer && r_dynamic.integer && ent->model && ent->model->brushq1.numleafs)
268         {
269                 for (i = 0, rd = r_dlight;i < r_numdlights;i++, rd++)
270                 {
271                         bit = 1 << (i & 31);
272                         bitindex = i >> 5;
273                         Matrix4x4_Transform(&ent->inversematrix, rd->origin, lightorigin);
274                         lightpvsbytes = 0;
275                         if (r_vismarklights.integer && ent->model->brush.FatPVS)
276                                 lightpvsbytes = ent->model->brush.FatPVS(ent->model, lightorigin, 0, lightpvs, sizeof(lightpvs));
277                         R_RecursiveMarkLights(ent, lightorigin, rd, bit, bitindex, ent->model->brushq1.nodes + ent->model->brushq1.hulls[0].firstclipnode, lightpvs, min(lightpvsbytes * 8, ent->model->brushq1.visleafs));
278                 }
279         }
280 }
281
282 /*
283 =============================================================================
284
285 LIGHT SAMPLING
286
287 =============================================================================
288 */
289
290 void R_CompleteLightPoint(vec3_t ambientcolor, vec3_t diffusecolor, vec3_t diffusenormal, const vec3_t p, int dynamic, const mleaf_t *leaf)
291 {
292         VectorClear(diffusecolor);
293         VectorClear(diffusenormal);
294
295         if (!r_fullbright.integer && cl.worldmodel && cl.worldmodel->brush.LightPoint)
296         {
297                 ambientcolor[0] = ambientcolor[1] = ambientcolor[2] = r_ambient.value * (2.0f / 128.0f);
298                 cl.worldmodel->brush.LightPoint(cl.worldmodel, p, ambientcolor, diffusecolor, diffusenormal);
299         }
300         else
301                 VectorSet(ambientcolor, 1, 1, 1);
302
303         // FIXME: this .lights related stuff needs to be ported into the Mod_Q1BSP code
304         if (cl.worldmodel->brushq1.numlights)
305         {
306                 int i;
307                 vec3_t v;
308                 float f;
309                 mlight_t *sl;
310                 for (i = 0;i < cl.worldmodel->brushq1.numlights;i++)
311                 {
312                         sl = cl.worldmodel->brushq1.lights + i;
313                         if (d_lightstylevalue[sl->style] > 0)
314                         {
315                                 VectorSubtract (p, sl->origin, v);
316                                 f = ((1.0f / (DotProduct(v, v) * sl->falloff + sl->distbias)) - sl->subtract);
317                                 if (f > 0 && CL_TraceLine(p, sl->origin, NULL, NULL, false, NULL, SUPERCONTENTS_SOLID) == 1)
318                                 {
319                                         f *= d_lightstylevalue[sl->style] * (1.0f / 65536.0f);
320                                         VectorMA(ambientcolor, f, sl->light, ambientcolor);
321                                 }
322                         }
323                 }
324         }
325
326         if (dynamic)
327         {
328                 int i;
329                 float f, v[3];
330                 rdlight_t *rd;
331                 // FIXME: this really should handle dlights as diffusecolor/diffusenormal somehow
332                 for (i = 0;i < r_numdlights;i++)
333                 {
334                         rd = r_dlight + i;
335                         VectorSubtract(p, rd->origin, v);
336                         f = DotProduct(v, v);
337                         if (f < rd->cullradius2 && CL_TraceLine(p, rd->origin, NULL, NULL, false, NULL, SUPERCONTENTS_SOLID) == 1)
338                         {
339                                 f = (1.0f / (f + LIGHTOFFSET)) - rd->subtract;
340                                 VectorMA(ambientcolor, f, rd->light, ambientcolor);
341                         }
342                 }
343         }
344 }
345
346 typedef struct
347 {
348         vec3_t origin;
349         //vec_t cullradius2;
350         vec3_t light;
351         // how much this light would contribute to ambient if replaced
352         vec3_t ambientlight;
353         vec_t subtract;
354         vec_t falloff;
355         vec_t offset;
356         // used for choosing only the brightest lights
357         vec_t intensity;
358 }
359 nearlight_t;
360
361 static int nearlights;
362 static nearlight_t nearlight[MAX_DLIGHTS];
363
364 int R_LightModel(float *ambient4f, float *diffusecolor, float *diffusenormal, const entity_render_t *ent, float colorr, float colorg, float colorb, float colora, int worldcoords)
365 {
366         int i, j, maxnearlights;
367         float v[3], f, mscale, stylescale, intensity, ambientcolor[3], tempdiffusenormal[3];
368         nearlight_t *nl;
369         mlight_t *sl;
370         rdlight_t *rd;
371
372         nearlights = 0;
373         maxnearlights = r_modellights.integer;
374         ambient4f[0] = ambient4f[1] = ambient4f[2] = r_ambient.value * (2.0f / 128.0f);
375         VectorClear(diffusecolor);
376         VectorClear(diffusenormal);
377         if (r_fullbright.integer || (ent->effects & EF_FULLBRIGHT))
378         {
379                 // highly rare
380                 VectorSet(ambient4f, 1, 1, 1);
381                 maxnearlights = 0;
382         }
383         else if (r_shadow_realtime_world.integer)
384                 maxnearlights = 0;
385         else
386         {
387                 if (cl.worldmodel && cl.worldmodel->brush.LightPoint)
388                 {
389                         cl.worldmodel->brush.LightPoint(cl.worldmodel, ent->origin, ambient4f, diffusecolor, tempdiffusenormal);
390                         Matrix4x4_Transform3x3(&ent->inversematrix, tempdiffusenormal, diffusenormal);
391                         VectorNormalize(diffusenormal);
392                 }
393                 else
394                         VectorSet(ambient4f, 1, 1, 1);
395         }
396
397         // scale of the model's coordinate space, to alter light attenuation to match
398         // make the mscale squared so it can scale the squared distance results
399         mscale = ent->scale * ent->scale;
400         // FIXME: no support for .lights on non-Q1BSP?
401         nl = &nearlight[0];
402         for (i = 0;i < ent->numentlights;i++)
403         {
404                 sl = cl.worldmodel->brushq1.lights + ent->entlights[i];
405                 stylescale = d_lightstylevalue[sl->style] * (1.0f / 65536.0f);
406                 VectorSubtract (ent->origin, sl->origin, v);
407                 f = ((1.0f / (DotProduct(v, v) * sl->falloff + sl->distbias)) - sl->subtract) * stylescale;
408                 VectorScale(sl->light, f, ambientcolor);
409                 intensity = DotProduct(ambientcolor, ambientcolor);
410                 if (f < 0)
411                         intensity *= -1.0f;
412                 if (nearlights < maxnearlights)
413                         j = nearlights++;
414                 else
415                 {
416                         for (j = 0;j < maxnearlights;j++)
417                         {
418                                 if (nearlight[j].intensity < intensity)
419                                 {
420                                         if (nearlight[j].intensity > 0)
421                                                 VectorAdd(ambient4f, nearlight[j].ambientlight, ambient4f);
422                                         break;
423                                 }
424                         }
425                 }
426                 if (j >= maxnearlights)
427                 {
428                         // this light is less significant than all others,
429                         // add it to ambient
430                         if (intensity > 0)
431                                 VectorAdd(ambient4f, ambientcolor, ambient4f);
432                 }
433                 else
434                 {
435                         nl = nearlight + j;
436                         nl->intensity = intensity;
437                         // transform the light into the model's coordinate system
438                         if (worldcoords)
439                                 VectorCopy(sl->origin, nl->origin);
440                         else
441                                 Matrix4x4_Transform(&ent->inversematrix, sl->origin, nl->origin);
442                         // integrate mscale into falloff, for maximum speed
443                         nl->falloff = sl->falloff * mscale;
444                         VectorCopy(ambientcolor, nl->ambientlight);
445                         nl->light[0] = sl->light[0] * stylescale * colorr * 4.0f;
446                         nl->light[1] = sl->light[1] * stylescale * colorg * 4.0f;
447                         nl->light[2] = sl->light[2] * stylescale * colorb * 4.0f;
448                         nl->subtract = sl->subtract;
449                         nl->offset = sl->distbias;
450                 }
451         }
452         if (!r_shadow_realtime_dlight.integer)
453         {
454                 for (i = 0;i < r_numdlights;i++)
455                 {
456                         rd = r_dlight + i;
457                         VectorCopy(rd->origin, v);
458                         if (v[0] < ent->mins[0]) v[0] = ent->mins[0];if (v[0] > ent->maxs[0]) v[0] = ent->maxs[0];
459                         if (v[1] < ent->mins[1]) v[1] = ent->mins[1];if (v[1] > ent->maxs[1]) v[1] = ent->maxs[1];
460                         if (v[2] < ent->mins[2]) v[2] = ent->mins[2];if (v[2] > ent->maxs[2]) v[2] = ent->maxs[2];
461                         VectorSubtract (v, rd->origin, v);
462                         if (DotProduct(v, v) < rd->cullradius2)
463                         {
464                                 if (CL_TraceLine(ent->origin, rd->origin, NULL, NULL, false, NULL, SUPERCONTENTS_SOLID) != 1)
465                                         continue;
466                                 VectorSubtract (ent->origin, rd->origin, v);
467                                 f = ((1.0f / (DotProduct(v, v) + LIGHTOFFSET)) - rd->subtract);
468                                 VectorScale(rd->light, f, ambientcolor);
469                                 intensity = DotProduct(ambientcolor, ambientcolor);
470                                 if (f < 0)
471                                         intensity *= -1.0f;
472                                 if (nearlights < maxnearlights)
473                                         j = nearlights++;
474                                 else
475                                 {
476                                         for (j = 0;j < maxnearlights;j++)
477                                         {
478                                                 if (nearlight[j].intensity < intensity)
479                                                 {
480                                                         if (nearlight[j].intensity > 0)
481                                                                 VectorAdd(ambient4f, nearlight[j].ambientlight, ambient4f);
482                                                         break;
483                                                 }
484                                         }
485                                 }
486                                 if (j >= maxnearlights)
487                                 {
488                                         // this light is less significant than all others,
489                                         // add it to ambient
490                                         if (intensity > 0)
491                                                 VectorAdd(ambient4f, ambientcolor, ambient4f);
492                                 }
493                                 else
494                                 {
495                                         nl = nearlight + j;
496                                         nl->intensity = intensity;
497                                         // transform the light into the model's coordinate system
498                                         if (worldcoords)
499                                                 VectorCopy(rd->origin, nl->origin);
500                                         else
501                                         {
502                                                 Matrix4x4_Transform(&ent->inversematrix, rd->origin, nl->origin);
503                                                 /*
504                                                 Con_Printf("%i %s : %f %f %f : %f %f %f\n%f %f %f %f\n%f %f %f %f\n%f %f %f %f\n%f %f %f %f\n"
505                                                 , rd - r_dlight, ent->model->name
506                                                 , rd->origin[0], rd->origin[1], rd->origin[2]
507                                                 , nl->origin[0], nl->origin[1], nl->origin[2]
508                                                 , ent->inversematrix.m[0][0], ent->inversematrix.m[0][1], ent->inversematrix.m[0][2], ent->inversematrix.m[0][3]
509                                                 , ent->inversematrix.m[1][0], ent->inversematrix.m[1][1], ent->inversematrix.m[1][2], ent->inversematrix.m[1][3]
510                                                 , ent->inversematrix.m[2][0], ent->inversematrix.m[2][1], ent->inversematrix.m[2][2], ent->inversematrix.m[2][3]
511                                                 , ent->inversematrix.m[3][0], ent->inversematrix.m[3][1], ent->inversematrix.m[3][2], ent->inversematrix.m[3][3]);
512                                                 */
513                                         }
514                                         // integrate mscale into falloff, for maximum speed
515                                         nl->falloff = mscale;
516                                         VectorCopy(ambientcolor, nl->ambientlight);
517                                         nl->light[0] = rd->light[0] * colorr * 4.0f;
518                                         nl->light[1] = rd->light[1] * colorg * 4.0f;
519                                         nl->light[2] = rd->light[2] * colorb * 4.0f;
520                                         nl->subtract = rd->subtract;
521                                         nl->offset = LIGHTOFFSET;
522                                 }
523                         }
524                 }
525         }
526         ambient4f[0] *= colorr;
527         ambient4f[1] *= colorg;
528         ambient4f[2] *= colorb;
529         ambient4f[3] = colora;
530         diffusecolor[0] *= colorr;
531         diffusecolor[1] *= colorg;
532         diffusecolor[2] *= colorb;
533         return nearlights != 0 || DotProduct(diffusecolor, diffusecolor) > 0;
534 }
535
536 void R_LightModel_CalcVertexColors(const float *ambientcolor4f, const float *diffusecolor, const float *diffusenormal, int numverts, const float *vertex3f, const float *normal3f, float *color4f)
537 {
538         int i, j, usediffuse;
539         float color[4], v[3], dot, dist2, f, dnormal[3];
540         nearlight_t *nl;
541         usediffuse = DotProduct(diffusecolor, diffusecolor) > 0;
542         // negate the diffuse normal to avoid the need to negate the
543         // dotproduct on each vertex
544         VectorNegate(diffusenormal, dnormal);
545         if (usediffuse)
546                 VectorNormalize(dnormal);
547         // directional shading code here
548         for (i = 0;i < numverts;i++, vertex3f += 3, normal3f += 3, color4f += 4)
549         {
550                 VectorCopy4(ambientcolor4f, color);
551
552                 // silly directional diffuse shading
553                 if (usediffuse)
554                 {
555                         dot = DotProduct(normal3f, dnormal);
556                         if (dot > 0)
557                                 VectorMA(color, dot, diffusecolor, color);
558                 }
559
560                 // pretty good lighting
561                 for (j = 0, nl = &nearlight[0];j < nearlights;j++, nl++)
562                 {
563                         VectorSubtract(vertex3f, nl->origin, v);
564                         // first eliminate negative lighting (back side)
565                         dot = DotProduct(normal3f, v);
566                         if (dot > 0)
567                         {
568                                 // we'll need this again later to normalize the dotproduct
569                                 dist2 = DotProduct(v,v);
570                                 // do the distance attenuation math
571                                 f = (1.0f / (dist2 * nl->falloff + nl->offset)) - nl->subtract;
572                                 if (f > 0)
573                                 {
574                                         // we must divide dot by sqrt(dist2) to compensate for
575                                         // the fact we did not normalize v before doing the
576                                         // dotproduct, the result is in the range 0 to 1 (we
577                                         // eliminated negative numbers already)
578                                         f *= dot / sqrt(dist2);
579                                         // blend in the lighting
580                                         VectorMA(color, f, nl->light, color);
581                                 }
582                         }
583                 }
584                 VectorCopy4(color, color4f);
585         }
586 }
587
588 void R_UpdateEntLights(entity_render_t *ent)
589 {
590         int i;
591         const mlight_t *sl;
592         vec3_t v;
593         if (r_shadow_realtime_dlight.integer || gl_flashblend.integer)
594                 return;
595         VectorSubtract(ent->origin, ent->entlightsorigin, v);
596         if (ent->entlightsframe != (r_framecount - 1) || (realtime > ent->entlightstime && DotProduct(v,v) >= 1.0f))
597         {
598                 ent->entlightstime = realtime + 0.1;
599                 VectorCopy(ent->origin, ent->entlightsorigin);
600                 ent->numentlights = 0;
601                 if (cl.worldmodel)
602                         for (i = 0, sl = cl.worldmodel->brushq1.lights;i < cl.worldmodel->brushq1.numlights && ent->numentlights < MAXENTLIGHTS;i++, sl++)
603                                 if (CL_TraceLine(ent->origin, sl->origin, NULL, NULL, false, NULL, SUPERCONTENTS_SOLID) == 1)
604                                         ent->entlights[ent->numentlights++] = i;
605         }
606         ent->entlightsframe = r_framecount;
607 }
608