]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rsurf.c
fixed two Con_Printf format strings with the wrong type
[divverent/darkplaces.git] / gl_rsurf.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_surf.c: surface-related refresh code
21
22 #include "quakedef.h"
23 #include "r_shadow.h"
24 #include "portals.h"
25
26 #define MAX_LIGHTMAP_SIZE 256
27
28 cvar_t r_ambient = {0, "r_ambient", "0"};
29 cvar_t r_drawportals = {0, "r_drawportals", "0"};
30 cvar_t r_testvis = {0, "r_testvis", "0"};
31 cvar_t r_surfaceworldnode = {0, "r_surfaceworldnode", "0"};
32 cvar_t r_drawcollisionbrushes_polygonfactor = {0, "r_drawcollisionbrushes_polygonfactor", "-1"};
33 cvar_t r_drawcollisionbrushes_polygonoffset = {0, "r_drawcollisionbrushes_polygonoffset", "0"};
34 cvar_t r_q3bsp_renderskydepth = {0, "r_q3bsp_renderskydepth", "0"};
35
36 // flag arrays used for visibility checking on world model
37 // (all other entities have no per-surface/per-leaf visibility checks)
38 // TODO: dynamic resize according to r_refdef.worldmodel->brush.num_clusters
39 qbyte r_pvsbits[(32768+7)>>3];
40 // TODO: dynamic resize according to r_refdef.worldmodel->brush.num_leafs
41 qbyte r_worldleafvisible[32768];
42 // TODO: dynamic resize according to r_refdef.worldmodel->num_surfaces
43 qbyte r_worldsurfacevisible[262144];
44
45 /*
46 ===============
47 R_BuildLightMap
48
49 Combine and scale multiple lightmaps into the 8.8 format in blocklights
50 ===============
51 */
52 void R_BuildLightMap (const entity_render_t *ent, msurface_t *surface)
53 {
54         int smax, tmax, i, j, size, size3, maps, stride, l;
55         unsigned int *bl, scale;
56         qbyte *lightmap, *out, *stain;
57         static unsigned int intblocklights[MAX_LIGHTMAP_SIZE*MAX_LIGHTMAP_SIZE*3]; // LordHavoc: *3 for colored lighting
58         static qbyte templight[MAX_LIGHTMAP_SIZE*MAX_LIGHTMAP_SIZE*4];
59
60         // update cached lighting info
61         surface->cached_dlight = 0;
62
63         smax = (surface->lightmapinfo->extents[0]>>4)+1;
64         tmax = (surface->lightmapinfo->extents[1]>>4)+1;
65         size = smax*tmax;
66         size3 = size*3;
67         lightmap = surface->lightmapinfo->samples;
68
69 // set to full bright if no light data
70         bl = intblocklights;
71         if (!ent->model->brushq1.lightdata)
72         {
73                 for (i = 0;i < size3;i++)
74                         bl[i] = 255*256;
75         }
76         else
77         {
78 // clear to no light
79                 memset(bl, 0, size*3*sizeof(unsigned int));
80
81 // add all the lightmaps
82                 if (lightmap)
83                 {
84                         bl = intblocklights;
85                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3)
86                                 for (scale = d_lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size3;i++)
87                                         bl[i] += lightmap[i] * scale;
88                 }
89         }
90
91         stain = surface->lightmapinfo->stainsamples;
92         bl = intblocklights;
93         out = templight;
94         // the >> 16 shift adjusts down 8 bits to account for the stainmap
95         // scaling, and remaps the 0-65536 (2x overbright) to 0-256, it will
96         // be doubled during rendering to achieve 2x overbright
97         // (0 = 0.0, 128 = 1.0, 256 = 2.0)
98         if (ent->model->brushq1.lightmaprgba)
99         {
100                 stride = (surface->lightmapinfo->lightmaptexturestride - smax) * 4;
101                 for (i = 0;i < tmax;i++, out += stride)
102                 {
103                         for (j = 0;j < smax;j++)
104                         {
105                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
106                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
107                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
108                                 *out++ = 255;
109                         }
110                 }
111         }
112         else
113         {
114                 stride = (surface->lightmapinfo->lightmaptexturestride - smax) * 3;
115                 for (i = 0;i < tmax;i++, out += stride)
116                 {
117                         for (j = 0;j < smax;j++)
118                         {
119                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
120                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
121                                 l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
122                         }
123                 }
124         }
125
126         R_UpdateTexture(surface->lightmaptexture, templight);
127 }
128
129 void R_StainNode (mnode_t *node, model_t *model, const vec3_t origin, float radius, const float fcolor[8])
130 {
131         float ndist, a, ratio, maxdist, maxdist2, maxdist3, invradius, sdtable[256], td, dist2;
132         msurface_t *surface, *endsurface;
133         int i, s, t, smax, tmax, smax3, impacts, impactt, stained;
134         qbyte *bl;
135         vec3_t impact;
136
137         maxdist = radius * radius;
138         invradius = 1.0f / radius;
139
140 loc0:
141         if (!node->plane)
142                 return;
143         ndist = PlaneDiff(origin, node->plane);
144         if (ndist > radius)
145         {
146                 node = node->children[0];
147                 goto loc0;
148         }
149         if (ndist < -radius)
150         {
151                 node = node->children[1];
152                 goto loc0;
153         }
154
155         dist2 = ndist * ndist;
156         maxdist3 = maxdist - dist2;
157
158         if (node->plane->type < 3)
159         {
160                 VectorCopy(origin, impact);
161                 impact[node->plane->type] -= ndist;
162         }
163         else
164         {
165                 impact[0] = origin[0] - node->plane->normal[0] * ndist;
166                 impact[1] = origin[1] - node->plane->normal[1] * ndist;
167                 impact[2] = origin[2] - node->plane->normal[2] * ndist;
168         }
169
170         for (surface = model->data_surfaces + node->firstsurface, endsurface = surface + node->numsurfaces;surface < endsurface;surface++)
171         {
172                 if (surface->lightmapinfo->stainsamples)
173                 {
174                         smax = (surface->lightmapinfo->extents[0] >> 4) + 1;
175                         tmax = (surface->lightmapinfo->extents[1] >> 4) + 1;
176
177                         impacts = DotProduct (impact, surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3] - surface->lightmapinfo->texturemins[0];
178                         impactt = DotProduct (impact, surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3] - surface->lightmapinfo->texturemins[1];
179
180                         s = bound(0, impacts, smax * 16) - impacts;
181                         t = bound(0, impactt, tmax * 16) - impactt;
182                         i = s * s + t * t + dist2;
183                         if (i > maxdist)
184                                 continue;
185
186                         // reduce calculations
187                         for (s = 0, i = impacts; s < smax; s++, i -= 16)
188                                 sdtable[s] = i * i + dist2;
189
190                         bl = surface->lightmapinfo->stainsamples;
191                         smax3 = smax * 3;
192                         stained = false;
193
194                         i = impactt;
195                         for (t = 0;t < tmax;t++, i -= 16)
196                         {
197                                 td = i * i;
198                                 // make sure some part of it is visible on this line
199                                 if (td < maxdist3)
200                                 {
201                                         maxdist2 = maxdist - td;
202                                         for (s = 0;s < smax;s++)
203                                         {
204                                                 if (sdtable[s] < maxdist2)
205                                                 {
206                                                         ratio = lhrandom(0.0f, 1.0f);
207                                                         a = (fcolor[3] + ratio * fcolor[7]) * (1.0f - sqrt(sdtable[s] + td) * invradius);
208                                                         if (a >= (1.0f / 64.0f))
209                                                         {
210                                                                 if (a > 1)
211                                                                         a = 1;
212                                                                 bl[0] = (qbyte) ((float) bl[0] + a * ((fcolor[0] + ratio * fcolor[4]) - (float) bl[0]));
213                                                                 bl[1] = (qbyte) ((float) bl[1] + a * ((fcolor[1] + ratio * fcolor[5]) - (float) bl[1]));
214                                                                 bl[2] = (qbyte) ((float) bl[2] + a * ((fcolor[2] + ratio * fcolor[6]) - (float) bl[2]));
215                                                                 stained = true;
216                                                         }
217                                                 }
218                                                 bl += 3;
219                                         }
220                                 }
221                                 else // skip line
222                                         bl += smax3;
223                         }
224                         // force lightmap upload
225                         if (stained)
226                                 surface->cached_dlight = true;
227                 }
228         }
229
230         if (node->children[0]->plane)
231         {
232                 if (node->children[1]->plane)
233                 {
234                         R_StainNode(node->children[0], model, origin, radius, fcolor);
235                         node = node->children[1];
236                         goto loc0;
237                 }
238                 else
239                 {
240                         node = node->children[0];
241                         goto loc0;
242                 }
243         }
244         else if (node->children[1]->plane)
245         {
246                 node = node->children[1];
247                 goto loc0;
248         }
249 }
250
251 void R_Stain (const vec3_t origin, float radius, int cr1, int cg1, int cb1, int ca1, int cr2, int cg2, int cb2, int ca2)
252 {
253         int n;
254         float fcolor[8];
255         entity_render_t *ent;
256         model_t *model;
257         vec3_t org;
258         if (r_refdef.worldmodel == NULL || !r_refdef.worldmodel->brush.data_nodes || !r_refdef.worldmodel->brushq1.lightdata)
259                 return;
260         fcolor[0] = cr1;
261         fcolor[1] = cg1;
262         fcolor[2] = cb1;
263         fcolor[3] = ca1 * (1.0f / 64.0f);
264         fcolor[4] = cr2 - cr1;
265         fcolor[5] = cg2 - cg1;
266         fcolor[6] = cb2 - cb1;
267         fcolor[7] = (ca2 - ca1) * (1.0f / 64.0f);
268
269         R_StainNode(r_refdef.worldmodel->brush.data_nodes + r_refdef.worldmodel->brushq1.hulls[0].firstclipnode, r_refdef.worldmodel, origin, radius, fcolor);
270
271         // look for embedded bmodels
272         for (n = 0;n < cl_num_brushmodel_entities;n++)
273         {
274                 ent = &cl_entities[cl_brushmodel_entities[n]].render;
275                 model = ent->model;
276                 if (model && model->name[0] == '*')
277                 {
278                         Mod_CheckLoaded(model);
279                         if (model->brush.data_nodes)
280                         {
281                                 Matrix4x4_Transform(&ent->inversematrix, origin, org);
282                                 R_StainNode(model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode, model, org, radius, fcolor);
283                         }
284                 }
285         }
286 }
287
288
289 /*
290 =============================================================
291
292         BRUSH MODELS
293
294 =============================================================
295 */
296
297 static void R_DrawPortal_Callback(const void *calldata1, int calldata2)
298 {
299         int i;
300         float *v;
301         rmeshstate_t m;
302         const mportal_t *portal = (mportal_t *)calldata1;
303         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
304         GL_DepthMask(false);
305         GL_DepthTest(true);
306         R_Mesh_Matrix(&r_identitymatrix);
307
308         memset(&m, 0, sizeof(m));
309         m.pointer_vertex = varray_vertex3f;
310         R_Mesh_State(&m);
311
312         i = calldata2;
313         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f),
314                          ((i & 0x0038) >> 3) * (1.0f / 7.0f),
315                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f),
316                          0.125f);
317         if (PlaneDiff(r_vieworigin, (&portal->plane)) < 0)
318         {
319                 for (i = portal->numpoints - 1, v = varray_vertex3f;i >= 0;i--, v += 3)
320                         VectorCopy(portal->points[i].position, v);
321         }
322         else
323                 for (i = 0, v = varray_vertex3f;i < portal->numpoints;i++, v += 3)
324                         VectorCopy(portal->points[i].position, v);
325         GL_LockArrays(0, portal->numpoints);
326         R_Mesh_Draw(0, portal->numpoints, portal->numpoints - 2, polygonelements);
327         GL_LockArrays(0, 0);
328 }
329
330 // LordHavoc: this is just a nice debugging tool, very slow
331 static void R_DrawPortals(void)
332 {
333         int i, leafnum;//, portalnum;
334         mportal_t *portal;
335         float center[3], f;
336         model_t *model = r_refdef.worldmodel;
337         if (model == NULL)
338                 return;
339         for (leafnum = 0;leafnum < r_refdef.worldmodel->brush.num_leafs;leafnum++)
340         {
341                 if (r_worldleafvisible[leafnum])
342                 {
343                         //for (portalnum = 0, portal = model->brush.data_portals;portalnum < model->brush.num_portals;portalnum++, portal++)
344                         for (portal = r_refdef.worldmodel->brush.data_leafs[leafnum].portals;portal;portal = portal->next)
345                         {
346                                 if (portal->numpoints <= POLYGONELEMENTS_MAXPOINTS)
347                                 if (!R_CullBox(portal->mins, portal->maxs))
348                                 {
349                                         VectorClear(center);
350                                         for (i = 0;i < portal->numpoints;i++)
351                                                 VectorAdd(center, portal->points[i].position, center);
352                                         f = ixtable[portal->numpoints];
353                                         VectorScale(center, f, center);
354                                         //R_MeshQueue_AddTransparent(center, R_DrawPortal_Callback, portal, portalnum);
355                                         R_MeshQueue_AddTransparent(center, R_DrawPortal_Callback, portal, leafnum);
356                                 }
357                         }
358                 }
359         }
360 }
361
362 static void R_DrawCollisionBrush(colbrushf_t *brush)
363 {
364         int i;
365         rmeshstate_t m;
366         memset(&m, 0, sizeof(m));
367         m.pointer_vertex = brush->points->v;
368         R_Mesh_State(&m);
369         i = (int)(((size_t)brush) / sizeof(colbrushf_t));
370         GL_Color((i & 31) * (1.0f / 32.0f), ((i >> 5) & 31) * (1.0f / 32.0f), ((i >> 10) & 31) * (1.0f / 32.0f), 0.2f);
371         GL_LockArrays(0, brush->numpoints);
372         R_Mesh_Draw(0, brush->numpoints, brush->numtriangles, brush->elements);
373         GL_LockArrays(0, 0);
374 }
375
376 static void R_DrawCollisionSurface(entity_render_t *ent, msurface_t *surface)
377 {
378         int i;
379         rmeshstate_t m;
380         if (!surface->num_collisiontriangles)
381                 return;
382         memset(&m, 0, sizeof(m));
383         m.pointer_vertex = surface->data_collisionvertex3f;
384         R_Mesh_State(&m);
385         i = (int)(((size_t)surface) / sizeof(msurface_t));
386         GL_Color((i & 31) * (1.0f / 32.0f), ((i >> 5) & 31) * (1.0f / 32.0f), ((i >> 10) & 31) * (1.0f / 32.0f), 0.2f);
387         GL_LockArrays(0, surface->num_collisionvertices);
388         R_Mesh_Draw(0, surface->num_collisionvertices, surface->num_collisiontriangles, surface->data_collisionelement3i);
389         GL_LockArrays(0, 0);
390 }
391
392 void R_WorldVisibility(void)
393 {
394         int i, j, *mark;
395         mleaf_t *leaf;
396         mleaf_t *viewleaf;
397         model_t *model = r_refdef.worldmodel;
398
399         if (!model)
400                 return;
401
402         // if possible find the leaf the view origin is in
403         viewleaf = model->brush.PointInLeaf ? model->brush.PointInLeaf(model, r_vieworigin) : NULL;
404         // if possible fetch the visible cluster bits
405         if (model->brush.FatPVS)
406                 model->brush.FatPVS(model, r_vieworigin, 2, r_pvsbits, sizeof(r_pvsbits));
407
408         // clear the visible surface and leaf flags arrays
409         memset(r_worldsurfacevisible, 0, model->num_surfaces);
410         memset(r_worldleafvisible, 0, model->brush.num_leafs);
411
412         // if the user prefers surfaceworldnode (testing?) or the viewleaf could
413         // not be found, or the viewleaf is not part of the visible world
414         // (floating around in the void), use the pvs method
415         if (r_surfaceworldnode.integer || !viewleaf || viewleaf->clusterindex < 0)
416         {
417                 // pvs method:
418                 // similar to quake's RecursiveWorldNode but without cache misses
419                 for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
420                 {
421                         // if leaf is in current pvs and on the screen, mark its surfaces
422                         if (CHECKPVSBIT(r_pvsbits, leaf->clusterindex) && !R_CullBox(leaf->mins, leaf->maxs))
423                         {
424                                 c_leafs++;
425                                 r_worldleafvisible[j] = true;
426                                 if (leaf->numleafsurfaces)
427                                         for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
428                                                 r_worldsurfacevisible[*mark] = true;
429                         }
430                 }
431         }
432         else
433         {
434                 int leafstackpos;
435                 mportal_t *p;
436                 mleaf_t *leafstack[8192];
437                 // portal method:
438                 // follows portals leading outward from viewleaf, does not venture
439                 // offscreen or into leafs that are not visible, faster than Quake's
440                 // RecursiveWorldNode and vastly better in unvised maps, often culls a
441                 // lot of surface that pvs alone would miss
442                 leafstack[0] = viewleaf;
443                 leafstackpos = 1;
444                 while (leafstackpos)
445                 {
446                         c_leafs++;
447                         leaf = leafstack[--leafstackpos];
448                         r_worldleafvisible[leaf - model->brush.data_leafs] = true;
449                         // mark any surfaces bounding this leaf
450                         if (leaf->numleafsurfaces)
451                                 for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
452                                         r_worldsurfacevisible[*mark] = true;
453                         // follow portals into other leafs
454                         // the checks are:
455                         // if viewer is behind portal (portal faces outward into the scene)
456                         // and the portal polygon's bounding box is on the screen
457                         // and the leaf has not been visited yet
458                         // and the leaf is visible in the pvs
459                         // (the first two checks won't cause as many cache misses as the leaf checks)
460                         for (p = leaf->portals;p;p = p->next)
461                                 if (DotProduct(r_vieworigin, p->plane.normal) < (p->plane.dist + 1) && !R_CullBox(p->mins, p->maxs) && !r_worldleafvisible[p->past - model->brush.data_leafs] && CHECKPVSBIT(r_pvsbits, p->past->clusterindex))
462                                         leafstack[leafstackpos++] = p->past;
463                 }
464         }
465
466         if (r_drawportals.integer)
467                 R_DrawPortals();
468 }
469
470 void R_Q1BSP_DrawSky(entity_render_t *ent)
471 {
472         if (ent->model == NULL)
473                 return;
474         if (r_drawcollisionbrushes.integer < 2)
475                 R_DrawSurfaces(ent, true);
476 }
477
478 void R_Q1BSP_Draw(entity_render_t *ent)
479 {
480         if (ent->model == NULL)
481                 return;
482         c_bmodels++;
483         if (r_drawcollisionbrushes.integer < 2)
484                 R_DrawSurfaces(ent, false);
485         if (r_drawcollisionbrushes.integer >= 1 && ent->model->brush.num_brushes)
486         {
487                 int i;
488                 model_t *model = ent->model;
489                 msurface_t *surface;
490                 q3mbrush_t *brush;
491                 R_Mesh_Matrix(&ent->matrix);
492                 GL_BlendFunc(GL_SRC_ALPHA, GL_ONE);
493                 GL_DepthMask(false);
494                 GL_DepthTest(true);
495                 qglPolygonOffset(r_drawcollisionbrushes_polygonfactor.value, r_drawcollisionbrushes_polygonoffset.value);
496                 for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
497                         if (brush->colbrushf && brush->colbrushf->numtriangles)
498                                 R_DrawCollisionBrush(brush->colbrushf);
499                 for (i = 0, surface = model->data_surfaces + model->firstmodelsurface;i < model->nummodelsurfaces;i++, surface++)
500                         if (surface->num_collisiontriangles)
501                                 R_DrawCollisionSurface(ent, surface);
502                 qglPolygonOffset(0, 0);
503         }
504 }
505
506 typedef struct r_q1bsp_getlightinfo_s
507 {
508         model_t *model;
509         vec3_t relativelightorigin;
510         float lightradius;
511         int *outleaflist;
512         qbyte *outleafpvs;
513         int outnumleafs;
514         int *outsurfacelist;
515         qbyte *outsurfacepvs;
516         int outnumsurfaces;
517         vec3_t outmins;
518         vec3_t outmaxs;
519         vec3_t lightmins;
520         vec3_t lightmaxs;
521         const qbyte *pvs;
522 }
523 r_q1bsp_getlightinfo_t;
524
525 void R_Q1BSP_RecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, mnode_t *node)
526 {
527         int sides;
528         mleaf_t *leaf;
529         for (;;)
530         {
531                 if (!BoxesOverlap(info->lightmins, info->lightmaxs, node->mins, node->maxs))
532                         return;
533                 if (!node->plane)
534                         break;
535                 sides = BoxOnPlaneSide(info->lightmins, info->lightmaxs, node->plane) - 1;
536                 if (sides == 2)
537                 {
538                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
539                         node = node->children[1];
540                 }
541                 else
542                         node = node->children[sides];
543         }
544         leaf = (mleaf_t *)node;
545         if (info->pvs == NULL || CHECKPVSBIT(info->pvs, leaf->clusterindex))
546         {
547                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
548                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
549                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
550                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
551                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
552                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
553                 if (info->outleafpvs)
554                 {
555                         int leafindex = leaf - info->model->brush.data_leafs;
556                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
557                         {
558                                 SETPVSBIT(info->outleafpvs, leafindex);
559                                 info->outleaflist[info->outnumleafs++] = leafindex;
560                         }
561                 }
562                 if (info->outsurfacepvs)
563                 {
564                         int leafsurfaceindex;
565                         for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
566                         {
567                                 int surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
568                                 if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
569                                 {
570                                         msurface_t *surface = info->model->data_surfaces + surfaceindex;
571                                         if (BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs))
572                                         if ((surface->texture->currentmaterialflags & (MATERIALFLAG_WALL | MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT)) == MATERIALFLAG_WALL)
573                                         {
574                                                 int triangleindex, t;
575                                                 const int *e;
576                                                 const vec_t *v[3];
577                                                 for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
578                                                 {
579                                                         v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
580                                                         v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
581                                                         v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
582                                                         if (PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]) && info->lightmaxs[0] > min(v[0][0], min(v[1][0], v[2][0])) && info->lightmins[0] < max(v[0][0], max(v[1][0], v[2][0])) && info->lightmaxs[1] > min(v[0][1], min(v[1][1], v[2][1])) && info->lightmins[1] < max(v[0][1], max(v[1][1], v[2][1])) && info->lightmaxs[2] > min(v[0][2], min(v[1][2], v[2][2])) && info->lightmins[2] < max(v[0][2], max(v[1][2], v[2][2])))
583                                                         {
584                                                                 SETPVSBIT(info->outsurfacepvs, surfaceindex);
585                                                                 info->outsurfacelist[info->outnumsurfaces++] = surfaceindex;
586                                                                 break;
587                                                         }
588                                                 }
589                                         }
590                                 }
591                         }
592                 }
593         }
594 }
595
596 void R_Q1BSP_GetLightInfo(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, vec3_t outmins, vec3_t outmaxs, int *outleaflist, qbyte *outleafpvs, int *outnumleafspointer, int *outsurfacelist, qbyte *outsurfacepvs, int *outnumsurfacespointer)
597 {
598         r_q1bsp_getlightinfo_t info;
599         VectorCopy(relativelightorigin, info.relativelightorigin);
600         info.lightradius = lightradius;
601         info.lightmins[0] = info.relativelightorigin[0] - info.lightradius;
602         info.lightmins[1] = info.relativelightorigin[1] - info.lightradius;
603         info.lightmins[2] = info.relativelightorigin[2] - info.lightradius;
604         info.lightmaxs[0] = info.relativelightorigin[0] + info.lightradius;
605         info.lightmaxs[1] = info.relativelightorigin[1] + info.lightradius;
606         info.lightmaxs[2] = info.relativelightorigin[2] + info.lightradius;
607         if (ent->model == NULL)
608         {
609                 VectorCopy(info.lightmins, outmins);
610                 VectorCopy(info.lightmaxs, outmaxs);
611                 *outnumleafspointer = 0;
612                 *outnumsurfacespointer = 0;
613                 return;
614         }
615         info.model = ent->model;
616         info.outleaflist = outleaflist;
617         info.outleafpvs = outleafpvs;
618         info.outnumleafs = 0;
619         info.outsurfacelist = outsurfacelist;
620         info.outsurfacepvs = outsurfacepvs;
621         info.outnumsurfaces = 0;
622         VectorCopy(info.relativelightorigin, info.outmins);
623         VectorCopy(info.relativelightorigin, info.outmaxs);
624         memset(outleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
625         memset(outsurfacepvs, 0, (info.model->nummodelsurfaces + 7) >> 3);
626         if (info.model->brush.GetPVS)
627                 info.pvs = info.model->brush.GetPVS(info.model, info.relativelightorigin);
628         else
629                 info.pvs = NULL;
630         R_UpdateAllTextureInfo(ent);
631         if (r_shadow_compilingrtlight)
632         {
633                 // use portal recursion for exact light volume culling, and exact surface checking
634                 Portal_Visibility(info.model, info.relativelightorigin, info.outleaflist, info.outleafpvs, &info.outnumleafs, info.outsurfacelist, info.outsurfacepvs, &info.outnumsurfaces, NULL, 0, true, info.lightmins, info.lightmaxs, info.outmins, info.outmaxs);
635         }
636         else if (r_shadow_realtime_dlight_portalculling.integer)
637         {
638                 // use portal recursion for exact light volume culling, but not the expensive exact surface checking
639                 Portal_Visibility(info.model, info.relativelightorigin, info.outleaflist, info.outleafpvs, &info.outnumleafs, info.outsurfacelist, info.outsurfacepvs, &info.outnumsurfaces, NULL, 0, r_shadow_realtime_dlight_portalculling.integer >= 2, info.lightmins, info.lightmaxs, info.outmins, info.outmaxs);
640         }
641         else
642         {
643                 // use BSP recursion as lights are often small
644                 R_Q1BSP_RecursiveGetLightInfo(&info, info.model->brush.data_nodes);
645         }
646
647         // limit combined leaf box to light boundaries
648         outmins[0] = max(info.outmins[0] - 1, info.lightmins[0]);
649         outmins[1] = max(info.outmins[1] - 1, info.lightmins[1]);
650         outmins[2] = max(info.outmins[2] - 1, info.lightmins[2]);
651         outmaxs[0] = min(info.outmaxs[0] + 1, info.lightmaxs[0]);
652         outmaxs[1] = min(info.outmaxs[1] + 1, info.lightmaxs[1]);
653         outmaxs[2] = min(info.outmaxs[2] + 1, info.lightmaxs[2]);
654
655         *outnumleafspointer = info.outnumleafs;
656         *outnumsurfacespointer = info.outnumsurfaces;
657 }
658
659 void R_Q1BSP_CompileShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist)
660 {
661         model_t *model = ent->model;
662         msurface_t *surface;
663         int surfacelistindex;
664         float projectdistance = lightradius + model->radius*2 + r_shadow_projectdistance.value;
665         texture_t *texture;
666         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Begin(r_shadow_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
667         R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
668         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
669         {
670                 surface = model->data_surfaces + surfacelist[surfacelistindex];
671                 texture = surface->texture;
672                 if ((texture->basematerialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT | MATERIALFLAG_WALL)) != MATERIALFLAG_WALL)
673                         continue;
674                 if (texture->textureflags & (Q3TEXTUREFLAG_TWOSIDED | Q3TEXTUREFLAG_AUTOSPRITE | Q3TEXTUREFLAG_AUTOSPRITE2))
675                         continue;
676                 R_Shadow_MarkVolumeFromBox(surface->num_firstshadowmeshtriangle, surface->num_triangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, relativelightorigin, r_shadow_compilingrtlight->cullmins, r_shadow_compilingrtlight->cullmaxs, surface->mins, surface->maxs);
677         }
678         R_Shadow_VolumeFromList(model->brush.shadowmesh->numverts, model->brush.shadowmesh->numtriangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, model->brush.shadowmesh->neighbor3i, relativelightorigin, lightradius + model->radius + projectdistance, numshadowmark, shadowmarklist);
679         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Finish(r_shadow_mempool, r_shadow_compilingrtlight->static_meshchain_shadow, false, false);
680 }
681
682 extern float *rsurface_vertex3f;
683 extern float *rsurface_svector3f;
684 extern float *rsurface_tvector3f;
685 extern float *rsurface_normal3f;
686 extern void RSurf_SetVertexPointer(const entity_render_t *ent, const texture_t *texture, const msurface_t *surface, const vec3_t modelorg);
687
688 void R_Q1BSP_DrawShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist, const vec3_t lightmins, const vec3_t lightmaxs)
689 {
690         model_t *model = ent->model;
691         msurface_t *surface;
692         int surfacelistindex;
693         float projectdistance = lightradius + model->radius*2 + r_shadow_projectdistance.value;
694         vec3_t modelorg;
695         texture_t *texture;
696         // check the box in modelspace, it was already checked in worldspace
697         if (!BoxesOverlap(ent->model->normalmins, ent->model->normalmaxs, lightmins, lightmaxs))
698                 return;
699         if (r_drawcollisionbrushes.integer >= 2)
700                 return;
701         R_UpdateAllTextureInfo(ent);
702         if (model->brush.shadowmesh)
703         {
704                 R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
705                 for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
706                 {
707                         surface = model->data_surfaces + surfacelist[surfacelistindex];
708                         texture = surface->texture->currentframe;
709                         if ((texture->currentmaterialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT | MATERIALFLAG_WALL)) != MATERIALFLAG_WALL)
710                                 continue;
711                         if (texture->textureflags & (Q3TEXTUREFLAG_TWOSIDED | Q3TEXTUREFLAG_AUTOSPRITE | Q3TEXTUREFLAG_AUTOSPRITE2))
712                                 continue;
713                         R_Shadow_MarkVolumeFromBox(surface->num_firstshadowmeshtriangle, surface->num_triangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, relativelightorigin, lightmins, lightmaxs, surface->mins, surface->maxs);
714                 }
715                 R_Shadow_VolumeFromList(model->brush.shadowmesh->numverts, model->brush.shadowmesh->numtriangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, model->brush.shadowmesh->neighbor3i, relativelightorigin, lightradius + model->radius + projectdistance, numshadowmark, shadowmarklist);
716         }
717         else
718         {
719                 projectdistance = lightradius + ent->model->radius*2;
720                 Matrix4x4_Transform(&ent->inversematrix, r_vieworigin, modelorg);
721                 for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
722                 {
723                         surface = model->data_surfaces + surfacelist[surfacelistindex];
724                         // FIXME: get current skin
725                         texture = surface->texture;//R_FetchAliasSkin(ent, surface->groupmesh);
726                         if (texture->currentmaterialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT) || !surface->num_triangles)
727                                 continue;
728                         RSurf_SetVertexPointer(ent, texture, surface, modelorg);
729                         // identify lit faces within the bounding box
730                         R_Shadow_PrepareShadowMark(surface->groupmesh->num_triangles);
731                         R_Shadow_MarkVolumeFromBox(surface->num_firsttriangle, surface->num_triangles, rsurface_vertex3f, surface->groupmesh->data_element3i, relativelightorigin, lightmins, lightmaxs, surface->mins, surface->maxs);
732                         R_Shadow_VolumeFromList(surface->groupmesh->num_vertices, surface->groupmesh->num_triangles, rsurface_vertex3f, surface->groupmesh->data_element3i, surface->groupmesh->data_neighbor3i, relativelightorigin, projectdistance, numshadowmark, shadowmarklist);
733                 }
734         }
735 }
736
737 #define RSURF_MAX_BATCHSURFACES 1024
738
739 void R_Q1BSP_DrawLight(entity_render_t *ent, float *lightcolorbase, float *lightcolorpants, float *lightcolorshirt, int numsurfaces, const int *surfacelist)
740 {
741         model_t *model = ent->model;
742         msurface_t *surface;
743         texture_t *texture;
744         int surfacelistindex, batchnumsurfaces;
745         msurface_t *batchsurfacelist[RSURF_MAX_BATCHSURFACES];
746         vec3_t modelorg;
747         texture_t *tex;
748         rtexture_t *basetexture = NULL;
749         rtexture_t *glosstexture = NULL;
750         float specularscale = 0;
751         qboolean skip;
752         if (r_drawcollisionbrushes.integer >= 2)
753                 return;
754         if (VectorLength2(lightcolorbase) + VectorLength2(lightcolorpants) + VectorLength2(lightcolorshirt) < 0.0001)
755                 return;
756         R_UpdateAllTextureInfo(ent);
757         Matrix4x4_Transform(&ent->inversematrix, r_vieworigin, modelorg);
758         tex = NULL;
759         texture = NULL;
760         skip = false;
761         batchnumsurfaces = 0;
762         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
763         {
764                 if ((ent == r_refdef.worldentity && !r_worldsurfacevisible[surfacelist[surfacelistindex]]))
765                         continue;
766                 surface = model->data_surfaces + surfacelist[surfacelistindex];
767                 if (tex != surface->texture)
768                 {
769                         if (batchnumsurfaces > 0)
770                         {
771                                 R_Shadow_RenderSurfacesLighting(ent, texture, batchnumsurfaces, batchsurfacelist, lightcolorbase, lightcolorpants, lightcolorshirt, basetexture, texture->skin.pants, texture->skin.shirt, texture->skin.nmap, glosstexture, specularscale, modelorg);
772                                 batchnumsurfaces = 0;
773                         }
774                         tex = surface->texture;
775                         texture = surface->texture->currentframe;
776                         // FIXME: transparent surfaces need to be lit later
777                         skip = (texture->currentmaterialflags & (MATERIALFLAG_WALL | MATERIALFLAG_TRANSPARENT)) != MATERIALFLAG_WALL;
778                         if (skip)
779                                 continue;
780                         if (texture->textureflags & Q3TEXTUREFLAG_TWOSIDED)
781                                 qglDisable(GL_CULL_FACE);
782                         else
783                                 qglEnable(GL_CULL_FACE);
784                         glosstexture = r_texture_black;
785                         specularscale = 0;
786                         if (texture->skin.gloss)
787                         {
788                                 if (r_shadow_gloss.integer >= 1 && r_shadow_glossintensity.value > 0 && r_shadow_rtlight->specularscale > 0)
789                                 {
790                                         glosstexture = texture->skin.gloss;
791                                         specularscale = r_shadow_rtlight->specularscale * r_shadow_glossintensity.value;
792                                 }
793                         }
794                         else
795                         {
796                                 if (r_shadow_gloss.integer >= 2 && r_shadow_gloss2intensity.value > 0 && r_shadow_glossintensity.value > 0 && r_shadow_rtlight->specularscale > 0)
797                                 {
798                                         glosstexture = r_texture_white;
799                                         specularscale = r_shadow_rtlight->specularscale * r_shadow_gloss2intensity.value;
800                                 }
801                         }
802                         basetexture = (ent->colormap < 0 && texture->skin.merged) ? texture->skin.merged : texture->skin.base;
803                         if ((r_shadow_rtlight->ambientscale + r_shadow_rtlight->diffusescale) * (VectorLength2(lightcolorbase) + VectorLength2(lightcolorpants) + VectorLength2(lightcolorshirt)) + specularscale * VectorLength2(lightcolorbase) < (1.0f / 1048576.0f))
804                                 skip = true;
805                 }
806                 if (!skip && surface->num_triangles)
807                 {
808                         if (batchnumsurfaces == RSURF_MAX_BATCHSURFACES)
809                         {
810                                 R_Shadow_RenderSurfacesLighting(ent, texture, batchnumsurfaces, batchsurfacelist, lightcolorbase, lightcolorpants, lightcolorshirt, basetexture, texture->skin.pants, texture->skin.shirt, texture->skin.nmap, glosstexture, specularscale, modelorg);
811                                 batchnumsurfaces = 0;
812                         }
813                         batchsurfacelist[batchnumsurfaces++] = surface;
814                 }
815         }
816         if (batchnumsurfaces > 0)
817         {
818                 R_Shadow_RenderSurfacesLighting(ent, texture, batchnumsurfaces, batchsurfacelist, lightcolorbase, lightcolorpants, lightcolorshirt, basetexture, texture->skin.pants, texture->skin.shirt, texture->skin.nmap, glosstexture, specularscale, modelorg);
819                 batchnumsurfaces = 0;
820         }
821         qglEnable(GL_CULL_FACE);
822 }
823
824 #if 0
825 static void gl_surf_start(void)
826 {
827 }
828
829 static void gl_surf_shutdown(void)
830 {
831 }
832
833 static void gl_surf_newmap(void)
834 {
835 }
836 #endif
837
838 void GL_Surf_Init(void)
839 {
840
841         Cvar_RegisterVariable(&r_ambient);
842         Cvar_RegisterVariable(&r_drawportals);
843         Cvar_RegisterVariable(&r_testvis);
844         Cvar_RegisterVariable(&r_surfaceworldnode);
845         Cvar_RegisterVariable(&r_drawcollisionbrushes_polygonfactor);
846         Cvar_RegisterVariable(&r_drawcollisionbrushes_polygonoffset);
847         Cvar_RegisterVariable(&r_q3bsp_renderskydepth);
848
849         //R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown, gl_surf_newmap);
850 }
851