]> git.xonotic.org Git - xonotic/darkplaces.git/blob - gl_rsurf.c
implemented pvs support in water reflection rendering, greatly improving
[xonotic/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         int *intblocklights;
48         unsigned char *templight;
49
50         smax = (surface->lightmapinfo->extents[0]>>4)+1;
51         tmax = (surface->lightmapinfo->extents[1]>>4)+1;
52         size = smax*tmax;
53         size3 = size*3;
54
55         if (cl.buildlightmapmemorysize < size*sizeof(int[3]))
56         {
57                 cl.buildlightmapmemorysize = size*sizeof(int[3]);
58                 if (cl.buildlightmapmemory)
59                         Mem_Free(cl.buildlightmapmemory);
60                 cl.buildlightmapmemory = Mem_Alloc(cls.levelmempool, cl.buildlightmapmemorysize);
61         }
62
63         // these both point at the same buffer, templight is only used for final
64         // processing and can replace the intblocklights data as it goes
65         intblocklights = (int *)cl.buildlightmapmemory;
66         templight = (unsigned char *)cl.buildlightmapmemory;
67
68         // update cached lighting info
69         surface->cached_dlight = 0;
70
71         lightmap = surface->lightmapinfo->samples;
72
73 // set to full bright if no light data
74         bl = intblocklights;
75         if (!model->brushq1.lightdata)
76         {
77                 for (i = 0;i < size3;i++)
78                         bl[i] = 128*256;
79         }
80         else
81         {
82 // clear to no light
83                 memset(bl, 0, size3*sizeof(*bl));
84
85 // add all the lightmaps
86                 if (lightmap)
87                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3)
88                                 for (scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size3;i++)
89                                         bl[i] += lightmap[i] * scale;
90         }
91
92         stain = surface->lightmapinfo->stainsamples;
93         bl = intblocklights;
94         out = templight;
95         // the >> 16 shift adjusts down 8 bits to account for the stainmap
96         // scaling, and remaps the 0-65536 (2x overbright) to 0-256, it will
97         // be doubled during rendering to achieve 2x overbright
98         // (0 = 0.0, 128 = 1.0, 256 = 2.0)
99         if (model->brushq1.lightmaprgba)
100         {
101                 for (i = 0;i < size;i++)
102                 {
103                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
104                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
105                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
106                         *out++ = 255;
107                 }
108         }
109         else
110         {
111                 for (i = 0;i < size;i++)
112                 {
113                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
114                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
115                         l = (*bl++ * *stain++) >> 16;*out++ = min(l, 255);
116                 }
117         }
118
119         R_UpdateTexture(surface->lightmaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
120
121         // update the surface's deluxemap if it has one
122         if (surface->deluxemaptexture != r_texture_blanknormalmap)
123         {
124                 vec3_t n;
125                 unsigned char *normalmap = surface->lightmapinfo->nmapsamples;
126                 lightmap = surface->lightmapinfo->samples;
127                 // clear to no normalmap
128                 bl = intblocklights;
129                 memset(bl, 0, size3*sizeof(*bl));
130                 // add all the normalmaps
131                 if (lightmap && normalmap)
132                 {
133                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3, normalmap += size3)
134                         {
135                                 for (scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size;i++)
136                                 {
137                                         // add the normalmap with weighting proportional to the style's lightmap intensity
138                                         l = (int)(VectorLength(lightmap + i*3) * scale);
139                                         bl[i*3+0] += ((int)normalmap[i*3+0] - 128) * l;
140                                         bl[i*3+1] += ((int)normalmap[i*3+1] - 128) * l;
141                                         bl[i*3+2] += ((int)normalmap[i*3+2] - 128) * l;
142                                 }
143                         }
144                 }
145                 bl = intblocklights;
146                 out = templight;
147                 // we simply renormalize the weighted normals to get a valid deluxemap
148                 if (model->brushq1.lightmaprgba)
149                 {
150                         for (i = 0;i < size;i++, bl += 3)
151                         {
152                                 VectorCopy(bl, n);
153                                 VectorNormalize(n);
154                                 l = (int)(n[0] * 128 + 128);*out++ = bound(0, l, 255);
155                                 l = (int)(n[1] * 128 + 128);*out++ = bound(0, l, 255);
156                                 l = (int)(n[2] * 128 + 128);*out++ = bound(0, l, 255);
157                                 *out++ = 255;
158                         }
159                 }
160                 else
161                 {
162                         for (i = 0;i < size;i++, bl += 3)
163                         {
164                                 VectorCopy(bl, n);
165                                 VectorNormalize(n);
166                                 l = (int)(n[0] * 128 + 128);*out++ = bound(0, l, 255);
167                                 l = (int)(n[1] * 128 + 128);*out++ = bound(0, l, 255);
168                                 l = (int)(n[2] * 128 + 128);*out++ = bound(0, l, 255);
169                         }
170                 }
171                 R_UpdateTexture(surface->deluxemaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
172         }
173 }
174
175 void R_StainNode (mnode_t *node, model_t *model, const vec3_t origin, float radius, const float fcolor[8])
176 {
177         float ndist, a, ratio, maxdist, maxdist2, maxdist3, invradius, sdtable[256], td, dist2;
178         msurface_t *surface, *endsurface;
179         int i, s, t, smax, tmax, smax3, impacts, impactt, stained;
180         unsigned char *bl;
181         vec3_t impact;
182
183         maxdist = radius * radius;
184         invradius = 1.0f / radius;
185
186 loc0:
187         if (!node->plane)
188                 return;
189         ndist = PlaneDiff(origin, node->plane);
190         if (ndist > radius)
191         {
192                 node = node->children[0];
193                 goto loc0;
194         }
195         if (ndist < -radius)
196         {
197                 node = node->children[1];
198                 goto loc0;
199         }
200
201         dist2 = ndist * ndist;
202         maxdist3 = maxdist - dist2;
203
204         if (node->plane->type < 3)
205         {
206                 VectorCopy(origin, impact);
207                 impact[node->plane->type] -= ndist;
208         }
209         else
210         {
211                 impact[0] = origin[0] - node->plane->normal[0] * ndist;
212                 impact[1] = origin[1] - node->plane->normal[1] * ndist;
213                 impact[2] = origin[2] - node->plane->normal[2] * ndist;
214         }
215
216         for (surface = model->data_surfaces + node->firstsurface, endsurface = surface + node->numsurfaces;surface < endsurface;surface++)
217         {
218                 if (surface->lightmapinfo->stainsamples)
219                 {
220                         smax = (surface->lightmapinfo->extents[0] >> 4) + 1;
221                         tmax = (surface->lightmapinfo->extents[1] >> 4) + 1;
222
223                         impacts = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3] - surface->lightmapinfo->texturemins[0]);
224                         impactt = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3] - surface->lightmapinfo->texturemins[1]);
225
226                         s = bound(0, impacts, smax * 16) - impacts;
227                         t = bound(0, impactt, tmax * 16) - impactt;
228                         i = (int)(s * s + t * t + dist2);
229                         if (i > maxdist)
230                                 continue;
231
232                         // reduce calculations
233                         for (s = 0, i = impacts; s < smax; s++, i -= 16)
234                                 sdtable[s] = i * i + dist2;
235
236                         bl = surface->lightmapinfo->stainsamples;
237                         smax3 = smax * 3;
238                         stained = false;
239
240                         i = impactt;
241                         for (t = 0;t < tmax;t++, i -= 16)
242                         {
243                                 td = i * i;
244                                 // make sure some part of it is visible on this line
245                                 if (td < maxdist3)
246                                 {
247                                         maxdist2 = maxdist - td;
248                                         for (s = 0;s < smax;s++)
249                                         {
250                                                 if (sdtable[s] < maxdist2)
251                                                 {
252                                                         ratio = lhrandom(0.0f, 1.0f);
253                                                         a = (fcolor[3] + ratio * fcolor[7]) * (1.0f - sqrt(sdtable[s] + td) * invradius);
254                                                         if (a >= (1.0f / 64.0f))
255                                                         {
256                                                                 if (a > 1)
257                                                                         a = 1;
258                                                                 bl[0] = (unsigned char) ((float) bl[0] + a * ((fcolor[0] + ratio * fcolor[4]) - (float) bl[0]));
259                                                                 bl[1] = (unsigned char) ((float) bl[1] + a * ((fcolor[1] + ratio * fcolor[5]) - (float) bl[1]));
260                                                                 bl[2] = (unsigned char) ((float) bl[2] + a * ((fcolor[2] + ratio * fcolor[6]) - (float) bl[2]));
261                                                                 stained = true;
262                                                         }
263                                                 }
264                                                 bl += 3;
265                                         }
266                                 }
267                                 else // skip line
268                                         bl += smax3;
269                         }
270                         // force lightmap upload
271                         if (stained)
272                                 surface->cached_dlight = true;
273                 }
274         }
275
276         if (node->children[0]->plane)
277         {
278                 if (node->children[1]->plane)
279                 {
280                         R_StainNode(node->children[0], model, origin, radius, fcolor);
281                         node = node->children[1];
282                         goto loc0;
283                 }
284                 else
285                 {
286                         node = node->children[0];
287                         goto loc0;
288                 }
289         }
290         else if (node->children[1]->plane)
291         {
292                 node = node->children[1];
293                 goto loc0;
294         }
295 }
296
297 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)
298 {
299         int n;
300         float fcolor[8];
301         entity_render_t *ent;
302         model_t *model;
303         vec3_t org;
304         if (r_refdef.worldmodel == NULL || !r_refdef.worldmodel->brush.data_nodes || !r_refdef.worldmodel->brushq1.lightdata)
305                 return;
306         fcolor[0] = cr1;
307         fcolor[1] = cg1;
308         fcolor[2] = cb1;
309         fcolor[3] = ca1 * (1.0f / 64.0f);
310         fcolor[4] = cr2 - cr1;
311         fcolor[5] = cg2 - cg1;
312         fcolor[6] = cb2 - cb1;
313         fcolor[7] = (ca2 - ca1) * (1.0f / 64.0f);
314
315         R_StainNode(r_refdef.worldmodel->brush.data_nodes + r_refdef.worldmodel->brushq1.hulls[0].firstclipnode, r_refdef.worldmodel, origin, radius, fcolor);
316
317         // look for embedded bmodels
318         for (n = 0;n < cl.num_brushmodel_entities;n++)
319         {
320                 ent = &cl.entities[cl.brushmodel_entities[n]].render;
321                 model = ent->model;
322                 if (model && model->name[0] == '*')
323                 {
324                         if (model->brush.data_nodes)
325                         {
326                                 Matrix4x4_Transform(&ent->inversematrix, origin, org);
327                                 R_StainNode(model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode, model, org, radius, fcolor);
328                         }
329                 }
330         }
331 }
332
333
334 /*
335 =============================================================
336
337         BRUSH MODELS
338
339 =============================================================
340 */
341
342 static void R_DrawPortal_Callback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
343 {
344         // due to the hacky nature of this function's parameters, this is never
345         // called with a batch, so numsurfaces is always 1, and the surfacelist
346         // contains only a leaf number for coloring purposes
347         const mportal_t *portal = (mportal_t *)ent;
348         int i, numpoints;
349         float *v;
350         float vertex3f[POLYGONELEMENTS_MAXPOINTS*3];
351         CHECKGLERROR
352         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
353         GL_DepthMask(false);
354         GL_DepthRange(0, 1);
355         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
356         GL_DepthTest(true);
357         GL_CullFace(GL_NONE);
358         R_Mesh_Matrix(&identitymatrix);
359
360         numpoints = min(portal->numpoints, POLYGONELEMENTS_MAXPOINTS);
361
362         R_Mesh_VertexPointer(vertex3f, 0, 0);
363         R_Mesh_ColorPointer(NULL, 0, 0);
364         R_Mesh_ResetTextureState();
365
366         i = surfacelist[0];
367         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f) * r_view.colorscale,
368                          ((i & 0x0038) >> 3) * (1.0f / 7.0f) * r_view.colorscale,
369                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f) * r_view.colorscale,
370                          0.125f);
371         for (i = 0, v = vertex3f;i < numpoints;i++, v += 3)
372                 VectorCopy(portal->points[i].position, v);
373         R_Mesh_Draw(0, numpoints, numpoints - 2, polygonelements, 0, 0);
374 }
375
376 // LordHavoc: this is just a nice debugging tool, very slow
377 void R_DrawPortals(void)
378 {
379         int i, leafnum;
380         mportal_t *portal;
381         float center[3], f;
382         model_t *model = r_refdef.worldmodel;
383         if (model == NULL)
384                 return;
385         for (leafnum = 0;leafnum < r_refdef.worldmodel->brush.num_leafs;leafnum++)
386         {
387                 if (r_viewcache.world_leafvisible[leafnum])
388                 {
389                         //for (portalnum = 0, portal = model->brush.data_portals;portalnum < model->brush.num_portals;portalnum++, portal++)
390                         for (portal = r_refdef.worldmodel->brush.data_leafs[leafnum].portals;portal;portal = portal->next)
391                         {
392                                 if (portal->numpoints <= POLYGONELEMENTS_MAXPOINTS)
393                                 if (!R_CullBox(portal->mins, portal->maxs))
394                                 {
395                                         VectorClear(center);
396                                         for (i = 0;i < portal->numpoints;i++)
397                                                 VectorAdd(center, portal->points[i].position, center);
398                                         f = ixtable[portal->numpoints];
399                                         VectorScale(center, f, center);
400                                         R_MeshQueue_AddTransparent(center, R_DrawPortal_Callback, (entity_render_t *)portal, leafnum, rsurface.rtlight);
401                                 }
402                         }
403                 }
404         }
405 }
406
407 void R_View_WorldVisibility(qboolean forcenovis)
408 {
409         int i, j, *mark;
410         mleaf_t *leaf;
411         mleaf_t *viewleaf;
412         model_t *model = r_refdef.worldmodel;
413
414         if (!model)
415                 return;
416
417         if (r_view.usecustompvs)
418         {
419                 // clear the visible surface and leaf flags arrays
420                 memset(r_viewcache.world_surfacevisible, 0, model->num_surfaces);
421                 memset(r_viewcache.world_leafvisible, 0, model->brush.num_leafs);
422                 r_viewcache.world_novis = false;
423
424                 // simply cull each marked leaf to the frustum (view pyramid)
425                 for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
426                 {
427                         // if leaf is in current pvs and on the screen, mark its surfaces
428                         if (CHECKPVSBIT(r_viewcache.world_pvsbits, leaf->clusterindex) && !R_CullBox(leaf->mins, leaf->maxs))
429                         {
430                                 r_refdef.stats.world_leafs++;
431                                 r_viewcache.world_leafvisible[j] = true;
432                                 if (leaf->numleafsurfaces)
433                                         for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
434                                                 r_viewcache.world_surfacevisible[*mark] = true;
435                         }
436                 }
437                 return;
438         }
439
440         // if possible find the leaf the view origin is in
441         viewleaf = model->brush.PointInLeaf ? model->brush.PointInLeaf(model, r_view.origin) : NULL;
442         // if possible fetch the visible cluster bits
443         if (!r_lockpvs.integer && model->brush.FatPVS)
444                 model->brush.FatPVS(model, r_view.origin, 2, r_viewcache.world_pvsbits, sizeof(r_viewcache.world_pvsbits), false);
445
446         if (!r_lockvisibility.integer)
447         {
448                 // clear the visible surface and leaf flags arrays
449                 memset(r_viewcache.world_surfacevisible, 0, model->num_surfaces);
450                 memset(r_viewcache.world_leafvisible, 0, model->brush.num_leafs);
451
452                 r_viewcache.world_novis = false;
453
454                 // if floating around in the void (no pvs data available, and no
455                 // portals available), simply use all on-screen leafs.
456                 if (!viewleaf || viewleaf->clusterindex < 0 || forcenovis)
457                 {
458                         // no visibility method: (used when floating around in the void)
459                         // simply cull each leaf to the frustum (view pyramid)
460                         // similar to quake's RecursiveWorldNode but without cache misses
461                         r_viewcache.world_novis = true;
462                         for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
463                         {
464                                 // if leaf is in current pvs and on the screen, mark its surfaces
465                                 if (!R_CullBox(leaf->mins, leaf->maxs))
466                                 {
467                                         r_refdef.stats.world_leafs++;
468                                         r_viewcache.world_leafvisible[j] = true;
469                                         if (leaf->numleafsurfaces)
470                                                 for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
471                                                         r_viewcache.world_surfacevisible[*mark] = true;
472                                 }
473                         }
474                 }
475                 // if the user prefers to disable portal culling (testing?), simply
476                 // use all on-screen leafs that are in the pvs.
477                 else if (!r_useportalculling.integer)
478                 {
479                         // pvs method:
480                         // simply check if each leaf is in the Potentially Visible Set,
481                         // and cull to frustum (view pyramid)
482                         // similar to quake's RecursiveWorldNode but without cache misses
483                         for (j = 0, leaf = model->brush.data_leafs;j < model->brush.num_leafs;j++, leaf++)
484                         {
485                                 // if leaf is in current pvs and on the screen, mark its surfaces
486                                 if (CHECKPVSBIT(r_viewcache.world_pvsbits, leaf->clusterindex) && !R_CullBox(leaf->mins, leaf->maxs))
487                                 {
488                                         r_refdef.stats.world_leafs++;
489                                         r_viewcache.world_leafvisible[j] = true;
490                                         if (leaf->numleafsurfaces)
491                                                 for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
492                                                         r_viewcache.world_surfacevisible[*mark] = true;
493                                 }
494                         }
495                 }
496                 // otherwise use a recursive portal flow, culling each portal to
497                 // frustum and checking if the leaf the portal leads to is in the pvs
498                 else
499                 {
500                         int leafstackpos;
501                         mportal_t *p;
502                         mleaf_t *leafstack[8192];
503                         // simple-frustum portal method:
504                         // follows portals leading outward from viewleaf, does not venture
505                         // offscreen or into leafs that are not visible, faster than
506                         // Quake's RecursiveWorldNode and vastly better in unvised maps,
507                         // often culls some surfaces that pvs alone would miss
508                         // (such as a room in pvs that is hidden behind a wall, but the
509                         //  passage leading to the room is off-screen)
510                         leafstack[0] = viewleaf;
511                         leafstackpos = 1;
512                         while (leafstackpos)
513                         {
514                                 leaf = leafstack[--leafstackpos];
515                                 if (r_viewcache.world_leafvisible[leaf - model->brush.data_leafs])
516                                         continue;
517                                 r_refdef.stats.world_leafs++;
518                                 r_viewcache.world_leafvisible[leaf - model->brush.data_leafs] = true;
519                                 // mark any surfaces bounding this leaf
520                                 if (leaf->numleafsurfaces)
521                                         for (i = 0, mark = leaf->firstleafsurface;i < leaf->numleafsurfaces;i++, mark++)
522                                                 r_viewcache.world_surfacevisible[*mark] = true;
523                                 // follow portals into other leafs
524                                 // the checks are:
525                                 // if viewer is behind portal (portal faces outward into the scene)
526                                 // and the portal polygon's bounding box is on the screen
527                                 // and the leaf has not been visited yet
528                                 // and the leaf is visible in the pvs
529                                 // (the first two checks won't cause as many cache misses as the leaf checks)
530                                 for (p = leaf->portals;p;p = p->next)
531                                 {
532                                         r_refdef.stats.world_portals++;
533                                         if (DotProduct(r_view.origin, p->plane.normal) < (p->plane.dist + 1)
534                                          && !r_viewcache.world_leafvisible[p->past - model->brush.data_leafs]
535                                          && CHECKPVSBIT(r_viewcache.world_pvsbits, p->past->clusterindex)
536                                          && !R_CullBox(p->mins, p->maxs)
537                                          && leafstackpos < (int)(sizeof(leafstack) / sizeof(leafstack[0])))
538                                                 leafstack[leafstackpos++] = p->past;
539                                 }
540                         }
541                 }
542         }
543 }
544
545 void R_Q1BSP_DrawSky(entity_render_t *ent)
546 {
547         if (ent->model == NULL)
548                 return;
549         if (ent == r_refdef.worldentity)
550                 R_DrawWorldSurfaces(true, true, false, false);
551         else
552                 R_DrawModelSurfaces(ent, true, true, false, false);
553 }
554
555 void R_Q1BSP_DrawAddWaterPlanes(entity_render_t *ent)
556 {
557         model_t *model = ent->model;
558         if (model == NULL)
559                 return;
560         if (ent == r_refdef.worldentity)
561                 R_DrawWorldSurfaces(false, false, false, true);
562         else
563                 R_DrawModelSurfaces(ent, false, false, false, true);
564 }
565
566 void R_Q1BSP_Draw(entity_render_t *ent)
567 {
568         model_t *model = ent->model;
569         if (model == NULL)
570                 return;
571         if (ent == r_refdef.worldentity)
572                 R_DrawWorldSurfaces(false, true, false, false);
573         else
574                 R_DrawModelSurfaces(ent, false, true, false, false);
575 }
576
577 void R_Q1BSP_DrawDepth(entity_render_t *ent)
578 {
579         model_t *model = ent->model;
580         if (model == NULL)
581                 return;
582         if (ent == r_refdef.worldentity)
583                 R_DrawWorldSurfaces(false, false, true, false);
584         else
585                 R_DrawModelSurfaces(ent, false, false, true, false);
586 }
587
588 typedef struct r_q1bsp_getlightinfo_s
589 {
590         model_t *model;
591         vec3_t relativelightorigin;
592         float lightradius;
593         int *outleaflist;
594         unsigned char *outleafpvs;
595         int outnumleafs;
596         int *outsurfacelist;
597         unsigned char *outsurfacepvs;
598         unsigned char *tempsurfacepvs;
599         unsigned char *outshadowtrispvs;
600         unsigned char *outlighttrispvs;
601         int outnumsurfaces;
602         vec3_t outmins;
603         vec3_t outmaxs;
604         vec3_t lightmins;
605         vec3_t lightmaxs;
606         const unsigned char *pvs;
607         qboolean svbsp_active;
608         qboolean svbsp_insertoccluder;
609 }
610 r_q1bsp_getlightinfo_t;
611
612 void R_Q1BSP_RecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, mnode_t *node)
613 {
614         int sides;
615         mleaf_t *leaf;
616         for (;;)
617         {
618                 mplane_t *plane = node->plane;
619                 //if (!BoxesOverlap(info->lightmins, info->lightmaxs, node->mins, node->maxs))
620                 //      return;
621                 if (!plane)
622                         break;
623                 //if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, rsurface.rtlight_numfrustumplanes, rsurface.rtlight_frustumplanes))
624                 //      return;
625                 if (plane->type < 3)
626                 {
627                         if (info->lightmins[plane->type] > plane->dist)
628                                 node = node->children[0];
629                         else if (info->lightmaxs[plane->type] < plane->dist)
630                                 node = node->children[1];
631                         else if (info->relativelightorigin[plane->type] >= plane->dist)
632                         {
633                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
634                                 node = node->children[1];
635                         }
636                         else
637                         {
638                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
639                                 node = node->children[0];
640                         }
641                 }
642                 else
643                 {
644                         sides = BoxOnPlaneSide(info->lightmins, info->lightmaxs, plane);
645                         if (sides == 3)
646                         {
647                                 // recurse front side first because the svbsp building prefers it
648                                 if (PlaneDist(info->relativelightorigin, plane) >= 0)
649                                 {
650                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
651                                         node = node->children[1];
652                                 }
653                                 else
654                                 {
655                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
656                                         node = node->children[0];
657                                 }
658                         }
659                         else if (sides == 0)
660                                 return; // ERROR: NAN bounding box!
661                         else
662                                 node = node->children[sides - 1];
663                 }
664         }
665         if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, rsurface.rtlight_numfrustumplanes, rsurface.rtlight_frustumplanes))
666                 return;
667         leaf = (mleaf_t *)node;
668         if (info->svbsp_active)
669         {
670                 int i;
671                 mportal_t *portal;
672                 double points[128][3];
673                 for (portal = leaf->portals;portal;portal = portal->next)
674                 {
675                         for (i = 0;i < portal->numpoints;i++)
676                                 VectorCopy(portal->points[i].position, points[i]);
677                         if (SVBSP_AddPolygon(&r_svbsp, portal->numpoints, points[0], false, NULL, NULL, 0) & 2)
678                                 break;
679                 }
680                 if (portal == NULL)
681                         return; // no portals of this leaf visible
682         }
683         else
684         {
685                 if (r_shadow_frontsidecasting.integer && info->pvs != NULL && !CHECKPVSBIT(info->pvs, leaf->clusterindex))
686                         return;
687         }
688         // inserting occluders does not alter the leaf info
689         if (!info->svbsp_insertoccluder)
690         {
691                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
692                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
693                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
694                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
695                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
696                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
697                 if (info->outleafpvs)
698                 {
699                         int leafindex = leaf - info->model->brush.data_leafs;
700                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
701                         {
702                                 SETPVSBIT(info->outleafpvs, leafindex);
703                                 info->outleaflist[info->outnumleafs++] = leafindex;
704                         }
705                 }
706         }
707         if (info->outsurfacepvs)
708         {
709                 int leafsurfaceindex;
710                 int surfaceindex;
711                 int triangleindex, t;
712                 msurface_t *surface;
713                 const int *e;
714                 const vec_t *v[3];
715                 double v2[3][3];
716                 for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
717                 {
718                         surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
719                         if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
720                         {
721                                 surface = info->model->data_surfaces + surfaceindex;
722                                 if (BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs)
723                                  && (!info->svbsp_insertoccluder || !(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)))
724                                 {
725                                         qboolean addedtris = false;
726                                         qboolean insidebox = BoxInsideBox(surface->mins, surface->maxs, info->lightmins, info->lightmaxs);
727                                         for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
728                                         {
729                                                 v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
730                                                 v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
731                                                 v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
732                                                 if (insidebox || TriangleOverlapsBox(v[0], v[1], v[2], info->lightmins, info->lightmaxs))
733                                                 {
734                                                         if (info->svbsp_insertoccluder)
735                                                         {
736                                                                 if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOCULLFACE) && r_shadow_frontsidecasting.integer != PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]))
737                                                                         continue;
738                                                                 if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)
739                                                                         continue;
740                                                                 VectorCopy(v[0], v2[0]);
741                                                                 VectorCopy(v[1], v2[1]);
742                                                                 VectorCopy(v[2], v2[2]);
743                                                                 if (!(SVBSP_AddPolygon(&r_svbsp, 3, v2[0], true, NULL, NULL, 0) & 2))
744                                                                         continue;
745                                                                 addedtris = true;
746                                                         }
747                                                         else
748                                                         {
749                                                                 if (info->svbsp_active)
750                                                                 {
751                                                                         VectorCopy(v[0], v2[0]);
752                                                                         VectorCopy(v[1], v2[1]);
753                                                                         VectorCopy(v[2], v2[2]);
754                                                                         if (!(SVBSP_AddPolygon(&r_svbsp, 3, v2[0], false, NULL, NULL, 0) & 2))
755                                                                                 continue;
756                                                                 }
757                                                                 if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOCULLFACE)
758                                                                 {
759                                                                         // if the material is double sided we
760                                                                         // can't cull by direction
761                                                                         SETPVSBIT(info->outlighttrispvs, t);
762                                                                         addedtris = true;
763                                                                         if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
764                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
765                                                                 }
766                                                                 else if (r_shadow_frontsidecasting.integer)
767                                                                 {
768                                                                         // front side casting occludes backfaces,
769                                                                         // so they are completely useless as both
770                                                                         // casters and lit polygons
771                                                                         if (!PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]))
772                                                                                 continue;
773                                                                         SETPVSBIT(info->outlighttrispvs, t);
774                                                                         addedtris = true;
775                                                                         if (!(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
776                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
777                                                                 }
778                                                                 else
779                                                                 {
780                                                                         // back side casting does not occlude
781                                                                         // anything so we can't cull lit polygons
782                                                                         SETPVSBIT(info->outlighttrispvs, t);
783                                                                         addedtris = true;
784                                                                         if (!PointInfrontOfTriangle(info->relativelightorigin, v[0], v[1], v[2]) && !(surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW))
785                                                                                 SETPVSBIT(info->outshadowtrispvs, t);
786                                                                 }
787                                                         }
788                                                 }
789                                         }
790                                         if (addedtris)
791                                         {
792                                                 SETPVSBIT(info->outsurfacepvs, surfaceindex);
793                                                 info->outsurfacelist[info->outnumsurfaces++] = surfaceindex;
794                                         }
795                                 }
796                         }
797                 }
798         }
799 }
800
801 void R_Q1BSP_CallRecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, qboolean use_svbsp)
802 {
803         if (use_svbsp)
804         {
805                 double origin[3];
806                 VectorCopy(info->relativelightorigin, origin);
807                 if (!r_svbsp.nodes)
808                 {
809                         r_svbsp.maxnodes = max(r_svbsp.maxnodes, 1<<18);
810                         r_svbsp.nodes = Mem_Alloc(r_main_mempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
811                 }
812                 info->svbsp_active = true;
813                 info->svbsp_insertoccluder = true;
814                 for (;;)
815                 {
816                         SVBSP_Init(&r_svbsp, origin, r_svbsp.maxnodes, r_svbsp.nodes);
817                         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
818                         // if that failed, retry with more nodes
819                         if (r_svbsp.ranoutofnodes)
820                         {
821                                 // an upper limit is imposed
822                                 if (r_svbsp.maxnodes >= 2<<22)
823                                         break;
824                                 Mem_Free(r_svbsp.nodes);
825                                 r_svbsp.maxnodes *= 2;
826                                 r_svbsp.nodes = Mem_Alloc(tempmempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
827                         }
828                         else
829                                 break;
830                 }
831                 // now clear the surfacepvs array because we need to redo it
832                 memset(info->outsurfacepvs, 0, (info->model->nummodelsurfaces + 7) >> 3);
833                 info->outnumsurfaces = 0;
834         }
835         else
836                 info->svbsp_active = false;
837
838         // we HAVE to mark the leaf the light is in as lit, because portals are
839         // irrelevant to a leaf that the light source is inside of
840         // (and they are all facing away, too)
841         {
842                 mnode_t *node = info->model->brush.data_nodes;
843                 mleaf_t *leaf;
844                 while (node->plane)
845                         node = node->children[(node->plane->type < 3 ? info->relativelightorigin[node->plane->type] : DotProduct(info->relativelightorigin,node->plane->normal)) < node->plane->dist];
846                 leaf = (mleaf_t *)node;
847                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
848                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
849                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
850                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
851                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
852                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
853                 if (info->outleafpvs)
854                 {
855                         int leafindex = leaf - info->model->brush.data_leafs;
856                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
857                         {
858                                 SETPVSBIT(info->outleafpvs, leafindex);
859                                 info->outleaflist[info->outnumleafs++] = leafindex;
860                         }
861                 }
862         }
863
864         info->svbsp_insertoccluder = false;
865         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
866         if (developer.integer >= 100 && use_svbsp)
867         {
868                 Con_Printf("GetLightInfo: svbsp built with %i nodes, polygon stats:\n", r_svbsp.numnodes);
869                 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);
870                 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);
871         }
872 }
873
874 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)
875 {
876         r_q1bsp_getlightinfo_t info;
877         VectorCopy(relativelightorigin, info.relativelightorigin);
878         info.lightradius = lightradius;
879         info.lightmins[0] = info.relativelightorigin[0] - info.lightradius;
880         info.lightmins[1] = info.relativelightorigin[1] - info.lightradius;
881         info.lightmins[2] = info.relativelightorigin[2] - info.lightradius;
882         info.lightmaxs[0] = info.relativelightorigin[0] + info.lightradius;
883         info.lightmaxs[1] = info.relativelightorigin[1] + info.lightradius;
884         info.lightmaxs[2] = info.relativelightorigin[2] + info.lightradius;
885         if (ent->model == NULL)
886         {
887                 VectorCopy(info.lightmins, outmins);
888                 VectorCopy(info.lightmaxs, outmaxs);
889                 *outnumleafspointer = 0;
890                 *outnumsurfacespointer = 0;
891                 return;
892         }
893         info.model = ent->model;
894         info.outleaflist = outleaflist;
895         info.outleafpvs = outleafpvs;
896         info.outnumleafs = 0;
897         info.outsurfacelist = outsurfacelist;
898         info.outsurfacepvs = outsurfacepvs;
899         info.outshadowtrispvs = outshadowtrispvs;
900         info.outlighttrispvs = outlighttrispvs;
901         info.outnumsurfaces = 0;
902         VectorCopy(info.relativelightorigin, info.outmins);
903         VectorCopy(info.relativelightorigin, info.outmaxs);
904         memset(outleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
905         memset(outsurfacepvs, 0, (info.model->nummodelsurfaces + 7) >> 3);
906         if (info.model->brush.shadowmesh)
907                 memset(outshadowtrispvs, 0, (info.model->brush.shadowmesh->numtriangles + 7) >> 3);
908         else
909                 memset(outshadowtrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
910         memset(outlighttrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
911         if (info.model->brush.GetPVS && r_shadow_frontsidecasting.integer)
912                 info.pvs = info.model->brush.GetPVS(info.model, info.relativelightorigin);
913         else
914                 info.pvs = NULL;
915         R_UpdateAllTextureInfo(ent);
916
917         if (r_shadow_frontsidecasting.integer && r_shadow_compilingrtlight && r_shadow_realtime_world_compileportalculling.integer)
918         {
919                 // use portal recursion for exact light volume culling, and exact surface checking
920                 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);
921         }
922         else if (r_shadow_frontsidecasting.integer && r_shadow_realtime_dlight_portalculling.integer)
923         {
924                 // use portal recursion for exact light volume culling, but not the expensive exact surface checking
925                 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);
926         }
927         else
928         {
929                 // recurse the bsp tree, checking leafs and surfaces for visibility
930                 // optionally using svbsp for exact culling of compiled lights
931                 // (or if the user enables dlight svbsp culling, which is mostly for
932                 //  debugging not actual use)
933                 R_Q1BSP_CallRecursiveGetLightInfo(&info, r_shadow_compilingrtlight ? r_shadow_realtime_world_compilesvbsp.integer : r_shadow_realtime_dlight_svbspculling.integer);
934         }
935
936         // limit combined leaf box to light boundaries
937         outmins[0] = max(info.outmins[0] - 1, info.lightmins[0]);
938         outmins[1] = max(info.outmins[1] - 1, info.lightmins[1]);
939         outmins[2] = max(info.outmins[2] - 1, info.lightmins[2]);
940         outmaxs[0] = min(info.outmaxs[0] + 1, info.lightmaxs[0]);
941         outmaxs[1] = min(info.outmaxs[1] + 1, info.lightmaxs[1]);
942         outmaxs[2] = min(info.outmaxs[2] + 1, info.lightmaxs[2]);
943
944         *outnumleafspointer = info.outnumleafs;
945         *outnumsurfacespointer = info.outnumsurfaces;
946 }
947
948 void R_Q1BSP_CompileShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativelightdirection, float lightradius, int numsurfaces, const int *surfacelist)
949 {
950         model_t *model = ent->model;
951         msurface_t *surface;
952         int surfacelistindex;
953         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
954         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Begin(r_main_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
955         R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
956         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
957         {
958                 surface = model->data_surfaces + surfacelist[surfacelistindex];
959                 if (surface->texture->currentframe->basematerialflags & MATERIALFLAG_NOSHADOW)
960                         continue;
961                 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);
962         }
963         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);
964         r_shadow_compilingrtlight->static_meshchain_shadow = Mod_ShadowMesh_Finish(r_main_mempool, r_shadow_compilingrtlight->static_meshchain_shadow, false, false, true);
965 }
966
967 extern cvar_t r_polygonoffset_submodel_factor;
968 extern cvar_t r_polygonoffset_submodel_offset;
969 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)
970 {
971         model_t *model = ent->model;
972         msurface_t *surface;
973         int modelsurfacelistindex;
974         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
975         // check the box in modelspace, it was already checked in worldspace
976         if (!BoxesOverlap(model->normalmins, model->normalmaxs, lightmins, lightmaxs))
977                 return;
978         R_UpdateAllTextureInfo(ent);
979         if (ent->model->brush.submodel)
980                 GL_PolygonOffset(r_refdef.shadowpolygonfactor + r_polygonoffset_submodel_factor.value, r_refdef.shadowpolygonoffset + r_polygonoffset_submodel_offset.value);
981         if (model->brush.shadowmesh)
982         {
983                 R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
984                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
985                 {
986                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
987                         if (surface->texture->currentframe->currentmaterialflags & MATERIALFLAG_NOSHADOW)
988                                 continue;
989                         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);
990                 }
991                 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);
992         }
993         else
994         {
995                 projectdistance = lightradius + model->radius*2;
996                 R_Shadow_PrepareShadowMark(model->surfmesh.num_triangles);
997                 // identify lit faces within the bounding box
998                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
999                 {
1000                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
1001                         rsurface.texture = surface->texture->currentframe;
1002                         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_NOSHADOW)
1003                                 continue;
1004                         RSurf_PrepareVerticesForBatch(false, false, 1, &surface);
1005                         R_Shadow_MarkVolumeFromBox(surface->num_firsttriangle, surface->num_triangles, rsurface.vertex3f, rsurface.modelelement3i, relativelightorigin, relativelightdirection, lightmins, lightmaxs, surface->mins, surface->maxs);
1006                 }
1007                 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);
1008         }
1009         if (ent->model->brush.submodel)
1010                 GL_PolygonOffset(r_refdef.shadowpolygonfactor, r_refdef.shadowpolygonoffset);
1011 }
1012
1013 #define BATCHSIZE 1024
1014
1015 static void R_Q1BSP_DrawLight_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
1016 {
1017         int i, j, endsurface;
1018         texture_t *t;
1019         msurface_t *surface;
1020         // note: in practice this never actually receives batches), oh well
1021         R_Shadow_RenderMode_Begin();
1022         R_Shadow_RenderMode_ActiveLight((rtlight_t *)rtlight);
1023         R_Shadow_RenderMode_Lighting(false, true);
1024         R_Shadow_SetupEntityLight(ent);
1025         for (i = 0;i < numsurfaces;i = j)
1026         {
1027                 j = i + 1;
1028                 surface = rsurface.modelsurfaces + surfacelist[i];
1029                 t = surface->texture;
1030                 R_UpdateTextureInfo(ent, t);
1031                 rsurface.texture = t->currentframe;
1032                 endsurface = min(j + BATCHSIZE, numsurfaces);
1033                 for (j = i;j < endsurface;j++)
1034                 {
1035                         surface = rsurface.modelsurfaces + surfacelist[j];
1036                         if (t != surface->texture)
1037                                 break;
1038                         RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
1039                         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));
1040                 }
1041         }
1042         R_Shadow_RenderMode_End();
1043 }
1044
1045 #define RSURF_MAX_BATCHSURFACES 1024
1046
1047 void R_Q1BSP_DrawLight(entity_render_t *ent, int numsurfaces, const int *surfacelist, const unsigned char *trispvs)
1048 {
1049         model_t *model = ent->model;
1050         msurface_t *surface;
1051         int i, k, l, m, mend, endsurface, batchnumsurfaces, batchnumtriangles, batchfirstvertex, batchlastvertex;
1052         qboolean usebufferobject, culltriangles;
1053         const int *element3i;
1054         msurface_t *batchsurfacelist[RSURF_MAX_BATCHSURFACES];
1055         int batchelements[BATCHSIZE*3];
1056         texture_t *tex;
1057         CHECKGLERROR
1058         RSurf_ActiveModelEntity(ent, true, true);
1059         R_UpdateAllTextureInfo(ent);
1060         CHECKGLERROR
1061         culltriangles = r_shadow_culltriangles.integer && !(ent->flags & RENDER_NOSELFSHADOW);
1062         element3i = rsurface.modelelement3i;
1063         // this is a double loop because non-visible surface skipping has to be
1064         // fast, and even if this is not the world model (and hence no visibility
1065         // checking) the input surface list and batch buffer are different formats
1066         // so some processing is necessary.  (luckily models have few surfaces)
1067         for (i = 0;i < numsurfaces;)
1068         {
1069                 batchnumsurfaces = 0;
1070                 endsurface = min(i + RSURF_MAX_BATCHSURFACES, numsurfaces);
1071                 if (ent == r_refdef.worldentity)
1072                 {
1073                         for (;i < endsurface;i++)
1074                                 if (r_viewcache.world_surfacevisible[surfacelist[i]])
1075                                         batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1076                 }
1077                 else
1078                 {
1079                         for (;i < endsurface;i++)
1080                                 batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1081                 }
1082                 if (!batchnumsurfaces)
1083                         continue;
1084                 for (k = 0;k < batchnumsurfaces;k = l)
1085                 {
1086                         surface = batchsurfacelist[k];
1087                         tex = surface->texture;
1088                         rsurface.texture = tex->currentframe;
1089                         if (rsurface.texture->currentmaterialflags & (MATERIALFLAG_WALL | MATERIALFLAG_WATER))
1090                         {
1091                                 if (rsurface.texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED)
1092                                 {
1093                                         vec3_t tempcenter, center;
1094                                         for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++)
1095                                         {
1096                                                 surface = batchsurfacelist[l];
1097                                                 tempcenter[0] = (surface->mins[0] + surface->maxs[0]) * 0.5f;
1098                                                 tempcenter[1] = (surface->mins[1] + surface->maxs[1]) * 0.5f;
1099                                                 tempcenter[2] = (surface->mins[2] + surface->maxs[2]) * 0.5f;
1100                                                 Matrix4x4_Transform(&rsurface.matrix, tempcenter, center);
1101                                                 R_MeshQueue_AddTransparent(rsurface.texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST ? r_view.origin : center, R_Q1BSP_DrawLight_TransparentCallback, ent, surface - rsurface.modelsurfaces, rsurface.rtlight);
1102                                         }
1103                                 }
1104                                 else
1105                                 {
1106                                         // use the bufferobject if all triangles are accepted
1107                                         usebufferobject = true;
1108                                         batchnumtriangles = 0;
1109                                         // note: this only accepts consecutive surfaces because
1110                                         // non-consecutive surfaces often have extreme vertex
1111                                         // ranges (due to large numbers of surfaces omitted
1112                                         // between them)
1113                                         surface = batchsurfacelist[k];
1114                                         for (l = k;l < batchnumsurfaces && surface == batchsurfacelist[l] && tex == surface->texture;l++, surface++)
1115                                         {
1116                                                 RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
1117                                                 for (m = surface->num_firsttriangle, mend = m + surface->num_triangles;m < mend;m++)
1118                                                 {
1119                                                         if (culltriangles)
1120                                                         {
1121                                                                 if (trispvs)
1122                                                                 {
1123                                                                         if (!CHECKPVSBIT(trispvs, m))
1124                                                                         {
1125                                                                                 usebufferobject = false;
1126                                                                                 continue;
1127                                                                         }
1128                                                                 }
1129                                                                 else
1130                                                                 {
1131                                                                         if (r_shadow_frontsidecasting.integer && !PointInfrontOfTriangle(rsurface.entitylightorigin, rsurface.vertex3f + element3i[m*3+0]*3, rsurface.vertex3f + element3i[m*3+1]*3, rsurface.vertex3f + element3i[m*3+2]*3))
1132                                                                         {
1133                                                                                 usebufferobject = false;
1134                                                                                 continue;
1135                                                                         }
1136                                                                 }
1137                                                         }
1138                                                         batchelements[batchnumtriangles*3+0] = element3i[m*3+0];
1139                                                         batchelements[batchnumtriangles*3+1] = element3i[m*3+1];
1140                                                         batchelements[batchnumtriangles*3+2] = element3i[m*3+2];
1141                                                         batchnumtriangles++;
1142                                                         r_refdef.stats.lights_lighttriangles++;
1143                                                         if (batchnumtriangles >= BATCHSIZE)
1144                                                         {
1145                                                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1146                                                                 R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, 0, 0);
1147                                                                 batchnumtriangles = 0;
1148                                                                 usebufferobject = false;
1149                                                         }
1150                                                 }
1151                                                 r_refdef.stats.lights_lighttriangles += batchsurfacelist[l]->num_triangles;
1152                                         }
1153                                         if (batchnumtriangles > 0)
1154                                         {
1155                                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1156                                                 if (usebufferobject)
1157                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, ent->model->surfmesh.ebo, sizeof(int[3]) * batchsurfacelist[k]->num_firsttriangle);
1158                                                 else
1159                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchnumtriangles, batchelements, 0, 0);
1160                                         }
1161                                 }
1162                         }
1163                         else
1164                         {
1165                                 // skip ahead to the next texture
1166                                 for (l = k;l < batchnumsurfaces && tex == batchsurfacelist[l]->texture;l++)
1167                                         ;
1168                         }
1169                 }
1170         }
1171 }
1172
1173 //Made by [515]
1174 void R_ReplaceWorldTexture (void)
1175 {
1176         model_t         *m;
1177         texture_t       *t;
1178         int                     i;
1179         const char      *r, *newt;
1180         skinframe_t *skinframe;
1181         if (!r_refdef.worldmodel)
1182         {
1183                 Con_Printf("There is no worldmodel\n");
1184                 return;
1185         }
1186         m = r_refdef.worldmodel;
1187
1188         if(Cmd_Argc() < 2)
1189         {
1190                 Con_Print("r_replacemaptexture <texname> <newtexname> - replaces texture\n");
1191                 Con_Print("r_replacemaptexture <texname> - switch back to default texture\n");
1192                 return;
1193         }
1194         if(!cl.islocalgame || !cl.worldmodel)
1195         {
1196                 Con_Print("This command works only in singleplayer\n");
1197                 return;
1198         }
1199         r = Cmd_Argv(1);
1200         newt = Cmd_Argv(2);
1201         if(!newt[0])
1202                 newt = r;
1203         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1204         {
1205                 if(t->width && !strcasecmp(t->name, r))
1206                 {
1207                         if ((skinframe = R_SkinFrame_LoadExternal((char*)newt, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PRECACHE | TEXF_PICMIP, true)))
1208                         {
1209                                 t->skinframes[0] = skinframe;
1210                                 Con_Printf("%s replaced with %s\n", r, newt);
1211                                 return;
1212                         }
1213                         else
1214                         {
1215                                 Con_Printf("%s was not found\n", newt);
1216                                 return;
1217                         }
1218                 }
1219         }
1220 }
1221
1222 //Made by [515]
1223 void R_ListWorldTextures (void)
1224 {
1225         model_t         *m;
1226         texture_t       *t;
1227         int                     i;
1228         if (!r_refdef.worldmodel)
1229         {
1230                 Con_Printf("There is no worldmodel\n");
1231                 return;
1232         }
1233         m = r_refdef.worldmodel;
1234
1235         Con_Print("Worldmodel textures :\n");
1236         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1237                 if (t->numskinframes)
1238                         Con_Printf("%s\n", t->name);
1239 }
1240
1241 #if 0
1242 static void gl_surf_start(void)
1243 {
1244 }
1245
1246 static void gl_surf_shutdown(void)
1247 {
1248 }
1249
1250 static void gl_surf_newmap(void)
1251 {
1252 }
1253 #endif
1254
1255 void GL_Surf_Init(void)
1256 {
1257
1258         Cvar_RegisterVariable(&r_ambient);
1259         Cvar_RegisterVariable(&r_lockpvs);
1260         Cvar_RegisterVariable(&r_lockvisibility);
1261         Cvar_RegisterVariable(&r_useportalculling);
1262         Cvar_RegisterVariable(&r_q3bsp_renderskydepth);
1263
1264         Cmd_AddCommand ("r_replacemaptexture", R_ReplaceWorldTexture, "override a map texture for testing purposes");
1265         Cmd_AddCommand ("r_listmaptextures", R_ListWorldTextures, "list all textures used by the current map");
1266
1267         //R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown, gl_surf_newmap);
1268 }
1269