]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rsurf.c
shut up a (in this case wrong) warning about possibly uninitialized variable
[divverent/darkplaces.git] / gl_rsurf.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // r_surf.c: surface-related refresh code
21
22 #include "quakedef.h"
23 #include "r_shadow.h"
24 #include "portals.h"
25
26 cvar_t r_ambient = {0, "r_ambient", "0", "brightens map, value is 0-128"};
27 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)"};
28 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)"};
29 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)"};
30 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"};
31
32 /*
33 ===============
34 R_BuildLightMap
35
36 Combine and scale multiple lightmaps into the 8.8 format in blocklights
37 ===============
38 */
39 void R_BuildLightMap (const entity_render_t *ent, msurface_t *surface)
40 {
41         int smax, tmax, i, size, size3, maps, l;
42         int *bl, scale;
43         unsigned char *lightmap, *out, *stain;
44         dp_model_t *model = ent->model;
45         int *intblocklights;
46         unsigned char *templight;
47
48         smax = (surface->lightmapinfo->extents[0]>>4)+1;
49         tmax = (surface->lightmapinfo->extents[1]>>4)+1;
50         size = smax*tmax;
51         size3 = size*3;
52
53         r_refdef.stats.lightmapupdatepixels += size;
54         r_refdef.stats.lightmapupdates++;
55
56         if (cl.buildlightmapmemorysize < size*sizeof(int[3]))
57         {
58                 cl.buildlightmapmemorysize = size*sizeof(int[3]);
59                 if (cl.buildlightmapmemory)
60                         Mem_Free(cl.buildlightmapmemory);
61                 cl.buildlightmapmemory = (unsigned char *) Mem_Alloc(cls.levelmempool, cl.buildlightmapmemorysize);
62         }
63
64         // these both point at the same buffer, templight is only used for final
65         // processing and can replace the intblocklights data as it goes
66         intblocklights = (int *)cl.buildlightmapmemory;
67         templight = (unsigned char *)cl.buildlightmapmemory;
68
69         // update cached lighting info
70         model->brushq1.lightmapupdateflags[surface - model->data_surfaces] = false;
71
72         lightmap = surface->lightmapinfo->samples;
73
74 // set to full bright if no light data
75         bl = intblocklights;
76         if (!model->brushq1.lightdata)
77         {
78                 for (i = 0;i < size3;i++)
79                         bl[i] = 128*256;
80         }
81         else
82         {
83 // clear to no light
84                 memset(bl, 0, size3*sizeof(*bl));
85
86 // add all the lightmaps
87                 if (lightmap)
88                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3)
89                                 for (scale = r_refdef.scene.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size3;i++)
90                                         bl[i] += lightmap[i] * scale;
91         }
92
93         stain = surface->lightmapinfo->stainsamples;
94         bl = intblocklights;
95         out = templight;
96         // the >> 16 shift adjusts down 8 bits to account for the stainmap
97         // scaling, and remaps the 0-65536 (2x overbright) to 0-256, it will
98         // be doubled during rendering to achieve 2x overbright
99         // (0 = 0.0, 128 = 1.0, 256 = 2.0)
100         if (stain)
101         {
102                 for (i = 0;i < size;i++, bl += 3, stain += 3, out += 4)
103                 {
104                         l = (bl[0] * stain[0]) >> 16;out[2] = min(l, 255);
105                         l = (bl[1] * stain[1]) >> 16;out[1] = min(l, 255);
106                         l = (bl[2] * stain[2]) >> 16;out[0] = min(l, 255);
107                         out[3] = 255;
108                 }
109         }
110         else
111         {
112                 for (i = 0;i < size;i++, bl += 3, out += 4)
113                 {
114                         l = bl[0] >> 8;out[2] = min(l, 255);
115                         l = bl[1] >> 8;out[1] = min(l, 255);
116                         l = bl[2] >> 8;out[0] = min(l, 255);
117                         out[3] = 255;
118                 }
119         }
120
121         R_UpdateTexture(surface->lightmaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
122
123         // update the surface's deluxemap if it has one
124         if (surface->deluxemaptexture != r_texture_blanknormalmap)
125         {
126                 vec3_t n;
127                 unsigned char *normalmap = surface->lightmapinfo->nmapsamples;
128                 lightmap = surface->lightmapinfo->samples;
129                 // clear to no normalmap
130                 bl = intblocklights;
131                 memset(bl, 0, size3*sizeof(*bl));
132                 // add all the normalmaps
133                 if (lightmap && normalmap)
134                 {
135                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++, lightmap += size3, normalmap += size3)
136                         {
137                                 for (scale = r_refdef.scene.lightstylevalue[surface->lightmapinfo->styles[maps]], i = 0;i < size;i++)
138                                 {
139                                         // add the normalmap with weighting proportional to the style's lightmap intensity
140                                         l = (int)(VectorLength(lightmap + i*3) * scale);
141                                         bl[i*3+0] += ((int)normalmap[i*3+0] - 128) * l;
142                                         bl[i*3+1] += ((int)normalmap[i*3+1] - 128) * l;
143                                         bl[i*3+2] += ((int)normalmap[i*3+2] - 128) * l;
144                                 }
145                         }
146                 }
147                 bl = intblocklights;
148                 out = templight;
149                 // we simply renormalize the weighted normals to get a valid deluxemap
150                 for (i = 0;i < size;i++, bl += 3, out += 4)
151                 {
152                         VectorCopy(bl, n);
153                         VectorNormalize(n);
154                         l = (int)(n[0] * 128 + 128);out[2] = bound(0, l, 255);
155                         l = (int)(n[1] * 128 + 128);out[1] = bound(0, l, 255);
156                         l = (int)(n[2] * 128 + 128);out[0] = bound(0, l, 255);
157                         out[3] = 255;
158                 }
159                 R_UpdateTexture(surface->deluxemaptexture, templight, surface->lightmapinfo->lightmaporigin[0], surface->lightmapinfo->lightmaporigin[1], smax, tmax);
160         }
161 }
162
163 void R_StainNode (mnode_t *node, dp_model_t *model, const vec3_t origin, float radius, const float fcolor[8])
164 {
165         float ndist, a, ratio, maxdist, maxdist2, maxdist3, invradius, sdtable[256], td, dist2;
166         msurface_t *surface, *endsurface;
167         int i, s, t, smax, tmax, smax3, impacts, impactt, stained;
168         unsigned char *bl;
169         vec3_t impact;
170
171         maxdist = radius * radius;
172         invradius = 1.0f / radius;
173
174 loc0:
175         if (!node->plane)
176                 return;
177         ndist = PlaneDiff(origin, node->plane);
178         if (ndist > radius)
179         {
180                 node = node->children[0];
181                 goto loc0;
182         }
183         if (ndist < -radius)
184         {
185                 node = node->children[1];
186                 goto loc0;
187         }
188
189         dist2 = ndist * ndist;
190         maxdist3 = maxdist - dist2;
191
192         if (node->plane->type < 3)
193         {
194                 VectorCopy(origin, impact);
195                 impact[node->plane->type] -= ndist;
196         }
197         else
198         {
199                 impact[0] = origin[0] - node->plane->normal[0] * ndist;
200                 impact[1] = origin[1] - node->plane->normal[1] * ndist;
201                 impact[2] = origin[2] - node->plane->normal[2] * ndist;
202         }
203
204         for (surface = model->data_surfaces + node->firstsurface, endsurface = surface + node->numsurfaces;surface < endsurface;surface++)
205         {
206                 if (surface->lightmapinfo->stainsamples)
207                 {
208                         smax = (surface->lightmapinfo->extents[0] >> 4) + 1;
209                         tmax = (surface->lightmapinfo->extents[1] >> 4) + 1;
210
211                         impacts = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3] - surface->lightmapinfo->texturemins[0]);
212                         impactt = (int)(DotProduct (impact, surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3] - surface->lightmapinfo->texturemins[1]);
213
214                         s = bound(0, impacts, smax * 16) - impacts;
215                         t = bound(0, impactt, tmax * 16) - impactt;
216                         i = (int)(s * s + t * t + dist2);
217                         if ((i > maxdist) || (smax > (int)(sizeof(sdtable)/sizeof(sdtable[0])))) // smax overflow fix from Andreas Dehmel
218                                 continue;
219
220                         // reduce calculations
221                         for (s = 0, i = impacts; s < smax; s++, i -= 16)
222                                 sdtable[s] = i * i + dist2;
223
224                         bl = surface->lightmapinfo->stainsamples;
225                         smax3 = smax * 3;
226                         stained = false;
227
228                         i = impactt;
229                         for (t = 0;t < tmax;t++, i -= 16)
230                         {
231                                 td = i * i;
232                                 // make sure some part of it is visible on this line
233                                 if (td < maxdist3)
234                                 {
235                                         maxdist2 = maxdist - td;
236                                         for (s = 0;s < smax;s++)
237                                         {
238                                                 if (sdtable[s] < maxdist2)
239                                                 {
240                                                         ratio = lhrandom(0.0f, 1.0f);
241                                                         a = (fcolor[3] + ratio * fcolor[7]) * (1.0f - sqrt(sdtable[s] + td) * invradius);
242                                                         if (a >= (1.0f / 64.0f))
243                                                         {
244                                                                 if (a > 1)
245                                                                         a = 1;
246                                                                 bl[0] = (unsigned char) ((float) bl[0] + a * ((fcolor[0] + ratio * fcolor[4]) - (float) bl[0]));
247                                                                 bl[1] = (unsigned char) ((float) bl[1] + a * ((fcolor[1] + ratio * fcolor[5]) - (float) bl[1]));
248                                                                 bl[2] = (unsigned char) ((float) bl[2] + a * ((fcolor[2] + ratio * fcolor[6]) - (float) bl[2]));
249                                                                 stained = true;
250                                                         }
251                                                 }
252                                                 bl += 3;
253                                         }
254                                 }
255                                 else // skip line
256                                         bl += smax3;
257                         }
258                         // force lightmap upload
259                         if (stained)
260                                 model->brushq1.lightmapupdateflags[surface - model->data_surfaces] = true;
261                 }
262         }
263
264         if (node->children[0]->plane)
265         {
266                 if (node->children[1]->plane)
267                 {
268                         R_StainNode(node->children[0], model, origin, radius, fcolor);
269                         node = node->children[1];
270                         goto loc0;
271                 }
272                 else
273                 {
274                         node = node->children[0];
275                         goto loc0;
276                 }
277         }
278         else if (node->children[1]->plane)
279         {
280                 node = node->children[1];
281                 goto loc0;
282         }
283 }
284
285 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)
286 {
287         int n;
288         float fcolor[8];
289         entity_render_t *ent;
290         dp_model_t *model;
291         vec3_t org;
292         if (r_refdef.scene.worldmodel == NULL || !r_refdef.scene.worldmodel->brush.data_nodes || !r_refdef.scene.worldmodel->brushq1.lightdata)
293                 return;
294         fcolor[0] = cr1;
295         fcolor[1] = cg1;
296         fcolor[2] = cb1;
297         fcolor[3] = ca1 * (1.0f / 64.0f);
298         fcolor[4] = cr2 - cr1;
299         fcolor[5] = cg2 - cg1;
300         fcolor[6] = cb2 - cb1;
301         fcolor[7] = (ca2 - ca1) * (1.0f / 64.0f);
302
303         R_StainNode(r_refdef.scene.worldmodel->brush.data_nodes + r_refdef.scene.worldmodel->brushq1.hulls[0].firstclipnode, r_refdef.scene.worldmodel, origin, radius, fcolor);
304
305         // look for embedded bmodels
306         for (n = 0;n < cl.num_brushmodel_entities;n++)
307         {
308                 ent = &cl.entities[cl.brushmodel_entities[n]].render;
309                 model = ent->model;
310                 if (model && model->name[0] == '*')
311                 {
312                         if (model->brush.data_nodes)
313                         {
314                                 Matrix4x4_Transform(&ent->inversematrix, origin, org);
315                                 R_StainNode(model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode, model, org, radius, fcolor);
316                         }
317                 }
318         }
319 }
320
321
322 /*
323 =============================================================
324
325         BRUSH MODELS
326
327 =============================================================
328 */
329
330 static void R_DrawPortal_Callback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
331 {
332         // due to the hacky nature of this function's parameters, this is never
333         // called with a batch, so numsurfaces is always 1, and the surfacelist
334         // contains only a leaf number for coloring purposes
335         const mportal_t *portal = (mportal_t *)ent;
336         qboolean isvis;
337         int i, numpoints;
338         float *v;
339         float vertex3f[POLYGONELEMENTS_MAXPOINTS*3];
340         CHECKGLERROR
341         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
342         GL_DepthMask(false);
343         GL_DepthRange(0, 1);
344         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
345         GL_DepthTest(true);
346         GL_CullFace(GL_NONE);
347         R_EntityMatrix(&identitymatrix);
348
349         numpoints = min(portal->numpoints, POLYGONELEMENTS_MAXPOINTS);
350
351         R_Mesh_VertexPointer(vertex3f, 0, 0);
352         R_Mesh_ColorPointer(NULL, 0, 0);
353         R_Mesh_ResetTextureState();
354         R_SetupShader_Generic(NULL, NULL, GL_MODULATE, 1);
355
356         isvis = (portal->here->clusterindex >= 0 && portal->past->clusterindex >= 0 && portal->here->clusterindex != portal->past->clusterindex);
357
358         i = surfacelist[0] >> 1;
359         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f) * r_refdef.view.colorscale,
360                          ((i & 0x0038) >> 3) * (1.0f / 7.0f) * r_refdef.view.colorscale,
361                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f) * r_refdef.view.colorscale,
362                          isvis ? 0.125f : 0.03125f);
363         for (i = 0, v = vertex3f;i < numpoints;i++, v += 3)
364                 VectorCopy(portal->points[i].position, v);
365         R_Mesh_Draw(0, numpoints, 0, numpoints - 2, polygonelement3i, polygonelement3s, 0, 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);
548 void R_Q1BSP_DrawAddWaterPlanes(entity_render_t *ent)
549 {
550         int i, j, 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;
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);
573                 }
574         }
575         else
576         {
577                 for (i = 0;i < model->nummodelsurfaces;i++)
578                 {
579                         j = model->sortedmodelsurfaces[i];
580                         if (surfaces[j].texture->basematerialflags & flagsmask)
581                                 R_Water_AddWaterPlane(surfaces + j);
582                 }
583         }
584         rsurface.entity = NULL; // used only by R_GetCurrentTexture and RSurf_ActiveWorldEntity/RSurf_ActiveModelEntity
585 }
586
587 void R_Q1BSP_Draw(entity_render_t *ent)
588 {
589         dp_model_t *model = ent->model;
590         if (model == NULL)
591                 return;
592         if (ent == r_refdef.scene.worldentity)
593                 R_DrawWorldSurfaces(false, true, false, false, false);
594         else
595                 R_DrawModelSurfaces(ent, false, true, false, false, false);
596 }
597
598 void R_Q1BSP_DrawDepth(entity_render_t *ent)
599 {
600         dp_model_t *model = ent->model;
601         if (model == NULL)
602                 return;
603         GL_ColorMask(0,0,0,0);
604         GL_Color(1,1,1,1);
605         GL_DepthTest(true);
606         GL_BlendFunc(GL_ONE, GL_ZERO);
607         GL_DepthMask(true);
608         GL_AlphaTest(false);
609         R_Mesh_ColorPointer(NULL, 0, 0);
610         R_Mesh_ResetTextureState();
611         R_SetupShader_DepthOrShadow();
612         if (ent == r_refdef.scene.worldentity)
613                 R_DrawWorldSurfaces(false, false, true, false, false);
614         else
615                 R_DrawModelSurfaces(ent, false, false, true, false, false);
616         GL_ColorMask(r_refdef.view.colormask[0], r_refdef.view.colormask[1], r_refdef.view.colormask[2], 1);
617 }
618
619 void R_Q1BSP_DrawDebug(entity_render_t *ent)
620 {
621         if (ent->model == NULL)
622                 return;
623         if (ent == r_refdef.scene.worldentity)
624                 R_DrawWorldSurfaces(false, false, false, true, false);
625         else
626                 R_DrawModelSurfaces(ent, false, false, false, true, false);
627 }
628
629 void R_Q1BSP_DrawPrepass(entity_render_t *ent)
630 {
631         dp_model_t *model = ent->model;
632         if (model == NULL)
633                 return;
634         if (ent == r_refdef.scene.worldentity)
635                 R_DrawWorldSurfaces(false, true, false, false, true);
636         else
637                 R_DrawModelSurfaces(ent, false, true, false, false, true);
638 }
639
640 typedef struct r_q1bsp_getlightinfo_s
641 {
642         dp_model_t *model;
643         vec3_t relativelightorigin;
644         float lightradius;
645         int *outleaflist;
646         unsigned char *outleafpvs;
647         int outnumleafs;
648         unsigned char *visitingleafpvs;
649         int *outsurfacelist;
650         unsigned char *outsurfacepvs;
651         unsigned char *tempsurfacepvs;
652         unsigned char *outshadowtrispvs;
653         unsigned char *outlighttrispvs;
654         int outnumsurfaces;
655         vec3_t outmins;
656         vec3_t outmaxs;
657         vec3_t lightmins;
658         vec3_t lightmaxs;
659         const unsigned char *pvs;
660         qboolean svbsp_active;
661         qboolean svbsp_insertoccluder;
662         int numfrustumplanes;
663         const mplane_t *frustumplanes;
664 }
665 r_q1bsp_getlightinfo_t;
666
667 static void R_Q1BSP_RecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, mnode_t *node)
668 {
669         int sides;
670         mleaf_t *leaf;
671         for (;;)
672         {
673                 mplane_t *plane = node->plane;
674                 //if (!BoxesOverlap(info->lightmins, info->lightmaxs, node->mins, node->maxs))
675                 //      return;
676                 if (!plane)
677                         break;
678                 //if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, rtlight->cached_numfrustumplanes, rtlight->cached_frustumplanes))
679                 //      return;
680                 if (plane->type < 3)
681                 {
682                         if (info->lightmins[plane->type] > plane->dist)
683                                 node = node->children[0];
684                         else if (info->lightmaxs[plane->type] < plane->dist)
685                                 node = node->children[1];
686                         else if (info->relativelightorigin[plane->type] >= plane->dist)
687                         {
688                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
689                                 node = node->children[1];
690                         }
691                         else
692                         {
693                                 R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
694                                 node = node->children[0];
695                         }
696                 }
697                 else
698                 {
699                         sides = BoxOnPlaneSide(info->lightmins, info->lightmaxs, plane);
700                         if (sides == 3)
701                         {
702                                 // recurse front side first because the svbsp building prefers it
703                                 if (PlaneDist(info->relativelightorigin, plane) >= 0)
704                                 {
705                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[0]);
706                                         node = node->children[1];
707                                 }
708                                 else
709                                 {
710                                         R_Q1BSP_RecursiveGetLightInfo(info, node->children[1]);
711                                         node = node->children[0];
712                                 }
713                         }
714                         else if (sides == 0)
715                                 return; // ERROR: NAN bounding box!
716                         else
717                                 node = node->children[sides - 1];
718                 }
719         }
720         if (!r_shadow_compilingrtlight && R_CullBoxCustomPlanes(node->mins, node->maxs, info->numfrustumplanes, info->frustumplanes))
721                 return;
722         leaf = (mleaf_t *)node;
723         if (r_shadow_frontsidecasting.integer && info->pvs != NULL && !CHECKPVSBIT(info->pvs, leaf->clusterindex))
724                 return;
725         if (info->svbsp_active)
726         {
727                 int i;
728                 mportal_t *portal;
729                 static float points[128][3];
730                 for (portal = leaf->portals;portal;portal = portal->next)
731                 {
732                         for (i = 0;i < portal->numpoints;i++)
733                                 VectorCopy(portal->points[i].position, points[i]);
734                         if (SVBSP_AddPolygon(&r_svbsp, portal->numpoints, points[0], false, NULL, NULL, 0) & 2)
735                                 break;
736                 }
737                 if (portal == NULL)
738                         return; // no portals of this leaf visible
739         }
740         if (info->svbsp_insertoccluder)
741         {
742                 int leafsurfaceindex;
743                 int surfaceindex;
744                 int triangleindex, t;
745                 int currentmaterialflags;
746                 qboolean castshadow;
747                 msurface_t *surface;
748                 const int *e;
749                 const vec_t *v[3];
750                 float v2[3][3];
751                 for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
752                 {
753                         surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
754                         if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
755                         {
756                                 surface = info->model->data_surfaces + surfaceindex;
757                                 currentmaterialflags = R_GetCurrentTexture(surface->texture)->currentmaterialflags;
758                                 castshadow = !(currentmaterialflags & MATERIALFLAG_NOSHADOW);
759                                 if (castshadow && BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs))
760                                 {
761                                         qboolean insidebox = BoxInsideBox(surface->mins, surface->maxs, info->lightmins, info->lightmaxs);
762                                         for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
763                                         {
764                                                 v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
765                                                 v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
766                                                 v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
767                                                 VectorCopy(v[0], v2[0]);
768                                                 VectorCopy(v[1], v2[1]);
769                                                 VectorCopy(v[2], v2[2]);
770                                                 if (insidebox || TriangleOverlapsBox(v2[0], v2[1], v2[2], info->lightmins, info->lightmaxs))
771                                                         SVBSP_AddPolygon(&r_svbsp, 3, v2[0], true, NULL, NULL, 0);
772                                         }
773                                 }
774                         }
775                 }
776                 return;
777         }
778         info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
779         info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
780         info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
781         info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
782         info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
783         info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
784         if (info->outleafpvs)
785         {
786                 int leafindex = leaf - info->model->brush.data_leafs;
787                 if (!CHECKPVSBIT(info->outleafpvs, leafindex))
788                 {
789                         SETPVSBIT(info->outleafpvs, leafindex);
790                         info->outleaflist[info->outnumleafs++] = leafindex;
791                 }
792         }
793         if (info->outsurfacepvs)
794         {
795                 int leafsurfaceindex;
796                 int surfaceindex;
797                 int triangleindex, t;
798                 int currentmaterialflags;
799                 qboolean castshadow;
800                 msurface_t *surface;
801                 const int *e;
802                 const vec_t *v[3];
803                 float v2[3][3];
804                 for (leafsurfaceindex = 0;leafsurfaceindex < leaf->numleafsurfaces;leafsurfaceindex++)
805                 {
806                         surfaceindex = leaf->firstleafsurface[leafsurfaceindex];
807                         if (!CHECKPVSBIT(info->outsurfacepvs, surfaceindex))
808                         {
809                                 surface = info->model->data_surfaces + surfaceindex;
810                                 currentmaterialflags = R_GetCurrentTexture(surface->texture)->currentmaterialflags;
811                                 castshadow = !(currentmaterialflags & MATERIALFLAG_NOSHADOW);
812                                 if (BoxesOverlap(info->lightmins, info->lightmaxs, surface->mins, surface->maxs))
813                                 {
814                                         qboolean addedtris = false;
815                                         qboolean insidebox = BoxInsideBox(surface->mins, surface->maxs, info->lightmins, info->lightmaxs);
816                                         for (triangleindex = 0, t = surface->num_firstshadowmeshtriangle, e = info->model->brush.shadowmesh->element3i + t * 3;triangleindex < surface->num_triangles;triangleindex++, t++, e += 3)
817                                         {
818                                                 v[0] = info->model->brush.shadowmesh->vertex3f + e[0] * 3;
819                                                 v[1] = info->model->brush.shadowmesh->vertex3f + e[1] * 3;
820                                                 v[2] = info->model->brush.shadowmesh->vertex3f + e[2] * 3;
821                                                 VectorCopy(v[0], v2[0]);
822                                                 VectorCopy(v[1], v2[1]);
823                                                 VectorCopy(v[2], v2[2]);
824                                                 if (insidebox || TriangleOverlapsBox(v2[0], v2[1], v2[2], info->lightmins, info->lightmaxs))
825                                                 {
826                                                         if (info->svbsp_active)
827                                                         {
828                                                                 if (!(SVBSP_AddPolygon(&r_svbsp, 3, v2[0], false, NULL, NULL, 0) & 2))
829                                                                         continue;
830                                                         }
831                                                         if (currentmaterialflags & MATERIALFLAG_NOCULLFACE)
832                                                         {
833                                                                 // if the material is double sided we
834                                                                 // can't cull by direction
835                                                                 SETPVSBIT(info->outlighttrispvs, t);
836                                                                 addedtris = true;
837                                                                 if (castshadow)
838                                                                         SETPVSBIT(info->outshadowtrispvs, t);
839                                                         }
840 #if 0
841                                                         else if (r_shadow_frontsidecasting.integer)
842                                                         {
843                                                                 // front side casting occludes backfaces,
844                                                                 // so they are completely useless as both
845                                                                 // casters and lit polygons
846                                                                 if (!PointInfrontOfTriangle(info->relativelightorigin, v2[0], v2[1], v2[2]))
847                                                                         continue;
848                                                                 SETPVSBIT(info->outlighttrispvs, t);
849                                                                 addedtris = true;
850                                                                 if (castshadow)
851                                                                         SETPVSBIT(info->outshadowtrispvs, t);
852                                                         }
853 #endif
854                                                         else
855                                                         {
856                                                                 // back side casting does not occlude
857                                                                 // anything so we can't cull lit polygons
858                                                                 SETPVSBIT(info->outlighttrispvs, t);
859                                                                 addedtris = true;
860                                                                 if (castshadow && !PointInfrontOfTriangle(info->relativelightorigin, v2[0], v2[1], v2[2]))
861                                                                         SETPVSBIT(info->outshadowtrispvs, t);
862                                                         }
863                                                 }
864                                         }
865                                         if (addedtris)
866                                         {
867                                                 SETPVSBIT(info->outsurfacepvs, surfaceindex);
868                                                 info->outsurfacelist[info->outnumsurfaces++] = surfaceindex;
869                                         }
870                                 }
871                         }
872                 }
873         }
874 }
875
876 static void R_Q1BSP_CallRecursiveGetLightInfo(r_q1bsp_getlightinfo_t *info, qboolean use_svbsp)
877 {
878         if (use_svbsp)
879         {
880                 float origin[3];
881                 VectorCopy(info->relativelightorigin, origin);
882                 if (!r_svbsp.nodes)
883                 {
884                         r_svbsp.maxnodes = max(r_svbsp.maxnodes, 1<<18);
885                         r_svbsp.nodes = (svbsp_node_t*) Mem_Alloc(r_main_mempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
886                 }
887                 info->svbsp_active = true;
888                 info->svbsp_insertoccluder = true;
889                 for (;;)
890                 {
891                         SVBSP_Init(&r_svbsp, origin, r_svbsp.maxnodes, r_svbsp.nodes);
892                         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
893                         // if that failed, retry with more nodes
894                         if (r_svbsp.ranoutofnodes)
895                         {
896                                 // an upper limit is imposed
897                                 if (r_svbsp.maxnodes >= 2<<22)
898                                         break;
899                                 Mem_Free(r_svbsp.nodes);
900                                 r_svbsp.maxnodes *= 2;
901                                 r_svbsp.nodes = (svbsp_node_t*) Mem_Alloc(tempmempool, r_svbsp.maxnodes * sizeof(svbsp_node_t));
902                         }
903                         else
904                                 break;
905                 }
906                 // now clear the surfacepvs array because we need to redo it
907                 //memset(info->outsurfacepvs, 0, (info->model->nummodelsurfaces + 7) >> 3);
908                 //info->outnumsurfaces = 0;
909         }
910         else
911                 info->svbsp_active = false;
912
913         // we HAVE to mark the leaf the light is in as lit, because portals are
914         // irrelevant to a leaf that the light source is inside of
915         // (and they are all facing away, too)
916         {
917                 mnode_t *node = info->model->brush.data_nodes;
918                 mleaf_t *leaf;
919                 while (node->plane)
920                         node = node->children[(node->plane->type < 3 ? info->relativelightorigin[node->plane->type] : DotProduct(info->relativelightorigin,node->plane->normal)) < node->plane->dist];
921                 leaf = (mleaf_t *)node;
922                 info->outmins[0] = min(info->outmins[0], leaf->mins[0]);
923                 info->outmins[1] = min(info->outmins[1], leaf->mins[1]);
924                 info->outmins[2] = min(info->outmins[2], leaf->mins[2]);
925                 info->outmaxs[0] = max(info->outmaxs[0], leaf->maxs[0]);
926                 info->outmaxs[1] = max(info->outmaxs[1], leaf->maxs[1]);
927                 info->outmaxs[2] = max(info->outmaxs[2], leaf->maxs[2]);
928                 if (info->outleafpvs)
929                 {
930                         int leafindex = leaf - info->model->brush.data_leafs;
931                         if (!CHECKPVSBIT(info->outleafpvs, leafindex))
932                         {
933                                 SETPVSBIT(info->outleafpvs, leafindex);
934                                 info->outleaflist[info->outnumleafs++] = leafindex;
935                         }
936                 }
937         }
938
939         info->svbsp_insertoccluder = false;
940         R_Q1BSP_RecursiveGetLightInfo(info, info->model->brush.data_nodes);
941         if (developer_extra.integer && use_svbsp)
942         {
943                 Con_DPrintf("GetLightInfo: svbsp built with %i nodes, polygon stats:\n", r_svbsp.numnodes);
944                 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);
945                 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);
946         }
947 }
948
949 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)
950 {
951         r_q1bsp_getlightinfo_t info;
952         VectorCopy(relativelightorigin, info.relativelightorigin);
953         info.lightradius = lightradius;
954         info.lightmins[0] = info.relativelightorigin[0] - info.lightradius;
955         info.lightmins[1] = info.relativelightorigin[1] - info.lightradius;
956         info.lightmins[2] = info.relativelightorigin[2] - info.lightradius;
957         info.lightmaxs[0] = info.relativelightorigin[0] + info.lightradius;
958         info.lightmaxs[1] = info.relativelightorigin[1] + info.lightradius;
959         info.lightmaxs[2] = info.relativelightorigin[2] + info.lightradius;
960         if (ent->model == NULL)
961         {
962                 VectorCopy(info.lightmins, outmins);
963                 VectorCopy(info.lightmaxs, outmaxs);
964                 *outnumleafspointer = 0;
965                 *outnumsurfacespointer = 0;
966                 return;
967         }
968         info.model = ent->model;
969         info.outleaflist = outleaflist;
970         info.outleafpvs = outleafpvs;
971         info.outnumleafs = 0;
972         info.visitingleafpvs = visitingleafpvs;
973         info.outsurfacelist = outsurfacelist;
974         info.outsurfacepvs = outsurfacepvs;
975         info.outshadowtrispvs = outshadowtrispvs;
976         info.outlighttrispvs = outlighttrispvs;
977         info.outnumsurfaces = 0;
978         info.numfrustumplanes = numfrustumplanes;
979         info.frustumplanes = frustumplanes;
980         VectorCopy(info.relativelightorigin, info.outmins);
981         VectorCopy(info.relativelightorigin, info.outmaxs);
982         memset(visitingleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
983         memset(outleafpvs, 0, (info.model->brush.num_leafs + 7) >> 3);
984         memset(outsurfacepvs, 0, (info.model->nummodelsurfaces + 7) >> 3);
985         if (info.model->brush.shadowmesh)
986                 memset(outshadowtrispvs, 0, (info.model->brush.shadowmesh->numtriangles + 7) >> 3);
987         else
988                 memset(outshadowtrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
989         memset(outlighttrispvs, 0, (info.model->surfmesh.num_triangles + 7) >> 3);
990         if (info.model->brush.GetPVS && r_shadow_frontsidecasting.integer)
991                 info.pvs = info.model->brush.GetPVS(info.model, info.relativelightorigin);
992         else
993                 info.pvs = NULL;
994         RSurf_ActiveWorldEntity();
995
996         if (r_shadow_frontsidecasting.integer && r_shadow_compilingrtlight && r_shadow_realtime_world_compileportalculling.integer && info.model->brush.data_portals)
997         {
998                 // use portal recursion for exact light volume culling, and exact surface checking
999                 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);
1000         }
1001         else if (r_shadow_frontsidecasting.integer && r_shadow_realtime_dlight_portalculling.integer && info.model->brush.data_portals)
1002         {
1003                 // use portal recursion for exact light volume culling, but not the expensive exact surface checking
1004                 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);
1005         }
1006         else
1007         {
1008                 // recurse the bsp tree, checking leafs and surfaces for visibility
1009                 // optionally using svbsp for exact culling of compiled lights
1010                 // (or if the user enables dlight svbsp culling, which is mostly for
1011                 //  debugging not actual use)
1012                 R_Q1BSP_CallRecursiveGetLightInfo(&info, (r_shadow_compilingrtlight ? r_shadow_realtime_world_compilesvbsp.integer : r_shadow_realtime_dlight_svbspculling.integer) != 0);
1013         }
1014
1015         rsurface.entity = NULL; // used only by R_GetCurrentTexture and RSurf_ActiveWorldEntity/RSurf_ActiveModelEntity
1016
1017         // limit combined leaf box to light boundaries
1018         outmins[0] = max(info.outmins[0] - 1, info.lightmins[0]);
1019         outmins[1] = max(info.outmins[1] - 1, info.lightmins[1]);
1020         outmins[2] = max(info.outmins[2] - 1, info.lightmins[2]);
1021         outmaxs[0] = min(info.outmaxs[0] + 1, info.lightmaxs[0]);
1022         outmaxs[1] = min(info.outmaxs[1] + 1, info.lightmaxs[1]);
1023         outmaxs[2] = min(info.outmaxs[2] + 1, info.lightmaxs[2]);
1024
1025         *outnumleafspointer = info.outnumleafs;
1026         *outnumsurfacespointer = info.outnumsurfaces;
1027 }
1028
1029 void R_Q1BSP_CompileShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativelightdirection, float lightradius, int numsurfaces, const int *surfacelist)
1030 {
1031         dp_model_t *model = ent->model;
1032         msurface_t *surface;
1033         int surfacelistindex;
1034         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
1035         r_shadow_compilingrtlight->static_meshchain_shadow_zfail = Mod_ShadowMesh_Begin(r_main_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
1036         R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
1037         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
1038         {
1039                 surface = model->data_surfaces + surfacelist[surfacelistindex];
1040                 if (surface->texture->basematerialflags & MATERIALFLAG_NOSHADOW)
1041                         continue;
1042                 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);
1043         }
1044         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);
1045         r_shadow_compilingrtlight->static_meshchain_shadow_zfail = Mod_ShadowMesh_Finish(r_main_mempool, r_shadow_compilingrtlight->static_meshchain_shadow_zfail, false, false, true);
1046 }
1047
1048 extern cvar_t r_polygonoffset_submodel_factor;
1049 extern cvar_t r_polygonoffset_submodel_offset;
1050 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)
1051 {
1052         dp_model_t *model = ent->model;
1053         const msurface_t *surface;
1054         int modelsurfacelistindex;
1055         float projectdistance = relativelightdirection ? lightradius : lightradius + model->radius*2 + r_shadow_projectdistance.value;
1056         // check the box in modelspace, it was already checked in worldspace
1057         if (!BoxesOverlap(model->normalmins, model->normalmaxs, lightmins, lightmaxs))
1058                 return;
1059         if (ent->model->brush.submodel)
1060                 GL_PolygonOffset(r_refdef.shadowpolygonfactor + r_polygonoffset_submodel_factor.value, r_refdef.shadowpolygonoffset + r_polygonoffset_submodel_offset.value);
1061         if (model->brush.shadowmesh)
1062         {
1063                 R_Shadow_PrepareShadowMark(model->brush.shadowmesh->numtriangles);
1064                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
1065                 {
1066                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
1067                         if (R_GetCurrentTexture(surface->texture)->currentmaterialflags & MATERIALFLAG_NOSHADOW)
1068                                 continue;
1069                         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);
1070                 }
1071                 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);
1072         }
1073         else
1074         {
1075                 projectdistance = lightradius + model->radius*2;
1076                 R_Shadow_PrepareShadowMark(model->surfmesh.num_triangles);
1077                 // identify lit faces within the bounding box
1078                 for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
1079                 {
1080                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
1081                         rsurface.texture = R_GetCurrentTexture(surface->texture);
1082                         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_NOSHADOW)
1083                                 continue;
1084                         RSurf_PrepareVerticesForBatch(false, false, 1, &surface);
1085                         R_Shadow_MarkVolumeFromBox(surface->num_firsttriangle, surface->num_triangles, rsurface.vertex3f, rsurface.modelelement3i, relativelightorigin, relativelightdirection, lightmins, lightmaxs, surface->mins, surface->maxs);
1086                 }
1087                 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, ent->mins, ent->maxs);
1088         }
1089         if (ent->model->brush.submodel)
1090                 GL_PolygonOffset(r_refdef.shadowpolygonfactor, r_refdef.shadowpolygonoffset);
1091 }
1092
1093 void R_Q1BSP_CompileShadowMap(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativelightdirection, float lightradius, int numsurfaces, const int *surfacelist)
1094 {
1095         dp_model_t *model = ent->model;
1096         msurface_t *surface;
1097         int surfacelistindex;
1098         int sidetotals[6] = { 0, 0, 0, 0, 0, 0 }, sidemasks = 0;
1099         int i;
1100         r_shadow_compilingrtlight->static_meshchain_shadow_shadowmap = Mod_ShadowMesh_Begin(r_main_mempool, 32768, 32768, NULL, NULL, NULL, false, false, true);
1101         R_Shadow_PrepareShadowSides(model->brush.shadowmesh->numtriangles);
1102         for (surfacelistindex = 0;surfacelistindex < numsurfaces;surfacelistindex++)
1103         {
1104                 surface = model->data_surfaces + surfacelist[surfacelistindex];
1105                 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);
1106         }
1107         R_Shadow_ShadowMapFromList(model->brush.shadowmesh->numverts, model->brush.shadowmesh->numtriangles, model->brush.shadowmesh->vertex3f, model->brush.shadowmesh->element3i, numshadowsides, sidetotals, shadowsides, shadowsideslist);
1108         r_shadow_compilingrtlight->static_meshchain_shadow_shadowmap = Mod_ShadowMesh_Finish(r_main_mempool, r_shadow_compilingrtlight->static_meshchain_shadow_shadowmap, false, false, true);
1109         r_shadow_compilingrtlight->static_shadowmap_receivers &= sidemasks;
1110         for(i = 0;i<6;i++)
1111                 if(!sidetotals[i])
1112                         r_shadow_compilingrtlight->static_shadowmap_casters &= ~(1 << i);
1113 }
1114
1115 #define RSURF_MAX_BATCHSURFACES 8192
1116
1117 static const msurface_t *batchsurfacelist[RSURF_MAX_BATCHSURFACES];
1118
1119 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)
1120 {
1121         dp_model_t *model = ent->model;
1122         const msurface_t *surface;
1123         int modelsurfacelistindex, batchnumsurfaces;
1124         // check the box in modelspace, it was already checked in worldspace
1125         if (!BoxesOverlap(model->normalmins, model->normalmaxs, lightmins, lightmaxs))
1126                 return;
1127         // identify lit faces within the bounding box
1128         for (modelsurfacelistindex = 0;modelsurfacelistindex < modelnumsurfaces;modelsurfacelistindex++)
1129         {
1130                 surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
1131                 if (surfacesides && !(surfacesides[modelsurfacelistindex] && (1 << side)))
1132                         continue;
1133                 rsurface.texture = R_GetCurrentTexture(surface->texture);
1134                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_NOSHADOW)
1135                         continue;
1136                 if (!BoxesOverlap(lightmins, lightmaxs, surface->mins, surface->maxs))
1137                         continue;
1138                 r_refdef.stats.lights_dynamicshadowtriangles += surface->num_triangles;
1139                 r_refdef.stats.lights_shadowtriangles += surface->num_triangles;
1140                 batchsurfacelist[0] = surface;
1141                 batchnumsurfaces = 1;
1142                 while(++modelsurfacelistindex < modelnumsurfaces && batchnumsurfaces < RSURF_MAX_BATCHSURFACES)
1143                 {
1144                         surface = model->data_surfaces + modelsurfacelist[modelsurfacelistindex];
1145                         if (surfacesides && !(surfacesides[modelsurfacelistindex] & (1 << side)))
1146                                 continue;
1147                         if (surface->texture != batchsurfacelist[0]->texture)
1148                                 break;
1149                         if (!BoxesOverlap(lightmins, lightmaxs, surface->mins, surface->maxs))
1150                                 continue;
1151                         r_refdef.stats.lights_dynamicshadowtriangles += surface->num_triangles;
1152                         r_refdef.stats.lights_shadowtriangles += surface->num_triangles;
1153                         batchsurfacelist[batchnumsurfaces++] = surface;
1154                 }
1155                 --modelsurfacelistindex;
1156                 GL_CullFace(rsurface.texture->currentmaterialflags & MATERIALFLAG_NOCULLFACE ? GL_NONE : r_refdef.view.cullface_back);
1157                 RSurf_PrepareVerticesForBatch(false, false, batchnumsurfaces, batchsurfacelist);
1158                 RSurf_DrawBatch_Simple(batchnumsurfaces, batchsurfacelist);
1159         }
1160 }
1161
1162 #define BATCHSIZE 1024
1163
1164 static void R_Q1BSP_DrawLight_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
1165 {
1166         int i, j, endsurface;
1167         texture_t *t;
1168         const msurface_t *surface;
1169         // note: in practice this never actually receives batches), oh well
1170         R_Shadow_RenderMode_Begin();
1171         R_Shadow_RenderMode_ActiveLight(rtlight);
1172         R_Shadow_RenderMode_Lighting(false, true, false);
1173         R_Shadow_SetupEntityLight(ent);
1174         for (i = 0;i < numsurfaces;i = j)
1175         {
1176                 j = i + 1;
1177                 surface = rsurface.modelsurfaces + surfacelist[i];
1178                 t = surface->texture;
1179                 rsurface.texture = R_GetCurrentTexture(t);
1180                 endsurface = min(j + BATCHSIZE, numsurfaces);
1181                 for (j = i;j < endsurface;j++)
1182                 {
1183                         surface = rsurface.modelsurfaces + surfacelist[j];
1184                         if (t != surface->texture)
1185                                 break;
1186                         RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
1187                         R_Shadow_RenderLighting(surface->num_firstvertex, surface->num_vertices, surface->num_firsttriangle, surface->num_triangles, ent->model->surfmesh.data_element3i, ent->model->surfmesh.data_element3s, ent->model->surfmesh.ebo3i, ent->model->surfmesh.ebo3s);
1188                 }
1189         }
1190         R_Shadow_RenderMode_End();
1191 }
1192
1193 extern qboolean r_shadow_usingdeferredprepass;
1194 void R_Q1BSP_DrawLight(entity_render_t *ent, int numsurfaces, const int *surfacelist, const unsigned char *lighttrispvs)
1195 {
1196         dp_model_t *model = ent->model;
1197         const msurface_t *surface;
1198         int i, k, kend, l, m, mend, endsurface, batchnumsurfaces, batchnumtriangles, batchfirstvertex, batchlastvertex, batchfirsttriangle;
1199         const int *element3i;
1200         static int batchelements[BATCHSIZE*3];
1201         texture_t *tex;
1202         CHECKGLERROR
1203         element3i = rsurface.modelelement3i;
1204         // this is a double loop because non-visible surface skipping has to be
1205         // fast, and even if this is not the world model (and hence no visibility
1206         // checking) the input surface list and batch buffer are different formats
1207         // so some processing is necessary.  (luckily models have few surfaces)
1208         for (i = 0;i < numsurfaces;)
1209         {
1210                 batchnumsurfaces = 0;
1211                 endsurface = min(i + RSURF_MAX_BATCHSURFACES, numsurfaces);
1212                 if (ent == r_refdef.scene.worldentity)
1213                 {
1214                         for (;i < endsurface;i++)
1215                                 if (r_refdef.viewcache.world_surfacevisible[surfacelist[i]])
1216                                         batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1217                 }
1218                 else
1219                 {
1220                         for (;i < endsurface;i++)
1221                                 batchsurfacelist[batchnumsurfaces++] = model->data_surfaces + surfacelist[i];
1222                 }
1223                 if (!batchnumsurfaces)
1224                         continue;
1225                 for (k = 0;k < batchnumsurfaces;k = kend)
1226                 {
1227                         surface = batchsurfacelist[k];
1228                         tex = surface->texture;
1229                         rsurface.texture = R_GetCurrentTexture(tex);
1230                         // gather surfaces into a batch range
1231                         for (kend = k;kend < batchnumsurfaces && tex == batchsurfacelist[kend]->texture;kend++)
1232                                 ;
1233                         // now figure out what to do with this particular range of surfaces
1234                         if (!(rsurface.texture->currentmaterialflags & MATERIALFLAG_WALL))
1235                                 continue;
1236                         if (r_waterstate.renderingscene && (rsurface.texture->currentmaterialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION)))
1237                                 continue;
1238                         if (rsurface.texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED)
1239                         {
1240                                 vec3_t tempcenter, center;
1241                                 for (l = k;l < kend;l++)
1242                                 {
1243                                         surface = batchsurfacelist[l];
1244                                         tempcenter[0] = (surface->mins[0] + surface->maxs[0]) * 0.5f;
1245                                         tempcenter[1] = (surface->mins[1] + surface->maxs[1]) * 0.5f;
1246                                         tempcenter[2] = (surface->mins[2] + surface->maxs[2]) * 0.5f;
1247                                         Matrix4x4_Transform(&rsurface.matrix, tempcenter, center);
1248                                         R_MeshQueue_AddTransparent(rsurface.texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST ? r_refdef.view.origin : center, R_Q1BSP_DrawLight_TransparentCallback, ent, surface - rsurface.modelsurfaces, rsurface.rtlight);
1249                                 }
1250                                 continue;
1251                         }
1252                         if (r_shadow_usingdeferredprepass)
1253                                 continue;
1254                         batchnumtriangles = 0;
1255                         batchfirsttriangle = surface->num_firsttriangle;
1256                         m = 0; // hush warning
1257                         for (l = k;l < kend;l++)
1258                         {
1259                                 surface = batchsurfacelist[l];
1260                                 RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
1261                                 for (m = surface->num_firsttriangle, mend = m + surface->num_triangles;m < mend;m++)
1262                                 {
1263                                         if (lighttrispvs && r_test.integer && !CHECKPVSBIT(lighttrispvs, m))
1264                                                 continue;
1265                                         if (batchnumtriangles >= BATCHSIZE)
1266                                         {
1267                                                 r_refdef.stats.lights_lighttriangles += batchnumtriangles;
1268                                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1269                                                 // use the element buffer if all triangles are consecutive
1270                                                 if (m == batchfirsttriangle + batchnumtriangles)
1271                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchfirsttriangle, batchnumtriangles, ent->model->surfmesh.data_element3i, ent->model->surfmesh.data_element3s, ent->model->surfmesh.ebo3i, ent->model->surfmesh.ebo3s);
1272                                                 else
1273                                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, 0, batchnumtriangles, batchelements, NULL, 0, 0);
1274                                                 batchnumtriangles = 0;
1275                                                 batchfirsttriangle = m;
1276                                         }
1277                                         batchelements[batchnumtriangles*3+0] = element3i[m*3+0];
1278                                         batchelements[batchnumtriangles*3+1] = element3i[m*3+1];
1279                                         batchelements[batchnumtriangles*3+2] = element3i[m*3+2];
1280                                         batchnumtriangles++;
1281                                 }
1282                         }
1283                         if (batchnumtriangles > 0)
1284                         {
1285                                 r_refdef.stats.lights_lighttriangles += batchnumtriangles;
1286                                 Mod_VertexRangeFromElements(batchnumtriangles*3, batchelements, &batchfirstvertex, &batchlastvertex);
1287                                 // use the element buffer if all triangles are consecutive
1288                                 if (m == batchfirsttriangle + batchnumtriangles)
1289                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, batchfirsttriangle, batchnumtriangles, ent->model->surfmesh.data_element3i, ent->model->surfmesh.data_element3s, ent->model->surfmesh.ebo3i, ent->model->surfmesh.ebo3s);
1290                                 else
1291                                         R_Shadow_RenderLighting(batchfirstvertex, batchlastvertex + 1 - batchfirstvertex, 0, batchnumtriangles, batchelements, NULL, 0, 0);
1292                         }
1293                 }
1294         }
1295 }
1296
1297 //Made by [515]
1298 void R_ReplaceWorldTexture (void)
1299 {
1300         dp_model_t              *m;
1301         texture_t       *t;
1302         int                     i;
1303         const char      *r, *newt;
1304         skinframe_t *skinframe;
1305         if (!r_refdef.scene.worldmodel)
1306         {
1307                 if (gamemode != GAME_BLOODOMNICIDE)
1308                         Con_Printf("There is no worldmodel\n");
1309                 return;
1310         }
1311         m = r_refdef.scene.worldmodel;
1312
1313         if(Cmd_Argc() < 2)
1314         {
1315                 Con_Print("r_replacemaptexture <texname> <newtexname> - replaces texture\n");
1316                 Con_Print("r_replacemaptexture <texname> - switch back to default texture\n");
1317                 return;
1318         }
1319         if(!cl.islocalgame || !cl.worldmodel)
1320         {
1321                 if (gamemode != GAME_BLOODOMNICIDE)
1322                         Con_Print("This command works only in singleplayer\n");
1323                 return;
1324         }
1325         r = Cmd_Argv(1);
1326         newt = Cmd_Argv(2);
1327         if(!newt[0])
1328                 newt = r;
1329         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1330         {
1331                 if(/*t->width && !strcasecmp(t->name, r)*/ matchpattern( t->name, r, true ) )
1332                 {
1333                         if ((skinframe = R_SkinFrame_LoadExternal(newt, TEXF_MIPMAP | TEXF_ALPHA | TEXF_PICMIP, true)))
1334                         {
1335 //                              t->skinframes[0] = skinframe;
1336                                 t->currentskinframe = skinframe;
1337                                 t->currentskinframe = skinframe;
1338                                 if (gamemode != GAME_BLOODOMNICIDE)
1339                                         Con_Printf("%s replaced with %s\n", r, newt);
1340                         }
1341                         else
1342                         {
1343                                 if (gamemode != GAME_BLOODOMNICIDE)
1344                                         Con_Printf("%s was not found\n", newt);
1345                                 return;
1346                         }
1347                 }
1348         }
1349 }
1350
1351 //Made by [515]
1352 void R_ListWorldTextures (void)
1353 {
1354         dp_model_t              *m;
1355         texture_t       *t;
1356         int                     i;
1357         if (!r_refdef.scene.worldmodel)
1358         {
1359                 Con_Printf("There is no worldmodel\n");
1360                 return;
1361         }
1362         m = r_refdef.scene.worldmodel;
1363
1364         Con_Print("Worldmodel textures :\n");
1365         for(i=0,t=m->data_textures;i<m->num_textures;i++,t++)
1366                 if (t->numskinframes)
1367                         Con_Printf("%s\n", t->name);
1368 }
1369
1370 #if 0
1371 static void gl_surf_start(void)
1372 {
1373 }
1374
1375 static void gl_surf_shutdown(void)
1376 {
1377 }
1378
1379 static void gl_surf_newmap(void)
1380 {
1381 }
1382 #endif
1383
1384 void GL_Surf_Init(void)
1385 {
1386
1387         Cvar_RegisterVariable(&r_ambient);
1388         Cvar_RegisterVariable(&r_lockpvs);
1389         Cvar_RegisterVariable(&r_lockvisibility);
1390         Cvar_RegisterVariable(&r_useportalculling);
1391         Cvar_RegisterVariable(&r_q3bsp_renderskydepth);
1392
1393         Cmd_AddCommand ("r_replacemaptexture", R_ReplaceWorldTexture, "override a map texture for testing purposes");
1394         Cmd_AddCommand ("r_listmaptextures", R_ListWorldTextures, "list all textures used by the current map");
1395
1396         //R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown, gl_surf_newmap);
1397 }
1398