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