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