]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rsurf.c
fix bug with gl_combine 0 transparent water rendering in q1bsp (alpha was not being...
[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", "brighter world cheat (not allowed in multiplayer), value is 0-128"};
29 cvar_t r_drawportals = {0, "r_drawportals", "0", "shows portals (separating polygons) in world interior in quake1 maps"};
30 cvar_t r_lockpvs = {0, "r_lockpvs", "0", "disables pvs switching, allows you to walk around and inspect what is visible from a given location in the map (anything not visible from your current location will not be drawn)"};
31 cvar_t r_lockvisibility = {0, "r_lockvisibility", "0", "disables visibility updates, allows you to walk around and inspect what is visible from a given viewpoint in the map (anything offscreen at the moment this is enabled will not be drawn)"};
32 cvar_t r_useportalculling = {0, "r_useportalculling", "1", "use advanced portal culling visibility method to improve performance over just Potentially Visible Set, provides an even more significant speed improvement in unvised maps"};
33 cvar_t r_q3bsp_renderskydepth = {0, "r_q3bsp_renderskydepth", "0", "draws sky depth masking in q3 maps (as in q1 maps), this means for example that sky polygons can hide other things"};
34
35 // flag arrays used for visibility checking on world model
36 // (all other entities have no per-surface/per-leaf visibility checks)
37 // TODO: dynamic resize according to r_refdef.worldmodel->brush.num_clusters
38 unsigned char r_pvsbits[(32768+7)>>3];
39 // TODO: dynamic resize according to r_refdef.worldmodel->brush.num_leafs
40 unsigned char r_worldleafvisible[32768];
41 // TODO: dynamic resize according to r_refdef.worldmodel->num_surfaces
42 unsigned char r_worldsurfacevisible[262144];
43 // if true, the view is currently in a leaf without pvs data
44 qboolean r_worldnovis;
45
46 /*
47 ===============
48 R_BuildLightMap
49
50 Combine and scale multiple lightmaps into the 8.8 format in blocklights
51 ===============
52 */
53 void R_BuildLightMap (const entity_render_t *ent, msurface_t *surface)
54 {
55         int smax, tmax, i, size, size3, maps, l;
56         int *bl, scale;
57         unsigned char *lightmap, *out, *stain;
58         model_t *model = ent->model;
59         static int intblocklights[MAX_LIGHTMAP_SIZE*MAX_LIGHTMAP_SIZE*3]; // LordHavoc: *3 for colored lighting
60         static unsigned char templight[MAX_LIGHTMAP_SIZE*MAX_LIGHTMAP_SIZE*4];
61
62         // update cached lighting info
63         surface->cached_dlight = 0;
64
65         smax = (surface->lightmapinfo->extents[0]>>4)+1;
66         tmax = (surface->lightmapinfo->extents[1]>>4)+1;
67         size = smax*tmax;
68         size3 = size*3;
69         lightmap = surface->lightmapinfo->samples;
70
71 // set to full bright if no light data
72         bl = intblocklights;
73         if (!model->brushq1.lightdata)
74         {
75                 for (i = 0;i < size3;i++)
76                         bl[i] = 255*256;
77         }
78         else
79         {
80 // clear to no light
81                 memset(bl, 0, size3*sizeof(*bl));
82
83 // add all the lightmaps
84                 if (lightmap)
85                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3)
86                                 for (scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size3;i++)
87                                         bl[i] += lightmap[i] * scale;
88         }
89
90         stain = surface->lightmapinfo->stainsamples;
91         bl = intblocklights;
92         out = templight;
93         // the >> 16 shift adjusts down 8 bits to account for the stainmap
94         // scaling, and remaps the 0-65536 (2x overbright) to 0-256, it will
95         // be doubled during rendering to achieve 2x overbright
96         // (0 = 0.0, 128 = 1.0, 256 = 2.0)
97         if (model->brushq1.lightmaprgba)
98         {
99                 for (i = 0;i < size;i++)
100                 {
101                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
102                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
103                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
104                         *out++ = 255;
105                 }
106         }
107         else
108         {
109                 for (i = 0;i < size;i++)
110                 {
111                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
112                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
113                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
114                 }
115         }
116
117         R_UpdateTexture(surface->lightmaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
118
119         // update the surface's deluxemap if it has one
120         if (surface->deluxemaptexture != r_texture_blanknormalmap)
121         {
122                 vec3_t n;
123                 unsigned char *normalmap = surface->lightmapinfo->nmapsamples;
124                 lightmap = surface->lightmapinfo->samples;
125                 // clear to no normalmap
126                 bl = intblocklights;
127                 memset(bl, 0, size3*sizeof(*bl));
128                 // add all the normalmaps
129                 if (lightmap && normalmap)
130                 {
131                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3, normalmap += size3)
132                         {
133                                 for (scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size;i++)
134                                 {
135                                         // add the normalmap with weighting proportional to the style's lightmap intensity
136                                         l = (int)(VectorLength(lightmap + i*3) * scale);
137                                         bl[i*3+0] += ((int)normalmap[i*3+0] - 128) * l;
138                                         bl[i*3+1] += ((int)normalmap[i*3+1] - 128) * l;
139                                         bl[i*3+2] += ((int)normalmap[i*3+2] - 128) * l;
140                                 }
141                         }
142                 }
143                 bl = intblocklights;
144                 out = templight;
145                 // we simply renormalize the weighted normals to get a valid deluxemap
146                 if (model->brushq1.lightmaprgba)
147                 {
148                         for (i = 0;i < size;i++, bl += 3)
149                         {
150                                 VectorCopy(bl, n);
151                                 VectorNormalize(n);
152                                 l = (int)(n[0] * 128 + 128);*out++ = bound(0, l, 255);
153                                 l = (int)(n[1] * 128 + 128);*out++ = bound(0, l, 255);
154                                 l = (int)(n[2] * 128 + 128);*out++ = bound(0, l, 255);
155                                 *out++ = 255;
156                         }
157                 }
158                 else
159                 {
160                         for (i = 0;i < size;i++, bl += 3)
161                         {
162                                 VectorCopy(bl, n);
163                                 VectorNormalize(n);
164                                 l = (int)(n[0] * 128 + 128);*out++ = bound(0, l, 255);
165                                 l = (int)(n[1] * 128 + 128);*out++ = bound(0, l, 255);
166                                 l = (int)(n[2] * 128 + 128);*out++ = bound(0, l, 255);
167                         }
168                 }
169                 R_UpdateTexture(surface->deluxemaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
170         }
171 }
172
173 void R_StainNode (mnode_t *node, model_t *model, const vec3_t origin, float radius, const float fcolor[8])
174 {
175         float ndist, a, ratio, maxdist, maxdist2, maxdist3, invradius, sdtable[256], td, dist2;
176         msurface_t *surface, *endsurface;
177         int i, s, t, smax, tmax, smax3, impacts, impactt, stained;
178         unsigned char *bl;
179         vec3_t impact;
180
181         maxdist = radius * radius;
182         invradius = 1.0f / radius;
183
184 loc0:
185         if (!node->plane)
186                 return;
187         ndist = PlaneDiff(origin, node->plane);
188         if (ndist > radius)
189         {
190                 node = node->children[0];
191                 goto loc0;
192         }
193         if (ndist < -radius)
194         {
195                 node = node->children[1];
196                 goto loc0;
197         }
198
199         dist2 = ndist * ndist;
200         maxdist3 = maxdist - dist2;
201
202         if (node->plane->type < 3)
203         {
204                 VectorCopy(origin, impact);
205                 impact[node->plane->type] -= ndist;
206         }
207         else
208         {
209                 impact[0] = origin[0] - node->plane->normal[0] * ndist;
210                 impact[1] = origin[1] - node->plane->normal[1] * ndist;
211                 impact[2] = origin[2] - node->plane->normal[2] * ndist;
212         }
213
214         for (surface = model->data_surfaces + node->firstsurface, endsurface = surface + node->numsurfaces;surface < endsurface;surface++)
215         {
216                 if (surface->lightmapinfo->stainsamples)
217                 {
218                         smax = (surface->lightmapinfo->extents[0] >> 4) + 1;
219                         tmax = (surface->lightmapinfo->extents[1] >> 4) + 1;
220
221                         impacts = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3] - surface->lightmapinfo->texturemins[0]);
222                         impactt = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3] - surface->lightmapinfo->texturemins[1]);
223
224                         s = bound(0, impacts, smax * 16) - impacts;
225                         t = bound(0, impactt, tmax * 16) - impactt;
226                         i = (int)(s * s + t * t + dist2);
227                         if (i > maxdist)
228                                 continue;
229
230                         // reduce calculations
231                         for (s = 0, i = impacts; s < smax; s++, i -= 16)
232                                 sdtable[s] = i * i + dist2;
233
234                         bl = surface->lightmapinfo->stainsamples;
235                         smax3 = smax * 3;
236                         stained = false;
237
238                         i = impactt;
239                         for (t = 0;t < tmax;t++, i -= 16)
240                         {
241                                 td = i * i;
242                                 // make sure some part of it is visible on this line
243                                 if (td < maxdist3)
244                                 {
245                                         maxdist2 = maxdist - td;
246                                         for (s = 0;s < smax;s++)
247                                         {
248                                                 if (sdtable[s] < maxdist2)
249                                                 {
250                                                         ratio = lhrandom(0.0f, 1.0f);
251                                                         a = (fcolor[3] + ratio * fcolor[7]) * (1.0f - sqrt(sdtable[s] + td) * invradius);
252                                                         if (a >= (1.0f / 64.0f))
253                                                         {
254                                                                 if (a > 1)
255                                                                         a = 1;
256                                                                 bl[0] = (unsigned char) ((float) bl[0] + a * ((fcolor[0] + ratio * fcolor[4]) - (float) bl[0]));
257                                                                 bl[1] = (unsigned char) ((float) bl[1] + a * ((fcolor[1] + ratio * fcolor[5]) - (float) bl[1]));
258                                                                 bl[2] = (unsigned char) ((float) bl[2] + a * ((fcolor[2] + ratio * fcolor[6]) - (float) bl[2]));
259                                                                 stained = true;
260                                                         }
261                                                 }
262                                                 bl += 3;
263                                         }
264                                 }
265                                 else // skip line
266                                         bl += smax3;
267                         }
268                         // force lightmap upload
269                         if (stained)
270                                 surface->cached_dlight = true;
271                 }
272         }
273
274         if (node->children[0]->plane)
275         {
276                 if (node->children[1]->plane)
277                 {
278                         R_StainNode(node->children[0], model, origin, radius, fcolor);
279                         node = node->children[1];
280                         goto loc0;
281                 }
282                 else
283                 {
284                         node = node->children[0];
285                         goto loc0;
286                 }
287         }
288         else if (node->children[1]->plane)
289         {
290                 node = node->children[1];
291                 goto loc0;
292         }
293 }
294
295 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)
296 {
297         int n;
298         float fcolor[8];
299         entity_render_t *ent;
300         model_t *model;
301         vec3_t org;
302         if (r_refdef.worldmodel == NULL || !r_refdef.worldmodel->brush.data_nodes || !r_refdef.worldmodel->brushq1.lightdata)
303                 return;
304         fcolor[0] = cr1;
305         fcolor[1] = cg1;
306         fcolor[2] = cb1;
307         fcolor[3] = ca1 * (1.0f / 64.0f);
308         fcolor[4] = cr2 - cr1;
309         fcolor[5] = cg2 - cg1;
310         fcolor[6] = cb2 - cb1;
311         fcolor[7] = (ca2 - ca1) * (1.0f / 64.0f);
312
313         R_StainNode(r_refdef.worldmodel->brush.data_nodes + r_refdef.worldmodel->brushq1.hulls[0].firstclipnode, r_refdef.worldmodel, origin, radius, fcolor);
314
315         // look for embedded bmodels
316         for (n = 0;n < cl.num_brushmodel_entities;n++)
317         {
318                 ent = &cl.entities[cl.brushmodel_entities[n]].render;
319                 model = ent->model;
320                 if (model && model->name[0] == '*')
321                 {
322                         if (model->brush.data_nodes)
323                         {
324                                 Matrix4x4_Transform(&ent->inversematrix, origin, org);
325                                 R_StainNode(model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode, model, org, radius, fcolor);
326                         }
327                 }
328         }
329 }
330
331
332 /*
333 =============================================================
334
335         BRUSH MODELS
336
337 =============================================================
338 */
339
340 static void R_DrawPortal_Callback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
341 {
342         // due to the hacky nature of this function's parameters, this is never
343         // called with a batch, so numsurfaces is always 1, and the surfacelist
344         // contains only a leaf number for coloring purposes
345         const mportal_t *portal = (mportal_t *)ent;
346         int i, numpoints;
347         float *v;
348         float vertex3f[POLYGONELEMENTS_MAXPOINTS*3];
349         CHECKGLERROR
350         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
351         GL_DepthMask(false);
352         GL_DepthTest(true);
353         qglDisable(GL_CULL_FACE);CHECKGLERROR
354         R_Mesh_Matrix(&identitymatrix);
355
356         numpoints = min(portal->numpoints, POLYGONELEMENTS_MAXPOINTS);
357
358         R_Mesh_VertexPointer(vertex3f);
359         R_Mesh_ColorPointer(NULL);
360         R_Mesh_ResetTextureState();
361
362         i = surfacelist[0];
363         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f),
364                          ((i & 0x0038) >> 3) * (1.0f / 7.0f),
365                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f),
366                          0.125f);
367         for (i = 0, v = vertex3f;i < numpoints;i++, v += 3)
368                 VectorCopy(portal->points[i].position, v);
369         R_Mesh_Draw(0, numpoints, numpoints - 2, polygonelements);
370         qglEnable(GL_CULL_FACE);CHECKGLERROR
371 }
372
373 // LordHavoc: this is just a nice debugging tool, very slow
374 static void R_DrawPortals(void)
375 {
376         int i, leafnum;
377         mportal_t *portal;
378         float center[3], f;
379         model_t *model = r_refdef.worldmodel;
380         if (model == NULL)
381                 return;
382         for (leafnum = 0;leafnum < r_refdef.worldmodel->brush.num_leafs;leafnum++)
383         {
384                 if (r_worldleafvisible[leafnum])
385                 {
386                         //for (portalnum = 0, portal = model->brush.data_portals;portalnum < model->brush.num_portals;portalnum++, portal++)
387                         for (portal = r_refdef.worldmodel->brush.data_leafs[leafnum].portals;portal;portal = portal->next)
388                         {
389                                 if (portal->numpoints <= POLYGONELEMENTS_MAXPOINTS)
390                                 if (!R_CullBox(portal->mins, portal->maxs))
391                                 {
392                                         VectorClear(center);
393                                         for (i = 0;i < portal->numpoints;i++)
394                                                 VectorAdd(center, portal->points[i].position, center);
395                                         f = ixtable[portal->numpoints];
396                                         VectorScale(center, f, center);
397                                         R_MeshQueue_AddTransparent(center, R_DrawPortal_Callback, (entity_render_t *)portal, leafnum, r_shadow_rtlight);
398                                 }
399                         }
400                 }
401         }
402 }
403
404 void R_WorldVisibility(void)
405 {
406         int i, j, *mark;
407         mleaf_t *leaf;
408         mleaf_t *viewleaf;
409         model_t *model = r_refdef.worldmodel;
410
411         if (!model)
412                 return;
413
414         // if possible find the leaf the view origin is in
415         viewleaf = model->brush.PointInLeaf ? model->brush.PointInLeaf(model, r_vieworigin) : NULL;
416         // if possible fetch the visible cluster bits
417         if (!r_lockpvs.integer && model->brush.FatPVS)
418                 model->brush.FatPVS(model, r_vieworigin, 2, r_pvsbits, sizeof(r_pvsbits));
419
420         if (!r_lockvisibility.integer)
421         {
422                 // clear the visible surface and leaf flags arrays
423                 memset(r_worldsurfacevisible, 0, model->num_surfaces);
424                 memset(r_worldleafvisible, 0, model->brush.num_leafs);
425
426                 r_worldnovis = false;
427
428                 // if floating around in the void (no pvs data available, and no
429                 // portals available), simply use all on-screen leafs.
430                 if (!viewleaf || viewleaf->clusterindex < 0)
431                 {
432                         // no visibility method: (used when floating around in the void)
433                         // simply cull each leaf to the frustum (view pyramid)
434                         // similar to quake's RecursiveWorldNode but without cache misses
435                         r_worldnovis = true;
436                         for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
437                         {
438                                 // if leaf is in current pvs and on the screen, mark its surfaces
439                                 if (!R_CullBox(leaf->mins, leaf->maxs))
440                                 {
441                                         renderstats.world_leafs++;
442                                         r_worldleafvisible[j] = true;
443                                         if (leaf->numleafsurfaces)
444                                                 for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
445                                                         r_worldsurfacevisible[*mark] = true;
446                                 }
447                         }
448                 }
449                 // if the user prefers to disable portal culling (testing?), simply
450                 // use all on-screen leafs that are in the pvs.
451                 else if (!r_useportalculling.integer)
452                 {
453                         // pvs method:
454                         // simply check if each leaf is in the Potentially Visible Set,
455                         // and cull to frustum (view pyramid)
456                         // similar to quake's RecursiveWorldNode but without cache misses
457                         for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
458                         {
459                                 // if leaf is in current pvs and on the screen, mark its surfaces
460                                 if (CHECKPVSBIT(r_pvsbits, leaf->clusterindex) && !R_CullBox(leaf->mins, leaf->maxs))
461                                 {
462                                         renderstats.world_leafs++;
463                                         r_worldleafvisible[j] = true;
464                                         if (leaf->numleafsurfaces)
465                                                 for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
466                                                         r_worldsurfacevisible[*mark] = true;
467                                 }
468                         }
469                 }
470                 // otherwise use a recursive portal flow, culling each portal to
471                 // frustum and checking if the leaf the portal leads to is in the pvs
472                 else
473                 {
474                         int leafstackpos;
475                         mportal_t *p;
476                         mleaf_t *leafstack[8192];
477                         // simple-frustum portal method:
478                         // follows portals leading outward from viewleaf, does not venture
479                         // offscreen or into leafs that are not visible, faster than
480                         // Quake's RecursiveWorldNode and vastly better in unvised maps,
481                         // often culls some surfaces that pvs alone would miss
482                         // (such as a room in pvs that is hidden behind a wall, but the
483                         //  passage leading to the room is off-screen)
484                         leafstack[0] = viewleaf;
485                         leafstackpos = 1;
486                         while (leafstackpos)
487                         {
488                                 renderstats.world_leafs++;
489                                 leaf = leafstack[--leafstackpos];
490                                 r_worldleafvisible[leaf - model->brush.data_leafs] = true;
491                                 // mark any surfaces bounding this leaf
492                                 if (leaf->numleafsurfaces)
493                                         for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
494                                                 r_worldsurfacevisible[*mark] = true;
495                                 // follow portals into other leafs
496                                 // the checks are:
497                                 // if viewer is behind portal (portal faces outward into the scene)
498                                 // and the portal polygon's bounding box is on the screen
499                                 // and the leaf has not been visited yet
500                                 // and the leaf is visible in the pvs
501                                 // (the first two checks won't cause as many cache misses as the leaf checks)
502                                 for (p = leaf->portals;p;p = p->next)
503                                 {
504                                         renderstats.world_portals++;
505                                         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))
506                                                 leafstack[leafstackpos++] = p->past;
507                                 }
508                         }
509                 }
510         }
511
512         if (r_drawportals.integer)
513                 R_DrawPortals();
514 }
515
516 void R_Q1BSP_DrawSky(entity_render_t *ent)
517 {
518         if (ent->model == NULL)
519                 return;
520         R_DrawSurfaces(ent, true);
521 }
522
523 void R_Q1BSP_Draw(entity_render_t *ent)
524 {
525         model_t *model = ent->model;
526         if (model == NULL)
527                 return;
528         R_DrawSurfaces(ent, false);
529 }
530
531 typedef struct r_q1bsp_getlightinfo_s
532 {
533         model_t *model;
534         vec3_t relativelightorigin;
535         float lightradius;
536         int *outleaflist;
537         unsigned char *outleafpvs;
538         int outnumleafs;
539         int *outsurfacelist;
540         unsigned char *outsurfacepvs;
541         int outnumsurfaces;
542         vec3_t outmins;
543         vec3_t outmaxs;
544         vec3_t lightmins;
545         vec3_t lightmaxs;
546         const unsigned char *pvs;
547 }
548 r_q1bsp_getlightinfo_t;
549
550 void R_Q1BSP_RecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, mnode_t *node)
551 {
552         int sides;
553         mleaf_t *leaf;
554         for (;;)
555         {
556                 mplane_t *plane = node->plane;
557                 //if (!BoxesOverlap(info->lightmins, info->lightmaxs, node->mins, node->maxs))
558                 //      return;
559                 if (!plane)
560                         break;
561                 if (plane->type < 3)
562                         sides = ((info->lightmaxs[plane->type] >= plane->dist) | ((info->lightmins[plane->type] < plane->dist) << 1));
563                 else
564                         sides = BoxOnPlaneSide(info->lightmins, info->lightmaxs, plane);
565                 if (sides == 3)
566                 {
567                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
568                         node = node->children[1];
569                 }
570                 else if (sides == 0)
571                         return; // ERROR: NAN bounding box!
572                 else
573                         node = node->children[sides - 1];
574         }
575         leaf = (mleaf_t *)node;
576         if (info->pvs == NULL || CHECKPVSBIT(info->pvs, leaf->clusterindex))
577         {
578                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
579                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
580                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
581                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
582                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
583                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
584                 if (info->outleafpvs)
585                 {
586                         int leafindex = leaf - info->model->brush.data_leafs;
587                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
588                         {
589                                 SETPVSBIT(info->outleafpvs, leafindex);
590                                 info->outleaflist[info->outnumleafs++] = leafindex;
591                         }
592                 }
593                 if (info->outsurfacepvs)
594                 {
595                         int leafsurfaceindex;
596                         for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
597                         {
598                                 int surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
599                                 if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
600                                 {
601                                         msurface_t *surface = info->model->data_surfaces + surfaceindex;
602                                         if (BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs))
603                                         {
604                                                 int triangleindex, t;
605                                                 const int *e;
606                                                 const vec_t *v[3];
607                                                 for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
608                                                 {
609                                                         v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
610                                                         v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
611                                                         v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
612                                                         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])))
613                                                         {
614                                                                 SETPVSBIT(info->outsurfacepvs, surfaceindex);
615                                                                 info->outsurfacelist[info->outnumsurfaces++] = surfaceindex;
616                                                                 break;
617                                                         }
618                                                 }
619                                         }
620                                 }
621                         }
622                 }
623         }
624 }
625
626 void R_Q1BSP_GetLightInfo(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, vec3_t outmins, vec3_t outmaxs, int *outleaflist, unsigned char *outleafpvs, int *outnumleafspointer, int *outsurfacelist, unsigned char *outsurfacepvs, int *outnumsurfacespointer)
627 {
628         r_q1bsp_getlightinfo_t info;
629         VectorCopy(relativelightorigin, info.relativelightorigin);
630         info.lightradius = lightradius;
631         info.lightmins[0] = info.relativelightorigin[0] - info.lightradius;
632         info.lightmins[1] = info.relativelightorigin[1] - info.lightradius;
633         info.lightmins[2] = info.relativelightorigin[2] - info.lightradius;
634         info.lightmaxs[0] = info.relativelightorigin[0] + info.lightradius;
635         info.lightmaxs[1] = info.relativelightorigin[1] + info.lightradius;
636         info.lightmaxs[2] = info.relativelightorigin[2] + info.lightradius;
637         if (ent->model == NULL)
638         {
639                 VectorCopy(info.lightmins, outmins);
640                 VectorCopy(info.lightmaxs, outmaxs);
641                 *outnumleafspointer = 0;
642                 *outnumsurfacespointer = 0;
643                 return;
644         }
645         info.model = ent->model;
646         info.outleaflist = outleaflist;
647         info.outleafpvs = outleafpvs;
648         info.outnumleafs = 0;
649         info.outsurfacelist = outsurfacelist;
650         info.outsurfacepvs = outsurfacepvs;
651         info.outnumsurfaces = 0;
652         VectorCopy(info.relativelightorigin, info.outmins);
653         VectorCopy(info.relativelightorigin, info.outmaxs);
654         memset(outleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
655         memset(outsurfacepvs, 0, (info.model->nummodelsurfaces + 7) >> 3);
656         if (info.model->brush.GetPVS)
657                 info.pvs = info.model->brush.GetPVS(info.model, info.relativelightorigin);
658         else
659                 info.pvs = NULL;
660         R_UpdateAllTextureInfo(ent);
661         if (r_shadow_compilingrtlight)
662         {
663                 // use portal recursion for exact light volume culling, and exact surface checking
664                 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);
665         }
666         else if (r_shadow_realtime_dlight_portalculling.integer)
667         {
668                 // use portal recursion for exact light volume culling, but not the expensive exact surface checking
669                 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);
670         }
671         else
672         {
673                 // use BSP recursion as lights are often small
674                 R_Q1BSP_RecursiveGetLightInfo(&info, info.model->brush.data_nodes);
675         }
676
677         // limit combined leaf box to light boundaries
678         outmins[0] = max(info.outmins[0] - 1, info.lightmins[0]);
679         outmins[1] = max(info.outmins[1] - 1, info.lightmins[1]);
680         outmins[2] = max(info.outmins[2] - 1, info.lightmins[2]);
681         outmaxs[0] = min(info.outmaxs[0] + 1, info.lightmaxs[0]);
682         outmaxs[1] = min(info.outmaxs[1] + 1, info.lightmaxs[1]);
683         outmaxs[2] = min(info.outmaxs[2] + 1, info.lightmaxs[2]);
684
685         *outnumleafspointer = info.outnumleafs;
686         *outnumsurfacespointer = info.outnumsurfaces;
687 }
688
689 void R_Q1BSP_CompileShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist)
690 {
691         model_t *model = ent->model;
692         msurface_t *surface;
693         int surfacelistindex;
694         float projectdistance = lightradius + model->radius*2 + r_shadow_projectdistance.value;
695         texture_t *texture;
696         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Begin(r_main_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
697         R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
698         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
699         {
700                 surface = model->data_surfaces + surfacelist[surfacelistindex];
701                 texture = surface->texture;
702                 if ((texture->basematerialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT | MATERIALFLAG_WALL)) != MATERIALFLAG_WALL)
703                         continue;
704                 if ((texture->textureflags & (Q3TEXTUREFLAG_TWOSIDED | Q3TEXTUREFLAG_AUTOSPRITE | Q3TEXTUREFLAG_AUTOSPRITE2)) || (ent->flags & RENDER_NOCULLFACE))
705                         continue;
706                 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);
707         }
708         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);
709         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Finish(r_main_mempool, r_shadow_compilingrtlight->static_meshchain_shadow, false, false);
710 }
711
712 void R_Q1BSP_DrawShadowVolume_Batch(const vec3_t relativelightorigin, const vec3_t lightmins, const vec3_t lightmaxs, int texturenumsurfaces, msurface_t **texturesurfacelist)
713 {
714         int texturesurfaceindex;
715         RSurf_PrepareVerticesForBatch(false, false, texturenumsurfaces, texturesurfacelist);
716         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
717         {
718                 msurface_t *surface = texturesurfacelist[texturesurfaceindex];
719                 R_Shadow_MarkVolumeFromBox(surface->num_firsttriangle, surface->num_triangles, rsurface_vertex3f, rsurface_model->surfmesh.data_element3i, relativelightorigin, lightmins, lightmaxs, surface->mins, surface->maxs);
720         }
721 }
722
723 void R_Q1BSP_DrawShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, float lightradius, int modelnumsurfaces, const int *modelsurfacelist, const vec3_t lightmins, const vec3_t lightmaxs)
724 {
725         model_t *model = ent->model;
726         msurface_t *surface;
727         int modelsurfacelistindex;
728         int f = 0;
729         float projectdistance = lightradius + model->radius*2 + r_shadow_projectdistance.value;
730         texture_t *t = NULL;
731         const int maxsurfacelist = 1024;
732         int numsurfacelist = 0;
733         msurface_t *surfacelist[1024];
734         // check the box in modelspace, it was already checked in worldspace
735         if (!BoxesOverlap(model->normalmins, model->normalmaxs, lightmins, lightmaxs))
736                 return;
737         R_UpdateAllTextureInfo(ent);
738         if (model->brush.shadowmesh)
739         {
740                 R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
741                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
742                 {
743                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
744                         t = surface->texture->currentframe;
745                         if ((t->currentmaterialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT | MATERIALFLAG_WALL)) != MATERIALFLAG_WALL)
746                                 continue;
747                         if ((t->textureflags & (Q3TEXTUREFLAG_TWOSIDED | Q3TEXTUREFLAG_AUTOSPRITE | Q3TEXTUREFLAG_AUTOSPRITE2)) || (ent->flags & RENDER_NOCULLFACE))
748                                 continue;
749                         R_Shadow_MarkVolumeFromBox(surface->num_firstshadowmeshtriangle, surface->num_triangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, relativelightorigin, lightmins, lightmaxs, surface->mins, surface->maxs);
750                 }
751                 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);
752         }
753         else
754         {
755                 projectdistance = lightradius + model->radius*2;
756                 RSurf_ActiveEntity(ent);
757                 R_Shadow_PrepareShadowMark(model->surfmesh.num_triangles);
758                 // identify lit faces within the bounding box
759                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
760                 {
761                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
762                         if (t != surface->texture || numsurfacelist >= maxsurfacelist)
763                         {
764                                 if (numsurfacelist)
765                                 {
766                                         R_Q1BSP_DrawShadowVolume_Batch(relativelightorigin, lightmins, lightmaxs, numsurfacelist, surfacelist);
767                                         numsurfacelist = 0;
768                                 }
769                                 t = surface->texture;
770                                 rsurface_texture = t->currentframe;
771                                 f = (rsurface_texture->currentmaterialflags & (MATERIALFLAG_NODRAW | MATERIALFLAG_TRANSPARENT | MATERIALFLAG_WALL)) == MATERIALFLAG_WALL;
772                         }
773                         if (f && surface->num_triangles)
774                                 surfacelist[numsurfacelist++] = surface;
775                 }
776                 if (numsurfacelist)
777                         R_Q1BSP_DrawShadowVolume_Batch(relativelightorigin, lightmins, lightmaxs, numsurfacelist, surfacelist);
778                 R_Shadow_VolumeFromList(model->surfmesh.num_vertices, model->surfmesh.num_triangles, rsurface_vertex3f, model->surfmesh.data_element3i, model->surfmesh.data_neighbor3i, relativelightorigin, projectdistance, numshadowmark, shadowmarklist);
779         }
780 }
781
782 #define BATCHSIZE 256
783
784 static void R_Q1BSP_DrawLight_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
785 {
786         int surfacelistindex, batchcount;
787         texture_t *t;
788         msurface_t *batchsurfaces[BATCHSIZE];
789         // note: in practice this never actualy batches, oh well
790         R_Shadow_RenderMode_Begin();
791         R_Shadow_RenderMode_ActiveLight((rtlight_t *)rtlight);
792         R_Shadow_RenderMode_Lighting(false, true);
793         R_Shadow_SetupEntityLight(ent);
794         t = NULL;
795         batchcount = 0;
796         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
797         {
798                 msurface_t *surface = ent->model->data_surfaces + surfacelist[surfacelistindex];
799                 if (t != surface->texture)
800                 {
801                         if (batchcount > 0)
802                                 R_Shadow_RenderSurfacesLighting(batchcount, batchsurfaces);
803                         batchcount = 0;
804                         t = surface->texture;
805                         R_UpdateTextureInfo(ent, t);
806                         rsurface_texture = t->currentframe;
807                 }
808                 batchsurfaces[batchcount++] = surface;
809         }
810         if (batchcount > 0)
811                 R_Shadow_RenderSurfacesLighting(batchcount, batchsurfaces);
812         R_Shadow_RenderMode_End();
813 }
814
815 static void R_Q1BSP_DrawLight_TransparentBatch(int batchnumsurfaces, msurface_t **batchsurfacelist)
816 {
817         int batchsurfaceindex;
818         msurface_t *batchsurface;
819         vec3_t tempcenter, center;
820         for (batchsurfaceindex = 0;batchsurfaceindex < batchnumsurfaces;batchsurfaceindex++)
821         {
822                 batchsurface = batchsurfacelist[batchsurfaceindex];
823                 tempcenter[0] = (batchsurface->mins[0] + batchsurface->maxs[0]) * 0.5f;
824                 tempcenter[1] = (batchsurface->mins[1] + batchsurface->maxs[1]) * 0.5f;
825                 tempcenter[2] = (batchsurface->mins[2] + batchsurface->maxs[2]) * 0.5f;
826                 Matrix4x4_Transform(&rsurface_entity->matrix, tempcenter, center);
827                 R_MeshQueue_AddTransparent(rsurface_texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST ? r_vieworigin : center, R_Q1BSP_DrawLight_TransparentCallback, rsurface_entity, batchsurface - rsurface_model->data_surfaces, r_shadow_rtlight);
828         }
829 }
830
831 #define RSURF_MAX_BATCHSURFACES 1024
832
833 void R_Q1BSP_DrawLight(entity_render_t *ent, int numsurfaces, const int *surfacelist)
834 {
835         model_t *model = ent->model;
836         msurface_t *surface;
837         int surfacelistindex, batchnumsurfaces;
838         msurface_t *batchsurfacelist[RSURF_MAX_BATCHSURFACES];
839         texture_t *tex;
840         qboolean skip;
841         CHECKGLERROR
842         RSurf_ActiveEntity(ent);
843         R_UpdateAllTextureInfo(ent);
844         tex = NULL;
845         rsurface_texture = NULL;
846         skip = false;
847         batchnumsurfaces = 0;
848         CHECKGLERROR
849         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
850         {
851                 if ((ent == r_refdef.worldentity && !r_worldsurfacevisible[surfacelist[surfacelistindex]]))
852                         continue;
853                 surface = model->data_surfaces + surfacelist[surfacelistindex];
854                 renderstats.lights_lighttriangles += surface->num_triangles;
855                 if (tex != surface->texture)
856                 {
857                         if (batchnumsurfaces > 0)
858                         {
859                                 if (rsurface_texture->currentmaterialflags & MATERIALFLAG_BLENDED)
860                                         R_Q1BSP_DrawLight_TransparentBatch(batchnumsurfaces, batchsurfacelist);
861                                 else
862                                         R_Shadow_RenderSurfacesLighting(batchnumsurfaces, batchsurfacelist);
863                                 batchnumsurfaces = 0;
864                         }
865                         tex = surface->texture;
866                         rsurface_texture = surface->texture->currentframe;
867                         skip = (rsurface_texture->currentmaterialflags & MATERIALFLAG_SKY) != 0;
868                         if (skip)
869                                 continue;
870                 }
871                 if (!skip && surface->num_triangles)
872                 {
873                         if (batchnumsurfaces == RSURF_MAX_BATCHSURFACES)
874                         {
875                                 if (rsurface_texture->currentmaterialflags & MATERIALFLAG_BLENDED)
876                                         R_Q1BSP_DrawLight_TransparentBatch(batchnumsurfaces, batchsurfacelist);
877                                 else
878                                         R_Shadow_RenderSurfacesLighting(batchnumsurfaces, batchsurfacelist);
879                                 batchnumsurfaces = 0;
880                         }
881                         batchsurfacelist[batchnumsurfaces++] = surface;
882                 }
883         }
884         if (batchnumsurfaces > 0)
885         {
886                 if (rsurface_texture->currentmaterialflags & MATERIALFLAG_BLENDED)
887                         R_Q1BSP_DrawLight_TransparentBatch(batchnumsurfaces, batchsurfacelist);
888                 else
889                         R_Shadow_RenderSurfacesLighting(batchnumsurfaces, batchsurfacelist);
890                 batchnumsurfaces = 0;
891         }
892         qglEnable(GL_CULL_FACE);CHECKGLERROR
893 }
894
895 //Made by [515]
896 void R_ReplaceWorldTexture (void)
897 {
898         model_t         *m;
899         texture_t       *t;
900         int                     i;
901         const char      *r, *newt;
902         m = r_refdef.worldmodel;
903
904         if(Cmd_Argc() < 2)
905         {
906                 Con_Print("r_replacemaptexture <texname> <newtexname> - replaces texture\n");
907                 Con_Print("r_replacemaptexture <texname> - switch back to default texture\n");
908                 return;
909         }
910         if(!cl.islocalgame || !cl.worldmodel)
911         {
912                 Con_Print("This command works only in singleplayer\n");
913                 return;
914         }
915         r = Cmd_Argv(1);
916         newt = Cmd_Argv(2);
917         if(!newt[0])
918                 newt = r;
919         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
920         {
921                 if(t->width && !strcasecmp(t->name, r))
922                 {
923                         if(Mod_LoadSkinFrame(&t->skin, (char*)newt, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE | TEXF_PICMIP, false, r_fullbrights.integer))
924                         {
925                                 Con_Printf("%s replaced with %s\n", r, newt);
926                                 return;
927                         }
928                         else
929                         {
930                                 Con_Printf("%s was not found\n", newt);
931                                 Mod_LoadSkinFrame(&t->skin, (char*)r, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE | TEXF_PICMIP, false, r_fullbrights.integer);//back to default
932                                 return;
933                         }
934                 }
935         }
936 }
937
938 //Made by [515]
939 void R_ListWorldTextures (void)
940 {
941         model_t         *m;
942         texture_t       *t;
943         int                     i;
944         m = r_refdef.worldmodel;
945
946         Con_Print("Worldmodel textures :\n");
947         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
948                 if(t->skin.base != r_texture_notexture)
949                         Con_Printf("%s\n", t->name);
950 }
951
952 #if 0
953 static void gl_surf_start(void)
954 {
955 }
956
957 static void gl_surf_shutdown(void)
958 {
959 }
960
961 static void gl_surf_newmap(void)
962 {
963 }
964 #endif
965
966 void GL_Surf_Init(void)
967 {
968
969         Cvar_RegisterVariable(&r_ambient);
970         Cvar_RegisterVariable(&r_drawportals);
971         Cvar_RegisterVariable(&r_lockpvs);
972         Cvar_RegisterVariable(&r_lockvisibility);
973         Cvar_RegisterVariable(&r_useportalculling);
974         Cvar_RegisterVariable(&r_q3bsp_renderskydepth);
975
976         Cmd_AddCommand ("r_replacemaptexture", R_ReplaceWorldTexture, "override a map texture for testing purposes");   // By [515]
977         Cmd_AddCommand ("r_listmaptextures", R_ListWorldTextures, "list all textures used by the current map"); // By [515]
978
979         //R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown, gl_surf_newmap);
980 }
981