]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rsurf.c
added tracking of memory usage of VBO/EBO buffers
[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", "brightens map, 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] = 128*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_DepthRange(0, 1);
341         GL_DepthTest(true);
342         GL_CullFace(GL_NONE);
343         R_Mesh_Matrix(&identitymatrix);
344
345         numpoints = min(portal->numpoints, POLYGONELEMENTS_MAXPOINTS);
346
347         R_Mesh_VertexPointer(vertex3f, 0, 0);
348         R_Mesh_ColorPointer(NULL, 0, 0);
349         R_Mesh_ResetTextureState();
350
351         i = surfacelist[0];
352         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f) * r_view.colorscale,
353                          ((i & 0x0038) >> 3) * (1.0f / 7.0f) * r_view.colorscale,
354                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f) * r_view.colorscale,
355                          0.125f);
356         for (i = 0, v = vertex3f;i < numpoints;i++, v += 3)
357                 VectorCopy(portal->points[i].position, v);
358         R_Mesh_Draw(0, numpoints, numpoints - 2, polygonelements, 0, 0);
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                                 leaf = leafstack[--leafstackpos];
477                                 if (r_viewcache.world_leafvisible[leaf - model->brush.data_leafs])
478                                         continue;
479                                 r_refdef.stats.world_leafs++;
480                                 r_viewcache.world_leafvisible[leaf - model->brush.data_leafs] = true;
481                                 // mark any surfaces bounding this leaf
482                                 if (leaf->numleafsurfaces)
483                                         for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
484                                                 r_viewcache.world_surfacevisible[*mark] = true;
485                                 // follow portals into other leafs
486                                 // the checks are:
487                                 // if viewer is behind portal (portal faces outward into the scene)
488                                 // and the portal polygon's bounding box is on the screen
489                                 // and the leaf has not been visited yet
490                                 // and the leaf is visible in the pvs
491                                 // (the first two checks won't cause as many cache misses as the leaf checks)
492                                 for (p = leaf->portals;p;p = p->next)
493                                 {
494                                         r_refdef.stats.world_portals++;
495                                         if (DotProduct(r_view.origin, p->plane.normal) < (p->plane.dist + 1)
496                                          && !r_viewcache.world_leafvisible[p->past - model->brush.data_leafs]
497                                          && CHECKPVSBIT(r_viewcache.world_pvsbits, p->past->clusterindex)
498                                          && !R_CullBox(p->mins, p->maxs)
499                                          && leafstackpos < (int)(sizeof(leafstack) / sizeof(leafstack[0])))
500                                                 leafstack[leafstackpos++] = p->past;
501                                 }
502                         }
503                 }
504         }
505 }
506
507 void R_Q1BSP_DrawSky(entity_render_t *ent)
508 {
509         if (ent->model == NULL)
510                 return;
511         if (ent == r_refdef.worldentity)
512                 R_DrawWorldSurfaces(true);
513         else
514                 R_DrawModelSurfaces(ent, true);
515 }
516
517 void R_Q1BSP_Draw(entity_render_t *ent)
518 {
519         model_t *model = ent->model;
520         if (model == NULL)
521                 return;
522         if (ent == r_refdef.worldentity)
523                 R_DrawWorldSurfaces(false);
524         else
525                 R_DrawModelSurfaces(ent, false);
526 }
527
528 typedef struct r_q1bsp_getlightinfo_s
529 {
530         model_t *model;
531         vec3_t relativelightorigin;
532         float lightradius;
533         int *outleaflist;
534         unsigned char *outleafpvs;
535         int outnumleafs;
536         int *outsurfacelist;
537         unsigned char *outsurfacepvs;
538         unsigned char *tempsurfacepvs;
539         unsigned char *outshadowtrispvs;
540         unsigned char *outlighttrispvs;
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         qboolean svbsp_active;
548         qboolean svbsp_insertoccluder;
549 }
550 r_q1bsp_getlightinfo_t;
551
552 void R_Q1BSP_RecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, mnode_t *node)
553 {
554         int sides;
555         mleaf_t *leaf;
556         for (;;)
557         {
558                 mplane_t *plane = node->plane;
559                 //if (!BoxesOverlap(info->lightmins, info->lightmaxs, node->mins, node->maxs))
560                 //      return;
561                 if (!plane)
562                         break;
563                 //if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, r_shadow_rtlight_numfrustumplanes, r_shadow_rtlight_frustumplanes))
564                 //      return;
565                 if (plane->type < 3)
566                 {
567                         if (info->lightmins[plane->type] > plane->dist)
568                                 node = node->children[0];
569                         else if (info->lightmaxs[plane->type] < plane->dist)
570                                 node = node->children[1];
571                         else if (info->relativelightorigin[plane->type] >= plane->dist)
572                         {
573                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
574                                 node = node->children[1];
575                         }
576                         else
577                         {
578                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
579                                 node = node->children[0];
580                         }
581                 }
582                 else
583                 {
584                         sides = BoxOnPlaneSide(info->lightmins, info->lightmaxs, plane);
585                         if (sides == 3)
586                         {
587                                 // recurse front side first because the svbsp building prefers it
588                                 if (PlaneDist(info->relativelightorigin, plane) >= 0)
589                                 {
590                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
591                                         node = node->children[1];
592                                 }
593                                 else
594                                 {
595                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
596                                         node = node->children[0];
597                                 }
598                         }
599                         else if (sides == 0)
600                                 return; // ERROR: NAN bounding box!
601                         else
602                                 node = node->children[sides - 1];
603                 }
604         }
605         if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, r_shadow_rtlight_numfrustumplanes, r_shadow_rtlight_frustumplanes))
606                 return;
607         leaf = (mleaf_t *)node;
608         if (info->svbsp_active)
609         {
610                 int i;
611                 mportal_t *portal;
612                 double points[128][3];
613                 for (portal = leaf->portals;portal;portal = portal->next)
614                 {
615                         for (i = 0;i < portal->numpoints;i++)
616                                 VectorCopy(portal->points[i].position, points[i]);
617                         if (SVBSP_AddPolygon(&r_svbsp, portal->numpoints, points[0], false, NULL, NULL, 0) & 2)
618                                 break;
619                 }
620                 if (portal == NULL)
621                         return; // no portals of this leaf visible
622         }
623         else
624         {
625                 if (r_shadow_frontsidecasting.integer && info->pvs != NULL && !CHECKPVSBIT(info->pvs, leaf->clusterindex))
626                         return;
627         }
628         // inserting occluders does not alter the leaf info
629         if (!info->svbsp_insertoccluder)
630         {
631                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
632                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
633                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
634                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
635                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
636                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
637                 if (info->outleafpvs)
638                 {
639                         int leafindex = leaf - info->model->brush.data_leafs;
640                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
641                         {
642                                 SETPVSBIT(info->outleafpvs, leafindex);
643                                 info->outleaflist[info->outnumleafs++] = leafindex;
644                         }
645                 }
646         }
647         if (info->outsurfacepvs)
648         {
649                 int leafsurfaceindex;
650                 int surfaceindex;
651                 int triangleindex, t;
652                 msurface_t *surface;
653                 const int *e;
654                 const vec_t *v[3];
655                 double v2[3][3];
656                 for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
657                 {
658                         surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
659                         if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
660                         {
661                                 surface = info->model->data_surfaces + surfaceindex;
662                                 if (BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs)
663                                  && (!info->svbsp_insertoccluder || !(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)))
664                                 {
665                                         qboolean addedtris = false;
666                                         qboolean insidebox = BoxInsideBox(surface->mins, surface->maxs, info->lightmins, info->lightmaxs);
667                                         for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
668                                         {
669                                                 v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
670                                                 v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
671                                                 v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
672                                                 if (insidebox || TriangleOverlapsBox(v[0], v[1], v[2], info->lightmins, info->lightmaxs))
673                                                 {
674                                                         if (info->svbsp_insertoccluder)
675                                                         {
676                                                                 if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOCULLFACE) && r_shadow_frontsidecasting.integer != PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]))
677                                                                         continue;
678                                                                 if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)
679                                                                         continue;
680                                                                 VectorCopy(v[0], v2[0]);
681                                                                 VectorCopy(v[1], v2[1]);
682                                                                 VectorCopy(v[2], v2[2]);
683                                                                 if (!(SVBSP_AddPolygon(&r_svbsp, 3, v2[0], true, NULL, NULL, 0) & 2))
684                                                                         continue;
685                                                                 addedtris = true;
686                                                         }
687                                                         else
688                                                         {
689                                                                 if (info->svbsp_active)
690                                                                 {
691                                                                         VectorCopy(v[0], v2[0]);
692                                                                         VectorCopy(v[1], v2[1]);
693                                                                         VectorCopy(v[2], v2[2]);
694                                                                         if (!(SVBSP_AddPolygon(&r_svbsp, 3, v2[0], false, NULL, NULL, 0) & 2))
695                                                                                 continue;
696                                                                 }
697                                                                 if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOCULLFACE)
698                                                                 {
699                                                                         // if the material is double sided we
700                                                                         // can't cull by direction
701                                                                         SETPVSBIT(info->outlighttrispvs, t);
702                                                                         addedtris = true;
703                                                                         if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
704                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
705                                                                 }
706                                                                 else if (r_shadow_frontsidecasting.integer)
707                                                                 {
708                                                                         // front side casting occludes backfaces,
709                                                                         // so they are completely useless as both
710                                                                         // casters and lit polygons
711                                                                         if (!PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]))
712                                                                                 continue;
713                                                                         SETPVSBIT(info->outlighttrispvs, t);
714                                                                         addedtris = true;
715                                                                         if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
716                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
717                                                                 }
718                                                                 else
719                                                                 {
720                                                                         // back side casting does not occlude
721                                                                         // anything so we can't cull lit polygons
722                                                                         SETPVSBIT(info->outlighttrispvs, t);
723                                                                         addedtris = true;
724                                                                         if (!PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]) && !(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
725                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
726                                                                 }
727                                                         }
728                                                 }
729                                         }
730                                         if (addedtris)
731                                         {
732                                                 SETPVSBIT(info->outsurfacepvs, surfaceindex);
733                                                 info->outsurfacelist[info->outnumsurfaces++] = surfaceindex;
734                                         }
735                                 }
736                         }
737                 }
738         }
739 }
740
741 void R_Q1BSP_CallRecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, qboolean use_svbsp)
742 {
743         if (use_svbsp)
744         {
745                 double origin[3];
746                 VectorCopy(info->relativelightorigin, origin);
747                 if (!r_svbsp.nodes)
748                 {
749                         r_svbsp.maxnodes = max(r_svbsp.maxnodes, 1<<18);
750                         r_svbsp.nodes = Mem_Alloc(r_main_mempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
751                 }
752                 info->svbsp_active = true;
753                 info->svbsp_insertoccluder = true;
754                 for (;;)
755                 {
756                         SVBSP_Init(&r_svbsp, origin, r_svbsp.maxnodes, r_svbsp.nodes);
757                         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
758                         // if that failed, retry with more nodes
759                         if (r_svbsp.ranoutofnodes)
760                         {
761                                 // an upper limit is imposed
762                                 if (r_svbsp.maxnodes >= 2<<22)
763                                         break;
764                                 Mem_Free(r_svbsp.nodes);
765                                 r_svbsp.maxnodes *= 2;
766                                 r_svbsp.nodes = Mem_Alloc(tempmempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
767                         }
768                         else
769                                 break;
770                 }
771                 // now clear the surfacepvs array because we need to redo it
772                 memset(info->outsurfacepvs, 0, (info->model->nummodelsurfaces + 7) >> 3);
773                 info->outnumsurfaces = 0;
774         }
775         else
776                 info->svbsp_active = false;
777
778         // we HAVE to mark the leaf the light is in as lit, because portals are
779         // irrelevant to a leaf that the light source is inside of
780         // (and they are all facing away, too)
781         {
782                 mnode_t *node = info->model->brush.data_nodes;
783                 mleaf_t *leaf;
784                 while (node->plane)
785                         node = node->children[(node->plane->type < 3 ? info->relativelightorigin[node->plane->type] : DotProduct(info->relativelightorigin,node->plane->normal)) < node->plane->dist];
786                 leaf = (mleaf_t *)node;
787                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
788                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
789                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
790                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
791                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
792                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
793                 if (info->outleafpvs)
794                 {
795                         int leafindex = leaf - info->model->brush.data_leafs;
796                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
797                         {
798                                 SETPVSBIT(info->outleafpvs, leafindex);
799                                 info->outleaflist[info->outnumleafs++] = leafindex;
800                         }
801                 }
802         }
803
804         info->svbsp_insertoccluder = false;
805         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
806         if (developer.integer >= 100 && use_svbsp)
807         {
808                 Con_Printf("GetLightInfo: svbsp built with %i nodes, polygon stats:\n", r_svbsp.numnodes);
809                 Con_Printf("occluders: %i accepted, %i rejected, %i fragments accepted, %i fragments rejected.\n", r_svbsp.stat_occluders_accepted, r_svbsp.stat_occluders_rejected, r_svbsp.stat_occluders_fragments_accepted, r_svbsp.stat_occluders_fragments_rejected);
810                 Con_Printf("queries  : %i accepted, %i rejected, %i fragments accepted, %i fragments rejected.\n", r_svbsp.stat_queries_accepted, r_svbsp.stat_queries_rejected, r_svbsp.stat_queries_fragments_accepted, r_svbsp.stat_queries_fragments_rejected);
811         }
812 }
813
814 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, unsigned char *outshadowtrispvs, unsigned char *outlighttrispvs)
815 {
816         r_q1bsp_getlightinfo_t info;
817         VectorCopy(relativelightorigin, info.relativelightorigin);
818         info.lightradius = lightradius;
819         info.lightmins[0] = info.relativelightorigin[0] - info.lightradius;
820         info.lightmins[1] = info.relativelightorigin[1] - info.lightradius;
821         info.lightmins[2] = info.relativelightorigin[2] - info.lightradius;
822         info.lightmaxs[0] = info.relativelightorigin[0] + info.lightradius;
823         info.lightmaxs[1] = info.relativelightorigin[1] + info.lightradius;
824         info.lightmaxs[2] = info.relativelightorigin[2] + info.lightradius;
825         if (ent->model == NULL)
826         {
827                 VectorCopy(info.lightmins, outmins);
828                 VectorCopy(info.lightmaxs, outmaxs);
829                 *outnumleafspointer = 0;
830                 *outnumsurfacespointer = 0;
831                 return;
832         }
833         info.model = ent->model;
834         info.outleaflist = outleaflist;
835         info.outleafpvs = outleafpvs;
836         info.outnumleafs = 0;
837         info.outsurfacelist = outsurfacelist;
838         info.outsurfacepvs = outsurfacepvs;
839         info.outshadowtrispvs = outshadowtrispvs;
840         info.outlighttrispvs = outlighttrispvs;
841         info.outnumsurfaces = 0;
842         VectorCopy(info.relativelightorigin, info.outmins);
843         VectorCopy(info.relativelightorigin, info.outmaxs);
844         memset(outleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
845         memset(outsurfacepvs, 0, (info.model->nummodelsurfaces + 7) >> 3);
846         if (info.model->brush.shadowmesh)
847                 memset(outshadowtrispvs, 0, (info.model->brush.shadowmesh->numtriangles + 7) >> 3);
848         else
849                 memset(outshadowtrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
850         memset(outlighttrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
851         if (info.model->brush.GetPVS && r_shadow_frontsidecasting.integer)
852                 info.pvs = info.model->brush.GetPVS(info.model, info.relativelightorigin);
853         else
854                 info.pvs = NULL;
855         R_UpdateAllTextureInfo(ent);
856
857         if (r_shadow_frontsidecasting.integer && r_shadow_compilingrtlight && r_shadow_realtime_world_compileportalculling.integer)
858         {
859                 // use portal recursion for exact light volume culling, and exact surface checking
860                 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, info.outshadowtrispvs, info.outlighttrispvs);
861         }
862         else if (r_shadow_frontsidecasting.integer && r_shadow_realtime_dlight_portalculling.integer)
863         {
864                 // use portal recursion for exact light volume culling, but not the expensive exact surface checking
865                 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, info.outshadowtrispvs, info.outlighttrispvs);
866         }
867         else
868         {
869                 // recurse the bsp tree, checking leafs and surfaces for visibility
870                 // optionally using svbsp for exact culling of compiled lights
871                 // (or if the user enables dlight svbsp culling, which is mostly for
872                 //  debugging not actual use)
873                 R_Q1BSP_CallRecursiveGetLightInfo(&info, r_shadow_compilingrtlight ? r_shadow_realtime_world_compilesvbsp.integer : r_shadow_realtime_dlight_svbspculling.integer);
874         }
875
876         // limit combined leaf box to light boundaries
877         outmins[0] = max(info.outmins[0] - 1, info.lightmins[0]);
878         outmins[1] = max(info.outmins[1] - 1, info.lightmins[1]);
879         outmins[2] = max(info.outmins[2] - 1, info.lightmins[2]);
880         outmaxs[0] = min(info.outmaxs[0] + 1, info.lightmaxs[0]);
881         outmaxs[1] = min(info.outmaxs[1] + 1, info.lightmaxs[1]);
882         outmaxs[2] = min(info.outmaxs[2] + 1, info.lightmaxs[2]);
883
884         *outnumleafspointer = info.outnumleafs;
885         *outnumsurfacespointer = info.outnumsurfaces;
886 }
887
888 void R_Q1BSP_CompileShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativelightdirection, float lightradius, int numsurfaces, const int *surfacelist)
889 {
890         model_t *model = ent->model;
891         msurface_t *surface;
892         int surfacelistindex;
893         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
894         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Begin(r_main_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
895         R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
896         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
897         {
898                 surface = model->data_surfaces + surfacelist[surfacelistindex];
899                 if (surface->texture->currentframe->basematerialflags & MATERIALFLAG_NOSHADOW)
900                         continue;
901                 R_Shadow_MarkVolumeFromBox(surface->num_firstshadowmeshtriangle, surface->num_triangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, relativelightorigin, relativelightdirection, r_shadow_compilingrtlight->cullmins, r_shadow_compilingrtlight->cullmaxs, surface->mins, surface->maxs);
902         }
903         R_Shadow_VolumeFromList(model->brush.shadowmesh->numverts, model->brush.shadowmesh->numtriangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, model->brush.shadowmesh->neighbor3i, relativelightorigin, relativelightdirection, projectdistance, numshadowmark, shadowmarklist);
904         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Finish(r_main_mempool, r_shadow_compilingrtlight->static_meshchain_shadow, false, false, true);
905 }
906
907 void R_Q1BSP_DrawShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativelightdirection, float lightradius, int modelnumsurfaces, const int *modelsurfacelist, const vec3_t lightmins, const vec3_t lightmaxs)
908 {
909         model_t *model = ent->model;
910         msurface_t *surface;
911         int modelsurfacelistindex;
912         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
913         // check the box in modelspace, it was already checked in worldspace
914         if (!BoxesOverlap(model->normalmins, model->normalmaxs, lightmins, lightmaxs))
915                 return;
916         R_UpdateAllTextureInfo(ent);
917         if (model->brush.shadowmesh)
918         {
919                 R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
920                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
921                 {
922                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
923                         if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)
924                                 continue;
925                         R_Shadow_MarkVolumeFromBox(surface->num_firstshadowmeshtriangle, surface->num_triangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, relativelightorigin, relativelightdirection, lightmins, lightmaxs, surface->mins, surface->maxs);
926                 }
927                 R_Shadow_VolumeFromList(model->brush.shadowmesh->numverts, model->brush.shadowmesh->numtriangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, model->brush.shadowmesh->neighbor3i, relativelightorigin, relativelightdirection, projectdistance, numshadowmark, shadowmarklist);
928         }
929         else
930         {
931                 projectdistance = lightradius + model->radius*2;
932                 R_Shadow_PrepareShadowMark(model->surfmesh.num_triangles);
933                 // identify lit faces within the bounding box
934                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
935                 {
936                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
937                         rsurface_texture = surface->texture->currentframe;
938                         if (rsurface_texture->currentmaterialflags & MATERIALFLAG_NOSHADOW)
939                                 continue;
940                         RSurf_PrepareVerticesForBatch(false, false, 1, &surface);
941                         R_Shadow_MarkVolumeFromBox(surface->num_firsttriangle, surface->num_triangles, rsurface_vertex3f, rsurface_model->surfmesh.data_element3i, relativelightorigin, relativelightdirection, lightmins, lightmaxs, surface->mins, surface->maxs);
942                 }
943                 R_Shadow_VolumeFromList(model->surfmesh.num_vertices, model->surfmesh.num_triangles, rsurface_vertex3f, model->surfmesh.data_element3i, model->surfmesh.data_neighbor3i, relativelightorigin, relativelightdirection, projectdistance, numshadowmark, shadowmarklist);
944         }
945 }
946
947 #define BATCHSIZE 1024
948
949 static void R_Q1BSP_DrawLight_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
950 {
951         int i, j, endsurface;
952         texture_t *t;
953         msurface_t *surface;
954         // note: in practice this never actually receives batches), oh well
955         R_Shadow_RenderMode_Begin();
956         R_Shadow_RenderMode_ActiveLight((rtlight_t *)rtlight);
957         R_Shadow_RenderMode_Lighting(false, true);
958         R_Shadow_SetupEntityLight(ent);
959         for (i = 0;i < numsurfaces;i = j)
960         {
961                 j = i + 1;
962                 surface = rsurface_model->data_surfaces + surfacelist[i];
963                 t = surface->texture;
964                 R_UpdateTextureInfo(ent, t);
965                 rsurface_texture = t->currentframe;
966                 endsurface = min(j + BATCHSIZE, numsurfaces);
967                 for (j = i;j < endsurface;j++)
968                 {
969                         surface = rsurface_model->data_surfaces + surfacelist[j];
970                         if (t != surface->texture)
971                                 break;
972                         RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
973                         R_Shadow_RenderLighting(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, ent->model->surfmesh.data_element3i + surface->num_firsttriangle * 3, ent->model->surfmesh.ebo, (sizeof(int[3]) * surface->num_firsttriangle));
974                 }
975         }
976         R_Shadow_RenderMode_End();
977 }
978
979 #define RSURF_MAX_BATCHSURFACES 1024
980
981 void R_Q1BSP_DrawLight(entity_render_t *ent, int numsurfaces, const int *surfacelist, const unsigned char *trispvs)
982 {
983         model_t *model = ent->model;
984         msurface_t *surface;
985         int i, k, l, m, mend, endsurface, batchnumsurfaces, batchnumtriangles, batchfirstvertex, batchlastvertex;
986         qboolean usebufferobject, culltriangles;
987         const int *element3i;
988         msurface_t *batchsurfacelist[RSURF_MAX_BATCHSURFACES];
989         int batchelements[BATCHSIZE*3];
990         texture_t *tex;
991         CHECKGLERROR
992         RSurf_ActiveModelEntity(ent, true, true);
993         R_UpdateAllTextureInfo(ent);
994         CHECKGLERROR
995         culltriangles = r_shadow_culltriangles.integer && !(ent->flags & RENDER_NOSELFSHADOW);
996         element3i = rsurface_model->surfmesh.data_element3i;
997         // this is a double loop because non-visible surface skipping has to be
998         // fast, and even if this is not the world model (and hence no visibility
999         // checking) the input surface list and batch buffer are different formats
1000         // so some processing is necessary.  (luckily models have few surfaces)
1001         for (i = 0;i < numsurfaces;)
1002         {
1003                 batchnumsurfaces = 0;
1004                 endsurface = min(i + RSURF_MAX_BATCHSURFACES, numsurfaces);
1005                 if (ent == r_refdef.worldentity)
1006                 {
1007                         for (;i < endsurface;i++)
1008                                 if (r_viewcache.world_surfacevisible[surfacelist[i]])
1009                                         batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1010                 }
1011                 else
1012                 {
1013                         for (;i < endsurface;i++)
1014                                 batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1015                 }
1016                 if (!batchnumsurfaces)
1017                         continue;
1018                 for (k = 0;k < batchnumsurfaces;k = l)
1019                 {
1020                         surface = batchsurfacelist[k];
1021                         tex = surface->texture;
1022                         rsurface_texture = tex->currentframe;
1023                         if (rsurface_texture->currentmaterialflags & (MATERIALFLAG_WALL | MATERIALFLAG_WATER))
1024                         {
1025                                 if (rsurface_texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED)
1026                                 {
1027                                         vec3_t tempcenter, center;
1028                                         for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++)
1029                                         {
1030                                                 surface = batchsurfacelist[l];
1031                                                 tempcenter[0] = (surface->mins[0] + surface->maxs[0]) * 0.5f;
1032                                                 tempcenter[1] = (surface->mins[1] + surface->maxs[1]) * 0.5f;
1033                                                 tempcenter[2] = (surface->mins[2] + surface->maxs[2]) * 0.5f;
1034                                                 Matrix4x4_Transform(&rsurface_entity->matrix, tempcenter, center);
1035                                                 R_MeshQueue_AddTransparent(rsurface_texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST ? r_view.origin : center, R_Q1BSP_DrawLight_TransparentCallback, rsurface_entity, surface - rsurface_model->data_surfaces, r_shadow_rtlight);
1036                                         }
1037                                 }
1038                                 else
1039                                 {
1040                                         // use the bufferobject if all triangles are accepted
1041                                         usebufferobject = true;
1042                                         batchnumtriangles = 0;
1043                                         // note: this only accepts consecutive surfaces because
1044                                         // non-consecutive surfaces often have extreme vertex
1045                                         // ranges (due to large numbers of surfaces omitted
1046                                         // between them)
1047                                         surface = batchsurfacelist[k];
1048                                         for (l = k;l < batchnumsurfaces && surface == batchsurfacelist[l] && tex == surface->texture;l++, surface++)
1049                                         {
1050                                                 RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
1051                                                 for (m = surface->num_firsttriangle, mend = m + surface->num_triangles;m < mend;m++)
1052                                                 {
1053                                                         if (culltriangles)
1054                                                         {
1055                                                                 if (trispvs)
1056                                                                 {
1057                                                                         if (!CHECKPVSBIT(trispvs, m))
1058                                                                         {
1059                                                                                 usebufferobject = false;
1060                                                                                 continue;
1061                                                                         }
1062                                                                 }
1063                                                                 else
1064                                                                 {
1065                                                                         if (r_shadow_frontsidecasting.integer && !PointInfrontOfTriangle(r_shadow_entitylightorigin, rsurface_vertex3f + element3i[m*3+0]*3, rsurface_vertex3f + element3i[m*3+1]*3, rsurface_vertex3f + element3i[m*3+2]*3))
1066                                                                         {
1067                                                                                 usebufferobject = false;
1068                                                                                 continue;
1069                                                                         }
1070                                                                 }
1071                                                         }
1072                                                         batchelements[batchnumtriangles*3+0] = element3i[m*3+0];
1073                                                         batchelements[batchnumtriangles*3+1] = element3i[m*3+1];
1074                                                         batchelements[batchnumtriangles*3+2] = element3i[m*3+2];
1075                                                         batchnumtriangles++;
1076                                                         r_refdef.stats.lights_lighttriangles++;
1077                                                         if (batchnumtriangles >= BATCHSIZE)
1078                                                         {
1079                                                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1080                                                                 R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, 0, 0);
1081                                                                 batchnumtriangles = 0;
1082                                                                 usebufferobject = false;
1083                                                         }
1084                                                 }
1085                                                 r_refdef.stats.lights_lighttriangles += batchsurfacelist[l]->num_triangles;
1086                                         }
1087                                         if (batchnumtriangles > 0)
1088                                         {
1089                                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1090                                                 if (usebufferobject)
1091                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, ent->model->surfmesh.ebo, sizeof(int[3]) * batchsurfacelist[k]->num_firsttriangle);
1092                                                 else
1093                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, 0, 0);
1094                                         }
1095                                 }
1096                         }
1097                         else
1098                         {
1099                                 // skip ahead to the next texture
1100                                 for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++)
1101                                         ;
1102                         }
1103                 }
1104         }
1105 }
1106
1107 //Made by [515]
1108 void R_ReplaceWorldTexture (void)
1109 {
1110         model_t         *m;
1111         texture_t       *t;
1112         int                     i;
1113         const char      *r, *newt;
1114         skinframe_t *skinframe;
1115         m = r_refdef.worldmodel;
1116
1117         if(Cmd_Argc() < 2)
1118         {
1119                 Con_Print("r_replacemaptexture <texname> <newtexname> - replaces texture\n");
1120                 Con_Print("r_replacemaptexture <texname> - switch back to default texture\n");
1121                 return;
1122         }
1123         if(!cl.islocalgame || !cl.worldmodel)
1124         {
1125                 Con_Print("This command works only in singleplayer\n");
1126                 return;
1127         }
1128         r = Cmd_Argv(1);
1129         newt = Cmd_Argv(2);
1130         if(!newt[0])
1131                 newt = r;
1132         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1133         {
1134                 if(t->width && !strcasecmp(t->name, r))
1135                 {
1136                         if ((skinframe = R_SkinFrame_LoadExternal((char*)newt, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE | TEXF_PICMIP)))
1137                         {
1138                                 t->skinframes[0] = skinframe;
1139                                 Con_Printf("%s replaced with %s\n", r, newt);
1140                                 return;
1141                         }
1142                         else
1143                         {
1144                                 Con_Printf("%s was not found\n", newt);
1145                                 return;
1146                         }
1147                 }
1148         }
1149 }
1150
1151 //Made by [515]
1152 void R_ListWorldTextures (void)
1153 {
1154         model_t         *m;
1155         texture_t       *t;
1156         int                     i;
1157         m = r_refdef.worldmodel;
1158
1159         Con_Print("Worldmodel textures :\n");
1160         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1161                 if (t->numskinframes)
1162                         Con_Printf("%s\n", t->name);
1163 }
1164
1165 #if 0
1166 static void gl_surf_start(void)
1167 {
1168 }
1169
1170 static void gl_surf_shutdown(void)
1171 {
1172 }
1173
1174 static void gl_surf_newmap(void)
1175 {
1176 }
1177 #endif
1178
1179 void GL_Surf_Init(void)
1180 {
1181
1182         Cvar_RegisterVariable(&r_ambient);
1183         Cvar_RegisterVariable(&r_lockpvs);
1184         Cvar_RegisterVariable(&r_lockvisibility);
1185         Cvar_RegisterVariable(&r_useportalculling);
1186         Cvar_RegisterVariable(&r_q3bsp_renderskydepth);
1187
1188         Cmd_AddCommand ("r_replacemaptexture", R_ReplaceWorldTexture, "override a map texture for testing purposes");
1189         Cmd_AddCommand ("r_listmaptextures", R_ListWorldTextures, "list all textures used by the current map");
1190
1191         //R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown, gl_surf_newmap);
1192 }
1193