]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - model_brush.c
284e4d683e0f49b675796a2445a5e556715caba8
[xonotic/darkplaces.git] / model_brush.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
21 #include "quakedef.h"
22 #include "image.h"
23 #include "r_shadow.h"
24 #include "polygon.h"
25 #include "curves.h"
26 #include "wad.h"
27
28
29 //cvar_t r_subdivide_size = {CVAR_SAVE, "r_subdivide_size", "128", "how large water polygons should be (smaller values produce more polygons which give better warping effects)"};
30 cvar_t halflifebsp = {0, "halflifebsp", "0", "indicates the current map is hlbsp format (useful to know because of different bounding box sizes)"};
31 cvar_t r_novis = {0, "r_novis", "0", "draws whole level, see also sv_cullentities_pvs 0"};
32 cvar_t r_picmipworld = {CVAR_SAVE, "r_picmipworld", "1", "whether gl_picmip shall apply to world textures too"};
33 cvar_t r_nosurftextures = {0, "r_nosurftextures", "0", "pretends there was no texture lump found in the q1bsp/hlbsp loading (useful for debugging this rare case)"};
34 cvar_t r_subdivisions_tolerance = {0, "r_subdivisions_tolerance", "4", "maximum error tolerance on curve subdivision for rendering purposes (in other words, the curves will be given as many polygons as necessary to represent curves at this quality)"};
35 cvar_t r_subdivisions_mintess = {0, "r_subdivisions_mintess", "1", "minimum number of subdivisions (values above 1 will smooth curves that don't need it)"};
36 cvar_t r_subdivisions_maxtess = {0, "r_subdivisions_maxtess", "1024", "maximum number of subdivisions (prevents curves beyond a certain detail level, limits smoothing)"};
37 cvar_t r_subdivisions_maxvertices = {0, "r_subdivisions_maxvertices", "65536", "maximum vertices allowed per subdivided curve"};
38 cvar_t r_subdivisions_collision_tolerance = {0, "r_subdivisions_collision_tolerance", "15", "maximum error tolerance on curve subdivision for collision purposes (usually a larger error tolerance than for rendering)"};
39 cvar_t r_subdivisions_collision_mintess = {0, "r_subdivisions_collision_mintess", "1", "minimum number of subdivisions (values above 1 will smooth curves that don't need it)"};
40 cvar_t r_subdivisions_collision_maxtess = {0, "r_subdivisions_collision_maxtess", "1024", "maximum number of subdivisions (prevents curves beyond a certain detail level, limits smoothing)"};
41 cvar_t r_subdivisions_collision_maxvertices = {0, "r_subdivisions_collision_maxvertices", "4225", "maximum vertices allowed per subdivided curve"};
42 cvar_t mod_q3bsp_curves_collisions = {0, "mod_q3bsp_curves_collisions", "1", "enables collisions with curves (SLOW)"};
43 cvar_t mod_q3bsp_optimizedtraceline = {0, "mod_q3bsp_optimizedtraceline", "1", "whether to use optimized traceline code for line traces (as opposed to tracebox code)"};
44 cvar_t mod_q3bsp_debugtracebrush = {0, "mod_q3bsp_debugtracebrush", "0", "selects different tracebrush bsp recursion algorithms (for debugging purposes only)"};
45 cvar_t mod_q3bsp_lightmapmergepower = {CVAR_SAVE, "mod_q3bsp_lightmapmergepower", "4", "merges the quake3 128x128 lightmap textures into larger lightmap group textures to speed up rendering, 1 = 256x256, 2 = 512x512, 3 = 1024x1024, 4 = 2048x2048, 5 = 4096x4096, ..."};
46
47 static texture_t mod_q1bsp_texture_solid;
48 static texture_t mod_q1bsp_texture_sky;
49 static texture_t mod_q1bsp_texture_lava;
50 static texture_t mod_q1bsp_texture_slime;
51 static texture_t mod_q1bsp_texture_water;
52
53 void Mod_BrushInit(void)
54 {
55 //      Cvar_RegisterVariable(&r_subdivide_size);
56         Cvar_RegisterVariable(&halflifebsp);
57         Cvar_RegisterVariable(&r_novis);
58         Cvar_RegisterVariable(&r_picmipworld);
59         Cvar_RegisterVariable(&r_nosurftextures);
60         Cvar_RegisterVariable(&r_subdivisions_tolerance);
61         Cvar_RegisterVariable(&r_subdivisions_mintess);
62         Cvar_RegisterVariable(&r_subdivisions_maxtess);
63         Cvar_RegisterVariable(&r_subdivisions_maxvertices);
64         Cvar_RegisterVariable(&r_subdivisions_collision_tolerance);
65         Cvar_RegisterVariable(&r_subdivisions_collision_mintess);
66         Cvar_RegisterVariable(&r_subdivisions_collision_maxtess);
67         Cvar_RegisterVariable(&r_subdivisions_collision_maxvertices);
68         Cvar_RegisterVariable(&mod_q3bsp_curves_collisions);
69         Cvar_RegisterVariable(&mod_q3bsp_optimizedtraceline);
70         Cvar_RegisterVariable(&mod_q3bsp_debugtracebrush);
71         Cvar_RegisterVariable(&mod_q3bsp_lightmapmergepower);
72
73         memset(&mod_q1bsp_texture_solid, 0, sizeof(mod_q1bsp_texture_solid));
74         strlcpy(mod_q1bsp_texture_solid.name, "solid" , sizeof(mod_q1bsp_texture_solid.name));
75         mod_q1bsp_texture_solid.surfaceflags = 0;
76         mod_q1bsp_texture_solid.supercontents = SUPERCONTENTS_SOLID;
77
78         mod_q1bsp_texture_sky = mod_q1bsp_texture_solid;
79         strlcpy(mod_q1bsp_texture_sky.name, "sky", sizeof(mod_q1bsp_texture_sky.name));
80         mod_q1bsp_texture_sky.surfaceflags = Q3SURFACEFLAG_SKY | Q3SURFACEFLAG_NOIMPACT | Q3SURFACEFLAG_NOMARKS | Q3SURFACEFLAG_NODLIGHT | Q3SURFACEFLAG_NOLIGHTMAP;
81         mod_q1bsp_texture_sky.supercontents = SUPERCONTENTS_SKY | SUPERCONTENTS_NODROP;
82
83         mod_q1bsp_texture_lava = mod_q1bsp_texture_solid;
84         strlcpy(mod_q1bsp_texture_lava.name, "*lava", sizeof(mod_q1bsp_texture_lava.name));
85         mod_q1bsp_texture_lava.surfaceflags = Q3SURFACEFLAG_NOMARKS;
86         mod_q1bsp_texture_lava.supercontents = SUPERCONTENTS_LAVA | SUPERCONTENTS_NODROP;
87
88         mod_q1bsp_texture_slime = mod_q1bsp_texture_solid;
89         strlcpy(mod_q1bsp_texture_slime.name, "*slime", sizeof(mod_q1bsp_texture_slime.name));
90         mod_q1bsp_texture_slime.surfaceflags = Q3SURFACEFLAG_NOMARKS;
91         mod_q1bsp_texture_slime.supercontents = SUPERCONTENTS_SLIME;
92
93         mod_q1bsp_texture_water = mod_q1bsp_texture_solid;
94         strlcpy(mod_q1bsp_texture_water.name, "*water", sizeof(mod_q1bsp_texture_water.name));
95         mod_q1bsp_texture_water.surfaceflags = Q3SURFACEFLAG_NOMARKS;
96         mod_q1bsp_texture_water.supercontents = SUPERCONTENTS_WATER;
97 }
98
99 static mleaf_t *Mod_Q1BSP_PointInLeaf(dp_model_t *model, const vec3_t p)
100 {
101         mnode_t *node;
102
103         if (model == NULL)
104                 return NULL;
105
106         // LordHavoc: modified to start at first clip node,
107         // in other words: first node of the (sub)model
108         node = model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode;
109         while (node->plane)
110                 node = node->children[(node->plane->type < 3 ? p[node->plane->type] : DotProduct(p,node->plane->normal)) < node->plane->dist];
111
112         return (mleaf_t *)node;
113 }
114
115 static void Mod_Q1BSP_AmbientSoundLevelsForPoint(dp_model_t *model, const vec3_t p, unsigned char *out, int outsize)
116 {
117         int i;
118         mleaf_t *leaf;
119         leaf = Mod_Q1BSP_PointInLeaf(model, p);
120         if (leaf)
121         {
122                 i = min(outsize, (int)sizeof(leaf->ambient_sound_level));
123                 if (i)
124                 {
125                         memcpy(out, leaf->ambient_sound_level, i);
126                         out += i;
127                         outsize -= i;
128                 }
129         }
130         if (outsize)
131                 memset(out, 0, outsize);
132 }
133
134 static int Mod_Q1BSP_FindBoxClusters(dp_model_t *model, const vec3_t mins, const vec3_t maxs, int maxclusters, int *clusterlist)
135 {
136         int numclusters = 0;
137         int nodestackindex = 0;
138         mnode_t *node, *nodestack[1024];
139         if (!model->brush.num_pvsclusters)
140                 return -1;
141         node = model->brush.data_nodes;
142         for (;;)
143         {
144 #if 1
145                 if (node->plane)
146                 {
147                         // node - recurse down the BSP tree
148                         int sides = BoxOnPlaneSide(mins, maxs, node->plane);
149                         if (sides < 3)
150                         {
151                                 if (sides == 0)
152                                         return -1; // ERROR: NAN bounding box!
153                                 // box is on one side of plane, take that path
154                                 node = node->children[sides-1];
155                         }
156                         else
157                         {
158                                 // box crosses plane, take one path and remember the other
159                                 if (nodestackindex < 1024)
160                                         nodestack[nodestackindex++] = node->children[0];
161                                 node = node->children[1];
162                         }
163                         continue;
164                 }
165                 else
166                 {
167                         // leaf - add clusterindex to list
168                         if (numclusters < maxclusters)
169                                 clusterlist[numclusters] = ((mleaf_t *)node)->clusterindex;
170                         numclusters++;
171                 }
172 #else
173                 if (BoxesOverlap(mins, maxs, node->mins, node->maxs))
174                 {
175                         if (node->plane)
176                         {
177                                 if (nodestackindex < 1024)
178                                         nodestack[nodestackindex++] = node->children[0];
179                                 node = node->children[1];
180                                 continue;
181                         }
182                         else
183                         {
184                                 // leaf - add clusterindex to list
185                                 if (numclusters < maxclusters)
186                                         clusterlist[numclusters] = ((mleaf_t *)node)->clusterindex;
187                                 numclusters++;
188                         }
189                 }
190 #endif
191                 // try another path we didn't take earlier
192                 if (nodestackindex == 0)
193                         break;
194                 node = nodestack[--nodestackindex];
195         }
196         // return number of clusters found (even if more than the maxclusters)
197         return numclusters;
198 }
199
200 static int Mod_Q1BSP_BoxTouchingPVS(dp_model_t *model, const unsigned char *pvs, const vec3_t mins, const vec3_t maxs)
201 {
202         int nodestackindex = 0;
203         mnode_t *node, *nodestack[1024];
204         if (!model->brush.num_pvsclusters)
205                 return true;
206         node = model->brush.data_nodes;
207         for (;;)
208         {
209 #if 1
210                 if (node->plane)
211                 {
212                         // node - recurse down the BSP tree
213                         int sides = BoxOnPlaneSide(mins, maxs, node->plane);
214                         if (sides < 3)
215                         {
216                                 if (sides == 0)
217                                         return -1; // ERROR: NAN bounding box!
218                                 // box is on one side of plane, take that path
219                                 node = node->children[sides-1];
220                         }
221                         else
222                         {
223                                 // box crosses plane, take one path and remember the other
224                                 if (nodestackindex < 1024)
225                                         nodestack[nodestackindex++] = node->children[0];
226                                 node = node->children[1];
227                         }
228                         continue;
229                 }
230                 else
231                 {
232                         // leaf - check cluster bit
233                         int clusterindex = ((mleaf_t *)node)->clusterindex;
234                         if (CHECKPVSBIT(pvs, clusterindex))
235                         {
236                                 // it is visible, return immediately with the news
237                                 return true;
238                         }
239                 }
240 #else
241                 if (BoxesOverlap(mins, maxs, node->mins, node->maxs))
242                 {
243                         if (node->plane)
244                         {
245                                 if (nodestackindex < 1024)
246                                         nodestack[nodestackindex++] = node->children[0];
247                                 node = node->children[1];
248                                 continue;
249                         }
250                         else
251                         {
252                                 // leaf - check cluster bit
253                                 int clusterindex = ((mleaf_t *)node)->clusterindex;
254                                 if (CHECKPVSBIT(pvs, clusterindex))
255                                 {
256                                         // it is visible, return immediately with the news
257                                         return true;
258                                 }
259                         }
260                 }
261 #endif
262                 // nothing to see here, try another path we didn't take earlier
263                 if (nodestackindex == 0)
264                         break;
265                 node = nodestack[--nodestackindex];
266         }
267         // it is not visible
268         return false;
269 }
270
271 static int Mod_Q1BSP_BoxTouchingLeafPVS(dp_model_t *model, const unsigned char *pvs, const vec3_t mins, const vec3_t maxs)
272 {
273         int nodestackindex = 0;
274         mnode_t *node, *nodestack[1024];
275         if (!model->brush.num_leafs)
276                 return true;
277         node = model->brush.data_nodes;
278         for (;;)
279         {
280 #if 1
281                 if (node->plane)
282                 {
283                         // node - recurse down the BSP tree
284                         int sides = BoxOnPlaneSide(mins, maxs, node->plane);
285                         if (sides < 3)
286                         {
287                                 if (sides == 0)
288                                         return -1; // ERROR: NAN bounding box!
289                                 // box is on one side of plane, take that path
290                                 node = node->children[sides-1];
291                         }
292                         else
293                         {
294                                 // box crosses plane, take one path and remember the other
295                                 if (nodestackindex < 1024)
296                                         nodestack[nodestackindex++] = node->children[0];
297                                 node = node->children[1];
298                         }
299                         continue;
300                 }
301                 else
302                 {
303                         // leaf - check cluster bit
304                         int clusterindex = ((mleaf_t *)node) - model->brush.data_leafs;
305                         if (CHECKPVSBIT(pvs, clusterindex))
306                         {
307                                 // it is visible, return immediately with the news
308                                 return true;
309                         }
310                 }
311 #else
312                 if (BoxesOverlap(mins, maxs, node->mins, node->maxs))
313                 {
314                         if (node->plane)
315                         {
316                                 if (nodestackindex < 1024)
317                                         nodestack[nodestackindex++] = node->children[0];
318                                 node = node->children[1];
319                                 continue;
320                         }
321                         else
322                         {
323                                 // leaf - check cluster bit
324                                 int clusterindex = ((mleaf_t *)node) - model->brush.data_leafs;
325                                 if (CHECKPVSBIT(pvs, clusterindex))
326                                 {
327                                         // it is visible, return immediately with the news
328                                         return true;
329                                 }
330                         }
331                 }
332 #endif
333                 // nothing to see here, try another path we didn't take earlier
334                 if (nodestackindex == 0)
335                         break;
336                 node = nodestack[--nodestackindex];
337         }
338         // it is not visible
339         return false;
340 }
341
342 static int Mod_Q1BSP_BoxTouchingVisibleLeafs(dp_model_t *model, const unsigned char *visibleleafs, const vec3_t mins, const vec3_t maxs)
343 {
344         int nodestackindex = 0;
345         mnode_t *node, *nodestack[1024];
346         if (!model->brush.num_leafs)
347                 return true;
348         node = model->brush.data_nodes;
349         for (;;)
350         {
351 #if 1
352                 if (node->plane)
353                 {
354                         // node - recurse down the BSP tree
355                         int sides = BoxOnPlaneSide(mins, maxs, node->plane);
356                         if (sides < 3)
357                         {
358                                 if (sides == 0)
359                                         return -1; // ERROR: NAN bounding box!
360                                 // box is on one side of plane, take that path
361                                 node = node->children[sides-1];
362                         }
363                         else
364                         {
365                                 // box crosses plane, take one path and remember the other
366                                 if (nodestackindex < 1024)
367                                         nodestack[nodestackindex++] = node->children[0];
368                                 node = node->children[1];
369                         }
370                         continue;
371                 }
372                 else
373                 {
374                         // leaf - check if it is visible
375                         if (visibleleafs[(mleaf_t *)node - model->brush.data_leafs])
376                         {
377                                 // it is visible, return immediately with the news
378                                 return true;
379                         }
380                 }
381 #else
382                 if (BoxesOverlap(mins, maxs, node->mins, node->maxs))
383                 {
384                         if (node->plane)
385                         {
386                                 if (nodestackindex < 1024)
387                                         nodestack[nodestackindex++] = node->children[0];
388                                 node = node->children[1];
389                                 continue;
390                         }
391                         else
392                         {
393                                 // leaf - check if it is visible
394                                 if (visibleleafs[(mleaf_t *)node - model->brush.data_leafs])
395                                 {
396                                         // it is visible, return immediately with the news
397                                         return true;
398                                 }
399                         }
400                 }
401 #endif
402                 // nothing to see here, try another path we didn't take earlier
403                 if (nodestackindex == 0)
404                         break;
405                 node = nodestack[--nodestackindex];
406         }
407         // it is not visible
408         return false;
409 }
410
411 typedef struct findnonsolidlocationinfo_s
412 {
413         vec3_t center;
414         vec_t radius;
415         vec3_t nudge;
416         vec_t bestdist;
417         dp_model_t *model;
418 }
419 findnonsolidlocationinfo_t;
420
421 static void Mod_Q1BSP_FindNonSolidLocation_r_Leaf(findnonsolidlocationinfo_t *info, mleaf_t *leaf)
422 {
423         int i, surfacenum, k, *tri, *mark;
424         float dist, f, vert[3][3], edge[3][3], facenormal[3], edgenormal[3][3], point[3];
425         msurface_t *surface;
426         for (surfacenum = 0, mark = leaf->firstleafsurface;surfacenum < leaf->numleafsurfaces;surfacenum++, mark++)
427         {
428                 surface = info->model->data_surfaces + *mark;
429                 if (surface->texture->supercontents & SUPERCONTENTS_SOLID)
430                 {
431                         for (k = 0;k < surface->num_triangles;k++)
432                         {
433                                 tri = (info->model->surfmesh.data_element3i + 3 * surface->num_firsttriangle) + k * 3;
434                                 VectorCopy((info->model->surfmesh.data_vertex3f + tri[0] * 3), vert[0]);
435                                 VectorCopy((info->model->surfmesh.data_vertex3f + tri[1] * 3), vert[1]);
436                                 VectorCopy((info->model->surfmesh.data_vertex3f + tri[2] * 3), vert[2]);
437                                 VectorSubtract(vert[1], vert[0], edge[0]);
438                                 VectorSubtract(vert[2], vert[1], edge[1]);
439                                 CrossProduct(edge[1], edge[0], facenormal);
440                                 if (facenormal[0] || facenormal[1] || facenormal[2])
441                                 {
442                                         VectorNormalize(facenormal);
443                                         f = DotProduct(info->center, facenormal) - DotProduct(vert[0], facenormal);
444                                         if (f <= info->bestdist && f >= -info->bestdist)
445                                         {
446                                                 VectorSubtract(vert[0], vert[2], edge[2]);
447                                                 VectorNormalize(edge[0]);
448                                                 VectorNormalize(edge[1]);
449                                                 VectorNormalize(edge[2]);
450                                                 CrossProduct(facenormal, edge[0], edgenormal[0]);
451                                                 CrossProduct(facenormal, edge[1], edgenormal[1]);
452                                                 CrossProduct(facenormal, edge[2], edgenormal[2]);
453                                                 // face distance
454                                                 if (DotProduct(info->center, edgenormal[0]) < DotProduct(vert[0], edgenormal[0])
455                                                  && DotProduct(info->center, edgenormal[1]) < DotProduct(vert[1], edgenormal[1])
456                                                  && DotProduct(info->center, edgenormal[2]) < DotProduct(vert[2], edgenormal[2]))
457                                                 {
458                                                         // we got lucky, the center is within the face
459                                                         dist = DotProduct(info->center, facenormal) - DotProduct(vert[0], facenormal);
460                                                         if (dist < 0)
461                                                         {
462                                                                 dist = -dist;
463                                                                 if (info->bestdist > dist)
464                                                                 {
465                                                                         info->bestdist = dist;
466                                                                         VectorScale(facenormal, (info->radius - -dist), info->nudge);
467                                                                 }
468                                                         }
469                                                         else
470                                                         {
471                                                                 if (info->bestdist > dist)
472                                                                 {
473                                                                         info->bestdist = dist;
474                                                                         VectorScale(facenormal, (info->radius - dist), info->nudge);
475                                                                 }
476                                                         }
477                                                 }
478                                                 else
479                                                 {
480                                                         // check which edge or vertex the center is nearest
481                                                         for (i = 0;i < 3;i++)
482                                                         {
483                                                                 f = DotProduct(info->center, edge[i]);
484                                                                 if (f >= DotProduct(vert[0], edge[i])
485                                                                  && f <= DotProduct(vert[1], edge[i]))
486                                                                 {
487                                                                         // on edge
488                                                                         VectorMA(info->center, -f, edge[i], point);
489                                                                         dist = sqrt(DotProduct(point, point));
490                                                                         if (info->bestdist > dist)
491                                                                         {
492                                                                                 info->bestdist = dist;
493                                                                                 VectorScale(point, (info->radius / dist), info->nudge);
494                                                                         }
495                                                                         // skip both vertex checks
496                                                                         // (both are further away than this edge)
497                                                                         i++;
498                                                                 }
499                                                                 else
500                                                                 {
501                                                                         // not on edge, check first vertex of edge
502                                                                         VectorSubtract(info->center, vert[i], point);
503                                                                         dist = sqrt(DotProduct(point, point));
504                                                                         if (info->bestdist > dist)
505                                                                         {
506                                                                                 info->bestdist = dist;
507                                                                                 VectorScale(point, (info->radius / dist), info->nudge);
508                                                                         }
509                                                                 }
510                                                         }
511                                                 }
512                                         }
513                                 }
514                         }
515                 }
516         }
517 }
518
519 static void Mod_Q1BSP_FindNonSolidLocation_r(findnonsolidlocationinfo_t *info, mnode_t *node)
520 {
521         if (node->plane)
522         {
523                 float f = PlaneDiff(info->center, node->plane);
524                 if (f >= -info->bestdist)
525                         Mod_Q1BSP_FindNonSolidLocation_r(info, node->children[0]);
526                 if (f <= info->bestdist)
527                         Mod_Q1BSP_FindNonSolidLocation_r(info, node->children[1]);
528         }
529         else
530         {
531                 if (((mleaf_t *)node)->numleafsurfaces)
532                         Mod_Q1BSP_FindNonSolidLocation_r_Leaf(info, (mleaf_t *)node);
533         }
534 }
535
536 static void Mod_Q1BSP_FindNonSolidLocation(dp_model_t *model, const vec3_t in, vec3_t out, float radius)
537 {
538         int i;
539         findnonsolidlocationinfo_t info;
540         if (model == NULL)
541         {
542                 VectorCopy(in, out);
543                 return;
544         }
545         VectorCopy(in, info.center);
546         info.radius = radius;
547         info.model = model;
548         i = 0;
549         do
550         {
551                 VectorClear(info.nudge);
552                 info.bestdist = radius;
553                 Mod_Q1BSP_FindNonSolidLocation_r(&info, model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode);
554                 VectorAdd(info.center, info.nudge, info.center);
555         }
556         while (info.bestdist < radius && ++i < 10);
557         VectorCopy(info.center, out);
558 }
559
560 int Mod_Q1BSP_SuperContentsFromNativeContents(dp_model_t *model, int nativecontents)
561 {
562         switch(nativecontents)
563         {
564                 case CONTENTS_EMPTY:
565                         return 0;
566                 case CONTENTS_SOLID:
567                         return SUPERCONTENTS_SOLID;
568                 case CONTENTS_WATER:
569                         return SUPERCONTENTS_WATER;
570                 case CONTENTS_SLIME:
571                         return SUPERCONTENTS_SLIME;
572                 case CONTENTS_LAVA:
573                         return SUPERCONTENTS_LAVA | SUPERCONTENTS_NODROP;
574                 case CONTENTS_SKY:
575                         return SUPERCONTENTS_SKY | SUPERCONTENTS_NODROP;
576         }
577         return 0;
578 }
579
580 int Mod_Q1BSP_NativeContentsFromSuperContents(dp_model_t *model, int supercontents)
581 {
582         if (supercontents & (SUPERCONTENTS_SOLID | SUPERCONTENTS_BODY))
583                 return CONTENTS_SOLID;
584         if (supercontents & SUPERCONTENTS_SKY)
585                 return CONTENTS_SKY;
586         if (supercontents & SUPERCONTENTS_LAVA)
587                 return CONTENTS_LAVA;
588         if (supercontents & SUPERCONTENTS_SLIME)
589                 return CONTENTS_SLIME;
590         if (supercontents & SUPERCONTENTS_WATER)
591                 return CONTENTS_WATER;
592         return CONTENTS_EMPTY;
593 }
594
595 typedef struct RecursiveHullCheckTraceInfo_s
596 {
597         // the hull we're tracing through
598         const hull_t *hull;
599
600         // the trace structure to fill in
601         trace_t *trace;
602
603         // start, end, and end - start (in model space)
604         double start[3];
605         double end[3];
606         double dist[3];
607 }
608 RecursiveHullCheckTraceInfo_t;
609
610 // 1/32 epsilon to keep floating point happy
611 #define DIST_EPSILON (0.03125)
612
613 #define HULLCHECKSTATE_EMPTY 0
614 #define HULLCHECKSTATE_SOLID 1
615 #define HULLCHECKSTATE_DONE 2
616
617 extern cvar_t collision_prefernudgedfraction;
618 static int Mod_Q1BSP_RecursiveHullCheck(RecursiveHullCheckTraceInfo_t *t, int num, double p1f, double p2f, double p1[3], double p2[3])
619 {
620         // status variables, these don't need to be saved on the stack when
621         // recursing...  but are because this should be thread-safe
622         // (note: tracing against a bbox is not thread-safe, yet)
623         int ret;
624         mplane_t *plane;
625         double t1, t2;
626
627         // variables that need to be stored on the stack when recursing
628         mclipnode_t *node;
629         int side;
630         double midf, mid[3];
631
632         // LordHavoc: a goto!  everyone flee in terror... :)
633 loc0:
634         // check for empty
635         if (num < 0)
636         {
637                 num = Mod_Q1BSP_SuperContentsFromNativeContents(NULL, num);
638                 if (!t->trace->startfound)
639                 {
640                         t->trace->startfound = true;
641                         t->trace->startsupercontents |= num;
642                 }
643                 if (num & SUPERCONTENTS_LIQUIDSMASK)
644                         t->trace->inwater = true;
645                 if (num == 0)
646                         t->trace->inopen = true;
647                 if (num & SUPERCONTENTS_SOLID)
648                         t->trace->hittexture = &mod_q1bsp_texture_solid;
649                 else if (num & SUPERCONTENTS_SKY)
650                         t->trace->hittexture = &mod_q1bsp_texture_sky;
651                 else if (num & SUPERCONTENTS_LAVA)
652                         t->trace->hittexture = &mod_q1bsp_texture_lava;
653                 else if (num & SUPERCONTENTS_SLIME)
654                         t->trace->hittexture = &mod_q1bsp_texture_slime;
655                 else
656                         t->trace->hittexture = &mod_q1bsp_texture_water;
657                 t->trace->hitq3surfaceflags = t->trace->hittexture->surfaceflags;
658                 t->trace->hitsupercontents = num;
659                 if (num & t->trace->hitsupercontentsmask)
660                 {
661                         // if the first leaf is solid, set startsolid
662                         if (t->trace->allsolid)
663                                 t->trace->startsolid = true;
664 #if COLLISIONPARANOID >= 3
665                         Con_Print("S");
666 #endif
667                         return HULLCHECKSTATE_SOLID;
668                 }
669                 else
670                 {
671                         t->trace->allsolid = false;
672 #if COLLISIONPARANOID >= 3
673                         Con_Print("E");
674 #endif
675                         return HULLCHECKSTATE_EMPTY;
676                 }
677         }
678
679         // find the point distances
680         node = t->hull->clipnodes + num;
681
682         plane = t->hull->planes + node->planenum;
683         if (plane->type < 3)
684         {
685                 t1 = p1[plane->type] - plane->dist;
686                 t2 = p2[plane->type] - plane->dist;
687         }
688         else
689         {
690                 t1 = DotProduct (plane->normal, p1) - plane->dist;
691                 t2 = DotProduct (plane->normal, p2) - plane->dist;
692         }
693
694         if (t1 < 0)
695         {
696                 if (t2 < 0)
697                 {
698 #if COLLISIONPARANOID >= 3
699                         Con_Print("<");
700 #endif
701                         num = node->children[1];
702                         goto loc0;
703                 }
704                 side = 1;
705         }
706         else
707         {
708                 if (t2 >= 0)
709                 {
710 #if COLLISIONPARANOID >= 3
711                         Con_Print(">");
712 #endif
713                         num = node->children[0];
714                         goto loc0;
715                 }
716                 side = 0;
717         }
718
719         // the line intersects, find intersection point
720         // LordHavoc: this uses the original trace for maximum accuracy
721 #if COLLISIONPARANOID >= 3
722         Con_Print("M");
723 #endif
724         if (plane->type < 3)
725         {
726                 t1 = t->start[plane->type] - plane->dist;
727                 t2 = t->end[plane->type] - plane->dist;
728         }
729         else
730         {
731                 t1 = DotProduct (plane->normal, t->start) - plane->dist;
732                 t2 = DotProduct (plane->normal, t->end) - plane->dist;
733         }
734
735         midf = t1 / (t1 - t2);
736         midf = bound(p1f, midf, p2f);
737         VectorMA(t->start, midf, t->dist, mid);
738
739         // recurse both sides, front side first
740         ret = Mod_Q1BSP_RecursiveHullCheck(t, node->children[side], p1f, midf, p1, mid);
741         // if this side is not empty, return what it is (solid or done)
742         if (ret != HULLCHECKSTATE_EMPTY)
743                 return ret;
744
745         ret = Mod_Q1BSP_RecursiveHullCheck(t, node->children[side ^ 1], midf, p2f, mid, p2);
746         // if other side is not solid, return what it is (empty or done)
747         if (ret != HULLCHECKSTATE_SOLID)
748                 return ret;
749
750         // front is air and back is solid, this is the impact point...
751         if (side)
752         {
753                 t->trace->plane.dist = -plane->dist;
754                 VectorNegate (plane->normal, t->trace->plane.normal);
755         }
756         else
757         {
758                 t->trace->plane.dist = plane->dist;
759                 VectorCopy (plane->normal, t->trace->plane.normal);
760         }
761
762         // calculate the true fraction
763         t1 = DotProduct(t->trace->plane.normal, t->start) - t->trace->plane.dist;
764         t2 = DotProduct(t->trace->plane.normal, t->end) - t->trace->plane.dist;
765         midf = t1 / (t1 - t2);
766         t->trace->realfraction = bound(0, midf, 1);
767
768         // calculate the return fraction which is nudged off the surface a bit
769         midf = (t1 - DIST_EPSILON) / (t1 - t2);
770         t->trace->fraction = bound(0, midf, 1);
771
772         if (collision_prefernudgedfraction.integer)
773                 t->trace->realfraction = t->trace->fraction;
774
775 #if COLLISIONPARANOID >= 3
776         Con_Print("D");
777 #endif
778         return HULLCHECKSTATE_DONE;
779 }
780
781 //#if COLLISIONPARANOID < 2
782 static int Mod_Q1BSP_RecursiveHullCheckPoint(RecursiveHullCheckTraceInfo_t *t, int num)
783 {
784         mplane_t *plane;
785         mclipnode_t *nodes = t->hull->clipnodes;
786         mplane_t *planes = t->hull->planes;
787         vec3_t point;
788         VectorCopy(t->start, point);
789         while (num >= 0)
790         {
791                 plane = planes + nodes[num].planenum;
792                 num = nodes[num].children[(plane->type < 3 ? point[plane->type] : DotProduct(plane->normal, point)) < plane->dist];
793         }
794         num = Mod_Q1BSP_SuperContentsFromNativeContents(NULL, num);
795         t->trace->startsupercontents |= num;
796         if (num & SUPERCONTENTS_LIQUIDSMASK)
797                 t->trace->inwater = true;
798         if (num == 0)
799                 t->trace->inopen = true;
800         if (num & t->trace->hitsupercontentsmask)
801         {
802                 t->trace->allsolid = t->trace->startsolid = true;
803                 return HULLCHECKSTATE_SOLID;
804         }
805         else
806         {
807                 t->trace->allsolid = t->trace->startsolid = false;
808                 return HULLCHECKSTATE_EMPTY;
809         }
810 }
811 //#endif
812
813 static void Mod_Q1BSP_TraceBox(struct model_s *model, int frame, trace_t *trace, const vec3_t start, const vec3_t boxmins, const vec3_t boxmaxs, const vec3_t end, int hitsupercontentsmask)
814 {
815         // this function currently only supports same size start and end
816         double boxsize[3];
817         RecursiveHullCheckTraceInfo_t rhc;
818
819         memset(&rhc, 0, sizeof(rhc));
820         memset(trace, 0, sizeof(trace_t));
821         rhc.trace = trace;
822         rhc.trace->hitsupercontentsmask = hitsupercontentsmask;
823         rhc.trace->fraction = 1;
824         rhc.trace->realfraction = 1;
825         rhc.trace->allsolid = true;
826         VectorSubtract(boxmaxs, boxmins, boxsize);
827         if (boxsize[0] < 3)
828                 rhc.hull = &model->brushq1.hulls[0]; // 0x0x0
829         else if (model->brush.ishlbsp)
830         {
831                 // LordHavoc: this has to have a minor tolerance (the .1) because of
832                 // minor float precision errors from the box being transformed around
833                 if (boxsize[0] < 32.1)
834                 {
835                         if (boxsize[2] < 54) // pick the nearest of 36 or 72
836                                 rhc.hull = &model->brushq1.hulls[3]; // 32x32x36
837                         else
838                                 rhc.hull = &model->brushq1.hulls[1]; // 32x32x72
839                 }
840                 else
841                         rhc.hull = &model->brushq1.hulls[2]; // 64x64x64
842         }
843         else
844         {
845                 // LordHavoc: this has to have a minor tolerance (the .1) because of
846                 // minor float precision errors from the box being transformed around
847                 if (boxsize[0] < 32.1)
848                         rhc.hull = &model->brushq1.hulls[1]; // 32x32x56
849                 else
850                         rhc.hull = &model->brushq1.hulls[2]; // 64x64x88
851         }
852         VectorMAMAM(1, start, 1, boxmins, -1, rhc.hull->clip_mins, rhc.start);
853         VectorMAMAM(1, end, 1, boxmins, -1, rhc.hull->clip_mins, rhc.end);
854         VectorSubtract(rhc.end, rhc.start, rhc.dist);
855 #if COLLISIONPARANOID >= 2
856         Con_Printf("t(%f %f %f,%f %f %f,%i %f %f %f)", rhc.start[0], rhc.start[1], rhc.start[2], rhc.end[0], rhc.end[1], rhc.end[2], rhc.hull - model->brushq1.hulls, rhc.hull->clip_mins[0], rhc.hull->clip_mins[1], rhc.hull->clip_mins[2]);
857         Mod_Q1BSP_RecursiveHullCheck(&rhc, rhc.hull->firstclipnode, 0, 1, rhc.start, rhc.end);
858         {
859
860                 double test[3];
861                 trace_t testtrace;
862                 VectorLerp(rhc.start, rhc.trace->fraction, rhc.end, test);
863                 memset(&testtrace, 0, sizeof(trace_t));
864                 rhc.trace = &testtrace;
865                 rhc.trace->hitsupercontentsmask = hitsupercontentsmask;
866                 rhc.trace->fraction = 1;
867                 rhc.trace->realfraction = 1;
868                 rhc.trace->allsolid = true;
869                 VectorCopy(test, rhc.start);
870                 VectorCopy(test, rhc.end);
871                 VectorClear(rhc.dist);
872                 Mod_Q1BSP_RecursiveHullCheckPoint(&rhc, rhc.hull->firstclipnode);
873                 //Mod_Q1BSP_RecursiveHullCheck(&rhc, rhc.hull->firstclipnode, 0, 1, test, test);
874                 if (!trace->startsolid && testtrace.startsolid)
875                         Con_Printf(" - ended in solid!\n");
876         }
877         Con_Print("\n");
878 #else
879         if (VectorLength2(rhc.dist))
880                 Mod_Q1BSP_RecursiveHullCheck(&rhc, rhc.hull->firstclipnode, 0, 1, rhc.start, rhc.end);
881         else
882                 Mod_Q1BSP_RecursiveHullCheckPoint(&rhc, rhc.hull->firstclipnode);
883 #endif
884 }
885
886 static int Mod_Q1BSP_PointSuperContents(struct model_s *model, int frame, const vec3_t point)
887 {
888         int num = model->brushq1.hulls[0].firstclipnode;
889         mplane_t *plane;
890         mclipnode_t *nodes = model->brushq1.hulls[0].clipnodes;
891         mplane_t *planes = model->brushq1.hulls[0].planes;
892         while (num >= 0)
893         {
894                 plane = planes + nodes[num].planenum;
895                 num = nodes[num].children[(plane->type < 3 ? point[plane->type] : DotProduct(plane->normal, point)) < plane->dist];
896         }
897         return Mod_Q1BSP_SuperContentsFromNativeContents(NULL, num);
898 }
899
900 void Collision_ClipTrace_Box(trace_t *trace, const vec3_t cmins, const vec3_t cmaxs, const vec3_t start, const vec3_t mins, const vec3_t maxs, const vec3_t end, int hitsupercontentsmask, int boxsupercontents, int boxq3surfaceflags, texture_t *boxtexture)
901 {
902 #if 1
903         colbrushf_t cbox;
904         colplanef_t cbox_planes[6];
905         cbox.supercontents = boxsupercontents;
906         cbox.numplanes = 6;
907         cbox.numpoints = 0;
908         cbox.numtriangles = 0;
909         cbox.planes = cbox_planes;
910         cbox.points = NULL;
911         cbox.elements = NULL;
912         cbox.markframe = 0;
913         cbox.mins[0] = 0;
914         cbox.mins[1] = 0;
915         cbox.mins[2] = 0;
916         cbox.maxs[0] = 0;
917         cbox.maxs[1] = 0;
918         cbox.maxs[2] = 0;
919         cbox_planes[0].normal[0] =  1;cbox_planes[0].normal[1] =  0;cbox_planes[0].normal[2] =  0;cbox_planes[0].dist = cmaxs[0] - mins[0];
920         cbox_planes[1].normal[0] = -1;cbox_planes[1].normal[1] =  0;cbox_planes[1].normal[2] =  0;cbox_planes[1].dist = maxs[0] - cmins[0];
921         cbox_planes[2].normal[0] =  0;cbox_planes[2].normal[1] =  1;cbox_planes[2].normal[2] =  0;cbox_planes[2].dist = cmaxs[1] - mins[1];
922         cbox_planes[3].normal[0] =  0;cbox_planes[3].normal[1] = -1;cbox_planes[3].normal[2] =  0;cbox_planes[3].dist = maxs[1] - cmins[1];
923         cbox_planes[4].normal[0] =  0;cbox_planes[4].normal[1] =  0;cbox_planes[4].normal[2] =  1;cbox_planes[4].dist = cmaxs[2] - mins[2];
924         cbox_planes[5].normal[0] =  0;cbox_planes[5].normal[1] =  0;cbox_planes[5].normal[2] = -1;cbox_planes[5].dist = maxs[2] - cmins[2];
925         cbox_planes[0].q3surfaceflags = boxq3surfaceflags;cbox_planes[0].texture = boxtexture;
926         cbox_planes[1].q3surfaceflags = boxq3surfaceflags;cbox_planes[1].texture = boxtexture;
927         cbox_planes[2].q3surfaceflags = boxq3surfaceflags;cbox_planes[2].texture = boxtexture;
928         cbox_planes[3].q3surfaceflags = boxq3surfaceflags;cbox_planes[3].texture = boxtexture;
929         cbox_planes[4].q3surfaceflags = boxq3surfaceflags;cbox_planes[4].texture = boxtexture;
930         cbox_planes[5].q3surfaceflags = boxq3surfaceflags;cbox_planes[5].texture = boxtexture;
931         memset(trace, 0, sizeof(trace_t));
932         trace->hitsupercontentsmask = hitsupercontentsmask;
933         trace->fraction = 1;
934         trace->realfraction = 1;
935         Collision_TraceLineBrushFloat(trace, start, end, &cbox, &cbox);
936 #else
937         RecursiveHullCheckTraceInfo_t rhc;
938         static hull_t box_hull;
939         static mclipnode_t box_clipnodes[6];
940         static mplane_t box_planes[6];
941         // fill in a default trace
942         memset(&rhc, 0, sizeof(rhc));
943         memset(trace, 0, sizeof(trace_t));
944         //To keep everything totally uniform, bounding boxes are turned into small
945         //BSP trees instead of being compared directly.
946         // create a temp hull from bounding box sizes
947         box_planes[0].dist = cmaxs[0] - mins[0];
948         box_planes[1].dist = cmins[0] - maxs[0];
949         box_planes[2].dist = cmaxs[1] - mins[1];
950         box_planes[3].dist = cmins[1] - maxs[1];
951         box_planes[4].dist = cmaxs[2] - mins[2];
952         box_planes[5].dist = cmins[2] - maxs[2];
953 #if COLLISIONPARANOID >= 3
954         Con_Printf("box_planes %f:%f %f:%f %f:%f\ncbox %f %f %f:%f %f %f\nbox %f %f %f:%f %f %f\n", box_planes[0].dist, box_planes[1].dist, box_planes[2].dist, box_planes[3].dist, box_planes[4].dist, box_planes[5].dist, cmins[0], cmins[1], cmins[2], cmaxs[0], cmaxs[1], cmaxs[2], mins[0], mins[1], mins[2], maxs[0], maxs[1], maxs[2]);
955 #endif
956
957         if (box_hull.clipnodes == NULL)
958         {
959                 int i, side;
960
961                 //Set up the planes and clipnodes so that the six floats of a bounding box
962                 //can just be stored out and get a proper hull_t structure.
963
964                 box_hull.clipnodes = box_clipnodes;
965                 box_hull.planes = box_planes;
966                 box_hull.firstclipnode = 0;
967                 box_hull.lastclipnode = 5;
968
969                 for (i = 0;i < 6;i++)
970                 {
971                         box_clipnodes[i].planenum = i;
972
973                         side = i&1;
974
975                         box_clipnodes[i].children[side] = CONTENTS_EMPTY;
976                         if (i != 5)
977                                 box_clipnodes[i].children[side^1] = i + 1;
978                         else
979                                 box_clipnodes[i].children[side^1] = CONTENTS_SOLID;
980
981                         box_planes[i].type = i>>1;
982                         box_planes[i].normal[i>>1] = 1;
983                 }
984         }
985
986         // trace a line through the generated clipping hull
987         //rhc.boxsupercontents = boxsupercontents;
988         rhc.hull = &box_hull;
989         rhc.trace = trace;
990         rhc.trace->hitsupercontentsmask = hitsupercontentsmask;
991         rhc.trace->fraction = 1;
992         rhc.trace->realfraction = 1;
993         rhc.trace->allsolid = true;
994         VectorCopy(start, rhc.start);
995         VectorCopy(end, rhc.end);
996         VectorSubtract(rhc.end, rhc.start, rhc.dist);
997         Mod_Q1BSP_RecursiveHullCheck(&rhc, rhc.hull->firstclipnode, 0, 1, rhc.start, rhc.end);
998         //VectorMA(rhc.start, rhc.trace->fraction, rhc.dist, rhc.trace->endpos);
999         if (rhc.trace->startsupercontents)
1000                 rhc.trace->startsupercontents = boxsupercontents;
1001 #endif
1002 }
1003
1004 static int Mod_Q1BSP_TraceLineOfSight_RecursiveNodeCheck(mnode_t *node, double p1[3], double p2[3])
1005 {
1006         double t1, t2;
1007         double midf, mid[3];
1008         int ret, side;
1009
1010         // check for empty
1011         while (node->plane)
1012         {
1013                 // find the point distances
1014                 mplane_t *plane = node->plane;
1015                 if (plane->type < 3)
1016                 {
1017                         t1 = p1[plane->type] - plane->dist;
1018                         t2 = p2[plane->type] - plane->dist;
1019                 }
1020                 else
1021                 {
1022                         t1 = DotProduct (plane->normal, p1) - plane->dist;
1023                         t2 = DotProduct (plane->normal, p2) - plane->dist;
1024                 }
1025
1026                 if (t1 < 0)
1027                 {
1028                         if (t2 < 0)
1029                         {
1030                                 node = node->children[1];
1031                                 continue;
1032                         }
1033                         side = 1;
1034                 }
1035                 else
1036                 {
1037                         if (t2 >= 0)
1038                         {
1039                                 node = node->children[0];
1040                                 continue;
1041                         }
1042                         side = 0;
1043                 }
1044
1045                 midf = t1 / (t1 - t2);
1046                 VectorLerp(p1, midf, p2, mid);
1047
1048                 // recurse both sides, front side first
1049                 // return 2 if empty is followed by solid (hit something)
1050                 // do not return 2 if both are solid or both empty,
1051                 // or if start is solid and end is empty
1052                 // as these degenerate cases usually indicate the eye is in solid and
1053                 // should see the target point anyway
1054                 ret = Mod_Q1BSP_TraceLineOfSight_RecursiveNodeCheck(node->children[side    ], p1, mid);
1055                 if (ret != 0)
1056                         return ret;
1057                 ret = Mod_Q1BSP_TraceLineOfSight_RecursiveNodeCheck(node->children[side ^ 1], mid, p2);
1058                 if (ret != 1)
1059                         return ret;
1060                 return 2;
1061         }
1062         return ((mleaf_t *)node)->clusterindex < 0;
1063 }
1064
1065 static qboolean Mod_Q1BSP_TraceLineOfSight(struct model_s *model, const vec3_t start, const vec3_t end)
1066 {
1067         // this function currently only supports same size start and end
1068         double tracestart[3], traceend[3];
1069         VectorCopy(start, tracestart);
1070         VectorCopy(end, traceend);
1071         return Mod_Q1BSP_TraceLineOfSight_RecursiveNodeCheck(model->brush.data_nodes, tracestart, traceend) != 2;
1072 }
1073
1074 static int Mod_Q1BSP_LightPoint_RecursiveBSPNode(dp_model_t *model, vec3_t ambientcolor, vec3_t diffusecolor, vec3_t diffusenormal, const mnode_t *node, float x, float y, float startz, float endz)
1075 {
1076         int side;
1077         float front, back;
1078         float mid, distz = endz - startz;
1079
1080 loc0:
1081         if (!node->plane)
1082                 return false;           // didn't hit anything
1083
1084         switch (node->plane->type)
1085         {
1086         case PLANE_X:
1087                 node = node->children[x < node->plane->dist];
1088                 goto loc0;
1089         case PLANE_Y:
1090                 node = node->children[y < node->plane->dist];
1091                 goto loc0;
1092         case PLANE_Z:
1093                 side = startz < node->plane->dist;
1094                 if ((endz < node->plane->dist) == side)
1095                 {
1096                         node = node->children[side];
1097                         goto loc0;
1098                 }
1099                 // found an intersection
1100                 mid = node->plane->dist;
1101                 break;
1102         default:
1103                 back = front = x * node->plane->normal[0] + y * node->plane->normal[1];
1104                 front += startz * node->plane->normal[2];
1105                 back += endz * node->plane->normal[2];
1106                 side = front < node->plane->dist;
1107                 if ((back < node->plane->dist) == side)
1108                 {
1109                         node = node->children[side];
1110                         goto loc0;
1111                 }
1112                 // found an intersection
1113                 mid = startz + distz * (front - node->plane->dist) / (front - back);
1114                 break;
1115         }
1116
1117         // go down front side
1118         if (node->children[side]->plane && Mod_Q1BSP_LightPoint_RecursiveBSPNode(model, ambientcolor, diffusecolor, diffusenormal, node->children[side], x, y, startz, mid))
1119                 return true;    // hit something
1120         else
1121         {
1122                 // check for impact on this node
1123                 if (node->numsurfaces)
1124                 {
1125                         int i, dsi, dti, lmwidth, lmheight;
1126                         float ds, dt;
1127                         msurface_t *surface;
1128                         unsigned char *lightmap;
1129                         int maps, line3, size3;
1130                         float dsfrac;
1131                         float dtfrac;
1132                         float scale, w, w00, w01, w10, w11;
1133
1134                         surface = model->data_surfaces + node->firstsurface;
1135                         for (i = 0;i < node->numsurfaces;i++, surface++)
1136                         {
1137                                 if (!(surface->texture->basematerialflags & MATERIALFLAG_WALL) || !surface->lightmapinfo->samples)
1138                                         continue;       // no lightmaps
1139
1140                                 // location we want to sample in the lightmap
1141                                 ds = ((x * surface->lightmapinfo->texinfo->vecs[0][0] + y * surface->lightmapinfo->texinfo->vecs[0][1] + mid * surface->lightmapinfo->texinfo->vecs[0][2] + surface->lightmapinfo->texinfo->vecs[0][3]) - surface->lightmapinfo->texturemins[0]) * 0.0625f;
1142                                 dt = ((x * surface->lightmapinfo->texinfo->vecs[1][0] + y * surface->lightmapinfo->texinfo->vecs[1][1] + mid * surface->lightmapinfo->texinfo->vecs[1][2] + surface->lightmapinfo->texinfo->vecs[1][3]) - surface->lightmapinfo->texturemins[1]) * 0.0625f;
1143
1144                                 // check the bounds
1145                                 dsi = (int)ds;
1146                                 dti = (int)dt;
1147                                 lmwidth = ((surface->lightmapinfo->extents[0]>>4)+1);
1148                                 lmheight = ((surface->lightmapinfo->extents[1]>>4)+1);
1149
1150                                 // is it in bounds?
1151                                 if (dsi >= 0 && dsi < lmwidth-1 && dti >= 0 && dti < lmheight-1)
1152                                 {
1153                                         // calculate bilinear interpolation factors
1154                                         // and also multiply by fixedpoint conversion factors
1155                                         dsfrac = ds - dsi;
1156                                         dtfrac = dt - dti;
1157                                         w00 = (1 - dsfrac) * (1 - dtfrac) * (1.0f / 32768.0f);
1158                                         w01 = (    dsfrac) * (1 - dtfrac) * (1.0f / 32768.0f);
1159                                         w10 = (1 - dsfrac) * (    dtfrac) * (1.0f / 32768.0f);
1160                                         w11 = (    dsfrac) * (    dtfrac) * (1.0f / 32768.0f);
1161
1162                                         // values for pointer math
1163                                         line3 = lmwidth * 3; // LordHavoc: *3 for colored lighting
1164                                         size3 = lmwidth * lmheight * 3; // LordHavoc: *3 for colored lighting
1165
1166                                         // look up the pixel
1167                                         lightmap = surface->lightmapinfo->samples + dti * line3 + dsi*3; // LordHavoc: *3 for colored lighting
1168
1169                                         // bilinear filter each lightmap style, and sum them
1170                                         for (maps = 0;maps < MAXLIGHTMAPS && surface->lightmapinfo->styles[maps] != 255;maps++)
1171                                         {
1172                                                 scale = r_refdef.scene.lightstylevalue[surface->lightmapinfo->styles[maps]];
1173                                                 w = w00 * scale;VectorMA(ambientcolor, w, lightmap            , ambientcolor);
1174                                                 w = w01 * scale;VectorMA(ambientcolor, w, lightmap + 3        , ambientcolor);
1175                                                 w = w10 * scale;VectorMA(ambientcolor, w, lightmap + line3    , ambientcolor);
1176                                                 w = w11 * scale;VectorMA(ambientcolor, w, lightmap + line3 + 3, ambientcolor);
1177                                                 lightmap += size3;
1178                                         }
1179
1180                                         return true; // success
1181                                 }
1182                         }
1183                 }
1184
1185                 // go down back side
1186                 node = node->children[side ^ 1];
1187                 startz = mid;
1188                 distz = endz - startz;
1189                 goto loc0;
1190         }
1191 }
1192
1193 void Mod_Q1BSP_LightPoint(dp_model_t *model, const vec3_t p, vec3_t ambientcolor, vec3_t diffusecolor, vec3_t diffusenormal)
1194 {
1195         // pretend lighting is coming down from above (due to lack of a lightgrid to know primary lighting direction)
1196         VectorSet(diffusenormal, 0, 0, 1);
1197
1198         if (!model->brushq1.lightdata)
1199         {
1200                 VectorSet(ambientcolor, 1, 1, 1);
1201                 VectorSet(diffusecolor, 0, 0, 0);
1202                 return;
1203         }
1204
1205         Mod_Q1BSP_LightPoint_RecursiveBSPNode(model, ambientcolor, diffusecolor, diffusenormal, model->brush.data_nodes + model->brushq1.hulls[0].firstclipnode, p[0], p[1], p[2] + 0.125, p[2] - 65536);
1206 }
1207
1208 static void Mod_Q1BSP_DecompressVis(const unsigned char *in, const unsigned char *inend, unsigned char *out, unsigned char *outend)
1209 {
1210         int c;
1211         unsigned char *outstart = out;
1212         while (out < outend)
1213         {
1214                 if (in == inend)
1215                 {
1216                         Con_Printf("Mod_Q1BSP_DecompressVis: input underrun on model \"%s\" (decompressed %i of %i output bytes)\n", loadmodel->name, (int)(out - outstart), (int)(outend - outstart));
1217                         return;
1218                 }
1219                 c = *in++;
1220                 if (c)
1221                         *out++ = c;
1222                 else
1223                 {
1224                         if (in == inend)
1225                         {
1226                                 Con_Printf("Mod_Q1BSP_DecompressVis: input underrun (during zero-run) on model \"%s\" (decompressed %i of %i output bytes)\n", loadmodel->name, (int)(out - outstart), (int)(outend - outstart));
1227                                 return;
1228                         }
1229                         for (c = *in++;c > 0;c--)
1230                         {
1231                                 if (out == outend)
1232                                 {
1233                                         Con_Printf("Mod_Q1BSP_DecompressVis: output overrun on model \"%s\" (decompressed %i of %i output bytes)\n", loadmodel->name, (int)(out - outstart), (int)(outend - outstart));
1234                                         return;
1235                                 }
1236                                 *out++ = 0;
1237                         }
1238                 }
1239         }
1240 }
1241
1242 /*
1243 =============
1244 R_Q1BSP_LoadSplitSky
1245
1246 A sky texture is 256*128, with the right side being a masked overlay
1247 ==============
1248 */
1249 void R_Q1BSP_LoadSplitSky (unsigned char *src, int width, int height, int bytesperpixel)
1250 {
1251         int i, j;
1252         unsigned solidpixels[128*128], alphapixels[128*128];
1253
1254         // allocate a texture pool if we need it
1255         if (loadmodel->texturepool == NULL && cls.state != ca_dedicated)
1256                 loadmodel->texturepool = R_AllocTexturePool();
1257
1258         if (bytesperpixel == 4)
1259         {
1260                 for (i = 0;i < 128;i++)
1261                 {
1262                         for (j = 0;j < 128;j++)
1263                         {
1264                                 solidpixels[(i*128) + j] = ((unsigned *)src)[i*256+j+128];
1265                                 alphapixels[(i*128) + j] = ((unsigned *)src)[i*256+j];
1266                         }
1267                 }
1268         }
1269         else
1270         {
1271                 // make an average value for the back to avoid
1272                 // a fringe on the top level
1273                 int p, r, g, b;
1274                 union
1275                 {
1276                         unsigned int i;
1277                         unsigned char b[4];
1278                 }
1279                 bgra;
1280                 r = g = b = 0;
1281                 for (i = 0;i < 128;i++)
1282                 {
1283                         for (j = 0;j < 128;j++)
1284                         {
1285                                 p = src[i*256 + j + 128];
1286                                 r += palette_rgb[p][0];
1287                                 g += palette_rgb[p][1];
1288                                 b += palette_rgb[p][2];
1289                         }
1290                 }
1291                 bgra.b[2] = r/(128*128);
1292                 bgra.b[1] = g/(128*128);
1293                 bgra.b[0] = b/(128*128);
1294                 bgra.b[3] = 0;
1295                 for (i = 0;i < 128;i++)
1296                 {
1297                         for (j = 0;j < 128;j++)
1298                         {
1299                                 solidpixels[(i*128) + j] = palette_bgra_complete[src[i*256 + j + 128]];
1300                                 p = src[i*256 + j];
1301                                 alphapixels[(i*128) + j] = p ? palette_bgra_complete[p] : bgra.i;
1302                         }
1303                 }
1304         }
1305
1306         loadmodel->brush.solidskytexture = R_LoadTexture2D(loadmodel->texturepool, "sky_solidtexture", 128, 128, (unsigned char *) solidpixels, TEXTYPE_BGRA, TEXF_PRECACHE, NULL);
1307         loadmodel->brush.alphaskytexture = R_LoadTexture2D(loadmodel->texturepool, "sky_alphatexture", 128, 128, (unsigned char *) alphapixels, TEXTYPE_BGRA, TEXF_ALPHA | TEXF_PRECACHE, NULL);
1308 }
1309
1310 static void Mod_Q1BSP_LoadTextures(lump_t *l)
1311 {
1312         int i, j, k, num, max, altmax, mtwidth, mtheight, *dofs, incomplete;
1313         skinframe_t *skinframe;
1314         miptex_t *dmiptex;
1315         texture_t *tx, *tx2, *anims[10], *altanims[10];
1316         dmiptexlump_t *m;
1317         unsigned char *data, *mtdata;
1318         const char *s;
1319         char mapname[MAX_QPATH], name[MAX_QPATH];
1320         unsigned char zero[4];
1321
1322         memset(zero, 0, sizeof(zero));
1323
1324         loadmodel->data_textures = NULL;
1325
1326         // add two slots for notexture walls and notexture liquids
1327         if (l->filelen)
1328         {
1329                 m = (dmiptexlump_t *)(mod_base + l->fileofs);
1330                 m->nummiptex = LittleLong (m->nummiptex);
1331                 loadmodel->num_textures = m->nummiptex + 2;
1332                 loadmodel->num_texturesperskin = loadmodel->num_textures;
1333         }
1334         else
1335         {
1336                 m = NULL;
1337                 loadmodel->num_textures = 2;
1338                 loadmodel->num_texturesperskin = loadmodel->num_textures;
1339         }
1340
1341         loadmodel->data_textures = (texture_t *)Mem_Alloc(loadmodel->mempool, loadmodel->num_textures * sizeof(texture_t));
1342
1343         // fill out all slots with notexture
1344         if (cls.state != ca_dedicated)
1345                 skinframe = R_SkinFrame_LoadMissing();
1346         else
1347                 skinframe = NULL;
1348         for (i = 0, tx = loadmodel->data_textures;i < loadmodel->num_textures;i++, tx++)
1349         {
1350                 strlcpy(tx->name, "NO TEXTURE FOUND", sizeof(tx->name));
1351                 tx->width = 16;
1352                 tx->height = 16;
1353                 if (cls.state != ca_dedicated)
1354                 {
1355                         tx->numskinframes = 1;
1356                         tx->skinframerate = 1;
1357                         tx->skinframes[0] = skinframe;
1358                         tx->currentskinframe = tx->skinframes[0];
1359                         tx->basematerialflags = 0;
1360                 }
1361                 tx->basematerialflags = MATERIALFLAG_WALL;
1362                 if (i == loadmodel->num_textures - 1)
1363                 {
1364                         tx->basematerialflags |= MATERIALFLAG_WATERSCROLL | MATERIALFLAG_LIGHTBOTHSIDES | MATERIALFLAG_NOSHADOW;
1365                         tx->supercontents = mod_q1bsp_texture_water.supercontents;
1366                         tx->surfaceflags = mod_q1bsp_texture_water.surfaceflags;
1367                 }
1368                 else
1369                 {
1370                         tx->supercontents = mod_q1bsp_texture_solid.supercontents;
1371                         tx->surfaceflags = mod_q1bsp_texture_solid.surfaceflags;
1372                 }
1373                 tx->currentframe = tx;
1374
1375                 // clear water settings
1376                 tx->reflectmin = 0;
1377                 tx->reflectmax = 1;
1378                 tx->refractfactor = 1;
1379                 Vector4Set(tx->refractcolor4f, 1, 1, 1, 1);
1380                 tx->reflectfactor = 1;
1381                 Vector4Set(tx->reflectcolor4f, 1, 1, 1, 1);
1382                 tx->r_water_wateralpha = 1;
1383         }
1384
1385         if (!m)
1386         {
1387                 Con_Printf("%s: no miptex lump to load textures from\n", loadmodel->name);
1388                 return;
1389         }
1390
1391         s = loadmodel->name;
1392         if (!strncasecmp(s, "maps/", 5))
1393                 s += 5;
1394         FS_StripExtension(s, mapname, sizeof(mapname));
1395
1396         // just to work around bounds checking when debugging with it (array index out of bounds error thing)
1397         dofs = m->dataofs;
1398         // LordHavoc: mostly rewritten map texture loader
1399         for (i = 0;i < m->nummiptex;i++)
1400         {
1401                 dofs[i] = LittleLong(dofs[i]);
1402                 if (r_nosurftextures.integer)
1403                         continue;
1404                 if (dofs[i] == -1)
1405                 {
1406                         Con_DPrintf("%s: miptex #%i missing\n", loadmodel->name, i);
1407                         continue;
1408                 }
1409                 dmiptex = (miptex_t *)((unsigned char *)m + dofs[i]);
1410
1411                 // copy name, but only up to 16 characters
1412                 // (the output buffer can hold more than this, but the input buffer is
1413                 //  only 16)
1414                 for (j = 0;j < 16 && dmiptex->name[j];j++)
1415                         name[j] = dmiptex->name[j];
1416                 name[j] = 0;
1417
1418                 if (!name[0])
1419                 {
1420                         dpsnprintf(name, sizeof(name), "unnamed%i", i);
1421                         Con_DPrintf("%s: warning: renaming unnamed texture to %s\n", loadmodel->name, name);
1422                 }
1423
1424                 mtwidth = LittleLong(dmiptex->width);
1425                 mtheight = LittleLong(dmiptex->height);
1426                 mtdata = NULL;
1427                 j = LittleLong(dmiptex->offsets[0]);
1428                 if (j)
1429                 {
1430                         // texture included
1431                         if (j < 40 || j + mtwidth * mtheight > l->filelen)
1432                         {
1433                                 Con_Printf("%s: Texture \"%s\" is corrupt or incomplete\n", loadmodel->name, dmiptex->name);
1434                                 continue;
1435                         }
1436                         mtdata = (unsigned char *)dmiptex + j;
1437                 }
1438
1439                 if ((mtwidth & 15) || (mtheight & 15))
1440                         Con_DPrintf("%s: warning: texture \"%s\" is not 16 aligned\n", loadmodel->name, dmiptex->name);
1441
1442                 // LordHavoc: force all names to lowercase
1443                 for (j = 0;name[j];j++)
1444                         if (name[j] >= 'A' && name[j] <= 'Z')
1445                                 name[j] += 'a' - 'A';
1446
1447                 if (dmiptex->name[0] && Mod_LoadTextureFromQ3Shader(loadmodel->data_textures + i, name, false, false, 0))
1448                         continue;
1449
1450                 tx = loadmodel->data_textures + i;
1451                 strlcpy(tx->name, name, sizeof(tx->name));
1452                 tx->width = mtwidth;
1453                 tx->height = mtheight;
1454
1455                 if (tx->name[0] == '*')
1456                 {
1457                         if (!strncmp(tx->name, "*lava", 5))
1458                         {
1459                                 tx->supercontents = mod_q1bsp_texture_lava.supercontents;
1460                                 tx->surfaceflags = mod_q1bsp_texture_lava.surfaceflags;
1461                         }
1462                         else if (!strncmp(tx->name, "*slime", 6))
1463                         {
1464                                 tx->supercontents = mod_q1bsp_texture_slime.supercontents;
1465                                 tx->surfaceflags = mod_q1bsp_texture_slime.surfaceflags;
1466                         }
1467                         else
1468                         {
1469                                 tx->supercontents = mod_q1bsp_texture_water.supercontents;
1470                                 tx->surfaceflags = mod_q1bsp_texture_water.surfaceflags;
1471                         }
1472                 }
1473                 else if (!strncmp(tx->name, "sky", 3))
1474                 {
1475                         tx->supercontents = mod_q1bsp_texture_sky.supercontents;
1476                         tx->surfaceflags = mod_q1bsp_texture_sky.surfaceflags;
1477                 }
1478                 else
1479                 {
1480                         tx->supercontents = mod_q1bsp_texture_solid.supercontents;
1481                         tx->surfaceflags = mod_q1bsp_texture_solid.surfaceflags;
1482                 }
1483
1484                 if (cls.state != ca_dedicated)
1485                 {
1486                         // LordHavoc: HL sky textures are entirely different than quake
1487                         if (!loadmodel->brush.ishlbsp && !strncmp(tx->name, "sky", 3) && mtwidth == 256 && mtheight == 128)
1488                         {
1489                                 if (loadmodel->isworldmodel)
1490                                 {
1491                                         data = loadimagepixelsbgra(tx->name, false, false);
1492                                         if (data && image_width == 256 && image_height == 128)
1493                                         {
1494                                                 R_Q1BSP_LoadSplitSky(data, image_width, image_height, 4);
1495                                                 Mem_Free(data);
1496                                         }
1497                                         else if (mtdata != NULL)
1498                                                 R_Q1BSP_LoadSplitSky(mtdata, mtwidth, mtheight, 1);
1499                                 }
1500                         }
1501                         else
1502                         {
1503                                 skinframe = R_SkinFrame_LoadExternal(gamemode == GAME_TENEBRAE ? tx->name : va("textures/%s/%s", mapname, tx->name), TEXF_MIPMAP | TEXF_PRECACHE | (r_picmipworld.integer ? TEXF_PICMIP : 0) | TEXF_COMPRESS, false);
1504                                 if (!skinframe)
1505                                         skinframe = R_SkinFrame_LoadExternal(gamemode == GAME_TENEBRAE ? tx->name : va("textures/%s", tx->name), TEXF_MIPMAP | TEXF_PRECACHE | (r_picmipworld.integer ? TEXF_PICMIP : 0) | TEXF_COMPRESS, false);
1506                                 if (!skinframe)
1507                                 {
1508                                         // did not find external texture, load it from the bsp or wad3
1509                                         if (loadmodel->brush.ishlbsp)
1510                                         {
1511                                                 // internal texture overrides wad
1512                                                 unsigned char *pixels, *freepixels;
1513                                                 pixels = freepixels = NULL;
1514                                                 if (mtdata)
1515                                                         pixels = W_ConvertWAD3TextureBGRA(dmiptex);
1516                                                 if (pixels == NULL)
1517                                                         pixels = freepixels = W_GetTextureBGRA(tx->name);
1518                                                 if (pixels != NULL)
1519                                                 {
1520                                                         tx->width = image_width;
1521                                                         tx->height = image_height;
1522                                                         skinframe = R_SkinFrame_LoadInternalBGRA(tx->name, TEXF_MIPMAP | TEXF_PRECACHE | (r_picmipworld.integer ? TEXF_PICMIP : 0), pixels, image_width, image_height);
1523                                                 }
1524                                                 if (freepixels)
1525                                                         Mem_Free(freepixels);
1526                                         }
1527                                         else if (mtdata) // texture included
1528                                                 skinframe = R_SkinFrame_LoadInternalQuake(tx->name, TEXF_MIPMAP | TEXF_PRECACHE | (r_picmipworld.integer ? TEXF_PICMIP : 0), false, r_fullbrights.integer, mtdata, tx->width, tx->height);
1529                                 }
1530                                 // if skinframe is still NULL the "missing" texture will be used
1531                                 if (skinframe)
1532                                         tx->skinframes[0] = skinframe;
1533                         }
1534
1535                         tx->basematerialflags = MATERIALFLAG_WALL;
1536                         if (tx->name[0] == '*')
1537                         {
1538                                 // LordHavoc: some turbulent textures should not be affected by wateralpha
1539                                 if (!strncmp(tx->name, "*glassmirror", 12)) // Tenebrae
1540                                 {
1541                                         // replace the texture with transparent black
1542                                         Vector4Set(zero, 128, 128, 128, 128);
1543                                         tx->skinframes[0] = R_SkinFrame_LoadInternalBGRA(tx->name, TEXF_MIPMAP | TEXF_PRECACHE | TEXF_ALPHA, zero, 1, 1);
1544                                         tx->basematerialflags |= MATERIALFLAG_NOSHADOW | MATERIALFLAG_ADD | MATERIALFLAG_BLENDED | MATERIALFLAG_REFLECTION;
1545                                 }
1546                                 else if (!strncmp(tx->name,"*lava",5)
1547                                  || !strncmp(tx->name,"*teleport",9)
1548                                  || !strncmp(tx->name,"*rift",5)) // Scourge of Armagon texture
1549                                         tx->basematerialflags |= MATERIALFLAG_WATERSCROLL | MATERIALFLAG_LIGHTBOTHSIDES | MATERIALFLAG_NOSHADOW;
1550                                 else
1551                                         tx->basematerialflags |= MATERIALFLAG_WATERSCROLL | MATERIALFLAG_LIGHTBOTHSIDES | MATERIALFLAG_NOSHADOW | MATERIALFLAG_WATERALPHA | MATERIALFLAG_WATERSHADER;
1552                                 if (tx->skinframes[0] && tx->skinframes[0]->fog)
1553                                         tx->basematerialflags |= MATERIALFLAG_ALPHA | MATERIALFLAG_BLENDED | MATERIALFLAG_NOSHADOW;
1554                         }
1555                         else if (!strncmp(tx->name, "mirror", 6)) // Tenebrae
1556                         {
1557                                 // replace the texture with black
1558                                 tx->skinframes[0] = R_SkinFrame_LoadInternalBGRA(tx->name, TEXF_PRECACHE, zero, 1, 1);
1559                                 tx->basematerialflags |= MATERIALFLAG_REFLECTION;
1560                         }
1561                         else if (!strncmp(tx->name, "sky", 3))
1562                                 tx->basematerialflags = MATERIALFLAG_SKY | MATERIALFLAG_NOSHADOW;
1563                         else if (!strcmp(tx->name, "caulk"))
1564                                 tx->basematerialflags = MATERIALFLAG_NODRAW;
1565                         else if (tx->skinframes[0] && tx->skinframes[0]->fog)
1566                                 tx->basematerialflags |= MATERIALFLAG_ALPHA | MATERIALFLAG_BLENDED | MATERIALFLAG_NOSHADOW;
1567
1568                         // start out with no animation
1569                         tx->currentframe = tx;
1570                         tx->currentskinframe = tx->skinframes[0];
1571                 }
1572         }
1573
1574         // sequence the animations
1575         for (i = 0;i < m->nummiptex;i++)
1576         {
1577                 tx = loadmodel->data_textures + i;
1578                 if (!tx || tx->name[0] != '+' || tx->name[1] == 0 || tx->name[2] == 0)
1579                         continue;
1580                 if (tx->anim_total[0] || tx->anim_total[1])
1581                         continue;       // already sequenced
1582
1583                 // find the number of frames in the animation
1584                 memset(anims, 0, sizeof(anims));
1585                 memset(altanims, 0, sizeof(altanims));
1586
1587                 for (j = i;j < m->nummiptex;j++)
1588                 {
1589                         tx2 = loadmodel->data_textures + j;
1590                         if (!tx2 || tx2->name[0] != '+' || strcmp(tx2->name+2, tx->name+2))
1591                                 continue;
1592
1593                         num = tx2->name[1];
1594                         if (num >= '0' && num <= '9')
1595                                 anims[num - '0'] = tx2;
1596                         else if (num >= 'a' && num <= 'j')
1597                                 altanims[num - 'a'] = tx2;
1598                         else
1599                                 Con_Printf("Bad animating texture %s\n", tx->name);
1600                 }
1601
1602                 max = altmax = 0;
1603                 for (j = 0;j < 10;j++)
1604                 {
1605                         if (anims[j])
1606                                 max = j + 1;
1607                         if (altanims[j])
1608                                 altmax = j + 1;
1609                 }
1610                 //Con_Printf("linking animation %s (%i:%i frames)\n\n", tx->name, max, altmax);
1611
1612                 incomplete = false;
1613                 for (j = 0;j < max;j++)
1614                 {
1615                         if (!anims[j])
1616                         {
1617                                 Con_Printf("Missing frame %i of %s\n", j, tx->name);
1618                                 incomplete = true;
1619                         }
1620                 }
1621                 for (j = 0;j < altmax;j++)
1622                 {
1623                         if (!altanims[j])
1624                         {
1625                                 Con_Printf("Missing altframe %i of %s\n", j, tx->name);
1626                                 incomplete = true;
1627                         }
1628                 }
1629                 if (incomplete)
1630                         continue;
1631
1632                 if (altmax < 1)
1633                 {
1634                         // if there is no alternate animation, duplicate the primary
1635                         // animation into the alternate
1636                         altmax = max;
1637                         for (k = 0;k < 10;k++)
1638                                 altanims[k] = anims[k];
1639                 }
1640
1641                 // link together the primary animation
1642                 for (j = 0;j < max;j++)
1643                 {
1644                         tx2 = anims[j];
1645                         tx2->animated = true;
1646                         tx2->anim_total[0] = max;
1647                         tx2->anim_total[1] = altmax;
1648                         for (k = 0;k < 10;k++)
1649                         {
1650                                 tx2->anim_frames[0][k] = anims[k];
1651                                 tx2->anim_frames[1][k] = altanims[k];
1652                         }
1653                 }
1654
1655                 // if there really is an alternate anim...
1656                 if (anims[0] != altanims[0])
1657                 {
1658                         // link together the alternate animation
1659                         for (j = 0;j < altmax;j++)
1660                         {
1661                                 tx2 = altanims[j];
1662                                 tx2->animated = true;
1663                                 // the primary/alternate are reversed here
1664                                 tx2->anim_total[0] = altmax;
1665                                 tx2->anim_total[1] = max;
1666                                 for (k = 0;k < 10;k++)
1667                                 {
1668                                         tx2->anim_frames[0][k] = altanims[k];
1669                                         tx2->anim_frames[1][k] = anims[k];
1670                                 }
1671                         }
1672                 }
1673         }
1674 }
1675
1676 static void Mod_Q1BSP_LoadLighting(lump_t *l)
1677 {
1678         int i;
1679         unsigned char *in, *out, *data, d;
1680         char litfilename[MAX_QPATH];
1681         char dlitfilename[MAX_QPATH];
1682         fs_offset_t filesize;
1683         if (loadmodel->brush.ishlbsp) // LordHavoc: load the colored lighting data straight
1684         {
1685                 loadmodel->brushq1.lightdata = (unsigned char *)Mem_Alloc(loadmodel->mempool, l->filelen);
1686                 for (i=0; i<l->filelen; i++)
1687                         loadmodel->brushq1.lightdata[i] = mod_base[l->fileofs+i] >>= 1;
1688         }
1689         else // LordHavoc: bsp version 29 (normal white lighting)
1690         {
1691                 // LordHavoc: hope is not lost yet, check for a .lit file to load
1692                 strlcpy (litfilename, loadmodel->name, sizeof (litfilename));
1693                 FS_StripExtension (litfilename, litfilename, sizeof (litfilename));
1694                 strlcpy (dlitfilename, litfilename, sizeof (dlitfilename));
1695                 strlcat (litfilename, ".lit", sizeof (litfilename));
1696                 strlcat (dlitfilename, ".dlit", sizeof (dlitfilename));
1697                 data = (unsigned char*) FS_LoadFile(litfilename, tempmempool, false, &filesize);
1698                 if (data)
1699                 {
1700                         if (filesize == (fs_offset_t)(8 + l->filelen * 3) && data[0] == 'Q' && data[1] == 'L' && data[2] == 'I' && data[3] == 'T')
1701                         {
1702                                 i = LittleLong(((int *)data)[1]);
1703                                 if (i == 1)
1704                                 {
1705                                         if (developer_loading.integer)
1706                                                 Con_Printf("loaded %s\n", litfilename);
1707                                         loadmodel->brushq1.lightdata = (unsigned char *)Mem_Alloc(loadmodel->mempool, filesize - 8);
1708                                         memcpy(loadmodel->brushq1.lightdata, data + 8, filesize - 8);
1709                                         Mem_Free(data);
1710                                         data = (unsigned char*) FS_LoadFile(dlitfilename, tempmempool, false, &filesize);
1711                                         if (data)
1712                                         {
1713                                                 if (filesize == (fs_offset_t)(8 + l->filelen * 3) && data[0] == 'Q' && data[1] == 'L' && data[2] == 'I' && data[3] == 'T')
1714                                                 {
1715                                                         i = LittleLong(((int *)data)[1]);
1716                                                         if (i == 1)
1717                                                         {
1718                                                                 if (developer_loading.integer)
1719                                                                         Con_Printf("loaded %s\n", dlitfilename);
1720                                                                 loadmodel->brushq1.nmaplightdata = (unsigned char *)Mem_Alloc(loadmodel->mempool, filesize - 8);
1721                                                                 memcpy(loadmodel->brushq1.nmaplightdata, data + 8, filesize - 8);
1722                                                                 loadmodel->brushq3.deluxemapping_modelspace = false;
1723                                                                 loadmodel->brushq3.deluxemapping = true;
1724                                                         }
1725                                                 }
1726                                                 Mem_Free(data);
1727                                                 data = NULL;
1728                                         }
1729                                         return;
1730                                 }
1731                                 else
1732                                         Con_Printf("Unknown .lit file version (%d)\n", i);
1733                         }
1734                         else if (filesize == 8)
1735                                 Con_Print("Empty .lit file, ignoring\n");
1736                         else
1737                                 Con_Printf("Corrupt .lit file (file size %i bytes, should be %i bytes), ignoring\n", (int) filesize, (int) (8 + l->filelen * 3));
1738                         if (data)
1739                         {
1740                                 Mem_Free(data);
1741                                 data = NULL;
1742                         }
1743                 }
1744                 // LordHavoc: oh well, expand the white lighting data
1745                 if (!l->filelen)
1746                         return;
1747                 loadmodel->brushq1.lightdata = (unsigned char *)Mem_Alloc(loadmodel->mempool, l->filelen*3);
1748                 in = mod_base + l->fileofs;
1749                 out = loadmodel->brushq1.lightdata;
1750                 for (i = 0;i < l->filelen;i++)
1751                 {
1752                         d = *in++;
1753                         *out++ = d;
1754                         *out++ = d;
1755                         *out++ = d;
1756                 }
1757         }
1758 }
1759
1760 static void Mod_Q1BSP_LoadVisibility(lump_t *l)
1761 {
1762         loadmodel->brushq1.num_compressedpvs = 0;
1763         loadmodel->brushq1.data_compressedpvs = NULL;
1764         if (!l->filelen)
1765                 return;
1766         loadmodel->brushq1.num_compressedpvs = l->filelen;
1767         loadmodel->brushq1.data_compressedpvs = (unsigned char *)Mem_Alloc(loadmodel->mempool, l->filelen);
1768         memcpy(loadmodel->brushq1.data_compressedpvs, mod_base + l->fileofs, l->filelen);
1769 }
1770
1771 // used only for HalfLife maps
1772 static void Mod_Q1BSP_ParseWadsFromEntityLump(const char *data)
1773 {
1774         char key[128], value[4096];
1775         char wadname[128];
1776         int i, j, k;
1777         if (!data)
1778                 return;
1779         if (!COM_ParseToken_Simple(&data, false, false))
1780                 return; // error
1781         if (com_token[0] != '{')
1782                 return; // error
1783         while (1)
1784         {
1785                 if (!COM_ParseToken_Simple(&data, false, false))
1786                         return; // error
1787                 if (com_token[0] == '}')
1788                         break; // end of worldspawn
1789                 if (com_token[0] == '_')
1790                         strlcpy(key, com_token + 1, sizeof(key));
1791                 else
1792                         strlcpy(key, com_token, sizeof(key));
1793                 while (key[strlen(key)-1] == ' ') // remove trailing spaces
1794                         key[strlen(key)-1] = 0;
1795                 if (!COM_ParseToken_Simple(&data, false, false))
1796                         return; // error
1797                 dpsnprintf(value, sizeof(value), "%s", com_token);
1798                 if (!strcmp("wad", key)) // for HalfLife maps
1799                 {
1800                         if (loadmodel->brush.ishlbsp)
1801                         {
1802                                 j = 0;
1803                                 for (i = 0;i < (int)sizeof(value);i++)
1804                                         if (value[i] != ';' && value[i] != '\\' && value[i] != '/' && value[i] != ':')
1805                                                 break;
1806                                 if (value[i])
1807                                 {
1808                                         for (;i < (int)sizeof(value);i++)
1809                                         {
1810                                                 // ignore path - the \\ check is for HalfLife... stupid windoze 'programmers'...
1811                                                 if (value[i] == '\\' || value[i] == '/' || value[i] == ':')
1812                                                         j = i+1;
1813                                                 else if (value[i] == ';' || value[i] == 0)
1814                                                 {
1815                                                         k = value[i];
1816                                                         value[i] = 0;
1817                                                         strlcpy(wadname, "textures/", sizeof(wadname));
1818                                                         strlcat(wadname, &value[j], sizeof(wadname));
1819                                                         W_LoadTextureWadFile(wadname, false);
1820                                                         j = i+1;
1821                                                         if (!k)
1822                                                                 break;
1823                                                 }
1824                                         }
1825                                 }
1826                         }
1827                 }
1828         }
1829 }
1830
1831 static void Mod_Q1BSP_LoadEntities(lump_t *l)
1832 {
1833         loadmodel->brush.entities = NULL;
1834         if (!l->filelen)
1835                 return;
1836         loadmodel->brush.entities = (char *)Mem_Alloc(loadmodel->mempool, l->filelen);
1837         memcpy(loadmodel->brush.entities, mod_base + l->fileofs, l->filelen);
1838         if (loadmodel->brush.ishlbsp)
1839                 Mod_Q1BSP_ParseWadsFromEntityLump(loadmodel->brush.entities);
1840 }
1841
1842
1843 static void Mod_Q1BSP_LoadVertexes(lump_t *l)
1844 {
1845         dvertex_t       *in;
1846         mvertex_t       *out;
1847         int                     i, count;
1848
1849         in = (dvertex_t *)(mod_base + l->fileofs);
1850         if (l->filelen % sizeof(*in))
1851                 Host_Error("Mod_Q1BSP_LoadVertexes: funny lump size in %s",loadmodel->name);
1852         count = l->filelen / sizeof(*in);
1853         out = (mvertex_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(*out));
1854
1855         loadmodel->brushq1.vertexes = out;
1856         loadmodel->brushq1.numvertexes = count;
1857
1858         for ( i=0 ; i<count ; i++, in++, out++)
1859         {
1860                 out->position[0] = LittleFloat(in->point[0]);
1861                 out->position[1] = LittleFloat(in->point[1]);
1862                 out->position[2] = LittleFloat(in->point[2]);
1863         }
1864 }
1865
1866 // The following two functions should be removed and MSG_* or SZ_* function sets adjusted so they
1867 // can be used for this
1868 // REMOVEME
1869 int SB_ReadInt (unsigned char **buffer)
1870 {
1871         int     i;
1872         i = ((*buffer)[0]) + 256*((*buffer)[1]) + 65536*((*buffer)[2]) + 16777216*((*buffer)[3]);
1873         (*buffer) += 4;
1874         return i;
1875 }
1876
1877 // REMOVEME
1878 float SB_ReadFloat (unsigned char **buffer)
1879 {
1880         union
1881         {
1882                 int             i;
1883                 float   f;
1884         } u;
1885
1886         u.i = SB_ReadInt (buffer);
1887         return u.f;
1888 }
1889
1890 static void Mod_Q1BSP_LoadSubmodels(lump_t *l, hullinfo_t *hullinfo)
1891 {
1892         unsigned char           *index;
1893         dmodel_t        *out;
1894         int                     i, j, count;
1895
1896         index = (unsigned char *)(mod_base + l->fileofs);
1897         if (l->filelen % (48+4*hullinfo->filehulls))
1898                 Host_Error ("Mod_Q1BSP_LoadSubmodels: funny lump size in %s", loadmodel->name);
1899
1900         count = l->filelen / (48+4*hullinfo->filehulls);
1901         out = (dmodel_t *)Mem_Alloc (loadmodel->mempool, count*sizeof(*out));
1902
1903         loadmodel->brushq1.submodels = out;
1904         loadmodel->brush.numsubmodels = count;
1905
1906         for (i = 0; i < count; i++, out++)
1907         {
1908         // spread out the mins / maxs by a pixel
1909                 out->mins[0] = SB_ReadFloat (&index) - 1;
1910                 out->mins[1] = SB_ReadFloat (&index) - 1;
1911                 out->mins[2] = SB_ReadFloat (&index) - 1;
1912                 out->maxs[0] = SB_ReadFloat (&index) + 1;
1913                 out->maxs[1] = SB_ReadFloat (&index) + 1;
1914                 out->maxs[2] = SB_ReadFloat (&index) + 1;
1915                 out->origin[0] = SB_ReadFloat (&index);
1916                 out->origin[1] = SB_ReadFloat (&index);
1917                 out->origin[2] = SB_ReadFloat (&index);
1918                 for (j = 0; j < hullinfo->filehulls; j++)
1919                         out->headnode[j] = SB_ReadInt (&index);
1920                 out->visleafs = SB_ReadInt (&index);
1921                 out->firstface = SB_ReadInt (&index);
1922                 out->numfaces = SB_ReadInt (&index);
1923         }
1924 }
1925
1926 static void Mod_Q1BSP_LoadEdges(lump_t *l)
1927 {
1928         dedge_t *in;
1929         medge_t *out;
1930         int     i, count;
1931
1932         in = (dedge_t *)(mod_base + l->fileofs);
1933         if (l->filelen % sizeof(*in))
1934                 Host_Error("Mod_Q1BSP_LoadEdges: funny lump size in %s",loadmodel->name);
1935         count = l->filelen / sizeof(*in);
1936         out = (medge_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
1937
1938         loadmodel->brushq1.edges = out;
1939         loadmodel->brushq1.numedges = count;
1940
1941         for ( i=0 ; i<count ; i++, in++, out++)
1942         {
1943                 out->v[0] = (unsigned short)LittleShort(in->v[0]);
1944                 out->v[1] = (unsigned short)LittleShort(in->v[1]);
1945                 if (out->v[0] >= loadmodel->brushq1.numvertexes || out->v[1] >= loadmodel->brushq1.numvertexes)
1946                 {
1947                         Con_Printf("Mod_Q1BSP_LoadEdges: %s has invalid vertex indices in edge %i (vertices %i %i >= numvertices %i)\n", loadmodel->name, i, out->v[0], out->v[1], loadmodel->brushq1.numvertexes);
1948                         out->v[0] = 0;
1949                         out->v[1] = 0;
1950                 }
1951         }
1952 }
1953
1954 static void Mod_Q1BSP_LoadTexinfo(lump_t *l)
1955 {
1956         texinfo_t *in;
1957         mtexinfo_t *out;
1958         int i, j, k, count, miptex;
1959
1960         in = (texinfo_t *)(mod_base + l->fileofs);
1961         if (l->filelen % sizeof(*in))
1962                 Host_Error("Mod_Q1BSP_LoadTexinfo: funny lump size in %s",loadmodel->name);
1963         count = l->filelen / sizeof(*in);
1964         out = (mtexinfo_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
1965
1966         loadmodel->brushq1.texinfo = out;
1967         loadmodel->brushq1.numtexinfo = count;
1968
1969         for (i = 0;i < count;i++, in++, out++)
1970         {
1971                 for (k = 0;k < 2;k++)
1972                         for (j = 0;j < 4;j++)
1973                                 out->vecs[k][j] = LittleFloat(in->vecs[k][j]);
1974
1975                 miptex = LittleLong(in->miptex);
1976                 out->flags = LittleLong(in->flags);
1977
1978                 out->texture = NULL;
1979                 if (loadmodel->data_textures)
1980                 {
1981                         if ((unsigned int) miptex >= (unsigned int) loadmodel->num_textures)
1982                                 Con_Printf("error in model \"%s\": invalid miptex index %i(of %i)\n", loadmodel->name, miptex, loadmodel->num_textures);
1983                         else
1984                                 out->texture = loadmodel->data_textures + miptex;
1985                 }
1986                 if (out->flags & TEX_SPECIAL)
1987                 {
1988                         // if texture chosen is NULL or the shader needs a lightmap,
1989                         // force to notexture water shader
1990                         if (out->texture == NULL)
1991                                 out->texture = loadmodel->data_textures + (loadmodel->num_textures - 1);
1992                 }
1993                 else
1994                 {
1995                         // if texture chosen is NULL, force to notexture
1996                         if (out->texture == NULL)
1997                                 out->texture = loadmodel->data_textures + (loadmodel->num_textures - 2);
1998                 }
1999         }
2000 }
2001
2002 #if 0
2003 void BoundPoly(int numverts, float *verts, vec3_t mins, vec3_t maxs)
2004 {
2005         int             i, j;
2006         float   *v;
2007
2008         mins[0] = mins[1] = mins[2] = 9999;
2009         maxs[0] = maxs[1] = maxs[2] = -9999;
2010         v = verts;
2011         for (i = 0;i < numverts;i++)
2012         {
2013                 for (j = 0;j < 3;j++, v++)
2014                 {
2015                         if (*v < mins[j])
2016                                 mins[j] = *v;
2017                         if (*v > maxs[j])
2018                                 maxs[j] = *v;
2019                 }
2020         }
2021 }
2022
2023 #define MAX_SUBDIVPOLYTRIANGLES 4096
2024 #define MAX_SUBDIVPOLYVERTS(MAX_SUBDIVPOLYTRIANGLES * 3)
2025
2026 static int subdivpolyverts, subdivpolytriangles;
2027 static int subdivpolyindex[MAX_SUBDIVPOLYTRIANGLES][3];
2028 static float subdivpolyvert[MAX_SUBDIVPOLYVERTS][3];
2029
2030 static int subdivpolylookupvert(vec3_t v)
2031 {
2032         int i;
2033         for (i = 0;i < subdivpolyverts;i++)
2034                 if (subdivpolyvert[i][0] == v[0]
2035                  && subdivpolyvert[i][1] == v[1]
2036                  && subdivpolyvert[i][2] == v[2])
2037                         return i;
2038         if (subdivpolyverts >= MAX_SUBDIVPOLYVERTS)
2039                 Host_Error("SubDividePolygon: ran out of vertices in buffer, please increase your r_subdivide_size");
2040         VectorCopy(v, subdivpolyvert[subdivpolyverts]);
2041         return subdivpolyverts++;
2042 }
2043
2044 static void SubdividePolygon(int numverts, float *verts)
2045 {
2046         int             i, i1, i2, i3, f, b, c, p;
2047         vec3_t  mins, maxs, front[256], back[256];
2048         float   m, *pv, *cv, dist[256], frac;
2049
2050         if (numverts > 250)
2051                 Host_Error("SubdividePolygon: ran out of verts in buffer");
2052
2053         BoundPoly(numverts, verts, mins, maxs);
2054
2055         for (i = 0;i < 3;i++)
2056         {
2057                 m = (mins[i] + maxs[i]) * 0.5;
2058                 m = r_subdivide_size.value * floor(m/r_subdivide_size.value + 0.5);
2059                 if (maxs[i] - m < 8)
2060                         continue;
2061                 if (m - mins[i] < 8)
2062                         continue;
2063
2064                 // cut it
2065                 for (cv = verts, c = 0;c < numverts;c++, cv += 3)
2066                         dist[c] = cv[i] - m;
2067
2068                 f = b = 0;
2069                 for (p = numverts - 1, c = 0, pv = verts + p * 3, cv = verts;c < numverts;p = c, c++, pv = cv, cv += 3)
2070                 {
2071                         if (dist[p] >= 0)
2072                         {
2073                                 VectorCopy(pv, front[f]);
2074                                 f++;
2075                         }
2076                         if (dist[p] <= 0)
2077                         {
2078                                 VectorCopy(pv, back[b]);
2079                                 b++;
2080                         }
2081                         if (dist[p] == 0 || dist[c] == 0)
2082                                 continue;
2083                         if ((dist[p] > 0) != (dist[c] > 0) )
2084                         {
2085                                 // clip point
2086                                 frac = dist[p] / (dist[p] - dist[c]);
2087                                 front[f][0] = back[b][0] = pv[0] + frac * (cv[0] - pv[0]);
2088                                 front[f][1] = back[b][1] = pv[1] + frac * (cv[1] - pv[1]);
2089                                 front[f][2] = back[b][2] = pv[2] + frac * (cv[2] - pv[2]);
2090                                 f++;
2091                                 b++;
2092                         }
2093                 }
2094
2095                 SubdividePolygon(f, front[0]);
2096                 SubdividePolygon(b, back[0]);
2097                 return;
2098         }
2099
2100         i1 = subdivpolylookupvert(verts);
2101         i2 = subdivpolylookupvert(verts + 3);
2102         for (i = 2;i < numverts;i++)
2103         {
2104                 if (subdivpolytriangles >= MAX_SUBDIVPOLYTRIANGLES)
2105                 {
2106                         Con_Print("SubdividePolygon: ran out of triangles in buffer, please increase your r_subdivide_size\n");
2107                         return;
2108                 }
2109
2110                 i3 = subdivpolylookupvert(verts + i * 3);
2111                 subdivpolyindex[subdivpolytriangles][0] = i1;
2112                 subdivpolyindex[subdivpolytriangles][1] = i2;
2113                 subdivpolyindex[subdivpolytriangles][2] = i3;
2114                 i2 = i3;
2115                 subdivpolytriangles++;
2116         }
2117 }
2118
2119 //Breaks a polygon up along axial 64 unit
2120 //boundaries so that turbulent and sky warps
2121 //can be done reasonably.
2122 static void Mod_Q1BSP_GenerateWarpMesh(msurface_t *surface)
2123 {
2124         int i, j;
2125         surfvertex_t *v;
2126         surfmesh_t *mesh;
2127
2128         subdivpolytriangles = 0;
2129         subdivpolyverts = 0;
2130         SubdividePolygon(surface->num_vertices, (surface->mesh->data_vertex3f + 3 * surface->num_firstvertex));
2131         if (subdivpolytriangles < 1)
2132                 Host_Error("Mod_Q1BSP_GenerateWarpMesh: no triangles?");
2133
2134         surface->mesh = mesh = Mem_Alloc(loadmodel->mempool, sizeof(surfmesh_t) + subdivpolytriangles * sizeof(int[3]) + subdivpolyverts * sizeof(surfvertex_t));
2135         mesh->num_vertices = subdivpolyverts;
2136         mesh->num_triangles = subdivpolytriangles;
2137         mesh->vertex = (surfvertex_t *)(mesh + 1);
2138         mesh->index = (int *)(mesh->vertex + mesh->num_vertices);
2139         memset(mesh->vertex, 0, mesh->num_vertices * sizeof(surfvertex_t));
2140
2141         for (i = 0;i < mesh->num_triangles;i++)
2142                 for (j = 0;j < 3;j++)
2143                         mesh->index[i*3+j] = subdivpolyindex[i][j];
2144
2145         for (i = 0, v = mesh->vertex;i < subdivpolyverts;i++, v++)
2146         {
2147                 VectorCopy(subdivpolyvert[i], v->v);
2148                 v->st[0] = DotProduct(v->v, surface->lightmapinfo->texinfo->vecs[0]);
2149                 v->st[1] = DotProduct(v->v, surface->lightmapinfo->texinfo->vecs[1]);
2150         }
2151 }
2152 #endif
2153
2154 /* Maximum size of a single LM */
2155 #define MAX_SINGLE_LM_SIZE    256
2156
2157 struct alloc_lm_row
2158 {
2159         int rowY;
2160         int currentX;
2161 };
2162
2163 struct alloc_lm_state
2164 {
2165         int currentY;
2166         struct alloc_lm_row rows[MAX_SINGLE_LM_SIZE];
2167 };
2168
2169 static void init_alloc_lm_state (struct alloc_lm_state* state)
2170 {
2171         int r;
2172
2173         state->currentY = 0;
2174         for (r = 0; r < MAX_SINGLE_LM_SIZE; r++)
2175         {
2176           state->rows[r].currentX = 0;
2177           state->rows[r].rowY = -1;
2178         }
2179 }
2180
2181 static qboolean Mod_Q1BSP_AllocLightmapBlock(struct alloc_lm_state* state, int totalwidth, int totalheight, int blockwidth, int blockheight, int *outx, int *outy)
2182 {
2183         struct alloc_lm_row* row;
2184         int r;
2185
2186         row = &(state->rows[blockheight]);
2187         if ((row->rowY < 0) || (row->currentX + blockwidth > totalwidth))
2188         {
2189                 if (state->currentY + blockheight <= totalheight)
2190                 {
2191                         row->rowY = state->currentY;
2192                         row->currentX = 0;
2193                         state->currentY += blockheight;
2194                 }
2195                 else
2196                 {
2197                         /* See if we can stuff the block into a higher row */
2198                         row = NULL;
2199                         for (r = blockheight; r < MAX_SINGLE_LM_SIZE; r++)
2200                         {
2201                                 if ((state->rows[r].rowY >= 0)
2202                                   && (state->rows[r].currentX + blockwidth <= totalwidth))
2203                                 {
2204                                         row = &(state->rows[r]);
2205                                         break;
2206                                 }
2207                         }
2208                         if (row == NULL) return false;
2209                 }
2210         }
2211         *outy = row->rowY;
2212         *outx = row->currentX;
2213         row->currentX += blockwidth;
2214
2215         return true;
2216 }
2217
2218 extern cvar_t gl_max_size;
2219 static void Mod_Q1BSP_LoadFaces(lump_t *l)
2220 {
2221         dface_t *in;
2222         msurface_t *surface;
2223         int i, j, count, surfacenum, planenum, smax, tmax, ssize, tsize, firstedge, numedges, totalverts, totaltris, lightmapnumber, lightmapsize, totallightmapsamples;
2224         float texmins[2], texmaxs[2], val;
2225         rtexture_t *lightmaptexture, *deluxemaptexture;
2226
2227         in = (dface_t *)(mod_base + l->fileofs);
2228         if (l->filelen % sizeof(*in))
2229                 Host_Error("Mod_Q1BSP_LoadFaces: funny lump size in %s",loadmodel->name);
2230         count = l->filelen / sizeof(*in);
2231         loadmodel->data_surfaces = (msurface_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(msurface_t));
2232         loadmodel->data_surfaces_lightmapinfo = (msurface_lightmapinfo_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(msurface_lightmapinfo_t));
2233
2234         loadmodel->num_surfaces = count;
2235
2236         loadmodel->brushq1.lightmapupdateflags = (unsigned char *)Mem_Alloc(loadmodel->mempool, count*sizeof(unsigned char));
2237
2238         totalverts = 0;
2239         totaltris = 0;
2240         for (surfacenum = 0, in = (dface_t *)(mod_base + l->fileofs);surfacenum < count;surfacenum++, in++)
2241         {
2242                 numedges = (unsigned short)LittleShort(in->numedges);
2243                 totalverts += numedges;
2244                 totaltris += numedges - 2;
2245         }
2246
2247         Mod_AllocSurfMesh(loadmodel->mempool, totalverts, totaltris, true, false, false);
2248
2249         lightmaptexture = NULL;
2250         deluxemaptexture = r_texture_blanknormalmap;
2251         lightmapnumber = 1;
2252         lightmapsize = max(256, gl_max_size.integer);
2253         totallightmapsamples = 0;
2254
2255         totalverts = 0;
2256         totaltris = 0;
2257         for (surfacenum = 0, in = (dface_t *)(mod_base + l->fileofs), surface = loadmodel->data_surfaces;surfacenum < count;surfacenum++, in++, surface++)
2258         {
2259                 surface->lightmapinfo = loadmodel->data_surfaces_lightmapinfo + surfacenum;
2260
2261                 // FIXME: validate edges, texinfo, etc?
2262                 firstedge = LittleLong(in->firstedge);
2263                 numedges = (unsigned short)LittleShort(in->numedges);
2264                 if ((unsigned int) firstedge > (unsigned int) loadmodel->brushq1.numsurfedges || (unsigned int) numedges > (unsigned int) loadmodel->brushq1.numsurfedges || (unsigned int) firstedge + (unsigned int) numedges > (unsigned int) loadmodel->brushq1.numsurfedges)
2265                         Host_Error("Mod_Q1BSP_LoadFaces: invalid edge range (firstedge %i, numedges %i, model edges %i)", firstedge, numedges, loadmodel->brushq1.numsurfedges);
2266                 i = (unsigned short)LittleShort(in->texinfo);
2267                 if ((unsigned int) i >= (unsigned int) loadmodel->brushq1.numtexinfo)
2268                         Host_Error("Mod_Q1BSP_LoadFaces: invalid texinfo index %i(model has %i texinfos)", i, loadmodel->brushq1.numtexinfo);
2269                 surface->lightmapinfo->texinfo = loadmodel->brushq1.texinfo + i;
2270                 surface->texture = surface->lightmapinfo->texinfo->texture;
2271
2272                 planenum = (unsigned short)LittleShort(in->planenum);
2273                 if ((unsigned int) planenum >= (unsigned int) loadmodel->brush.num_planes)
2274                         Host_Error("Mod_Q1BSP_LoadFaces: invalid plane index %i (model has %i planes)", planenum, loadmodel->brush.num_planes);
2275
2276                 //surface->flags = surface->texture->flags;
2277                 //if (LittleShort(in->side))
2278                 //      surface->flags |= SURF_PLANEBACK;
2279                 //surface->plane = loadmodel->brush.data_planes + planenum;
2280
2281                 surface->num_firstvertex = totalverts;
2282                 surface->num_vertices = numedges;
2283                 surface->num_firsttriangle = totaltris;
2284                 surface->num_triangles = numedges - 2;
2285                 totalverts += numedges;
2286                 totaltris += numedges - 2;
2287
2288                 // convert edges back to a normal polygon
2289                 for (i = 0;i < surface->num_vertices;i++)
2290                 {
2291                         int lindex = loadmodel->brushq1.surfedges[firstedge + i];
2292                         float s, t;
2293                         if (lindex > 0)
2294                                 VectorCopy(loadmodel->brushq1.vertexes[loadmodel->brushq1.edges[lindex].v[0]].position, (loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3);
2295                         else
2296                                 VectorCopy(loadmodel->brushq1.vertexes[loadmodel->brushq1.edges[-lindex].v[1]].position, (loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3);
2297                         s = DotProduct(((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3), surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3];
2298                         t = DotProduct(((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3), surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3];
2299                         (loadmodel->surfmesh.data_texcoordtexture2f + 2 * surface->num_firstvertex)[i * 2 + 0] = s / surface->texture->width;
2300                         (loadmodel->surfmesh.data_texcoordtexture2f + 2 * surface->num_firstvertex)[i * 2 + 1] = t / surface->texture->height;
2301                         (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * surface->num_firstvertex)[i * 2 + 0] = 0;
2302                         (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * surface->num_firstvertex)[i * 2 + 1] = 0;
2303                         (loadmodel->surfmesh.data_lightmapoffsets + surface->num_firstvertex)[i] = 0;
2304                 }
2305
2306                 for (i = 0;i < surface->num_triangles;i++)
2307                 {
2308                         (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 0] = 0 + surface->num_firstvertex;
2309                         (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 1] = i + 1 + surface->num_firstvertex;
2310                         (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 2] = i + 2 + surface->num_firstvertex;
2311                 }
2312
2313                 // compile additional data about the surface geometry
2314                 Mod_BuildNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, loadmodel->surfmesh.data_vertex3f, (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle), loadmodel->surfmesh.data_normal3f, true);
2315                 Mod_BuildTextureVectorsFromNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, loadmodel->surfmesh.data_vertex3f, loadmodel->surfmesh.data_texcoordtexture2f, loadmodel->surfmesh.data_normal3f, (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle), loadmodel->surfmesh.data_svector3f, loadmodel->surfmesh.data_tvector3f, true);
2316                 BoxFromPoints(surface->mins, surface->maxs, surface->num_vertices, (loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex));
2317
2318                 // generate surface extents information
2319                 texmins[0] = texmaxs[0] = DotProduct((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex), surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3];
2320                 texmins[1] = texmaxs[1] = DotProduct((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex), surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3];
2321                 for (i = 1;i < surface->num_vertices;i++)
2322                 {
2323                         for (j = 0;j < 2;j++)
2324                         {
2325                                 val = DotProduct((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3, surface->lightmapinfo->texinfo->vecs[j]) + surface->lightmapinfo->texinfo->vecs[j][3];
2326                                 texmins[j] = min(texmins[j], val);
2327                                 texmaxs[j] = max(texmaxs[j], val);
2328                         }
2329                 }
2330                 for (i = 0;i < 2;i++)
2331                 {
2332                         surface->lightmapinfo->texturemins[i] = (int) floor(texmins[i] / 16.0) * 16;
2333                         surface->lightmapinfo->extents[i] = (int) ceil(texmaxs[i] / 16.0) * 16 - surface->lightmapinfo->texturemins[i];
2334                 }
2335
2336                 smax = surface->lightmapinfo->extents[0] >> 4;
2337                 tmax = surface->lightmapinfo->extents[1] >> 4;
2338                 ssize = (surface->lightmapinfo->extents[0] >> 4) + 1;
2339                 tsize = (surface->lightmapinfo->extents[1] >> 4) + 1;
2340
2341                 // lighting info
2342                 for (i = 0;i < MAXLIGHTMAPS;i++)
2343                         surface->lightmapinfo->styles[i] = in->styles[i];
2344                 surface->lightmaptexture = NULL;
2345                 surface->deluxemaptexture = r_texture_blanknormalmap;
2346                 i = LittleLong(in->lightofs);
2347                 if (i == -1)
2348                 {
2349                         surface->lightmapinfo->samples = NULL;
2350                         // give non-lightmapped water a 1x white lightmap
2351                         if (surface->texture->name[0] == '*' && (surface->lightmapinfo->texinfo->flags & TEX_SPECIAL) && ssize <= 256 && tsize <= 256)
2352                         {
2353                                 surface->lightmapinfo->samples = (unsigned char *)Mem_Alloc(loadmodel->mempool, ssize * tsize * 3);
2354                                 surface->lightmapinfo->styles[0] = 0;
2355                                 memset(surface->lightmapinfo->samples, 128, ssize * tsize * 3);
2356                         }
2357                 }
2358                 else if (loadmodel->brush.ishlbsp) // LordHavoc: HalfLife map (bsp version 30)
2359                         surface->lightmapinfo->samples = loadmodel->brushq1.lightdata + i;
2360                 else // LordHavoc: white lighting (bsp version 29)
2361                 {
2362                         surface->lightmapinfo->samples = loadmodel->brushq1.lightdata + (i * 3);
2363                         if (loadmodel->brushq1.nmaplightdata)
2364                                 surface->lightmapinfo->nmapsamples = loadmodel->brushq1.nmaplightdata + (i * 3);
2365                 }
2366
2367                 // check if we should apply a lightmap to this
2368                 if (!(surface->lightmapinfo->texinfo->flags & TEX_SPECIAL) || surface->lightmapinfo->samples)
2369                 {
2370                         if (ssize > 256 || tsize > 256)
2371                                 Host_Error("Bad surface extents");
2372
2373                         if (lightmapsize < ssize)
2374                                 lightmapsize = ssize;
2375                         if (lightmapsize < tsize)
2376                                 lightmapsize = tsize;
2377
2378                         totallightmapsamples += ssize*tsize;
2379
2380                         // force lightmap upload on first time seeing the surface
2381                         //
2382                         // additionally this is used by the later code to see if a
2383                         // lightmap is needed on this surface (rather than duplicating the
2384                         // logic above)
2385                         loadmodel->brushq1.lightmapupdateflags[surfacenum] = true;
2386                 }
2387         }
2388
2389         // small maps (such as ammo boxes especially) don't need big lightmap
2390         // textures, so this code tries to guess a good size based on
2391         // totallightmapsamples (size of the lightmaps lump basically), as well as
2392         // trying to max out the gl_max_size if there is a lot of lightmap data to
2393         // store
2394         // additionally, never choose a lightmapsize that is smaller than the
2395         // largest surface encountered (as it would fail)
2396         i = lightmapsize;
2397         for (lightmapsize = 64; (lightmapsize < i) && (lightmapsize < gl_max_size.integer) && (totallightmapsamples > lightmapsize*lightmapsize); lightmapsize*=2)
2398                 ;
2399
2400         // now that we've decided the lightmap texture size, we can do the rest
2401         if (cls.state != ca_dedicated)
2402         {
2403                 struct alloc_lm_state allocState;
2404
2405                 for (surfacenum = 0, surface = loadmodel->data_surfaces;surfacenum < count;surfacenum++, surface++)
2406                 {
2407                         int i, iu, iv, lightmapx = 0, lightmapy = 0;
2408                         float u, v, ubase, vbase, uscale, vscale;
2409
2410                         smax = surface->lightmapinfo->extents[0] >> 4;
2411                         tmax = surface->lightmapinfo->extents[1] >> 4;
2412                         ssize = (surface->lightmapinfo->extents[0] >> 4) + 1;
2413                         tsize = (surface->lightmapinfo->extents[1] >> 4) + 1;
2414
2415                         if (!lightmaptexture || !Mod_Q1BSP_AllocLightmapBlock(&allocState, lightmapsize, lightmapsize, ssize, tsize, &lightmapx, &lightmapy))
2416                         {
2417                                 // allocate a texture pool if we need it
2418                                 if (loadmodel->texturepool == NULL)
2419                                         loadmodel->texturepool = R_AllocTexturePool();
2420                                 // could not find room, make a new lightmap
2421                                 lightmaptexture = R_LoadTexture2D(loadmodel->texturepool, va("lightmap%i", lightmapnumber), lightmapsize, lightmapsize, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE, NULL);
2422                                 if (loadmodel->brushq1.nmaplightdata)
2423                                         deluxemaptexture = R_LoadTexture2D(loadmodel->texturepool, va("deluxemap%i", lightmapnumber), lightmapsize, lightmapsize, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE, NULL);
2424                                 lightmapnumber++;
2425                                 init_alloc_lm_state (&allocState);
2426                                 Mod_Q1BSP_AllocLightmapBlock(&allocState, lightmapsize, lightmapsize, ssize, tsize, &lightmapx, &lightmapy);
2427                         }
2428                         surface->lightmaptexture = lightmaptexture;
2429                         surface->deluxemaptexture = deluxemaptexture;
2430                         surface->lightmapinfo->lightmaporigin[0] = lightmapx;
2431                         surface->lightmapinfo->lightmaporigin[1] = lightmapy;
2432
2433                         uscale = 1.0f / (float)lightmapsize;
2434                         vscale = 1.0f / (float)lightmapsize;
2435                         ubase = lightmapx * uscale;
2436                         vbase = lightmapy * vscale;
2437
2438                         for (i = 0;i < surface->num_vertices;i++)
2439                         {
2440                                 u = ((DotProduct(((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3), surface->lightmapinfo->texinfo->vecs[0]) + surface->lightmapinfo->texinfo->vecs[0][3]) + 8 - surface->lightmapinfo->texturemins[0]) * (1.0 / 16.0);
2441                                 v = ((DotProduct(((loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex) + i * 3), surface->lightmapinfo->texinfo->vecs[1]) + surface->lightmapinfo->texinfo->vecs[1][3]) + 8 - surface->lightmapinfo->texturemins[1]) * (1.0 / 16.0);
2442                                 (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * surface->num_firstvertex)[i * 2 + 0] = u * uscale + ubase;
2443                                 (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * surface->num_firstvertex)[i * 2 + 1] = v * vscale + vbase;
2444                                 // LordHavoc: calc lightmap data offset for vertex lighting to use
2445                                 iu = (int) u;
2446                                 iv = (int) v;
2447                                 (loadmodel->surfmesh.data_lightmapoffsets + surface->num_firstvertex)[i] = (bound(0, iv, tmax) * ssize + bound(0, iu, smax)) * 3;
2448                         }
2449
2450                 }
2451
2452                 if (cl_stainmaps.integer)
2453                 {
2454                         // allocate stainmaps for permanent marks on walls
2455                         int stainmapsize = 0;
2456                         unsigned char *stainsamples = NULL;
2457                         for (surfacenum = 0, surface = loadmodel->data_surfaces;surfacenum < count;surfacenum++, surface++)
2458                         {
2459                                 ssize = (surface->lightmapinfo->extents[0] >> 4) + 1;
2460                                 tsize = (surface->lightmapinfo->extents[1] >> 4) + 1;
2461                                 stainmapsize += ssize * tsize * 3;
2462                         }
2463                         // allocate and clear to white
2464                         stainsamples = (unsigned char *)Mem_Alloc(loadmodel->mempool, stainmapsize);
2465                         memset(stainsamples, 255, stainmapsize);
2466                         // assign pointers
2467                         for (surfacenum = 0, surface = loadmodel->data_surfaces;surfacenum < count;surfacenum++, surface++)
2468                         {
2469                                 ssize = (surface->lightmapinfo->extents[0] >> 4) + 1;
2470                                 tsize = (surface->lightmapinfo->extents[1] >> 4) + 1;
2471                                 surface->lightmapinfo->stainsamples = stainsamples;
2472                                 stainsamples += ssize * tsize * 3;
2473                         }
2474                 }
2475         }
2476
2477         // generate ushort elements array if possible
2478         if (loadmodel->surfmesh.data_element3s)
2479                 for (i = 0;i < loadmodel->surfmesh.num_triangles*3;i++)
2480                         loadmodel->surfmesh.data_element3s[i] = loadmodel->surfmesh.data_element3i[i];
2481 }
2482
2483 static void Mod_Q1BSP_LoadNodes_RecursiveSetParent(mnode_t *node, mnode_t *parent)
2484 {
2485         //if (node->parent)
2486         //      Host_Error("Mod_Q1BSP_LoadNodes_RecursiveSetParent: runaway recursion");
2487         node->parent = parent;
2488         if (node->plane)
2489         {
2490                 // this is a node, recurse to children
2491                 Mod_Q1BSP_LoadNodes_RecursiveSetParent(node->children[0], node);
2492                 Mod_Q1BSP_LoadNodes_RecursiveSetParent(node->children[1], node);
2493                 // combine supercontents of children
2494                 node->combinedsupercontents = node->children[0]->combinedsupercontents | node->children[1]->combinedsupercontents;
2495         }
2496         else
2497         {
2498                 int j;
2499                 mleaf_t *leaf = (mleaf_t *)node;
2500                 // if this is a leaf, calculate supercontents mask from all collidable
2501                 // primitives in the leaf (brushes and collision surfaces)
2502                 // also flag if the leaf contains any collision surfaces
2503                 leaf->combinedsupercontents = 0;
2504                 // combine the supercontents values of all brushes in this leaf
2505                 for (j = 0;j < leaf->numleafbrushes;j++)
2506                         leaf->combinedsupercontents |= loadmodel->brush.data_brushes[leaf->firstleafbrush[j]].texture->supercontents;
2507                 // check if this leaf contains any collision surfaces (q3 patches)
2508                 for (j = 0;j < leaf->numleafsurfaces;j++)
2509                 {
2510                         msurface_t *surface = loadmodel->data_surfaces + leaf->firstleafsurface[j];
2511                         if (surface->num_collisiontriangles)
2512                         {
2513                                 leaf->containscollisionsurfaces = true;
2514                                 leaf->combinedsupercontents |= surface->texture->supercontents;
2515                         }
2516                 }
2517         }
2518 }
2519
2520 static void Mod_Q1BSP_LoadNodes(lump_t *l)
2521 {
2522         int                     i, j, count, p;
2523         dnode_t         *in;
2524         mnode_t         *out;
2525
2526         in = (dnode_t *)(mod_base + l->fileofs);
2527         if (l->filelen % sizeof(*in))
2528                 Host_Error("Mod_Q1BSP_LoadNodes: funny lump size in %s",loadmodel->name);
2529         count = l->filelen / sizeof(*in);
2530         out = (mnode_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(*out));
2531
2532         loadmodel->brush.data_nodes = out;
2533         loadmodel->brush.num_nodes = count;
2534
2535         for ( i=0 ; i<count ; i++, in++, out++)
2536         {
2537                 for (j=0 ; j<3 ; j++)
2538                 {
2539                         out->mins[j] = LittleShort(in->mins[j]);
2540                         out->maxs[j] = LittleShort(in->maxs[j]);
2541                 }
2542
2543                 p = LittleLong(in->planenum);
2544                 out->plane = loadmodel->brush.data_planes + p;
2545
2546                 out->firstsurface = (unsigned short)LittleShort(in->firstface);
2547                 out->numsurfaces = (unsigned short)LittleShort(in->numfaces);
2548
2549                 for (j=0 ; j<2 ; j++)
2550                 {
2551                         // LordHavoc: this code supports broken bsp files produced by
2552                         // arguire qbsp which can produce more than 32768 nodes, any value
2553                         // below count is assumed to be a node number, any other value is
2554                         // assumed to be a leaf number
2555                         p = (unsigned short)LittleShort(in->children[j]);
2556                         if (p < count)
2557                         {
2558                                 if (p < loadmodel->brush.num_nodes)
2559                                         out->children[j] = loadmodel->brush.data_nodes + p;
2560                                 else
2561                                 {
2562                                         Con_Printf("Mod_Q1BSP_LoadNodes: invalid node index %i (file has only %i nodes)\n", p, loadmodel->brush.num_nodes);
2563                                         // map it to the solid leaf
2564                                         out->children[j] = (mnode_t *)loadmodel->brush.data_leafs;
2565                                 }
2566                         }
2567                         else
2568                         {
2569                                 // note this uses 65535 intentionally, -1 is leaf 0
2570                                 p = 65535 - p;
2571                                 if (p < loadmodel->brush.num_leafs)
2572                                         out->children[j] = (mnode_t *)(loadmodel->brush.data_leafs + p);
2573                                 else
2574                                 {
2575                                         Con_Printf("Mod_Q1BSP_LoadNodes: invalid leaf index %i (file has only %i leafs)\n", p, loadmodel->brush.num_leafs);
2576                                         // map it to the solid leaf
2577                                         out->children[j] = (mnode_t *)loadmodel->brush.data_leafs;
2578                                 }
2579                         }
2580                 }
2581         }
2582
2583         Mod_Q1BSP_LoadNodes_RecursiveSetParent(loadmodel->brush.data_nodes, NULL);      // sets nodes and leafs
2584 }
2585
2586 static void Mod_Q1BSP_LoadLeafs(lump_t *l)
2587 {
2588         dleaf_t *in;
2589         mleaf_t *out;
2590         int i, j, count, p;
2591
2592         in = (dleaf_t *)(mod_base + l->fileofs);
2593         if (l->filelen % sizeof(*in))
2594                 Host_Error("Mod_Q1BSP_LoadLeafs: funny lump size in %s",loadmodel->name);
2595         count = l->filelen / sizeof(*in);
2596         out = (mleaf_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(*out));
2597
2598         loadmodel->brush.data_leafs = out;
2599         loadmodel->brush.num_leafs = count;
2600         // get visleafs from the submodel data
2601         loadmodel->brush.num_pvsclusters = loadmodel->brushq1.submodels[0].visleafs;
2602         loadmodel->brush.num_pvsclusterbytes = (loadmodel->brush.num_pvsclusters+7)>>3;
2603         loadmodel->brush.data_pvsclusters = (unsigned char *)Mem_Alloc(loadmodel->mempool, loadmodel->brush.num_pvsclusters * loadmodel->brush.num_pvsclusterbytes);
2604         memset(loadmodel->brush.data_pvsclusters, 0xFF, loadmodel->brush.num_pvsclusters * loadmodel->brush.num_pvsclusterbytes);
2605
2606         for ( i=0 ; i<count ; i++, in++, out++)
2607         {
2608                 for (j=0 ; j<3 ; j++)
2609                 {
2610                         out->mins[j] = LittleShort(in->mins[j]);
2611                         out->maxs[j] = LittleShort(in->maxs[j]);
2612                 }
2613
2614                 // FIXME: this function could really benefit from some error checking
2615
2616                 out->contents = LittleLong(in->contents);
2617
2618                 out->firstleafsurface = loadmodel->brush.data_leafsurfaces + (unsigned short)LittleShort(in->firstmarksurface);
2619                 out->numleafsurfaces = (unsigned short)LittleShort(in->nummarksurfaces);
2620                 if (out->firstleafsurface < 0 || (unsigned short)LittleShort(in->firstmarksurface) + out->numleafsurfaces > loadmodel->brush.num_leafsurfaces)
2621                 {
2622                         Con_Printf("Mod_Q1BSP_LoadLeafs: invalid leafsurface range %i:%i outside range %i:%i\n", (int)(out->firstleafsurface - loadmodel->brush.data_leafsurfaces), (int)(out->firstleafsurface + out->numleafsurfaces - loadmodel->brush.data_leafsurfaces), 0, loadmodel->brush.num_leafsurfaces);
2623                         out->firstleafsurface = NULL;
2624                         out->numleafsurfaces = 0;
2625                 }
2626
2627                 out->clusterindex = i - 1;
2628                 if (out->clusterindex >= loadmodel->brush.num_pvsclusters)
2629                         out->clusterindex = -1;
2630
2631                 p = LittleLong(in->visofs);
2632                 // ignore visofs errors on leaf 0 (solid)
2633                 if (p >= 0 && out->clusterindex >= 0)
2634                 {
2635                         if (p >= loadmodel->brushq1.num_compressedpvs)
2636                                 Con_Print("Mod_Q1BSP_LoadLeafs: invalid visofs\n");
2637                         else
2638                                 Mod_Q1BSP_DecompressVis(loadmodel->brushq1.data_compressedpvs + p, loadmodel->brushq1.data_compressedpvs + loadmodel->brushq1.num_compressedpvs, loadmodel->brush.data_pvsclusters + out->clusterindex * loadmodel->brush.num_pvsclusterbytes, loadmodel->brush.data_pvsclusters + (out->clusterindex + 1) * loadmodel->brush.num_pvsclusterbytes);
2639                 }
2640
2641                 for (j = 0;j < 4;j++)
2642                         out->ambient_sound_level[j] = in->ambient_level[j];
2643
2644                 // FIXME: Insert caustics here
2645         }
2646 }
2647
2648 qboolean Mod_Q1BSP_CheckWaterAlphaSupport(void)
2649 {
2650         int i, j;
2651         mleaf_t *leaf;
2652         const unsigned char *pvs;
2653         // if there's no vis data, assume supported (because everything is visible all the time)
2654         if (!loadmodel->brush.data_pvsclusters)
2655                 return true;
2656         // check all liquid leafs to see if they can see into empty leafs, if any
2657         // can we can assume this map supports r_wateralpha
2658         for (i = 0, leaf = loadmodel->brush.data_leafs;i < loadmodel->brush.num_leafs;i++, leaf++)
2659         {
2660                 if ((leaf->contents == CONTENTS_WATER || leaf->contents == CONTENTS_SLIME) && leaf->clusterindex >= 0)
2661                 {
2662                         pvs = loadmodel->brush.data_pvsclusters + leaf->clusterindex * loadmodel->brush.num_pvsclusterbytes;
2663                         for (j = 0;j < loadmodel->brush.num_leafs;j++)
2664                                 if (CHECKPVSBIT(pvs, loadmodel->brush.data_leafs[j].clusterindex) && loadmodel->brush.data_leafs[j].contents == CONTENTS_EMPTY)
2665                                         return true;
2666                 }
2667         }
2668         return false;
2669 }
2670
2671 static void Mod_Q1BSP_LoadClipnodes(lump_t *l, hullinfo_t *hullinfo)
2672 {
2673         dclipnode_t *in;
2674         mclipnode_t *out;
2675         int                     i, count;
2676         hull_t          *hull;
2677
2678         in = (dclipnode_t *)(mod_base + l->fileofs);
2679         if (l->filelen % sizeof(*in))
2680                 Host_Error("Mod_Q1BSP_LoadClipnodes: funny lump size in %s",loadmodel->name);
2681         count = l->filelen / sizeof(*in);
2682         out = (mclipnode_t *)Mem_Alloc(loadmodel->mempool, count*sizeof(*out));
2683
2684         loadmodel->brushq1.clipnodes = out;
2685         loadmodel->brushq1.numclipnodes = count;
2686
2687         for (i = 1; i < MAX_MAP_HULLS; i++)
2688         {
2689                 hull = &loadmodel->brushq1.hulls[i];
2690                 hull->clipnodes = out;
2691                 hull->firstclipnode = 0;
2692                 hull->lastclipnode = count-1;
2693                 hull->planes = loadmodel->brush.data_planes;
2694                 hull->clip_mins[0] = hullinfo->hullsizes[i][0][0];
2695                 hull->clip_mins[1] = hullinfo->hullsizes[i][0][1];
2696                 hull->clip_mins[2] = hullinfo->hullsizes[i][0][2];
2697                 hull->clip_maxs[0] = hullinfo->hullsizes[i][1][0];
2698                 hull->clip_maxs[1] = hullinfo->hullsizes[i][1][1];
2699                 hull->clip_maxs[2] = hullinfo->hullsizes[i][1][2];
2700                 VectorSubtract(hull->clip_maxs, hull->clip_mins, hull->clip_size);
2701         }
2702
2703         for (i=0 ; i<count ; i++, out++, in++)
2704         {
2705                 out->planenum = LittleLong(in->planenum);
2706                 // LordHavoc: this code supports arguire qbsp's broken clipnodes indices (more than 32768 clipnodes), values above count are assumed to be contents values
2707                 out->children[0] = (unsigned short)LittleShort(in->children[0]);
2708                 out->children[1] = (unsigned short)LittleShort(in->children[1]);
2709                 if (out->children[0] >= count)
2710                         out->children[0] -= 65536;
2711                 if (out->children[1] >= count)
2712                         out->children[1] -= 65536;
2713                 if (out->planenum < 0 || out->planenum >= loadmodel->brush.num_planes)
2714                         Host_Error("Corrupt clipping hull(out of range planenum)");
2715         }
2716 }
2717
2718 //Duplicate the drawing hull structure as a clipping hull
2719 static void Mod_Q1BSP_MakeHull0(void)
2720 {
2721         mnode_t         *in;
2722         mclipnode_t *out;
2723         int                     i;
2724         hull_t          *hull;
2725
2726         hull = &loadmodel->brushq1.hulls[0];
2727
2728         in = loadmodel->brush.data_nodes;
2729         out = (mclipnode_t *)Mem_Alloc(loadmodel->mempool, loadmodel->brush.num_nodes * sizeof(*out));
2730
2731         hull->clipnodes = out;
2732         hull->firstclipnode = 0;
2733         hull->lastclipnode = loadmodel->brush.num_nodes - 1;
2734         hull->planes = loadmodel->brush.data_planes;
2735
2736         for (i = 0;i < loadmodel->brush.num_nodes;i++, out++, in++)
2737         {
2738                 out->planenum = in->plane - loadmodel->brush.data_planes;
2739                 out->children[0] = in->children[0]->plane ? in->children[0] - loadmodel->brush.data_nodes : ((mleaf_t *)in->children[0])->contents;
2740                 out->children[1] = in->children[1]->plane ? in->children[1] - loadmodel->brush.data_nodes : ((mleaf_t *)in->children[1])->contents;
2741         }
2742 }
2743
2744 static void Mod_Q1BSP_LoadLeaffaces(lump_t *l)
2745 {
2746         int i, j;
2747         short *in;
2748
2749         in = (short *)(mod_base + l->fileofs);
2750         if (l->filelen % sizeof(*in))
2751                 Host_Error("Mod_Q1BSP_LoadLeaffaces: funny lump size in %s",loadmodel->name);
2752         loadmodel->brush.num_leafsurfaces = l->filelen / sizeof(*in);
2753         loadmodel->brush.data_leafsurfaces = (int *)Mem_Alloc(loadmodel->mempool, loadmodel->brush.num_leafsurfaces * sizeof(int));
2754
2755         for (i = 0;i < loadmodel->brush.num_leafsurfaces;i++)
2756         {
2757                 j = (unsigned short) LittleShort(in[i]);
2758                 if (j >= loadmodel->num_surfaces)
2759                         Host_Error("Mod_Q1BSP_LoadLeaffaces: bad surface number");
2760                 loadmodel->brush.data_leafsurfaces[i] = j;
2761         }
2762 }
2763
2764 static void Mod_Q1BSP_LoadSurfedges(lump_t *l)
2765 {
2766         int             i;
2767         int             *in;
2768
2769         in = (int *)(mod_base + l->fileofs);
2770         if (l->filelen % sizeof(*in))
2771                 Host_Error("Mod_Q1BSP_LoadSurfedges: funny lump size in %s",loadmodel->name);
2772         loadmodel->brushq1.numsurfedges = l->filelen / sizeof(*in);
2773         loadmodel->brushq1.surfedges = (int *)Mem_Alloc(loadmodel->mempool, loadmodel->brushq1.numsurfedges * sizeof(int));
2774
2775         for (i = 0;i < loadmodel->brushq1.numsurfedges;i++)
2776                 loadmodel->brushq1.surfedges[i] = LittleLong(in[i]);
2777 }
2778
2779
2780 static void Mod_Q1BSP_LoadPlanes(lump_t *l)
2781 {
2782         int                     i;
2783         mplane_t        *out;
2784         dplane_t        *in;
2785
2786         in = (dplane_t *)(mod_base + l->fileofs);
2787         if (l->filelen % sizeof(*in))
2788                 Host_Error("Mod_Q1BSP_LoadPlanes: funny lump size in %s", loadmodel->name);
2789
2790         loadmodel->brush.num_planes = l->filelen / sizeof(*in);
2791         loadmodel->brush.data_planes = out = (mplane_t *)Mem_Alloc(loadmodel->mempool, loadmodel->brush.num_planes * sizeof(*out));
2792
2793         for (i = 0;i < loadmodel->brush.num_planes;i++, in++, out++)
2794         {
2795                 out->normal[0] = LittleFloat(in->normal[0]);
2796                 out->normal[1] = LittleFloat(in->normal[1]);
2797                 out->normal[2] = LittleFloat(in->normal[2]);
2798                 out->dist = LittleFloat(in->dist);
2799
2800                 PlaneClassify(out);
2801         }
2802 }
2803
2804 static void Mod_Q1BSP_LoadMapBrushes(void)
2805 {
2806 #if 0
2807 // unfinished
2808         int submodel, numbrushes;
2809         qboolean firstbrush;
2810         char *text, *maptext;
2811         char mapfilename[MAX_QPATH];
2812         FS_StripExtension (loadmodel->name, mapfilename, sizeof (mapfilename));
2813         strlcat (mapfilename, ".map", sizeof (mapfilename));
2814         maptext = (unsigned char*) FS_LoadFile(mapfilename, tempmempool, false, NULL);
2815         if (!maptext)
2816                 return;
2817         text = maptext;
2818         if (!COM_ParseToken_Simple(&data, false, false))
2819                 return; // error
2820         submodel = 0;
2821         for (;;)
2822         {
2823                 if (!COM_ParseToken_Simple(&data, false, false))
2824                         break;
2825                 if (com_token[0] != '{')
2826                         return; // error
2827                 // entity
2828                 firstbrush = true;
2829                 numbrushes = 0;
2830                 maxbrushes = 256;
2831                 brushes = Mem_Alloc(loadmodel->mempool, maxbrushes * sizeof(mbrush_t));
2832                 for (;;)
2833                 {
2834                         if (!COM_ParseToken_Simple(&data, false, false))
2835                                 return; // error
2836                         if (com_token[0] == '}')
2837                                 break; // end of entity
2838                         if (com_token[0] == '{')
2839                         {
2840                                 // brush
2841                                 if (firstbrush)
2842                                 {
2843                                         if (submodel)
2844                                         {
2845                                                 if (submodel > loadmodel->brush.numsubmodels)
2846                                                 {
2847                                                         Con_Printf("Mod_Q1BSP_LoadMapBrushes: .map has more submodels than .bsp!\n");
2848                                                         model = NULL;
2849                                                 }
2850                                                 else
2851                                                         model = loadmodel->brush.submodels[submodel];
2852                                         }
2853                                         else
2854                                                 model = loadmodel;
2855                                 }
2856                                 for (;;)
2857                                 {
2858                                         if (!COM_ParseToken_Simple(&data, false, false))
2859                                                 return; // error
2860                                         if (com_token[0] == '}')
2861                                                 break; // end of brush
2862                                         // each brush face should be this format:
2863                                         // ( x y z ) ( x y z ) ( x y z ) texture scroll_s scroll_t rotateangle scale_s scale_t
2864                                         // FIXME: support hl .map format
2865                                         for (pointnum = 0;pointnum < 3;pointnum++)
2866                                         {
2867                                                 COM_ParseToken_Simple(&data, false, false);
2868                                                 for (componentnum = 0;componentnum < 3;componentnum++)
2869                                                 {
2870                                                         COM_ParseToken_Simple(&data, false, false);
2871                                                         point[pointnum][componentnum] = atof(com_token);
2872                                                 }
2873                                                 COM_ParseToken_Simple(&data, false, false);
2874                                         }
2875                                         COM_ParseToken_Simple(&data, false, false);
2876                                         strlcpy(facetexture, com_token, sizeof(facetexture));
2877                                         COM_ParseToken_Simple(&data, false, false);
2878                                         //scroll_s = atof(com_token);
2879                                         COM_ParseToken_Simple(&data, false, false);
2880                                         //scroll_t = atof(com_token);
2881                                         COM_ParseToken_Simple(&data, false, false);
2882                                         //rotate = atof(com_token);
2883                                         COM_ParseToken_Simple(&data, false, false);
2884                                         //scale_s = atof(com_token);
2885                                         COM_ParseToken_Simple(&data, false, false);
2886                                         //scale_t = atof(com_token);
2887                                         TriangleNormal(point[0], point[1], point[2], planenormal);
2888                                         VectorNormalizeDouble(planenormal);
2889                                         planedist = DotProduct(point[0], planenormal);
2890                                         //ChooseTexturePlane(planenormal, texturevector[0], texturevector[1]);
2891                                 }
2892                                 continue;
2893                         }
2894                 }
2895         }
2896 #endif
2897 }
2898
2899
2900 #define MAX_PORTALPOINTS 64
2901
2902 typedef struct portal_s
2903 {
2904         mplane_t plane;
2905         mnode_t *nodes[2];              // [0] = front side of plane
2906         struct portal_s *next[2];
2907         int numpoints;
2908         double points[3*MAX_PORTALPOINTS];
2909         struct portal_s *chain; // all portals are linked into a list
2910 }
2911 portal_t;
2912
2913 static portal_t *portalchain;
2914
2915 /*
2916 ===========
2917 AllocPortal
2918 ===========
2919 */
2920 static portal_t *AllocPortal(void)
2921 {
2922         portal_t *p;
2923         p = (portal_t *)Mem_Alloc(loadmodel->mempool, sizeof(portal_t));
2924         p->chain = portalchain;
2925         portalchain = p;
2926         return p;
2927 }
2928
2929 static void FreePortal(portal_t *p)
2930 {
2931         Mem_Free(p);
2932 }
2933
2934 static void Mod_Q1BSP_RecursiveRecalcNodeBBox(mnode_t *node)
2935 {
2936         // process only nodes (leafs already had their box calculated)
2937         if (!node->plane)
2938                 return;
2939
2940         // calculate children first
2941         Mod_Q1BSP_RecursiveRecalcNodeBBox(node->children[0]);
2942         Mod_Q1BSP_RecursiveRecalcNodeBBox(node->children[1]);
2943
2944         // make combined bounding box from children
2945         node->mins[0] = min(node->children[0]->mins[0], node->children[1]->mins[0]);
2946         node->mins[1] = min(node->children[0]->mins[1], node->children[1]->mins[1]);
2947         node->mins[2] = min(node->children[0]->mins[2], node->children[1]->mins[2]);
2948         node->maxs[0] = max(node->children[0]->maxs[0], node->children[1]->maxs[0]);
2949         node->maxs[1] = max(node->children[0]->maxs[1], node->children[1]->maxs[1]);
2950         node->maxs[2] = max(node->children[0]->maxs[2], node->children[1]->maxs[2]);
2951 }
2952
2953 static void Mod_Q1BSP_FinalizePortals(void)
2954 {
2955         int i, j, numportals, numpoints;
2956         portal_t *p, *pnext;
2957         mportal_t *portal;
2958         mvertex_t *point;
2959         mleaf_t *leaf, *endleaf;
2960
2961         // tally up portal and point counts and recalculate bounding boxes for all
2962         // leafs (because qbsp is very sloppy)
2963         leaf = loadmodel->brush.data_leafs;
2964         endleaf = leaf + loadmodel->brush.num_leafs;
2965         for (;leaf < endleaf;leaf++)
2966         {
2967                 VectorSet(leaf->mins,  2000000000,  2000000000,  2000000000);
2968                 VectorSet(leaf->maxs, -2000000000, -2000000000, -2000000000);
2969         }
2970         p = portalchain;
2971         numportals = 0;
2972         numpoints = 0;
2973         while (p)
2974         {
2975                 // note: this check must match the one below or it will usually corrupt memory
2976                 // the nodes[0] != nodes[1] check is because leaf 0 is the shared solid leaf, it can have many portals inside with leaf 0 on both sides
2977                 if (p->numpoints >= 3 && p->nodes[0] != p->nodes[1] && ((mleaf_t *)p->nodes[0])->clusterindex >= 0 && ((mleaf_t *)p->nodes[1])->clusterindex >= 0)
2978                 {
2979                         numportals += 2;
2980                         numpoints += p->numpoints * 2;
2981                 }
2982                 p = p->chain;
2983         }
2984         loadmodel->brush.data_portals = (mportal_t *)Mem_Alloc(loadmodel->mempool, numportals * sizeof(mportal_t) + numpoints * sizeof(mvertex_t));
2985         loadmodel->brush.num_portals = numportals;
2986         loadmodel->brush.data_portalpoints = (mvertex_t *)((unsigned char *) loadmodel->brush.data_portals + numportals * sizeof(mportal_t));
2987         loadmodel->brush.num_portalpoints = numpoints;
2988         // clear all leaf portal chains
2989         for (i = 0;i < loadmodel->brush.num_leafs;i++)
2990                 loadmodel->brush.data_leafs[i].portals = NULL;
2991         // process all portals in the global portal chain, while freeing them
2992         portal = loadmodel->brush.data_portals;
2993         point = loadmodel->brush.data_portalpoints;
2994         p = portalchain;
2995         portalchain = NULL;
2996         while (p)
2997         {
2998                 pnext = p->chain;
2999
3000                 if (p->numpoints >= 3 && p->nodes[0] != p->nodes[1])
3001                 {
3002                         // note: this check must match the one above or it will usually corrupt memory
3003                         // the nodes[0] != nodes[1] check is because leaf 0 is the shared solid leaf, it can have many portals inside with leaf 0 on both sides
3004                         if (((mleaf_t *)p->nodes[0])->clusterindex >= 0 && ((mleaf_t *)p->nodes[1])->clusterindex >= 0)
3005                         {
3006                                 // first make the back to front portal(forward portal)
3007                                 portal->points = point;
3008                                 portal->numpoints = p->numpoints;
3009                                 portal->plane.dist = p->plane.dist;
3010                                 VectorCopy(p->plane.normal, portal->plane.normal);
3011                                 portal->here = (mleaf_t *)p->nodes[1];
3012                                 portal->past = (mleaf_t *)p->nodes[0];
3013                                 // copy points
3014                                 for (j = 0;j < portal->numpoints;j++)
3015                                 {
3016                                         VectorCopy(p->points + j*3, point->position);
3017                                         point++;
3018                                 }
3019                                 BoxFromPoints(portal->mins, portal->maxs, portal->numpoints, portal->points->position);
3020                                 PlaneClassify(&portal->plane);
3021
3022                                 // link into leaf's portal chain
3023                                 portal->next = portal->here->portals;
3024                                 portal->here->portals = portal;
3025
3026                                 // advance to next portal
3027                                 portal++;
3028
3029                                 // then make the front to back portal(backward portal)
3030                                 portal->points = point;
3031                                 portal->numpoints = p->numpoints;
3032                                 portal->plane.dist = -p->plane.dist;
3033                                 VectorNegate(p->plane.normal, portal->plane.normal);
3034                                 portal->here = (mleaf_t *)p->nodes[0];
3035                                 portal->past = (mleaf_t *)p->nodes[1];
3036                                 // copy points
3037                                 for (j = portal->numpoints - 1;j >= 0;j--)
3038                                 {
3039                                         VectorCopy(p->points + j*3, point->position);
3040                                         point++;
3041                                 }
3042                                 BoxFromPoints(portal->mins, portal->maxs, portal->numpoints, portal->points->position);
3043                                 PlaneClassify(&portal->plane);
3044
3045                                 // link into leaf's portal chain
3046                                 portal->next = portal->here->portals;
3047                                 portal->here->portals = portal;
3048
3049                                 // advance to next portal
3050                                 portal++;
3051                         }
3052                         // add the portal's polygon points to the leaf bounding boxes
3053                         for (i = 0;i < 2;i++)
3054                         {
3055                                 leaf = (mleaf_t *)p->nodes[i];
3056                                 for (j = 0;j < p->numpoints;j++)
3057                                 {
3058                                         if (leaf->mins[0] > p->points[j*3+0]) leaf->mins[0] = p->points[j*3+0];
3059                                         if (leaf->mins[1] > p->points[j*3+1]) leaf->mins[1] = p->points[j*3+1];
3060                                         if (leaf->mins[2] > p->points[j*3+2]) leaf->mins[2] = p->points[j*3+2];
3061                                         if (leaf->maxs[0] < p->points[j*3+0]) leaf->maxs[0] = p->points[j*3+0];
3062                                         if (leaf->maxs[1] < p->points[j*3+1]) leaf->maxs[1] = p->points[j*3+1];
3063                                         if (leaf->maxs[2] < p->points[j*3+2]) leaf->maxs[2] = p->points[j*3+2];
3064                                 }
3065                         }
3066                 }
3067                 FreePortal(p);
3068                 p = pnext;
3069         }
3070         // now recalculate the node bounding boxes from the leafs
3071         Mod_Q1BSP_RecursiveRecalcNodeBBox(loadmodel->brush.data_nodes);
3072 }
3073
3074 /*
3075 =============
3076 AddPortalToNodes
3077 =============
3078 */
3079 static void AddPortalToNodes(portal_t *p, mnode_t *front, mnode_t *back)
3080 {
3081         if (!front)
3082                 Host_Error("AddPortalToNodes: NULL front node");
3083         if (!back)
3084                 Host_Error("AddPortalToNodes: NULL back node");
3085         if (p->nodes[0] || p->nodes[1])
3086                 Host_Error("AddPortalToNodes: already included");
3087         // note: front == back is handled gracefully, because leaf 0 is the shared solid leaf, it can often have portals with the same leaf on both sides
3088
3089         p->nodes[0] = front;
3090         p->next[0] = (portal_t *)front->portals;
3091         front->portals = (mportal_t *)p;
3092
3093         p->nodes[1] = back;
3094         p->next[1] = (portal_t *)back->portals;
3095         back->portals = (mportal_t *)p;
3096 }
3097
3098 /*
3099 =============
3100 RemovePortalFromNode
3101 =============
3102 */
3103 static void RemovePortalFromNodes(portal_t *portal)
3104 {
3105         int i;
3106         mnode_t *node;
3107         void **portalpointer;
3108         portal_t *t;
3109         for (i = 0;i < 2;i++)
3110         {
3111                 node = portal->nodes[i];
3112
3113                 portalpointer = (void **) &node->portals;
3114                 while (1)
3115                 {
3116                         t = (portal_t *)*portalpointer;
3117                         if (!t)
3118                                 Host_Error("RemovePortalFromNodes: portal not in leaf");
3119
3120                         if (t == portal)
3121                         {
3122                                 if (portal->nodes[0] == node)
3123                                 {
3124                                         *portalpointer = portal->next[0];
3125                                         portal->nodes[0] = NULL;
3126                                 }
3127                                 else if (portal->nodes[1] == node)
3128                                 {
3129                                         *portalpointer = portal->next[1];
3130                                         portal->nodes[1] = NULL;
3131                                 }
3132                                 else
3133                                         Host_Error("RemovePortalFromNodes: portal not bounding leaf");
3134                                 break;
3135                         }
3136
3137                         if (t->nodes[0] == node)
3138                                 portalpointer = (void **) &t->next[0];
3139                         else if (t->nodes[1] == node)
3140                                 portalpointer = (void **) &t->next[1];
3141                         else
3142                                 Host_Error("RemovePortalFromNodes: portal not bounding leaf");
3143                 }
3144         }
3145 }
3146
3147 #define PORTAL_DIST_EPSILON (1.0 / 32.0)
3148 static void Mod_Q1BSP_RecursiveNodePortals(mnode_t *node)
3149 {
3150         int i, side;
3151         mnode_t *front, *back, *other_node;
3152         mplane_t clipplane, *plane;
3153         portal_t *portal, *nextportal, *nodeportal, *splitportal, *temp;
3154         int numfrontpoints, numbackpoints;
3155         double frontpoints[3*MAX_PORTALPOINTS], backpoints[3*MAX_PORTALPOINTS];
3156
3157         // if a leaf, we're done
3158         if (!node->plane)
3159                 return;
3160
3161         plane = node->plane;
3162
3163         front = node->children[0];
3164         back = node->children[1];
3165         if (front == back)
3166                 Host_Error("Mod_Q1BSP_RecursiveNodePortals: corrupt node hierarchy");
3167
3168         // create the new portal by generating a polygon for the node plane,
3169         // and clipping it by all of the other portals(which came from nodes above this one)
3170         nodeportal = AllocPortal();
3171         nodeportal->plane = *plane;
3172
3173         // TODO: calculate node bounding boxes during recursion and calculate a maximum plane size accordingly to improve precision (as most maps do not need 1 billion unit plane polygons)
3174         PolygonD_QuadForPlane(nodeportal->points, nodeportal->plane.normal[0], nodeportal->plane.normal[1], nodeportal->plane.normal[2], nodeportal->plane.dist, 1024.0*1024.0*1024.0);
3175         nodeportal->numpoints = 4;
3176         side = 0;       // shut up compiler warning
3177         for (portal = (portal_t *)node->portals;portal;portal = portal->next[side])
3178         {
3179                 clipplane = portal->plane;
3180                 if (portal->nodes[0] == portal->nodes[1])
3181                         Host_Error("Mod_Q1BSP_RecursiveNodePortals: portal has same node on both sides(1)");
3182                 if (portal->nodes[0] == node)
3183                         side = 0;
3184                 else if (portal->nodes[1] == node)
3185                 {
3186                         clipplane.dist = -clipplane.dist;
3187                         VectorNegate(clipplane.normal, clipplane.normal);
3188                         side = 1;
3189                 }
3190                 else
3191                         Host_Error("Mod_Q1BSP_RecursiveNodePortals: mislinked portal");
3192
3193                 for (i = 0;i < nodeportal->numpoints*3;i++)
3194                         frontpoints[i] = nodeportal->points[i];
3195                 PolygonD_Divide(nodeportal->numpoints, frontpoints, clipplane.normal[0], clipplane.normal[1], clipplane.normal[2], clipplane.dist, PORTAL_DIST_EPSILON, MAX_PORTALPOINTS, nodeportal->points, &nodeportal->numpoints, 0, NULL, NULL, NULL);
3196                 if (nodeportal->numpoints <= 0 || nodeportal->numpoints >= MAX_PORTALPOINTS)
3197                         break;
3198         }
3199
3200         if (nodeportal->numpoints < 3)
3201         {
3202                 Con_Print("Mod_Q1BSP_RecursiveNodePortals: WARNING: new portal was clipped away\n");
3203                 nodeportal->numpoints = 0;
3204         }
3205         else if (nodeportal->numpoints >= MAX_PORTALPOINTS)
3206         {
3207                 Con_Print("Mod_Q1BSP_RecursiveNodePortals: WARNING: new portal has too many points\n");
3208                 nodeportal->numpoints = 0;
3209         }
3210
3211         AddPortalToNodes(nodeportal, front, back);
3212
3213         // split the portals of this node along this node's plane and assign them to the children of this node
3214         // (migrating the portals downward through the tree)
3215         for (portal = (portal_t *)node->portals;portal;portal = nextportal)
3216         {
3217                 if (portal->nodes[0] == portal->nodes[1])
3218                         Host_Error("Mod_Q1BSP_RecursiveNodePortals: portal has same node on both sides(2)");
3219                 if (portal->nodes[0] == node)
3220                         side = 0;
3221                 else if (portal->nodes[1] == node)
3222                         side = 1;
3223                 else
3224                         Host_Error("Mod_Q1BSP_RecursiveNodePortals: mislinked portal");
3225                 nextportal = portal->next[side];
3226                 if (!portal->numpoints)
3227                         continue;
3228
3229                 other_node = portal->nodes[!side];
3230                 RemovePortalFromNodes(portal);
3231
3232                 // cut the portal into two portals, one on each side of the node plane
3233                 PolygonD_Divide(portal->numpoints, portal->points, plane->normal[0], plane->normal[1], plane->normal[2], plane->dist, PORTAL_DIST_EPSILON, MAX_PORTALPOINTS, frontpoints, &numfrontpoints, MAX_PORTALPOINTS, backpoints, &numbackpoints, NULL);
3234
3235                 if (!numfrontpoints)
3236                 {
3237                         if (side == 0)
3238                                 AddPortalToNodes(portal, back, other_node);
3239                         else
3240                                 AddPortalToNodes(portal, other_node, back);
3241                         continue;
3242                 }
3243                 if (!numbackpoints)
3244                 {
3245                         if (side == 0)
3246                                 AddPortalToNodes(portal, front, other_node);
3247                         else
3248                                 AddPortalToNodes(portal, other_node, front);
3249                         continue;
3250                 }
3251
3252                 // the portal is split
3253                 splitportal = AllocPortal();
3254                 temp = splitportal->chain;
3255                 *splitportal = *portal;
3256                 splitportal->chain = temp;
3257                 for (i = 0;i < numbackpoints*3;i++)
3258                         splitportal->points[i] = backpoints[i];
3259                 splitportal->numpoints = numbackpoints;
3260                 for (i = 0;i < numfrontpoints*3;i++)
3261                         portal->points[i] = frontpoints[i];
3262                 portal->numpoints = numfrontpoints;
3263
3264                 if (side == 0)
3265                 {
3266                         AddPortalToNodes(portal, front, other_node);
3267                         AddPortalToNodes(splitportal, back, other_node);
3268                 }
3269                 else
3270                 {
3271                         AddPortalToNodes(portal, other_node, front);
3272                         AddPortalToNodes(splitportal, other_node, back);
3273                 }
3274         }
3275
3276         Mod_Q1BSP_RecursiveNodePortals(front);
3277         Mod_Q1BSP_RecursiveNodePortals(back);
3278 }
3279
3280 static void Mod_Q1BSP_MakePortals(void)
3281 {
3282         portalchain = NULL;
3283         Mod_Q1BSP_RecursiveNodePortals(loadmodel->brush.data_nodes);
3284         Mod_Q1BSP_FinalizePortals();
3285 }
3286
3287 //Returns PVS data for a given point
3288 //(note: can return NULL)
3289 static unsigned char *Mod_Q1BSP_GetPVS(dp_model_t *model, const vec3_t p)
3290 {
3291         mnode_t *node;
3292         node = model->brush.data_nodes;
3293         while (node->plane)
3294                 node = node->children[(node->plane->type < 3 ? p[node->plane->type] : DotProduct(p,node->plane->normal)) < node->plane->dist];
3295         if (((mleaf_t *)node)->clusterindex >= 0)
3296                 return model->brush.data_pvsclusters + ((mleaf_t *)node)->clusterindex * model->brush.num_pvsclusterbytes;
3297         else
3298                 return NULL;
3299 }
3300
3301 static void Mod_Q1BSP_FatPVS_RecursiveBSPNode(dp_model_t *model, const vec3_t org, vec_t radius, unsigned char *pvsbuffer, int pvsbytes, mnode_t *node)
3302 {
3303         while (node->plane)
3304         {
3305                 float d = PlaneDiff(org, node->plane);
3306                 if (d > radius)
3307                         node = node->children[0];
3308                 else if (d < -radius)
3309                         node = node->children[1];
3310                 else
3311                 {
3312                         // go down both sides
3313                         Mod_Q1BSP_FatPVS_RecursiveBSPNode(model, org, radius, pvsbuffer, pvsbytes, node->children[0]);
3314                         node = node->children[1];
3315                 }
3316         }
3317         // if this leaf is in a cluster, accumulate the pvs bits
3318         if (((mleaf_t *)node)->clusterindex >= 0)
3319         {
3320                 int i;
3321                 unsigned char *pvs = model->brush.data_pvsclusters + ((mleaf_t *)node)->clusterindex * model->brush.num_pvsclusterbytes;
3322                 for (i = 0;i < pvsbytes;i++)
3323                         pvsbuffer[i] |= pvs[i];
3324         }
3325 }
3326
3327 //Calculates a PVS that is the inclusive or of all leafs within radius pixels
3328 //of the given point.
3329 static int Mod_Q1BSP_FatPVS(dp_model_t *model, const vec3_t org, vec_t radius, unsigned char *pvsbuffer, int pvsbufferlength, qboolean merge)
3330 {
3331         int bytes = model->brush.num_pvsclusterbytes;
3332         bytes = min(bytes, pvsbufferlength);
3333         if (r_novis.integer || !model->brush.num_pvsclusters || !Mod_Q1BSP_GetPVS(model, org))
3334         {
3335                 memset(pvsbuffer, 0xFF, bytes);
3336                 return bytes;
3337         }
3338         if (!merge)
3339                 memset(pvsbuffer, 0, bytes);
3340         Mod_Q1BSP_FatPVS_RecursiveBSPNode(model, org, radius, pvsbuffer, bytes, model->brush.data_nodes);
3341         return bytes;
3342 }
3343
3344 static void Mod_Q1BSP_RoundUpToHullSize(dp_model_t *cmodel, const vec3_t inmins, const vec3_t inmaxs, vec3_t outmins, vec3_t outmaxs)
3345 {
3346         vec3_t size;
3347         const hull_t *hull;
3348
3349         VectorSubtract(inmaxs, inmins, size);
3350         if (cmodel->brush.ishlbsp)
3351         {
3352                 if (size[0] < 3)
3353                         hull = &cmodel->brushq1.hulls[0]; // 0x0x0
3354                 else if (size[0] <= 32)
3355                 {
3356                         if (size[2] < 54) // pick the nearest of 36 or 72
3357                                 hull = &cmodel->brushq1.hulls[3]; // 32x32x36
3358                         else
3359                                 hull = &cmodel->brushq1.hulls[1]; // 32x32x72
3360                 }
3361                 else
3362                         hull = &cmodel->brushq1.hulls[2]; // 64x64x64
3363         }
3364         else
3365         {
3366                 if (size[0] < 3)
3367                         hull = &cmodel->brushq1.hulls[0]; // 0x0x0
3368                 else if (size[0] <= 32)
3369                         hull = &cmodel->brushq1.hulls[1]; // 32x32x56
3370                 else
3371                         hull = &cmodel->brushq1.hulls[2]; // 64x64x88
3372         }
3373         VectorCopy(inmins, outmins);
3374         VectorAdd(inmins, hull->clip_size, outmaxs);
3375 }
3376
3377 void Mod_Q1BSP_Load(dp_model_t *mod, void *buffer, void *bufferend)
3378 {
3379         int i, j, k;
3380         dheader_t *header;
3381         dmodel_t *bm;
3382         mempool_t *mainmempool;
3383         float dist, modelyawradius, modelradius, *vec;
3384         msurface_t *surface;
3385         int numshadowmeshtriangles;
3386         hullinfo_t hullinfo;
3387         int totalstylesurfaces, totalstyles, stylecounts[256], remapstyles[256];
3388         model_brush_lightstyleinfo_t styleinfo[256];
3389         unsigned char *datapointer;
3390
3391         mod->modeldatatypestring = "Q1BSP";
3392
3393         mod->type = mod_brushq1;
3394
3395         header = (dheader_t *)buffer;
3396
3397         i = LittleLong(header->version);
3398         if (i != BSPVERSION && i != 30)
3399                 Host_Error("Mod_Q1BSP_Load: %s has wrong version number(%i should be %i(Quake) or 30(HalfLife)", mod->name, i, BSPVERSION);
3400         mod->brush.ishlbsp = i == 30;
3401
3402 // fill in hull info
3403         VectorClear (hullinfo.hullsizes[0][0]);
3404         VectorClear (hullinfo.hullsizes[0][1]);
3405         if (mod->brush.ishlbsp)
3406         {
3407                 mod->modeldatatypestring = "HLBSP";
3408
3409                 hullinfo.filehulls = 4;
3410                 VectorSet (hullinfo.hullsizes[1][0], -16, -16, -36);
3411                 VectorSet (hullinfo.hullsizes[1][1], 16, 16, 36);
3412                 VectorSet (hullinfo.hullsizes[2][0], -32, -32, -32);
3413                 VectorSet (hullinfo.hullsizes[2][1], 32, 32, 32);
3414                 VectorSet (hullinfo.hullsizes[3][0], -16, -16, -18);
3415                 VectorSet (hullinfo.hullsizes[3][1], 16, 16, 18);
3416         }
3417         else
3418         {
3419                 hullinfo.filehulls = 4;
3420                 VectorSet (hullinfo.hullsizes[1][0], -16, -16, -24);
3421                 VectorSet (hullinfo.hullsizes[1][1], 16, 16, 32);
3422                 VectorSet (hullinfo.hullsizes[2][0], -32, -32, -24);
3423                 VectorSet (hullinfo.hullsizes[2][1], 32, 32, 64);
3424         }
3425
3426 // read lumps
3427         mod_base = (unsigned char*)buffer;
3428         for (i = 0; i < HEADER_LUMPS; i++)
3429         {
3430                 header->lumps[i].fileofs = LittleLong(header->lumps[i].fileofs);
3431                 header->lumps[i].filelen = LittleLong(header->lumps[i].filelen);
3432         }
3433
3434         mod->soundfromcenter = true;
3435         mod->TraceBox = Mod_Q1BSP_TraceBox;
3436         mod->PointSuperContents = Mod_Q1BSP_PointSuperContents;
3437         mod->brush.TraceLineOfSight = Mod_Q1BSP_TraceLineOfSight;
3438         mod->brush.SuperContentsFromNativeContents = Mod_Q1BSP_SuperContentsFromNativeContents;
3439         mod->brush.NativeContentsFromSuperContents = Mod_Q1BSP_NativeContentsFromSuperContents;
3440         mod->brush.GetPVS = Mod_Q1BSP_GetPVS;
3441         mod->brush.FatPVS = Mod_Q1BSP_FatPVS;
3442         mod->brush.BoxTouchingPVS = Mod_Q1BSP_BoxTouchingPVS;
3443         mod->brush.BoxTouchingLeafPVS = Mod_Q1BSP_BoxTouchingLeafPVS;
3444         mod->brush.BoxTouchingVisibleLeafs = Mod_Q1BSP_BoxTouchingVisibleLeafs;
3445         mod->brush.FindBoxClusters = Mod_Q1BSP_FindBoxClusters;
3446         mod->brush.LightPoint = Mod_Q1BSP_LightPoint;
3447         mod->brush.FindNonSolidLocation = Mod_Q1BSP_FindNonSolidLocation;
3448         mod->brush.AmbientSoundLevelsForPoint = Mod_Q1BSP_AmbientSoundLevelsForPoint;
3449         mod->brush.RoundUpToHullSize = Mod_Q1BSP_RoundUpToHullSize;
3450         mod->brush.PointInLeaf = Mod_Q1BSP_PointInLeaf;
3451
3452         if (loadmodel->isworldmodel)
3453                 Cvar_SetValue("halflifebsp", mod->brush.ishlbsp);
3454
3455 // load into heap
3456
3457         mod->brush.qw_md4sum = 0;
3458         mod->brush.qw_md4sum2 = 0;
3459         for (i = 0;i < HEADER_LUMPS;i++)
3460         {
3461                 if (i == LUMP_ENTITIES)
3462                         continue;
3463                 mod->brush.qw_md4sum ^= LittleLong(Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen));
3464                 if (i == LUMP_VISIBILITY || i == LUMP_LEAFS || i == LUMP_NODES)
3465                         continue;
3466                 mod->brush.qw_md4sum2 ^= LittleLong(Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen));
3467         }
3468
3469         Mod_Q1BSP_LoadEntities(&header->lumps[LUMP_ENTITIES]);
3470         Mod_Q1BSP_LoadVertexes(&header->lumps[LUMP_VERTEXES]);
3471         Mod_Q1BSP_LoadEdges(&header->lumps[LUMP_EDGES]);
3472         Mod_Q1BSP_LoadSurfedges(&header->lumps[LUMP_SURFEDGES]);
3473         Mod_Q1BSP_LoadTextures(&header->lumps[LUMP_TEXTURES]);
3474         Mod_Q1BSP_LoadLighting(&header->lumps[LUMP_LIGHTING]);
3475         Mod_Q1BSP_LoadPlanes(&header->lumps[LUMP_PLANES]);
3476         Mod_Q1BSP_LoadTexinfo(&header->lumps[LUMP_TEXINFO]);
3477         Mod_Q1BSP_LoadFaces(&header->lumps[LUMP_FACES]);
3478         Mod_Q1BSP_LoadLeaffaces(&header->lumps[LUMP_MARKSURFACES]);
3479         Mod_Q1BSP_LoadVisibility(&header->lumps[LUMP_VISIBILITY]);
3480         // load submodels before leafs because they contain the number of vis leafs
3481         Mod_Q1BSP_LoadSubmodels(&header->lumps[LUMP_MODELS], &hullinfo);
3482         Mod_Q1BSP_LoadLeafs(&header->lumps[LUMP_LEAFS]);
3483         Mod_Q1BSP_LoadNodes(&header->lumps[LUMP_NODES]);
3484         Mod_Q1BSP_LoadClipnodes(&header->lumps[LUMP_CLIPNODES], &hullinfo);
3485
3486         // check if the map supports transparent water rendering
3487         loadmodel->brush.supportwateralpha = Mod_Q1BSP_CheckWaterAlphaSupport();
3488
3489         if (mod->brushq1.data_compressedpvs)
3490                 Mem_Free(mod->brushq1.data_compressedpvs);
3491         mod->brushq1.data_compressedpvs = NULL;
3492         mod->brushq1.num_compressedpvs = 0;
3493
3494         Mod_Q1BSP_MakeHull0();
3495         Mod_Q1BSP_MakePortals();
3496
3497         mod->numframes = 2;             // regular and alternate animation
3498         mod->numskins = 1;
3499
3500         mainmempool = mod->mempool;
3501
3502         // make a single combined shadow mesh to allow optimized shadow volume creation
3503         numshadowmeshtriangles = 0;
3504         for (j = 0, surface = loadmodel->data_surfaces;j < loadmodel->num_surfaces;j++, surface++)
3505         {
3506                 surface->num_firstshadowmeshtriangle = numshadowmeshtriangles;
3507                 numshadowmeshtriangles += surface->num_triangles;
3508         }
3509         loadmodel->brush.shadowmesh = Mod_ShadowMesh_Begin(loadmodel->mempool, numshadowmeshtriangles * 3, numshadowmeshtriangles, NULL, NULL, NULL, false, false, true);
3510         for (j = 0, surface = loadmodel->data_surfaces;j < loadmodel->num_surfaces;j++, surface++)
3511                 Mod_ShadowMesh_AddMesh(loadmodel->mempool, loadmodel->brush.shadowmesh, NULL, NULL, NULL, loadmodel->surfmesh.data_vertex3f, NULL, NULL, NULL, NULL, surface->num_triangles, (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle));
3512         loadmodel->brush.shadowmesh = Mod_ShadowMesh_Finish(loadmodel->mempool, loadmodel->brush.shadowmesh, false, true, false);
3513         Mod_BuildTriangleNeighbors(loadmodel->brush.shadowmesh->neighbor3i, loadmodel->brush.shadowmesh->element3i, loadmodel->brush.shadowmesh->numtriangles);
3514
3515         if (loadmodel->brush.numsubmodels)
3516                 loadmodel->brush.submodels = (dp_model_t **)Mem_Alloc(loadmodel->mempool, loadmodel->brush.numsubmodels * sizeof(dp_model_t *));
3517
3518         // LordHavoc: to clear the fog around the original quake submodel code, I
3519         // will explain:
3520         // first of all, some background info on the submodels:
3521         // model 0 is the map model (the world, named maps/e1m1.bsp for example)
3522         // model 1 and higher are submodels (doors and the like, named *1, *2, etc)
3523         // now the weird for loop itself:
3524         // the loop functions in an odd way, on each iteration it sets up the
3525         // current 'mod' model (which despite the confusing code IS the model of
3526         // the number i), at the end of the loop it duplicates the model to become
3527         // the next submodel, and loops back to set up the new submodel.
3528
3529         // LordHavoc: now the explanation of my sane way (which works identically):
3530         // set up the world model, then on each submodel copy from the world model
3531         // and set up the submodel with the respective model info.
3532         totalstylesurfaces = 0;
3533         totalstyles = 0;
3534         for (i = 0;i < mod->brush.numsubmodels;i++)
3535         {
3536                 memset(stylecounts, 0, sizeof(stylecounts));
3537                 for (k = 0;k < mod->brushq1.submodels[i].numfaces;k++)
3538                 {
3539                         surface = mod->data_surfaces + mod->brushq1.submodels[i].firstface + k;
3540                         for (j = 0;j < MAXLIGHTMAPS;j++)
3541                                 stylecounts[surface->lightmapinfo->styles[j]]++;
3542                 }
3543                 for (k = 0;k < 255;k++)
3544                 {
3545                         totalstyles++;
3546                         if (stylecounts[k])
3547                                 totalstylesurfaces += stylecounts[k];
3548                 }
3549         }
3550         datapointer = (unsigned char *)Mem_Alloc(mod->mempool, mod->num_surfaces * sizeof(int) + totalstyles * sizeof(model_brush_lightstyleinfo_t) + totalstylesurfaces * sizeof(int *));
3551         for (i = 0;i < mod->brush.numsubmodels;i++)
3552         {
3553                 // LordHavoc: this code was originally at the end of this loop, but
3554                 // has been transformed to something more readable at the start here.
3555
3556                 if (i > 0)
3557                 {
3558                         char name[10];
3559                         // LordHavoc: only register submodels if it is the world
3560                         // (prevents external bsp models from replacing world submodels with
3561                         //  their own)
3562                         if (!loadmodel->isworldmodel)
3563                                 continue;
3564                         // duplicate the basic information
3565                         dpsnprintf(name, sizeof(name), "*%i", i);
3566                         mod = Mod_FindName(name);
3567                         // copy the base model to this one
3568                         *mod = *loadmodel;
3569                         // rename the clone back to its proper name
3570                         strlcpy(mod->name, name, sizeof(mod->name));
3571                         // textures and memory belong to the main model
3572                         mod->texturepool = NULL;
3573                         mod->mempool = NULL;
3574                 }
3575
3576                 mod->brush.submodel = i;
3577
3578                 if (loadmodel->brush.submodels)
3579                         loadmodel->brush.submodels[i] = mod;
3580
3581                 bm = &mod->brushq1.submodels[i];
3582
3583                 mod->brushq1.hulls[0].firstclipnode = bm->headnode[0];
3584                 for (j=1 ; j<MAX_MAP_HULLS ; j++)
3585                 {
3586                         mod->brushq1.hulls[j].firstclipnode = bm->headnode[j];
3587                         mod->brushq1.hulls[j].lastclipnode = mod->brushq1.numclipnodes - 1;
3588                 }
3589
3590                 mod->firstmodelsurface = bm->firstface;
3591                 mod->nummodelsurfaces = bm->numfaces;
3592
3593                 // make the model surface list (used by shadowing/lighting)
3594                 mod->surfacelist = (int *)datapointer;datapointer += mod->nummodelsurfaces * sizeof(int);
3595                 for (j = 0;j < mod->nummodelsurfaces;j++)
3596                         mod->surfacelist[j] = mod->firstmodelsurface + j;
3597
3598                 // this gets altered below if sky or water is used
3599                 mod->DrawSky = NULL;
3600                 mod->DrawAddWaterPlanes = NULL;
3601                 mod->Draw = R_Q1BSP_Draw;
3602                 mod->DrawDepth = R_Q1BSP_DrawDepth;
3603                 mod->DrawDebug = R_Q1BSP_DrawDebug;
3604                 mod->GetLightInfo = R_Q1BSP_GetLightInfo;
3605                 mod->CompileShadowVolume = R_Q1BSP_CompileShadowVolume;
3606                 mod->DrawShadowVolume = R_Q1BSP_DrawShadowVolume;
3607                 mod->DrawLight = R_Q1BSP_DrawLight;
3608                 if (i != 0)
3609                 {
3610                         mod->brush.TraceLineOfSight = NULL;
3611                         mod->brush.GetPVS = NULL;
3612                         mod->brush.FatPVS = NULL;
3613                         mod->brush.BoxTouchingPVS = NULL;
3614                         mod->brush.BoxTouchingLeafPVS = NULL;
3615                         mod->brush.BoxTouchingVisibleLeafs = NULL;
3616                         mod->brush.FindBoxClusters = NULL;
3617                         mod->brush.LightPoint = NULL;
3618                         mod->brush.AmbientSoundLevelsForPoint = NULL;
3619                 }
3620                 // copy the submodel bounds, then enlarge the yaw and rotated bounds according to radius
3621                 VectorCopy(bm->mins, mod->normalmins);
3622                 VectorCopy(bm->maxs, mod->normalmaxs);
3623                 VectorCopy(bm->mins, mod->yawmins);
3624                 VectorCopy(bm->maxs, mod->yawmaxs);
3625                 VectorCopy(bm->mins, mod->rotatedmins);
3626                 VectorCopy(bm->maxs, mod->rotatedmaxs);
3627                 if (mod->nummodelsurfaces)
3628                 {
3629                         modelyawradius = 0;
3630                         modelradius = 0;
3631                         for (j = 0, surface = &mod->data_surfaces[mod->firstmodelsurface];j < mod->nummodelsurfaces;j++, surface++)
3632                         {
3633                                 // we only need to have a drawsky function if it is used(usually only on world model)
3634                                 if (surface->texture->basematerialflags & MATERIALFLAG_SKY)
3635                                         mod->DrawSky = R_Q1BSP_DrawSky;
3636                                 if (surface->texture->basematerialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION))
3637                                         mod->DrawAddWaterPlanes = R_Q1BSP_DrawAddWaterPlanes;
3638                                 // calculate bounding shapes
3639                                 for (k = 0, vec = (loadmodel->surfmesh.data_vertex3f + 3 * surface->num_firstvertex);k < surface->num_vertices;k++, vec += 3)
3640                                 {
3641                                         dist = vec[0]*vec[0]+vec[1]*vec[1];
3642                                         if (modelyawradius < dist)
3643                                                 modelyawradius = dist;
3644                                         dist += vec[2]*vec[2];
3645                                         if (modelradius < dist)
3646                                                 modelradius = dist;
3647                                 }
3648                         }
3649                         modelyawradius = sqrt(modelyawradius);
3650                         modelradius = sqrt(modelradius);
3651                         mod->yawmins[0] = min(mod->yawmins[0], -modelyawradius);
3652                         mod->yawmaxs[0] = min(mod->yawmaxs[0], -modelyawradius);
3653                         mod->yawmins[1] = min(mod->yawmins[1],  modelyawradius);
3654                         mod->yawmaxs[1] = min(mod->yawmaxs[1],  modelyawradius);
3655                         mod->rotatedmins[0] = min(mod->rotatedmins[0], -modelradius);
3656                         mod->rotatedmaxs[0] = min(mod->rotatedmaxs[0],  modelradius);
3657                         mod->rotatedmins[1] = min(mod->rotatedmins[1], -modelradius);
3658                         mod->rotatedmaxs[1] = min(mod->rotatedmaxs[1],  modelradius);
3659                         mod->rotatedmins[2] = min(mod->rotatedmins[2], -modelradius);
3660                         mod->rotatedmaxs[2] = min(mod->rotatedmaxs[2],  modelradius);
3661                         mod->radius = modelradius;
3662                         mod->radius2 = modelradius * modelradius;
3663
3664                         // build lightstyle update chains
3665                         // (used to rapidly mark lightmapupdateflags on many surfaces
3666                         // when d_lightstylevalue changes)
3667                         memset(stylecounts, 0, sizeof(stylecounts));
3668                         for (k = 0;k < mod->nummodelsurfaces;k++)
3669                         {
3670                                 surface = mod->data_surfaces + mod->firstmodelsurface + k;
3671                                 for (j = 0;j < MAXLIGHTMAPS;j++)
3672                                         stylecounts[surface->lightmapinfo->styles[j]]++;
3673                         }
3674                         mod->brushq1.num_lightstyles = 0;
3675                         for (k = 0;k < 255;k++)
3676                         {
3677                                 if (stylecounts[k])
3678                                 {
3679                                         styleinfo[mod->brushq1.num_lightstyles].style = k;
3680                                         styleinfo[mod->brushq1.num_lightstyles].value = 0;
3681                                         styleinfo[mod->brushq1.num_lightstyles].numsurfaces = 0;
3682                                         styleinfo[mod->brushq1.num_lightstyles].surfacelist = (int *)datapointer;datapointer += stylecounts[k] * sizeof(int);
3683                                         remapstyles[k] = mod->brushq1.num_lightstyles;
3684                                         mod->brushq1.num_lightstyles++;
3685                                 }
3686                         }
3687                         for (k = 0;k < mod->nummodelsurfaces;k++)
3688                         {
3689                                 surface = mod->data_surfaces + mod->firstmodelsurface + k;
3690                                 for (j = 0;j < MAXLIGHTMAPS;j++)
3691                                 {
3692                                         if (surface->lightmapinfo->styles[j] != 255)
3693                                         {
3694                                                 int r = remapstyles[surface->lightmapinfo->styles[j]];
3695                                                 styleinfo[r].surfacelist[styleinfo[r].numsurfaces++] = mod->firstmodelsurface + k;
3696                                         }
3697                                 }
3698                         }
3699                         mod->brushq1.data_lightstyleinfo = (model_brush_lightstyleinfo_t *)datapointer;datapointer += mod->brushq1.num_lightstyles * sizeof(model_brush_lightstyleinfo_t);
3700                         memcpy(mod->brushq1.data_lightstyleinfo, styleinfo, mod->brushq1.num_lightstyles * sizeof(model_brush_lightstyleinfo_t));
3701                 }
3702                 else
3703                 {
3704                         // LordHavoc: empty submodel(lacrima.bsp has such a glitch)
3705                         Con_Printf("warning: empty submodel *%i in %s\n", i+1, loadmodel->name);
3706                 }
3707                 //mod->brushq1.num_visleafs = bm->visleafs;
3708         }
3709
3710         Mod_Q1BSP_LoadMapBrushes();
3711
3712         //Mod_Q1BSP_ProcessLightList();
3713
3714         if (developer.integer >= 10)
3715                 Con_Printf("Some stats for q1bsp model \"%s\": %i faces, %i nodes, %i leafs, %i visleafs, %i visleafportals\n", loadmodel->name, loadmodel->num_surfaces, loadmodel->brush.num_nodes, loadmodel->brush.num_leafs, mod->brush.num_pvsclusters, loadmodel->brush.num_portals);
3716 }
3717
3718 static void Mod_Q2BSP_LoadEntities(lump_t *l)
3719 {
3720 }
3721
3722 static void Mod_Q2BSP_LoadPlanes(lump_t *l)
3723 {
3724 /*
3725         d_t *in;
3726         m_t *out;
3727         int i, count;
3728
3729         in = (void *)(mod_base + l->fileofs);
3730         if (l->filelen % sizeof(*in))
3731                 Host_Error("Mod_Q2BSP_LoadPlanes: funny lump size in %s",loadmodel->name);
3732         count = l->filelen / sizeof(*in);
3733         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3734
3735         loadmodel-> = out;
3736         loadmodel->num = count;
3737
3738         for (i = 0;i < count;i++, in++, out++)
3739         {
3740         }
3741 */
3742 }
3743
3744 static void Mod_Q2BSP_LoadVertices(lump_t *l)
3745 {
3746 /*
3747         d_t *in;
3748         m_t *out;
3749         int i, count;
3750
3751         in = (void *)(mod_base + l->fileofs);
3752         if (l->filelen % sizeof(*in))
3753                 Host_Error("Mod_Q2BSP_LoadVertices: funny lump size in %s",loadmodel->name);
3754         count = l->filelen / sizeof(*in);
3755         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3756
3757         loadmodel-> = out;
3758         loadmodel->num = count;
3759
3760         for (i = 0;i < count;i++, in++, out++)
3761         {
3762         }
3763 */
3764 }
3765
3766 static void Mod_Q2BSP_LoadVisibility(lump_t *l)
3767 {
3768 /*
3769         d_t *in;
3770         m_t *out;
3771         int i, count;
3772
3773         in = (void *)(mod_base + l->fileofs);
3774         if (l->filelen % sizeof(*in))
3775                 Host_Error("Mod_Q2BSP_LoadVisibility: funny lump size in %s",loadmodel->name);
3776         count = l->filelen / sizeof(*in);
3777         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3778
3779         loadmodel-> = out;
3780         loadmodel->num = count;
3781
3782         for (i = 0;i < count;i++, in++, out++)
3783         {
3784         }
3785 */
3786 }
3787
3788 static void Mod_Q2BSP_LoadNodes(lump_t *l)
3789 {
3790 /*
3791         d_t *in;
3792         m_t *out;
3793         int i, count;
3794
3795         in = (void *)(mod_base + l->fileofs);
3796         if (l->filelen % sizeof(*in))
3797                 Host_Error("Mod_Q2BSP_LoadNodes: funny lump size in %s",loadmodel->name);
3798         count = l->filelen / sizeof(*in);
3799         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3800
3801         loadmodel-> = out;
3802         loadmodel->num = count;
3803
3804         for (i = 0;i < count;i++, in++, out++)
3805         {
3806         }
3807 */
3808 }
3809
3810 static void Mod_Q2BSP_LoadTexInfo(lump_t *l)
3811 {
3812 /*
3813         d_t *in;
3814         m_t *out;
3815         int i, count;
3816
3817         in = (void *)(mod_base + l->fileofs);
3818         if (l->filelen % sizeof(*in))
3819                 Host_Error("Mod_Q2BSP_LoadTexInfo: funny lump size in %s",loadmodel->name);
3820         count = l->filelen / sizeof(*in);
3821         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3822
3823         loadmodel-> = out;
3824         loadmodel->num = count;
3825
3826         for (i = 0;i < count;i++, in++, out++)
3827         {
3828         }
3829 */
3830 }
3831
3832 static void Mod_Q2BSP_LoadFaces(lump_t *l)
3833 {
3834 /*
3835         d_t *in;
3836         m_t *out;
3837         int i, count;
3838
3839         in = (void *)(mod_base + l->fileofs);
3840         if (l->filelen % sizeof(*in))
3841                 Host_Error("Mod_Q2BSP_LoadFaces: funny lump size in %s",loadmodel->name);
3842         count = l->filelen / sizeof(*in);
3843         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3844
3845         loadmodel-> = out;
3846         loadmodel->num = count;
3847
3848         for (i = 0;i < count;i++, in++, out++)
3849         {
3850         }
3851 */
3852 }
3853
3854 static void Mod_Q2BSP_LoadLighting(lump_t *l)
3855 {
3856 /*
3857         d_t *in;
3858         m_t *out;
3859         int i, count;
3860
3861         in = (void *)(mod_base + l->fileofs);
3862         if (l->filelen % sizeof(*in))
3863                 Host_Error("Mod_Q2BSP_LoadLighting: funny lump size in %s",loadmodel->name);
3864         count = l->filelen / sizeof(*in);
3865         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3866
3867         loadmodel-> = out;
3868         loadmodel->num = count;
3869
3870         for (i = 0;i < count;i++, in++, out++)
3871         {
3872         }
3873 */
3874 }
3875
3876 static void Mod_Q2BSP_LoadLeafs(lump_t *l)
3877 {
3878 /*
3879         d_t *in;
3880         m_t *out;
3881         int i, count;
3882
3883         in = (void *)(mod_base + l->fileofs);
3884         if (l->filelen % sizeof(*in))
3885                 Host_Error("Mod_Q2BSP_LoadLeafs: funny lump size in %s",loadmodel->name);
3886         count = l->filelen / sizeof(*in);
3887         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3888
3889         loadmodel-> = out;
3890         loadmodel->num = count;
3891
3892         for (i = 0;i < count;i++, in++, out++)
3893         {
3894         }
3895 */
3896 }
3897
3898 static void Mod_Q2BSP_LoadLeafFaces(lump_t *l)
3899 {
3900 /*
3901         d_t *in;
3902         m_t *out;
3903         int i, count;
3904
3905         in = (void *)(mod_base + l->fileofs);
3906         if (l->filelen % sizeof(*in))
3907                 Host_Error("Mod_Q2BSP_LoadLeafFaces: funny lump size in %s",loadmodel->name);
3908         count = l->filelen / sizeof(*in);
3909         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3910
3911         loadmodel-> = out;
3912         loadmodel->num = count;
3913
3914         for (i = 0;i < count;i++, in++, out++)
3915         {
3916         }
3917 */
3918 }
3919
3920 static void Mod_Q2BSP_LoadLeafBrushes(lump_t *l)
3921 {
3922 /*
3923         d_t *in;
3924         m_t *out;
3925         int i, count;
3926
3927         in = (void *)(mod_base + l->fileofs);
3928         if (l->filelen % sizeof(*in))
3929                 Host_Error("Mod_Q2BSP_LoadLeafBrushes: funny lump size in %s",loadmodel->name);
3930         count = l->filelen / sizeof(*in);
3931         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3932
3933         loadmodel-> = out;
3934         loadmodel->num = count;
3935
3936         for (i = 0;i < count;i++, in++, out++)
3937         {
3938         }
3939 */
3940 }
3941
3942 static void Mod_Q2BSP_LoadEdges(lump_t *l)
3943 {
3944 /*
3945         d_t *in;
3946         m_t *out;
3947         int i, count;
3948
3949         in = (void *)(mod_base + l->fileofs);
3950         if (l->filelen % sizeof(*in))
3951                 Host_Error("Mod_Q2BSP_LoadEdges: funny lump size in %s",loadmodel->name);
3952         count = l->filelen / sizeof(*in);
3953         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3954
3955         loadmodel-> = out;
3956         loadmodel->num = count;
3957
3958         for (i = 0;i < count;i++, in++, out++)
3959         {
3960         }
3961 */
3962 }
3963
3964 static void Mod_Q2BSP_LoadSurfEdges(lump_t *l)
3965 {
3966 /*
3967         d_t *in;
3968         m_t *out;
3969         int i, count;
3970
3971         in = (void *)(mod_base + l->fileofs);
3972         if (l->filelen % sizeof(*in))
3973                 Host_Error("Mod_Q2BSP_LoadSurfEdges: funny lump size in %s",loadmodel->name);
3974         count = l->filelen / sizeof(*in);
3975         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3976
3977         loadmodel-> = out;
3978         loadmodel->num = count;
3979
3980         for (i = 0;i < count;i++, in++, out++)
3981         {
3982         }
3983 */
3984 }
3985
3986 static void Mod_Q2BSP_LoadBrushes(lump_t *l)
3987 {
3988 /*
3989         d_t *in;
3990         m_t *out;
3991         int i, count;
3992
3993         in = (void *)(mod_base + l->fileofs);
3994         if (l->filelen % sizeof(*in))
3995                 Host_Error("Mod_Q2BSP_LoadBrushes: funny lump size in %s",loadmodel->name);
3996         count = l->filelen / sizeof(*in);
3997         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
3998
3999         loadmodel-> = out;
4000         loadmodel->num = count;
4001
4002         for (i = 0;i < count;i++, in++, out++)
4003         {
4004         }
4005 */
4006 }
4007
4008 static void Mod_Q2BSP_LoadBrushSides(lump_t *l)
4009 {
4010 /*
4011         d_t *in;
4012         m_t *out;
4013         int i, count;
4014
4015         in = (void *)(mod_base + l->fileofs);
4016         if (l->filelen % sizeof(*in))
4017                 Host_Error("Mod_Q2BSP_LoadBrushSides: funny lump size in %s",loadmodel->name);
4018         count = l->filelen / sizeof(*in);
4019         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4020
4021         loadmodel-> = out;
4022         loadmodel->num = count;
4023
4024         for (i = 0;i < count;i++, in++, out++)
4025         {
4026         }
4027 */
4028 }
4029
4030 static void Mod_Q2BSP_LoadAreas(lump_t *l)
4031 {
4032 /*
4033         d_t *in;
4034         m_t *out;
4035         int i, count;
4036
4037         in = (void *)(mod_base + l->fileofs);
4038         if (l->filelen % sizeof(*in))
4039                 Host_Error("Mod_Q2BSP_LoadAreas: funny lump size in %s",loadmodel->name);
4040         count = l->filelen / sizeof(*in);
4041         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4042
4043         loadmodel-> = out;
4044         loadmodel->num = count;
4045
4046         for (i = 0;i < count;i++, in++, out++)
4047         {
4048         }
4049 */
4050 }
4051
4052 static void Mod_Q2BSP_LoadAreaPortals(lump_t *l)
4053 {
4054 /*
4055         d_t *in;
4056         m_t *out;
4057         int i, count;
4058
4059         in = (void *)(mod_base + l->fileofs);
4060         if (l->filelen % sizeof(*in))
4061                 Host_Error("Mod_Q2BSP_LoadAreaPortals: funny lump size in %s",loadmodel->name);
4062         count = l->filelen / sizeof(*in);
4063         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4064
4065         loadmodel-> = out;
4066         loadmodel->num = count;
4067
4068         for (i = 0;i < count;i++, in++, out++)
4069         {
4070         }
4071 */
4072 }
4073
4074 static void Mod_Q2BSP_LoadModels(lump_t *l)
4075 {
4076 /*
4077         d_t *in;
4078         m_t *out;
4079         int i, count;
4080
4081         in = (void *)(mod_base + l->fileofs);
4082         if (l->filelen % sizeof(*in))
4083                 Host_Error("Mod_Q2BSP_LoadModels: funny lump size in %s",loadmodel->name);
4084         count = l->filelen / sizeof(*in);
4085         out = Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4086
4087         loadmodel-> = out;
4088         loadmodel->num = count;
4089
4090         for (i = 0;i < count;i++, in++, out++)
4091         {
4092         }
4093 */
4094 }
4095
4096 void static Mod_Q2BSP_Load(dp_model_t *mod, void *buffer, void *bufferend)
4097 {
4098         int i;
4099         q2dheader_t *header;
4100
4101         Host_Error("Mod_Q2BSP_Load: not yet implemented");
4102
4103         mod->modeldatatypestring = "Q2BSP";
4104
4105         mod->type = mod_brushq2;
4106
4107         header = (q2dheader_t *)buffer;
4108
4109         i = LittleLong(header->version);
4110         if (i != Q2BSPVERSION)
4111                 Host_Error("Mod_Q2BSP_Load: %s has wrong version number (%i, should be %i)", mod->name, i, Q2BSPVERSION);
4112         mod->brush.ishlbsp = false;
4113         if (loadmodel->isworldmodel)
4114                 Cvar_SetValue("halflifebsp", mod->brush.ishlbsp);
4115
4116         mod_base = (unsigned char *)header;
4117
4118         // swap all the lumps
4119         for (i = 0;i < (int) sizeof(*header) / 4;i++)
4120                 ((int *)header)[i] = LittleLong(((int *)header)[i]);
4121
4122         mod->brush.qw_md4sum = 0;
4123         mod->brush.qw_md4sum2 = 0;
4124         for (i = 0;i < Q2HEADER_LUMPS;i++)
4125         {
4126                 if (i == Q2LUMP_ENTITIES)
4127                         continue;
4128                 mod->brush.qw_md4sum ^= Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen);
4129                 if (i == Q2LUMP_VISIBILITY || i == Q2LUMP_LEAFS || i == Q2LUMP_NODES)
4130                         continue;
4131                 mod->brush.qw_md4sum2 ^= Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen);
4132         }
4133
4134         Mod_Q2BSP_LoadEntities(&header->lumps[Q2LUMP_ENTITIES]);
4135         Mod_Q2BSP_LoadPlanes(&header->lumps[Q2LUMP_PLANES]);
4136         Mod_Q2BSP_LoadVertices(&header->lumps[Q2LUMP_VERTEXES]);
4137         Mod_Q2BSP_LoadVisibility(&header->lumps[Q2LUMP_VISIBILITY]);
4138         Mod_Q2BSP_LoadNodes(&header->lumps[Q2LUMP_NODES]);
4139         Mod_Q2BSP_LoadTexInfo(&header->lumps[Q2LUMP_TEXINFO]);
4140         Mod_Q2BSP_LoadFaces(&header->lumps[Q2LUMP_FACES]);
4141         Mod_Q2BSP_LoadLighting(&header->lumps[Q2LUMP_LIGHTING]);
4142         Mod_Q2BSP_LoadLeafs(&header->lumps[Q2LUMP_LEAFS]);
4143         Mod_Q2BSP_LoadLeafFaces(&header->lumps[Q2LUMP_LEAFFACES]);
4144         Mod_Q2BSP_LoadLeafBrushes(&header->lumps[Q2LUMP_LEAFBRUSHES]);
4145         Mod_Q2BSP_LoadEdges(&header->lumps[Q2LUMP_EDGES]);
4146         Mod_Q2BSP_LoadSurfEdges(&header->lumps[Q2LUMP_SURFEDGES]);
4147         Mod_Q2BSP_LoadBrushes(&header->lumps[Q2LUMP_BRUSHES]);
4148         Mod_Q2BSP_LoadBrushSides(&header->lumps[Q2LUMP_BRUSHSIDES]);
4149         Mod_Q2BSP_LoadAreas(&header->lumps[Q2LUMP_AREAS]);
4150         Mod_Q2BSP_LoadAreaPortals(&header->lumps[Q2LUMP_AREAPORTALS]);
4151         // LordHavoc: must go last because this makes the submodels
4152         Mod_Q2BSP_LoadModels(&header->lumps[Q2LUMP_MODELS]);
4153 }
4154
4155 static int Mod_Q3BSP_SuperContentsFromNativeContents(dp_model_t *model, int nativecontents);
4156 static int Mod_Q3BSP_NativeContentsFromSuperContents(dp_model_t *model, int supercontents);
4157
4158 static void Mod_Q3BSP_LoadEntities(lump_t *l)
4159 {
4160         const char *data;
4161         char key[128], value[MAX_INPUTLINE];
4162         float v[3];
4163         loadmodel->brushq3.num_lightgrid_cellsize[0] = 64;
4164         loadmodel->brushq3.num_lightgrid_cellsize[1] = 64;
4165         loadmodel->brushq3.num_lightgrid_cellsize[2] = 128;
4166         if (!l->filelen)
4167                 return;
4168         loadmodel->brush.entities = (char *)Mem_Alloc(loadmodel->mempool, l->filelen);
4169         memcpy(loadmodel->brush.entities, mod_base + l->fileofs, l->filelen);
4170         data = loadmodel->brush.entities;
4171         // some Q3 maps override the lightgrid_cellsize with a worldspawn key
4172         if (data && COM_ParseToken_Simple(&data, false, false) && com_token[0] == '{')
4173         {
4174                 while (1)
4175                 {
4176                         if (!COM_ParseToken_Simple(&data, false, false))
4177                                 break; // error
4178                         if (com_token[0] == '}')
4179                                 break; // end of worldspawn
4180                         if (com_token[0] == '_')
4181                                 strlcpy(key, com_token + 1, sizeof(key));
4182                         else
4183                                 strlcpy(key, com_token, sizeof(key));
4184                         while (key[strlen(key)-1] == ' ') // remove trailing spaces
4185                                 key[strlen(key)-1] = 0;
4186                         if (!COM_ParseToken_Simple(&data, false, false))
4187                                 break; // error
4188                         strlcpy(value, com_token, sizeof(value));
4189                         if (!strcmp("gridsize", key))
4190                         {
4191 #if _MSC_VER >= 1400
4192 #define sscanf sscanf_s
4193 #endif
4194                                 if (sscanf(value, "%f %f %f", &v[0], &v[1], &v[2]) == 3 && v[0] != 0 && v[1] != 0 && v[2] != 0)
4195                                         VectorCopy(v, loadmodel->brushq3.num_lightgrid_cellsize);
4196                         }
4197                 }
4198         }
4199 }
4200
4201 static void Mod_Q3BSP_LoadTextures(lump_t *l)
4202 {
4203         q3dtexture_t *in;
4204         texture_t *out;
4205         int i, count;
4206
4207         in = (q3dtexture_t *)(mod_base + l->fileofs);
4208         if (l->filelen % sizeof(*in))
4209                 Host_Error("Mod_Q3BSP_LoadTextures: funny lump size in %s",loadmodel->name);
4210         count = l->filelen / sizeof(*in);
4211         out = (texture_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4212
4213         loadmodel->data_textures = out;
4214         loadmodel->num_textures = count;
4215         loadmodel->num_texturesperskin = loadmodel->num_textures;
4216
4217         for (i = 0;i < count;i++)
4218         {
4219                 strlcpy (out[i].name, in[i].name, sizeof (out[i].name));
4220                 out[i].surfaceflags = LittleLong(in[i].surfaceflags);
4221                 out[i].supercontents = Mod_Q3BSP_SuperContentsFromNativeContents(loadmodel, LittleLong(in[i].contents));
4222         }
4223
4224         if (cls.state == ca_dedicated)
4225                 return;
4226
4227         for (i = 0;i < count;i++, in++, out++)
4228                 Mod_LoadTextureFromQ3Shader(out, out->name, true, true, TEXF_MIPMAP | TEXF_PRECACHE | (r_picmipworld.integer ? TEXF_PICMIP : 0) | TEXF_COMPRESS);
4229 }
4230
4231 static void Mod_Q3BSP_LoadPlanes(lump_t *l)
4232 {
4233         q3dplane_t *in;
4234         mplane_t *out;
4235         int i, count;
4236
4237         in = (q3dplane_t *)(mod_base + l->fileofs);
4238         if (l->filelen % sizeof(*in))
4239                 Host_Error("Mod_Q3BSP_LoadPlanes: funny lump size in %s",loadmodel->name);
4240         count = l->filelen / sizeof(*in);
4241         out = (mplane_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4242
4243         loadmodel->brush.data_planes = out;
4244         loadmodel->brush.num_planes = count;
4245
4246         for (i = 0;i < count;i++, in++, out++)
4247         {
4248                 out->normal[0] = LittleFloat(in->normal[0]);
4249                 out->normal[1] = LittleFloat(in->normal[1]);
4250                 out->normal[2] = LittleFloat(in->normal[2]);
4251                 out->dist = LittleFloat(in->dist);
4252                 PlaneClassify(out);
4253         }
4254 }
4255
4256 static void Mod_Q3BSP_LoadBrushSides(lump_t *l)
4257 {
4258         q3dbrushside_t *in;
4259         q3mbrushside_t *out;
4260         int i, n, count;
4261
4262         in = (q3dbrushside_t *)(mod_base + l->fileofs);
4263         if (l->filelen % sizeof(*in))
4264                 Host_Error("Mod_Q3BSP_LoadBrushSides: funny lump size in %s",loadmodel->name);
4265         count = l->filelen / sizeof(*in);
4266         out = (q3mbrushside_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4267
4268         loadmodel->brush.data_brushsides = out;
4269         loadmodel->brush.num_brushsides = count;
4270
4271         for (i = 0;i < count;i++, in++, out++)
4272         {
4273                 n = LittleLong(in->planeindex);
4274                 if (n < 0 || n >= loadmodel->brush.num_planes)
4275                         Host_Error("Mod_Q3BSP_LoadBrushSides: invalid planeindex %i (%i planes)", n, loadmodel->brush.num_planes);
4276                 out->plane = loadmodel->brush.data_planes + n;
4277                 n = LittleLong(in->textureindex);
4278                 if (n < 0 || n >= loadmodel->num_textures)
4279                         Host_Error("Mod_Q3BSP_LoadBrushSides: invalid textureindex %i (%i textures)", n, loadmodel->num_textures);
4280                 out->texture = loadmodel->data_textures + n;
4281         }
4282 }
4283
4284 static void Mod_Q3BSP_LoadBrushSides_IG(lump_t *l)
4285 {
4286         q3dbrushside_ig_t *in;
4287         q3mbrushside_t *out;
4288         int i, n, count;
4289
4290         in = (q3dbrushside_ig_t *)(mod_base + l->fileofs);
4291         if (l->filelen % sizeof(*in))
4292                 Host_Error("Mod_Q3BSP_LoadBrushSides: funny lump size in %s",loadmodel->name);
4293         count = l->filelen / sizeof(*in);
4294         out = (q3mbrushside_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4295
4296         loadmodel->brush.data_brushsides = out;
4297         loadmodel->brush.num_brushsides = count;
4298
4299         for (i = 0;i < count;i++, in++, out++)
4300         {
4301                 n = LittleLong(in->planeindex);
4302                 if (n < 0 || n >= loadmodel->brush.num_planes)
4303                         Host_Error("Mod_Q3BSP_LoadBrushSides: invalid planeindex %i (%i planes)", n, loadmodel->brush.num_planes);
4304                 out->plane = loadmodel->brush.data_planes + n;
4305                 n = LittleLong(in->textureindex);
4306                 if (n < 0 || n >= loadmodel->num_textures)
4307                         Host_Error("Mod_Q3BSP_LoadBrushSides: invalid textureindex %i (%i textures)", n, loadmodel->num_textures);
4308                 out->texture = loadmodel->data_textures + n;
4309         }
4310 }
4311
4312 static void Mod_Q3BSP_LoadBrushes(lump_t *l)
4313 {
4314         q3dbrush_t *in;
4315         q3mbrush_t *out;
4316         int i, j, n, c, count, maxplanes;
4317         colplanef_t *planes;
4318
4319         in = (q3dbrush_t *)(mod_base + l->fileofs);
4320         if (l->filelen % sizeof(*in))
4321                 Host_Error("Mod_Q3BSP_LoadBrushes: funny lump size in %s",loadmodel->name);
4322         count = l->filelen / sizeof(*in);
4323         out = (q3mbrush_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4324
4325         loadmodel->brush.data_brushes = out;
4326         loadmodel->brush.num_brushes = count;
4327
4328         maxplanes = 0;
4329         planes = NULL;
4330
4331         for (i = 0;i < count;i++, in++, out++)
4332         {
4333                 n = LittleLong(in->firstbrushside);
4334                 c = LittleLong(in->numbrushsides);
4335                 if (n < 0 || n + c > loadmodel->brush.num_brushsides)
4336                         Host_Error("Mod_Q3BSP_LoadBrushes: invalid brushside range %i : %i (%i brushsides)", n, n + c, loadmodel->brush.num_brushsides);
4337                 out->firstbrushside = loadmodel->brush.data_brushsides + n;
4338                 out->numbrushsides = c;
4339                 n = LittleLong(in->textureindex);
4340                 if (n < 0 || n >= loadmodel->num_textures)
4341                         Host_Error("Mod_Q3BSP_LoadBrushes: invalid textureindex %i (%i textures)", n, loadmodel->num_textures);
4342                 out->texture = loadmodel->data_textures + n;
4343
4344                 // make a list of mplane_t structs to construct a colbrush from
4345                 if (maxplanes < out->numbrushsides)
4346                 {
4347                         maxplanes = out->numbrushsides;
4348                         if (planes)
4349                                 Mem_Free(planes);
4350                         planes = (colplanef_t *)Mem_Alloc(tempmempool, sizeof(colplanef_t) * maxplanes);
4351                 }
4352                 for (j = 0;j < out->numbrushsides;j++)
4353                 {
4354                         VectorCopy(out->firstbrushside[j].plane->normal, planes[j].normal);
4355                         planes[j].dist = out->firstbrushside[j].plane->dist;
4356                         planes[j].q3surfaceflags = out->firstbrushside[j].texture->surfaceflags;
4357                         planes[j].texture = out->firstbrushside[j].texture;
4358                 }
4359                 // make the colbrush from the planes
4360                 out->colbrushf = Collision_NewBrushFromPlanes(loadmodel->mempool, out->numbrushsides, planes, out->texture->supercontents);
4361         }
4362         if (planes)
4363                 Mem_Free(planes);
4364 }
4365
4366 static void Mod_Q3BSP_LoadEffects(lump_t *l)
4367 {
4368         q3deffect_t *in;
4369         q3deffect_t *out;
4370         int i, n, count;
4371
4372         in = (q3deffect_t *)(mod_base + l->fileofs);
4373         if (l->filelen % sizeof(*in))
4374                 Host_Error("Mod_Q3BSP_LoadEffects: funny lump size in %s",loadmodel->name);
4375         count = l->filelen / sizeof(*in);
4376         out = (q3deffect_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4377
4378         loadmodel->brushq3.data_effects = out;
4379         loadmodel->brushq3.num_effects = count;
4380
4381         for (i = 0;i < count;i++, in++, out++)
4382         {
4383                 strlcpy (out->shadername, in->shadername, sizeof (out->shadername));
4384                 n = LittleLong(in->brushindex);
4385                 if (n >= loadmodel->brush.num_brushes)
4386                 {
4387                         Con_Printf("Mod_Q3BSP_LoadEffects: invalid brushindex %i (%i brushes), setting to -1\n", n, loadmodel->brush.num_brushes);
4388                         n = -1;
4389                 }
4390                 out->brushindex = n;
4391                 out->unknown = LittleLong(in->unknown);
4392         }
4393 }
4394
4395 static void Mod_Q3BSP_LoadVertices(lump_t *l)
4396 {
4397         q3dvertex_t *in;
4398         int i, count;
4399
4400         in = (q3dvertex_t *)(mod_base + l->fileofs);
4401         if (l->filelen % sizeof(*in))
4402                 Host_Error("Mod_Q3BSP_LoadVertices: funny lump size in %s",loadmodel->name);
4403         loadmodel->brushq3.num_vertices = count = l->filelen / sizeof(*in);
4404         loadmodel->brushq3.data_vertex3f = (float *)Mem_Alloc(loadmodel->mempool, count * (sizeof(float) * (3 + 3 + 2 + 2 + 4)));
4405         loadmodel->brushq3.data_normal3f = loadmodel->brushq3.data_vertex3f + count * 3;
4406         loadmodel->brushq3.data_texcoordtexture2f = loadmodel->brushq3.data_normal3f + count * 3;
4407         loadmodel->brushq3.data_texcoordlightmap2f = loadmodel->brushq3.data_texcoordtexture2f + count * 2;
4408         loadmodel->brushq3.data_color4f = loadmodel->brushq3.data_texcoordlightmap2f + count * 2;
4409
4410         for (i = 0;i < count;i++, in++)
4411         {
4412                 loadmodel->brushq3.data_vertex3f[i * 3 + 0] = LittleFloat(in->origin3f[0]);
4413                 loadmodel->brushq3.data_vertex3f[i * 3 + 1] = LittleFloat(in->origin3f[1]);
4414                 loadmodel->brushq3.data_vertex3f[i * 3 + 2] = LittleFloat(in->origin3f[2]);
4415                 loadmodel->brushq3.data_normal3f[i * 3 + 0] = LittleFloat(in->normal3f[0]);
4416                 loadmodel->brushq3.data_normal3f[i * 3 + 1] = LittleFloat(in->normal3f[1]);
4417                 loadmodel->brushq3.data_normal3f[i * 3 + 2] = LittleFloat(in->normal3f[2]);
4418                 loadmodel->brushq3.data_texcoordtexture2f[i * 2 + 0] = LittleFloat(in->texcoord2f[0]);
4419                 loadmodel->brushq3.data_texcoordtexture2f[i * 2 + 1] = LittleFloat(in->texcoord2f[1]);
4420                 loadmodel->brushq3.data_texcoordlightmap2f[i * 2 + 0] = LittleFloat(in->lightmap2f[0]);
4421                 loadmodel->brushq3.data_texcoordlightmap2f[i * 2 + 1] = LittleFloat(in->lightmap2f[1]);
4422                 // svector/tvector are calculated later in face loading
4423                 loadmodel->brushq3.data_color4f[i * 4 + 0] = in->color4ub[0] * (1.0f / 255.0f);
4424                 loadmodel->brushq3.data_color4f[i * 4 + 1] = in->color4ub[1] * (1.0f / 255.0f);
4425                 loadmodel->brushq3.data_color4f[i * 4 + 2] = in->color4ub[2] * (1.0f / 255.0f);
4426                 loadmodel->brushq3.data_color4f[i * 4 + 3] = in->color4ub[3] * (1.0f / 255.0f);
4427         }
4428 }
4429
4430 static void Mod_Q3BSP_LoadTriangles(lump_t *l)
4431 {
4432         int *in;
4433         int *out;
4434         int i, count;
4435
4436         in = (int *)(mod_base + l->fileofs);
4437         if (l->filelen % sizeof(int[3]))
4438                 Host_Error("Mod_Q3BSP_LoadTriangles: funny lump size in %s",loadmodel->name);
4439         count = l->filelen / sizeof(*in);
4440         out = (int *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4441
4442         loadmodel->brushq3.num_triangles = count / 3;
4443         loadmodel->brushq3.data_element3i = out;
4444
4445         for (i = 0;i < count;i++, in++, out++)
4446         {
4447                 *out = LittleLong(*in);
4448                 if (*out < 0 || *out >= loadmodel->brushq3.num_vertices)
4449                 {
4450                         Con_Printf("Mod_Q3BSP_LoadTriangles: invalid vertexindex %i (%i vertices), setting to 0\n", *out, loadmodel->brushq3.num_vertices);
4451                         *out = 0;
4452                 }
4453         }
4454 }
4455
4456 static void Mod_Q3BSP_LoadLightmaps(lump_t *l, lump_t *faceslump)
4457 {
4458         q3dlightmap_t *in;
4459         int i, j, k, count, power, power2, mask, endlightmap, mergewidth, mergeheight;
4460         unsigned char *c;
4461         unsigned char convertedpixels[128*128*4];
4462
4463         if (!l->filelen)
4464                 return;
4465         if (cls.state == ca_dedicated)
4466                 return;
4467         in = (q3dlightmap_t *)(mod_base + l->fileofs);
4468         if (l->filelen % sizeof(*in))
4469                 Host_Error("Mod_Q3BSP_LoadLightmaps: funny lump size in %s",loadmodel->name);
4470         count = l->filelen / sizeof(*in);
4471         loadmodel->brushq3.num_originallightmaps = count;
4472
4473         // now check the surfaces to see if any of them index an odd numbered
4474         // lightmap, if so this is not a deluxemapped bsp file
4475         //
4476         // also check what lightmaps are actually used, because q3map2 sometimes
4477         // (always?) makes an unused one at the end, which
4478         // q3map2 sometimes (or always?) makes a second blank lightmap for no
4479         // reason when only one lightmap is used, which can throw off the
4480         // deluxemapping detection method, so check 2-lightmap bsp's specifically
4481         // to see if the second lightmap is blank, if so it is not deluxemapped.
4482         loadmodel->brushq3.deluxemapping = !(count & 1);
4483         loadmodel->brushq3.deluxemapping_modelspace = true;
4484         endlightmap = 0;
4485         if (loadmodel->brushq3.deluxemapping)
4486         {
4487                 int facecount = faceslump->filelen / sizeof(q3dface_t);
4488                 q3dface_t *faces = (q3dface_t *)(mod_base + faceslump->fileofs);
4489                 for (i = 0;i < facecount;i++)
4490                 {
4491                         j = LittleLong(faces[i].lightmapindex);
4492                         if (j >= 0)
4493                         {
4494                                 endlightmap = max(endlightmap, j + 1);
4495                                 if ((j & 1) || j + 1 >= count)
4496                                 {
4497                                         loadmodel->brushq3.deluxemapping = false;
4498                                         break;
4499                                 }
4500                         }
4501                 }
4502         }
4503
4504         // q3map2 sometimes (or always?) makes a second blank lightmap for no
4505         // reason when only one lightmap is used, which can throw off the
4506         // deluxemapping detection method, so check 2-lightmap bsp's specifically
4507         // to see if the second lightmap is blank, if so it is not deluxemapped.
4508         //
4509         // further research has shown q3map2 sometimes creates a deluxemap and two
4510         // blank lightmaps, which must be handled properly as well
4511         if (endlightmap == 1 && count > 1)
4512         {
4513                 c = in[1].rgb;
4514                 for (i = 0;i < 128*128*3;i++)
4515                         if (c[i])
4516                                 break;
4517                 if (i == 128*128*3)
4518                 {
4519                         // all pixels in the unused lightmap were black...
4520                         loadmodel->brushq3.deluxemapping = false;
4521                 }
4522         }
4523
4524         Con_DPrintf("%s is %sdeluxemapped\n", loadmodel->name, loadmodel->brushq3.deluxemapping ? "" : "not ");
4525
4526         // figure out what the most reasonable merge power is within limits
4527         loadmodel->brushq3.num_lightmapmergepower = 0;
4528         for (power = 1;power <= mod_q3bsp_lightmapmergepower.integer && (128 << power) <= gl_max_texture_size && (1 << (power * 2)) < 4 * (count >> loadmodel->brushq3.deluxemapping);power++)
4529                 loadmodel->brushq3.num_lightmapmergepower = power;
4530         loadmodel->brushq3.num_lightmapmerge = 1 << loadmodel->brushq3.num_lightmapmergepower;
4531
4532         loadmodel->brushq3.num_mergedlightmaps = ((count >> loadmodel->brushq3.deluxemapping) + (1 << (loadmodel->brushq3.num_lightmapmergepower * 2)) - 1) >> (loadmodel->brushq3.num_lightmapmergepower * 2);
4533         loadmodel->brushq3.data_lightmaps = (rtexture_t **)Mem_Alloc(loadmodel->mempool, loadmodel->brushq3.num_mergedlightmaps * sizeof(rtexture_t *));
4534         if (loadmodel->brushq3.deluxemapping)
4535                 loadmodel->brushq3.data_deluxemaps = (rtexture_t **)Mem_Alloc(loadmodel->mempool, loadmodel->brushq3.num_mergedlightmaps * sizeof(rtexture_t *));
4536
4537         // allocate a texture pool if we need it
4538         if (loadmodel->texturepool == NULL && cls.state != ca_dedicated)
4539                 loadmodel->texturepool = R_AllocTexturePool();
4540
4541         power = loadmodel->brushq3.num_lightmapmergepower;
4542         power2 = power * 2;
4543         mask = (1 << power) - 1;
4544         for (i = 0;i < count;i++)
4545         {
4546                 // figure out which merged lightmap texture this fits into
4547                 int lightmapindex = i >> (loadmodel->brushq3.deluxemapping + power2);
4548                 for (k = 0;k < 128*128;k++)
4549                 {
4550                         convertedpixels[k*4+2] = in[i].rgb[k*3+0];
4551                         convertedpixels[k*4+1] = in[i].rgb[k*3+1];
4552                         convertedpixels[k*4+0] = in[i].rgb[k*3+2];
4553                         convertedpixels[k*4+3] = 255;
4554                 }
4555                 if (loadmodel->brushq3.num_lightmapmergepower > 0)
4556                 {
4557                         // if the lightmap has not been allocated yet, create it
4558                         if (!loadmodel->brushq3.data_lightmaps[lightmapindex])
4559                         {
4560                                 // create a lightmap only as large as necessary to hold the
4561                                 // remaining 128x128 blocks
4562                                 // if there are multiple merged lightmap textures then they will
4563                                 // all be full size except the last one which may be smaller
4564                                 // because it only needs to the remaining blocks, and it will often
4565                                 // be odd sizes like 2048x512 due to only being 25% full or so.
4566                                 j = (count >> loadmodel->brushq3.deluxemapping) - (lightmapindex << power2);
4567                                 for (mergewidth = 1;mergewidth < j && mergewidth < (1 << power);mergewidth *= 2)
4568                                         ;
4569                                 for (mergeheight = 1;mergewidth*mergeheight < j && mergeheight < (1 << power);mergeheight *= 2)
4570                                         ;
4571                                 if (developer_loading.integer)
4572                                         Con_Printf("lightmap merge texture #%i is %ix%i (%i of %i used)\n", lightmapindex, mergewidth*128, mergeheight*128, min(j, mergewidth*mergeheight), mergewidth*mergeheight);
4573                                 loadmodel->brushq3.data_lightmaps[lightmapindex] = R_LoadTexture2D(loadmodel->texturepool, va("lightmap%04i", lightmapindex), mergewidth * 128, mergeheight * 128, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE | (gl_texturecompression_q3bsplightmaps.integer ? TEXF_COMPRESS : 0), NULL);
4574                                 if (loadmodel->brushq3.data_deluxemaps)
4575                                         loadmodel->brushq3.data_deluxemaps[lightmapindex] = R_LoadTexture2D(loadmodel->texturepool, va("deluxemap%04i", lightmapindex), mergewidth * 128, mergeheight * 128, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE | (gl_texturecompression_q3bspdeluxemaps.integer ? TEXF_COMPRESS : 0), NULL);
4576                         }
4577                         mergewidth = R_TextureWidth(loadmodel->brushq3.data_lightmaps[lightmapindex]) / 128;
4578                         mergeheight = R_TextureHeight(loadmodel->brushq3.data_lightmaps[lightmapindex]) / 128;
4579                         j = (i >> loadmodel->brushq3.deluxemapping) & ((1 << power2) - 1);
4580                         if (loadmodel->brushq3.deluxemapping && (i & 1))
4581                                 R_UpdateTexture(loadmodel->brushq3.data_deluxemaps[lightmapindex], convertedpixels, (j % mergewidth) * 128, (j / mergewidth) * 128, 128, 128);
4582                         else
4583                                 R_UpdateTexture(loadmodel->brushq3.data_lightmaps [lightmapindex], convertedpixels, (j % mergewidth) * 128, (j / mergewidth) * 128, 128, 128);
4584                 }
4585                 else
4586                 {
4587                         // figure out which merged lightmap texture this fits into
4588                         if (loadmodel->brushq3.deluxemapping && (i & 1))
4589                                 loadmodel->brushq3.data_deluxemaps[lightmapindex] = R_LoadTexture2D(loadmodel->texturepool, va("deluxemap%04i", lightmapindex), 128, 128, convertedpixels, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE | (gl_texturecompression_q3bspdeluxemaps.integer ? TEXF_COMPRESS : 0), NULL);
4590                         else
4591                                 loadmodel->brushq3.data_lightmaps [lightmapindex] = R_LoadTexture2D(loadmodel->texturepool, va("lightmap%04i", lightmapindex), 128, 128, convertedpixels, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_PRECACHE | (gl_texturecompression_q3bsplightmaps.integer ? TEXF_COMPRESS : 0), NULL);
4592                 }
4593         }
4594 }
4595
4596 static void Mod_Q3BSP_LoadFaces(lump_t *l)
4597 {
4598         q3dface_t *in, *oldin;
4599         msurface_t *out, *oldout;
4600         int i, oldi, j, n, count, invalidelements, patchsize[2], finalwidth, finalheight, xtess, ytess, finalvertices, finaltriangles, firstvertex, firstelement, type, oldnumtriangles, oldnumtriangles2, meshvertices, meshtriangles, numvertices, numtriangles;
4601         float lightmaptcbase[2], lightmaptcscale[2];
4602         //int *originalelement3i;
4603         //int *originalneighbor3i;
4604         float *originalvertex3f;
4605         //float *originalsvector3f;
4606         //float *originaltvector3f;
4607         float *originalnormal3f;
4608         float *originalcolor4f;
4609         float *originaltexcoordtexture2f;
4610         float *originaltexcoordlightmap2f;
4611         float *v;
4612
4613         in = (q3dface_t *)(mod_base + l->fileofs);
4614         if (l->filelen % sizeof(*in))
4615                 Host_Error("Mod_Q3BSP_LoadFaces: funny lump size in %s",loadmodel->name);
4616         count = l->filelen / sizeof(*in);
4617         out = (msurface_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4618
4619         loadmodel->data_surfaces = out;
4620         loadmodel->num_surfaces = count;
4621
4622         i = 0;
4623         oldi = i;
4624         oldin = in;
4625         oldout = out;
4626         meshvertices = 0;
4627         meshtriangles = 0;
4628         for (;i < count;i++, in++, out++)
4629         {
4630                 // check face type first
4631                 type = LittleLong(in->type);
4632                 if (type != Q3FACETYPE_FLAT
4633                  && type != Q3FACETYPE_PATCH
4634                  && type != Q3FACETYPE_MESH
4635                  && type != Q3FACETYPE_FLARE)
4636                 {
4637                         Con_DPrintf("Mod_Q3BSP_LoadFaces: face #%i: unknown face type %i\n", i, type);
4638                         continue;
4639                 }
4640
4641                 n = LittleLong(in->textureindex);
4642                 if (n < 0 || n >= loadmodel->num_textures)
4643                 {
4644                         Con_DPrintf("Mod_Q3BSP_LoadFaces: face #%i: invalid textureindex %i (%i textures)\n", i, n, loadmodel->num_textures);
4645                         continue;
4646                 }
4647                 out->texture = loadmodel->data_textures + n;
4648                 n = LittleLong(in->effectindex);
4649                 if (n < -1 || n >= loadmodel->brushq3.num_effects)
4650                 {
4651                         if (developer.integer >= 100)
4652                                 Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): invalid effectindex %i (%i effects)\n", i, out->texture->name, n, loadmodel->brushq3.num_effects);
4653                         n = -1;
4654                 }
4655                 if (n == -1)
4656                         out->effect = NULL;
4657                 else
4658                         out->effect = loadmodel->brushq3.data_effects + n;
4659
4660                 if (cls.state != ca_dedicated)
4661                 {
4662                         out->lightmaptexture = NULL;
4663                         out->deluxemaptexture = r_texture_blanknormalmap;
4664                         n = LittleLong(in->lightmapindex);
4665                         if (n < 0)
4666                                 n = -1;
4667                         else if (n >= loadmodel->brushq3.num_originallightmaps)
4668                         {
4669                                 Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): invalid lightmapindex %i (%i lightmaps)\n", i, out->texture->name, n, loadmodel->brushq3.num_originallightmaps);
4670                                 n = -1;
4671                         }
4672                         else
4673                         {
4674                                 out->lightmaptexture = loadmodel->brushq3.data_lightmaps[n >> (loadmodel->brushq3.num_lightmapmergepower * 2 + loadmodel->brushq3.deluxemapping)];
4675                                 if (loadmodel->brushq3.deluxemapping)
4676                                         out->deluxemaptexture = loadmodel->brushq3.data_deluxemaps[n >> (loadmodel->brushq3.num_lightmapmergepower * 2 + loadmodel->brushq3.deluxemapping)];
4677                         }
4678                 }
4679
4680                 firstvertex = LittleLong(in->firstvertex);
4681                 numvertices = LittleLong(in->numvertices);
4682                 firstelement = LittleLong(in->firstelement);
4683                 numtriangles = LittleLong(in->numelements) / 3;
4684                 if (numtriangles * 3 != LittleLong(in->numelements))
4685                 {
4686                         Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): numelements %i is not a multiple of 3\n", i, out->texture->name, LittleLong(in->numelements));
4687                         continue;
4688                 }
4689                 if (firstvertex < 0 || firstvertex + numvertices > loadmodel->brushq3.num_vertices)
4690                 {
4691                         Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): invalid vertex range %i : %i (%i vertices)\n", i, out->texture->name, firstvertex, firstvertex + numvertices, loadmodel->brushq3.num_vertices);
4692                         continue;
4693                 }
4694                 if (firstelement < 0 || firstelement + numtriangles * 3 > loadmodel->brushq3.num_triangles * 3)
4695                 {
4696                         Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): invalid element range %i : %i (%i elements)\n", i, out->texture->name, firstelement, firstelement + numtriangles * 3, loadmodel->brushq3.num_triangles * 3);
4697                         continue;
4698                 }
4699                 switch(type)
4700                 {
4701                 case Q3FACETYPE_FLAT:
4702                 case Q3FACETYPE_MESH:
4703                         // no processing necessary
4704                         break;
4705                 case Q3FACETYPE_PATCH:
4706                         patchsize[0] = LittleLong(in->specific.patch.patchsize[0]);
4707                         patchsize[1] = LittleLong(in->specific.patch.patchsize[1]);
4708                         if (numvertices != (patchsize[0] * patchsize[1]) || patchsize[0] < 3 || patchsize[1] < 3 || !(patchsize[0] & 1) || !(patchsize[1] & 1) || patchsize[0] * patchsize[1] >= min(r_subdivisions_maxvertices.integer, r_subdivisions_collision_maxvertices.integer))
4709                         {
4710                                 Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): invalid patchsize %ix%i\n", i, out->texture->name, patchsize[0], patchsize[1]);
4711                                 continue;
4712                         }
4713                         originalvertex3f = loadmodel->brushq3.data_vertex3f + firstvertex * 3;
4714                         // convert patch to Q3FACETYPE_MESH
4715                         xtess = Q3PatchTesselationOnX(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_tolerance.value);
4716                         ytess = Q3PatchTesselationOnY(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_tolerance.value);
4717                         // bound to user settings
4718                         xtess = bound(r_subdivisions_mintess.integer, xtess, r_subdivisions_maxtess.integer);
4719                         ytess = bound(r_subdivisions_mintess.integer, ytess, r_subdivisions_maxtess.integer);
4720                         // bound to sanity settings
4721                         xtess = bound(1, xtess, 1024);
4722                         ytess = bound(1, ytess, 1024);
4723                         // bound to user limit on vertices
4724                         while ((xtess > 1 || ytess > 1) && (((patchsize[0] - 1) * xtess) + 1) * (((patchsize[1] - 1) * ytess) + 1) > min(r_subdivisions_maxvertices.integer, 262144))
4725                         {
4726                                 if (xtess > ytess)
4727                                         xtess--;
4728                                 else
4729                                         ytess--;
4730                         }
4731                         finalwidth = ((patchsize[0] - 1) * xtess) + 1;
4732                         finalheight = ((patchsize[1] - 1) * ytess) + 1;
4733                         numvertices = finalwidth * finalheight;
4734                         numtriangles = (finalwidth - 1) * (finalheight - 1) * 2;
4735                         break;
4736                 case Q3FACETYPE_FLARE:
4737                         if (developer.integer >= 100)
4738                                 Con_Printf("Mod_Q3BSP_LoadFaces: face #%i (texture \"%s\"): Q3FACETYPE_FLARE not supported (yet)\n", i, out->texture->name);
4739                         // don't render it
4740                         continue;
4741                 }
4742                 out->num_vertices = numvertices;
4743                 out->num_triangles = numtriangles;
4744                 meshvertices += out->num_vertices;
4745                 meshtriangles += out->num_triangles;
4746         }
4747
4748         i = oldi;
4749         in = oldin;
4750         out = oldout;
4751         Mod_AllocSurfMesh(loadmodel->mempool, meshvertices, meshtriangles, false, true, false);
4752         meshvertices = 0;
4753         meshtriangles = 0;
4754         for (;i < count && meshvertices + out->num_vertices <= loadmodel->surfmesh.num_vertices;i++, in++, out++)
4755         {
4756                 if (out->num_vertices < 3 || out->num_triangles < 1)
4757                         continue;
4758
4759                 type = LittleLong(in->type);
4760                 firstvertex = LittleLong(in->firstvertex);
4761                 firstelement = LittleLong(in->firstelement);
4762                 out->num_firstvertex = meshvertices;
4763                 out->num_firsttriangle = meshtriangles;
4764                 switch(type)
4765                 {
4766                 case Q3FACETYPE_FLAT:
4767                 case Q3FACETYPE_MESH:
4768                         // no processing necessary, except for lightmap merging
4769                         for (j = 0;j < out->num_vertices;j++)
4770                         {
4771                                 (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex)[j * 3 + 0] = loadmodel->brushq3.data_vertex3f[(firstvertex + j) * 3 + 0];
4772                                 (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex)[j * 3 + 1] = loadmodel->brushq3.data_vertex3f[(firstvertex + j) * 3 + 1];
4773                                 (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex)[j * 3 + 2] = loadmodel->brushq3.data_vertex3f[(firstvertex + j) * 3 + 2];
4774                                 (loadmodel->surfmesh.data_normal3f + 3 * out->num_firstvertex)[j * 3 + 0] = loadmodel->brushq3.data_normal3f[(firstvertex + j) * 3 + 0];
4775                                 (loadmodel->surfmesh.data_normal3f + 3 * out->num_firstvertex)[j * 3 + 1] = loadmodel->brushq3.data_normal3f[(firstvertex + j) * 3 + 1];
4776                                 (loadmodel->surfmesh.data_normal3f + 3 * out->num_firstvertex)[j * 3 + 2] = loadmodel->brushq3.data_normal3f[(firstvertex + j) * 3 + 2];
4777                                 (loadmodel->surfmesh.data_texcoordtexture2f + 2 * out->num_firstvertex)[j * 2 + 0] = loadmodel->brushq3.data_texcoordtexture2f[(firstvertex + j) * 2 + 0];
4778                                 (loadmodel->surfmesh.data_texcoordtexture2f + 2 * out->num_firstvertex)[j * 2 + 1] = loadmodel->brushq3.data_texcoordtexture2f[(firstvertex + j) * 2 + 1];
4779                                 (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * out->num_firstvertex)[j * 2 + 0] = loadmodel->brushq3.data_texcoordlightmap2f[(firstvertex + j) * 2 + 0];
4780                                 (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * out->num_firstvertex)[j * 2 + 1] = loadmodel->brushq3.data_texcoordlightmap2f[(firstvertex + j) * 2 + 1];
4781                                 (loadmodel->surfmesh.data_lightmapcolor4f + 4 * out->num_firstvertex)[j * 4 + 0] = loadmodel->brushq3.data_color4f[(firstvertex + j) * 4 + 0];
4782                                 (loadmodel->surfmesh.data_lightmapcolor4f + 4 * out->num_firstvertex)[j * 4 + 1] = loadmodel->brushq3.data_color4f[(firstvertex + j) * 4 + 1];
4783                                 (loadmodel->surfmesh.data_lightmapcolor4f + 4 * out->num_firstvertex)[j * 4 + 2] = loadmodel->brushq3.data_color4f[(firstvertex + j) * 4 + 2];
4784                                 (loadmodel->surfmesh.data_lightmapcolor4f + 4 * out->num_firstvertex)[j * 4 + 3] = loadmodel->brushq3.data_color4f[(firstvertex + j) * 4 + 3];
4785                         }
4786                         for (j = 0;j < out->num_triangles*3;j++)
4787                                 (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] = loadmodel->brushq3.data_element3i[firstelement + j] + out->num_firstvertex;
4788                         break;
4789                 case Q3FACETYPE_PATCH:
4790                         patchsize[0] = LittleLong(in->specific.patch.patchsize[0]);
4791                         patchsize[1] = LittleLong(in->specific.patch.patchsize[1]);
4792                         originalvertex3f = loadmodel->brushq3.data_vertex3f + firstvertex * 3;
4793                         originalnormal3f = loadmodel->brushq3.data_normal3f + firstvertex * 3;
4794                         originaltexcoordtexture2f = loadmodel->brushq3.data_texcoordtexture2f + firstvertex * 2;
4795                         originaltexcoordlightmap2f = loadmodel->brushq3.data_texcoordlightmap2f + firstvertex * 2;
4796                         originalcolor4f = loadmodel->brushq3.data_color4f + firstvertex * 4;
4797                         // convert patch to Q3FACETYPE_MESH
4798                         xtess = Q3PatchTesselationOnX(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_tolerance.value);
4799                         ytess = Q3PatchTesselationOnY(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_tolerance.value);
4800                         // bound to user settings
4801                         xtess = bound(r_subdivisions_mintess.integer, xtess, r_subdivisions_maxtess.integer);
4802                         ytess = bound(r_subdivisions_mintess.integer, ytess, r_subdivisions_maxtess.integer);
4803                         // bound to sanity settings
4804                         xtess = bound(1, xtess, 1024);
4805                         ytess = bound(1, ytess, 1024);
4806                         // bound to user limit on vertices
4807                         while ((xtess > 1 || ytess > 1) && (((patchsize[0] - 1) * xtess) + 1) * (((patchsize[1] - 1) * ytess) + 1) > min(r_subdivisions_maxvertices.integer, 262144))
4808                         {
4809                                 if (xtess > ytess)
4810                                         xtess--;
4811                                 else
4812                                         ytess--;
4813                         }
4814                         finalwidth = ((patchsize[0] - 1) * xtess) + 1;
4815                         finalheight = ((patchsize[1] - 1) * ytess) + 1;
4816                         finalvertices = finalwidth * finalheight;
4817                         finaltriangles = (finalwidth - 1) * (finalheight - 1) * 2;
4818                         type = Q3FACETYPE_MESH;
4819                         // generate geometry
4820                         // (note: normals are skipped because they get recalculated)
4821                         Q3PatchTesselateFloat(3, sizeof(float[3]), (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex), patchsize[0], patchsize[1], sizeof(float[3]), originalvertex3f, xtess, ytess);
4822                         Q3PatchTesselateFloat(3, sizeof(float[3]), (loadmodel->surfmesh.data_normal3f + 3 * out->num_firstvertex), patchsize[0], patchsize[1], sizeof(float[3]), originalnormal3f, xtess, ytess);
4823                         Q3PatchTesselateFloat(2, sizeof(float[2]), (loadmodel->surfmesh.data_texcoordtexture2f + 2 * out->num_firstvertex), patchsize[0], patchsize[1], sizeof(float[2]), originaltexcoordtexture2f, xtess, ytess);
4824                         Q3PatchTesselateFloat(2, sizeof(float[2]), (loadmodel->surfmesh.data_texcoordlightmap2f + 2 * out->num_firstvertex), patchsize[0], patchsize[1], sizeof(float[2]), originaltexcoordlightmap2f, xtess, ytess);
4825                         Q3PatchTesselateFloat(4, sizeof(float[4]), (loadmodel->surfmesh.data_lightmapcolor4f + 4 * out->num_firstvertex), patchsize[0], patchsize[1], sizeof(float[4]), originalcolor4f, xtess, ytess);
4826                         Q3PatchTriangleElements((loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle), finalwidth, finalheight, out->num_firstvertex);
4827                         out->num_triangles = Mod_RemoveDegenerateTriangles(out->num_triangles, (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle), (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle), loadmodel->surfmesh.data_vertex3f);
4828                         if (developer.integer >= 100)
4829                         {
4830                                 if (out->num_triangles < finaltriangles)
4831                                         Con_Printf("Mod_Q3BSP_LoadFaces: %ix%i curve subdivided to %i vertices / %i triangles, %i degenerate triangles removed (leaving %i)\n", patchsize[0], patchsize[1], out->num_vertices, finaltriangles, finaltriangles - out->num_triangles, out->num_triangles);
4832                                 else
4833                                         Con_Printf("Mod_Q3BSP_LoadFaces: %ix%i curve subdivided to %i vertices / %i triangles\n", patchsize[0], patchsize[1], out->num_vertices, out->num_triangles);
4834                         }
4835                         // q3map does not put in collision brushes for curves... ugh
4836                         // build the lower quality collision geometry
4837                         xtess = Q3PatchTesselationOnX(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_collision_tolerance.value);
4838                         ytess = Q3PatchTesselationOnY(patchsize[0], patchsize[1], 3, originalvertex3f, r_subdivisions_collision_tolerance.value);
4839                         // bound to user settings
4840                         xtess = bound(r_subdivisions_collision_mintess.integer, xtess, r_subdivisions_collision_maxtess.integer);
4841                         ytess = bound(r_subdivisions_collision_mintess.integer, ytess, r_subdivisions_collision_maxtess.integer);
4842                         // bound to sanity settings
4843                         xtess = bound(1, xtess, 1024);
4844                         ytess = bound(1, ytess, 1024);
4845                         // bound to user limit on vertices
4846                         while ((xtess > 1 || ytess > 1) && (((patchsize[0] - 1) * xtess) + 1) * (((patchsize[1] - 1) * ytess) + 1) > min(r_subdivisions_collision_maxvertices.integer, 262144))
4847                         {
4848                                 if (xtess > ytess)
4849                                         xtess--;
4850                                 else
4851                                         ytess--;
4852                         }
4853                         finalwidth = ((patchsize[0] - 1) * xtess) + 1;
4854                         finalheight = ((patchsize[1] - 1) * ytess) + 1;
4855                         finalvertices = finalwidth * finalheight;
4856                         finaltriangles = (finalwidth - 1) * (finalheight - 1) * 2;
4857
4858                         out->data_collisionvertex3f = (float *)Mem_Alloc(loadmodel->mempool, sizeof(float[3]) * finalvertices);
4859                         out->data_collisionelement3i = (int *)Mem_Alloc(loadmodel->mempool, sizeof(int[3]) * finaltriangles);
4860                         out->num_collisionvertices = finalvertices;
4861                         out->num_collisiontriangles = finaltriangles;
4862                         Q3PatchTesselateFloat(3, sizeof(float[3]), out->data_collisionvertex3f, patchsize[0], patchsize[1], sizeof(float[3]), originalvertex3f, xtess, ytess);
4863                         Q3PatchTriangleElements(out->data_collisionelement3i, finalwidth, finalheight, 0);
4864
4865                         //Mod_SnapVertices(3, out->num_vertices, (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex), 0.25);
4866                         Mod_SnapVertices(3, out->num_collisionvertices, out->data_collisionvertex3f, 1);
4867
4868                         oldnumtriangles = out->num_triangles;
4869                         oldnumtriangles2 = out->num_collisiontriangles;
4870                         out->num_collisiontriangles = Mod_RemoveDegenerateTriangles(out->num_collisiontriangles, out->data_collisionelement3i, out->data_collisionelement3i, out->data_collisionvertex3f);
4871                         if (developer.integer >= 100)
4872                                 Con_Printf("Mod_Q3BSP_LoadFaces: %ix%i curve became %i:%i vertices / %i:%i triangles (%i:%i degenerate)\n", patchsize[0], patchsize[1], out->num_vertices, out->num_collisionvertices, oldnumtriangles, oldnumtriangles2, oldnumtriangles - out->num_triangles, oldnumtriangles2 - out->num_collisiontriangles);
4873                         break;
4874                 default:
4875                         break;
4876                 }
4877                 meshvertices += out->num_vertices;
4878                 meshtriangles += out->num_triangles;
4879                 for (j = 0, invalidelements = 0;j < out->num_triangles * 3;j++)
4880                         if ((loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] < out->num_firstvertex || (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] >= out->num_firstvertex + out->num_vertices)
4881                                 invalidelements++;
4882                 if (invalidelements)
4883                 {
4884                         Con_Printf("Mod_Q3BSP_LoadFaces: Warning: face #%i has %i invalid elements, type = %i, texture->name = \"%s\", texture->surfaceflags = %i, firstvertex = %i, numvertices = %i, firstelement = %i, numelements = %i, elements list:\n", i, invalidelements, type, out->texture->name, out->texture->surfaceflags, firstvertex, out->num_vertices, firstelement, out->num_triangles * 3);
4885                         for (j = 0;j < out->num_triangles * 3;j++)
4886                         {
4887                                 Con_Printf(" %i", (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] - out->num_firstvertex);
4888                                 if ((loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] < out->num_firstvertex || (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] >= out->num_firstvertex + out->num_vertices)
4889                                         (loadmodel->surfmesh.data_element3i + 3 * out->num_firsttriangle)[j] = out->num_firstvertex;
4890                         }
4891                         Con_Print("\n");
4892                 }
4893                 // calculate a bounding box
4894                 VectorClear(out->mins);
4895                 VectorClear(out->maxs);
4896                 if (out->num_vertices)
4897                 {
4898                         if (cls.state != ca_dedicated && out->lightmaptexture)
4899                         {
4900                                 // figure out which part of the merged lightmap this fits into
4901                                 int lightmapindex = LittleLong(in->lightmapindex) >> loadmodel->brushq3.deluxemapping;
4902                                 int mergewidth = R_TextureWidth(out->lightmaptexture) / 128;
4903                                 int mergeheight = R_TextureHeight(out->lightmaptexture) / 128;
4904                                 lightmapindex &= mergewidth * mergeheight - 1;
4905                                 lightmaptcscale[0] = 1.0f / mergewidth;
4906                                 lightmaptcscale[1] = 1.0f / mergeheight;
4907                                 lightmaptcbase[0] = (lightmapindex % mergewidth) * lightmaptcscale[0];
4908                                 lightmaptcbase[1] = (lightmapindex / mergewidth) * lightmaptcscale[1];
4909                                 // modify the lightmap texcoords to match this region of the merged lightmap
4910                                 for (j = 0, v = loadmodel->surfmesh.data_texcoordlightmap2f + 2 * out->num_firstvertex;j < out->num_vertices;j++, v += 2)
4911                                 {
4912                                         v[0] = v[0] * lightmaptcscale[0] + lightmaptcbase[0];
4913                                         v[1] = v[1] * lightmaptcscale[1] + lightmaptcbase[1];
4914                                 }
4915                         }
4916                         VectorCopy((loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex), out->mins);
4917                         VectorCopy((loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex), out->maxs);
4918                         for (j = 1, v = (loadmodel->surfmesh.data_vertex3f + 3 * out->num_firstvertex) + 3;j < out->num_vertices;j++, v += 3)
4919                         {
4920                                 out->mins[0] = min(out->mins[0], v[0]);
4921                                 out->maxs[0] = max(out->maxs[0], v[0]);
4922                                 out->mins[1] = min(out->mins[1], v[1]);
4923                                 out->maxs[1] = max(out->maxs[1], v[1]);
4924                                 out->mins[2] = min(out->mins[2], v[2]);
4925                                 out->maxs[2] = max(out->maxs[2], v[2]);
4926                         }
4927                         out->mins[0] -= 1.0f;
4928                         out->mins[1] -= 1.0f;
4929                         out->mins[2] -= 1.0f;
4930                         out->maxs[0] += 1.0f;
4931                         out->maxs[1] += 1.0f;
4932                         out->maxs[2] += 1.0f;
4933                 }
4934                 // set lightmap styles for consistency with q1bsp
4935                 //out->lightmapinfo->styles[0] = 0;
4936                 //out->lightmapinfo->styles[1] = 255;
4937                 //out->lightmapinfo->styles[2] = 255;
4938                 //out->lightmapinfo->styles[3] = 255;
4939         }
4940
4941         // for per pixel lighting
4942         Mod_BuildTextureVectorsFromNormals(0, loadmodel->surfmesh.num_vertices, loadmodel->surfmesh.num_triangles, loadmodel->surfmesh.data_vertex3f, loadmodel->surfmesh.data_texcoordtexture2f, loadmodel->surfmesh.data_normal3f, loadmodel->surfmesh.data_element3i, loadmodel->surfmesh.data_svector3f, loadmodel->surfmesh.data_tvector3f, true);
4943
4944         // generate ushort elements array if possible
4945         if (loadmodel->surfmesh.data_element3s)
4946                 for (i = 0;i < loadmodel->surfmesh.num_triangles*3;i++)
4947                         loadmodel->surfmesh.data_element3s[i] = loadmodel->surfmesh.data_element3i[i];
4948
4949         // free the no longer needed vertex data
4950         loadmodel->brushq3.num_vertices = 0;
4951         if (loadmodel->brushq3.data_vertex3f)
4952                 Mem_Free(loadmodel->brushq3.data_vertex3f);
4953         loadmodel->brushq3.data_vertex3f = NULL;
4954         loadmodel->brushq3.data_normal3f = NULL;
4955         loadmodel->brushq3.data_texcoordtexture2f = NULL;
4956         loadmodel->brushq3.data_texcoordlightmap2f = NULL;
4957         loadmodel->brushq3.data_color4f = NULL;
4958         // free the no longer needed triangle data
4959         loadmodel->brushq3.num_triangles = 0;
4960         if (loadmodel->brushq3.data_element3i)
4961                 Mem_Free(loadmodel->brushq3.data_element3i);
4962         loadmodel->brushq3.data_element3i = NULL;
4963 }
4964
4965 static void Mod_Q3BSP_LoadModels(lump_t *l)
4966 {
4967         q3dmodel_t *in;
4968         q3dmodel_t *out;
4969         int i, j, n, c, count;
4970
4971         in = (q3dmodel_t *)(mod_base + l->fileofs);
4972         if (l->filelen % sizeof(*in))
4973                 Host_Error("Mod_Q3BSP_LoadModels: funny lump size in %s",loadmodel->name);
4974         count = l->filelen / sizeof(*in);
4975         out = (q3dmodel_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
4976
4977         loadmodel->brushq3.data_models = out;
4978         loadmodel->brushq3.num_models = count;
4979
4980         for (i = 0;i < count;i++, in++, out++)
4981         {
4982                 for (j = 0;j < 3;j++)
4983                 {
4984                         out->mins[j] = LittleFloat(in->mins[j]);
4985                         out->maxs[j] = LittleFloat(in->maxs[j]);
4986                 }
4987                 n = LittleLong(in->firstface);
4988                 c = LittleLong(in->numfaces);
4989                 if (n < 0 || n + c > loadmodel->num_surfaces)
4990                         Host_Error("Mod_Q3BSP_LoadModels: invalid face range %i : %i (%i faces)", n, n + c, loadmodel->num_surfaces);
4991                 out->firstface = n;
4992                 out->numfaces = c;
4993                 n = LittleLong(in->firstbrush);
4994                 c = LittleLong(in->numbrushes);
4995                 if (n < 0 || n + c > loadmodel->brush.num_brushes)
4996                         Host_Error("Mod_Q3BSP_LoadModels: invalid brush range %i : %i (%i brushes)", n, n + c, loadmodel->brush.num_brushes);
4997                 out->firstbrush = n;
4998                 out->numbrushes = c;
4999         }
5000 }
5001
5002 static void Mod_Q3BSP_LoadLeafBrushes(lump_t *l)
5003 {
5004         int *in;
5005         int *out;
5006         int i, n, count;
5007
5008         in = (int *)(mod_base + l->fileofs);
5009         if (l->filelen % sizeof(*in))
5010                 Host_Error("Mod_Q3BSP_LoadLeafBrushes: funny lump size in %s",loadmodel->name);
5011         count = l->filelen / sizeof(*in);
5012         out = (int *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
5013
5014         loadmodel->brush.data_leafbrushes = out;
5015         loadmodel->brush.num_leafbrushes = count;
5016
5017         for (i = 0;i < count;i++, in++, out++)
5018         {
5019                 n = LittleLong(*in);
5020                 if (n < 0 || n >= loadmodel->brush.num_brushes)
5021                         Host_Error("Mod_Q3BSP_LoadLeafBrushes: invalid brush index %i (%i brushes)", n, loadmodel->brush.num_brushes);
5022                 *out = n;
5023         }
5024 }
5025
5026 static void Mod_Q3BSP_LoadLeafFaces(lump_t *l)
5027 {
5028         int *in;
5029         int *out;
5030         int i, n, count;
5031
5032         in = (int *)(mod_base + l->fileofs);
5033         if (l->filelen % sizeof(*in))
5034                 Host_Error("Mod_Q3BSP_LoadLeafFaces: funny lump size in %s",loadmodel->name);
5035         count = l->filelen / sizeof(*in);
5036         out = (int *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
5037
5038         loadmodel->brush.data_leafsurfaces = out;
5039         loadmodel->brush.num_leafsurfaces = count;
5040
5041         for (i = 0;i < count;i++, in++, out++)
5042         {
5043                 n = LittleLong(*in);
5044                 if (n < 0 || n >= loadmodel->num_surfaces)
5045                         Host_Error("Mod_Q3BSP_LoadLeafFaces: invalid face index %i (%i faces)", n, loadmodel->num_surfaces);
5046                 *out = n;
5047         }
5048 }
5049
5050 static void Mod_Q3BSP_LoadLeafs(lump_t *l)
5051 {
5052         q3dleaf_t *in;
5053         mleaf_t *out;
5054         int i, j, n, c, count;
5055
5056         in = (q3dleaf_t *)(mod_base + l->fileofs);
5057         if (l->filelen % sizeof(*in))
5058                 Host_Error("Mod_Q3BSP_LoadLeafs: funny lump size in %s",loadmodel->name);
5059         count = l->filelen / sizeof(*in);
5060         out = (mleaf_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
5061
5062         loadmodel->brush.data_leafs = out;
5063         loadmodel->brush.num_leafs = count;
5064
5065         for (i = 0;i < count;i++, in++, out++)
5066         {
5067                 out->parent = NULL;
5068                 out->plane = NULL;
5069                 out->clusterindex = LittleLong(in->clusterindex);
5070                 out->areaindex = LittleLong(in->areaindex);
5071                 for (j = 0;j < 3;j++)
5072                 {
5073                         // yes the mins/maxs are ints
5074                         out->mins[j] = LittleLong(in->mins[j]) - 1;
5075                         out->maxs[j] = LittleLong(in->maxs[j]) + 1;
5076                 }
5077                 n = LittleLong(in->firstleafface);
5078                 c = LittleLong(in->numleaffaces);
5079                 if (n < 0 || n + c > loadmodel->brush.num_leafsurfaces)
5080                         Host_Error("Mod_Q3BSP_LoadLeafs: invalid leafsurface range %i : %i (%i leafsurfaces)", n, n + c, loadmodel->brush.num_leafsurfaces);
5081                 out->firstleafsurface = loadmodel->brush.data_leafsurfaces + n;
5082                 out->numleafsurfaces = c;
5083                 n = LittleLong(in->firstleafbrush);
5084                 c = LittleLong(in->numleafbrushes);
5085                 if (n < 0 || n + c > loadmodel->brush.num_leafbrushes)
5086                         Host_Error("Mod_Q3BSP_LoadLeafs: invalid leafbrush range %i : %i (%i leafbrushes)", n, n + c, loadmodel->brush.num_leafbrushes);
5087                 out->firstleafbrush = loadmodel->brush.data_leafbrushes + n;
5088                 out->numleafbrushes = c;
5089         }
5090 }
5091
5092 static void Mod_Q3BSP_LoadNodes(lump_t *l)
5093 {
5094         q3dnode_t *in;
5095         mnode_t *out;
5096         int i, j, n, count;
5097
5098         in = (q3dnode_t *)(mod_base + l->fileofs);
5099         if (l->filelen % sizeof(*in))
5100                 Host_Error("Mod_Q3BSP_LoadNodes: funny lump size in %s",loadmodel->name);
5101         count = l->filelen / sizeof(*in);
5102         out = (mnode_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
5103
5104         loadmodel->brush.data_nodes = out;
5105         loadmodel->brush.num_nodes = count;
5106
5107         for (i = 0;i < count;i++, in++, out++)
5108         {
5109                 out->parent = NULL;
5110                 n = LittleLong(in->planeindex);
5111                 if (n < 0 || n >= loadmodel->brush.num_planes)
5112                         Host_Error("Mod_Q3BSP_LoadNodes: invalid planeindex %i (%i planes)", n, loadmodel->brush.num_planes);
5113                 out->plane = loadmodel->brush.data_planes + n;
5114                 for (j = 0;j < 2;j++)
5115                 {
5116                         n = LittleLong(in->childrenindex[j]);
5117                         if (n >= 0)
5118                         {
5119                                 if (n >= loadmodel->brush.num_nodes)
5120                                         Host_Error("Mod_Q3BSP_LoadNodes: invalid child node index %i (%i nodes)", n, loadmodel->brush.num_nodes);
5121                                 out->children[j] = loadmodel->brush.data_nodes + n;
5122                         }
5123                         else
5124                         {
5125                                 n = -1 - n;
5126                                 if (n >= loadmodel->brush.num_leafs)
5127                                         Host_Error("Mod_Q3BSP_LoadNodes: invalid child leaf index %i (%i leafs)", n, loadmodel->brush.num_leafs);
5128                                 out->children[j] = (mnode_t *)(loadmodel->brush.data_leafs + n);
5129                         }
5130                 }
5131                 for (j = 0;j < 3;j++)
5132                 {
5133                         // yes the mins/maxs are ints
5134                         out->mins[j] = LittleLong(in->mins[j]) - 1;
5135                         out->maxs[j] = LittleLong(in->maxs[j]) + 1;
5136                 }
5137         }
5138
5139         // set the parent pointers
5140         Mod_Q1BSP_LoadNodes_RecursiveSetParent(loadmodel->brush.data_nodes, NULL);
5141 }
5142
5143 static void Mod_Q3BSP_LoadLightGrid(lump_t *l)
5144 {
5145         q3dlightgrid_t *in;
5146         q3dlightgrid_t *out;
5147         int count;
5148
5149         in = (q3dlightgrid_t *)(mod_base + l->fileofs);
5150         if (l->filelen % sizeof(*in))
5151                 Host_Error("Mod_Q3BSP_LoadLightGrid: funny lump size in %s",loadmodel->name);
5152         loadmodel->brushq3.num_lightgrid_scale[0] = 1.0f / loadmodel->brushq3.num_lightgrid_cellsize[0];
5153         loadmodel->brushq3.num_lightgrid_scale[1] = 1.0f / loadmodel->brushq3.num_lightgrid_cellsize[1];
5154         loadmodel->brushq3.num_lightgrid_scale[2] = 1.0f / loadmodel->brushq3.num_lightgrid_cellsize[2];
5155         loadmodel->brushq3.num_lightgrid_imins[0] = (int)ceil(loadmodel->brushq3.data_models->mins[0] * loadmodel->brushq3.num_lightgrid_scale[0]);
5156         loadmodel->brushq3.num_lightgrid_imins[1] = (int)ceil(loadmodel->brushq3.data_models->mins[1] * loadmodel->brushq3.num_lightgrid_scale[1]);
5157         loadmodel->brushq3.num_lightgrid_imins[2] = (int)ceil(loadmodel->brushq3.data_models->mins[2] * loadmodel->brushq3.num_lightgrid_scale[2]);
5158         loadmodel->brushq3.num_lightgrid_imaxs[0] = (int)floor(loadmodel->brushq3.data_models->maxs[0] * loadmodel->brushq3.num_lightgrid_scale[0]);
5159         loadmodel->brushq3.num_lightgrid_imaxs[1] = (int)floor(loadmodel->brushq3.data_models->maxs[1] * loadmodel->brushq3.num_lightgrid_scale[1]);
5160         loadmodel->brushq3.num_lightgrid_imaxs[2] = (int)floor(loadmodel->brushq3.data_models->maxs[2] * loadmodel->brushq3.num_lightgrid_scale[2]);
5161         loadmodel->brushq3.num_lightgrid_isize[0] = loadmodel->brushq3.num_lightgrid_imaxs[0] - loadmodel->brushq3.num_lightgrid_imins[0] + 1;
5162         loadmodel->brushq3.num_lightgrid_isize[1] = loadmodel->brushq3.num_lightgrid_imaxs[1] - loadmodel->brushq3.num_lightgrid_imins[1] + 1;
5163         loadmodel->brushq3.num_lightgrid_isize[2] = loadmodel->brushq3.num_lightgrid_imaxs[2] - loadmodel->brushq3.num_lightgrid_imins[2] + 1;
5164         count = loadmodel->brushq3.num_lightgrid_isize[0] * loadmodel->brushq3.num_lightgrid_isize[1] * loadmodel->brushq3.num_lightgrid_isize[2];
5165         Matrix4x4_CreateScale3(&loadmodel->brushq3.num_lightgrid_indexfromworld, loadmodel->brushq3.num_lightgrid_scale[0], loadmodel->brushq3.num_lightgrid_scale[1], loadmodel->brushq3.num_lightgrid_scale[2]);
5166         Matrix4x4_ConcatTranslate(&loadmodel->brushq3.num_lightgrid_indexfromworld, -loadmodel->brushq3.num_lightgrid_imins[0] * loadmodel->brushq3.num_lightgrid_cellsize[0], -loadmodel->brushq3.num_lightgrid_imins[1] * loadmodel->brushq3.num_lightgrid_cellsize[1], -loadmodel->brushq3.num_lightgrid_imins[2] * loadmodel->brushq3.num_lightgrid_cellsize[2]);
5167
5168         // if lump is empty there is nothing to load, we can deal with that in the LightPoint code
5169         if (l->filelen)
5170         {
5171                 if (l->filelen < count * (int)sizeof(*in))
5172                         Host_Error("Mod_Q3BSP_LoadLightGrid: invalid lightgrid lump size %i bytes, should be %i bytes (%ix%ix%i)", l->filelen, (int)(count * sizeof(*in)), loadmodel->brushq3.num_lightgrid_dimensions[0], loadmodel->brushq3.num_lightgrid_dimensions[1], loadmodel->brushq3.num_lightgrid_dimensions[2]);
5173                 if (l->filelen != count * (int)sizeof(*in))
5174                         Con_Printf("Mod_Q3BSP_LoadLightGrid: Warning: calculated lightgrid size %i bytes does not match lump size %i\n", (int)(count * sizeof(*in)), l->filelen);
5175                 out = (q3dlightgrid_t *)Mem_Alloc(loadmodel->mempool, count * sizeof(*out));
5176                 loadmodel->brushq3.data_lightgrid = out;
5177                 loadmodel->brushq3.num_lightgrid = count;
5178                 // no swapping or validation necessary
5179                 memcpy(out, in, count * (int)sizeof(*out));
5180         }
5181 }
5182
5183 static void Mod_Q3BSP_LoadPVS(lump_t *l)
5184 {
5185         q3dpvs_t *in;
5186         int totalchains;
5187
5188         if (l->filelen == 0)
5189         {
5190                 int i;
5191                 // unvised maps often have cluster indices even without pvs, so check
5192                 // leafs to find real number of clusters
5193                 loadmodel->brush.num_pvsclusters = 1;
5194                 for (i = 0;i < loadmodel->brush.num_leafs;i++)
5195                         loadmodel->brush.num_pvsclusters = max(loadmodel->brush.num_pvsclusters, loadmodel->brush.data_leafs[i].clusterindex + 1);
5196
5197                 // create clusters
5198                 loadmodel->brush.num_pvsclusterbytes = (loadmodel->brush.num_pvsclusters + 7) / 8;
5199                 totalchains = loadmodel->brush.num_pvsclusterbytes * loadmodel->brush.num_pvsclusters;
5200                 loadmodel->brush.data_pvsclusters = (unsigned char *)Mem_Alloc(loadmodel->mempool, totalchains);
5201                 memset(loadmodel->brush.data_pvsclusters, 0xFF, totalchains);
5202                 return;
5203         }
5204
5205         in = (q3dpvs_t *)(mod_base + l->fileofs);
5206         if (l->filelen < 9)
5207                 Host_Error("Mod_Q3BSP_LoadPVS: funny lump size in %s",loadmodel->name);
5208
5209         loadmodel->brush.num_pvsclusters = LittleLong(in->numclusters);
5210         loadmodel->brush.num_pvsclusterbytes = LittleLong(in->chainlength);
5211         if (loadmodel->brush.num_pvsclusterbytes < ((loadmodel->brush.num_pvsclusters + 7) / 8))
5212                 Host_Error("Mod_Q3BSP_LoadPVS: (chainlength = %i) < ((numclusters = %i) + 7) / 8", loadmodel->brush.num_pvsclusterbytes, loadmodel->brush.num_pvsclusters);
5213         totalchains = loadmodel->brush.num_pvsclusterbytes * loadmodel->brush.num_pvsclusters;
5214         if (l->filelen < totalchains + (int)sizeof(*in))
5215                 Host_Error("Mod_Q3BSP_LoadPVS: lump too small ((numclusters = %i) * (chainlength = %i) + sizeof(q3dpvs_t) == %i bytes, lump is %i bytes)", loadmodel->brush.num_pvsclusters, loadmodel->brush.num_pvsclusterbytes, (int)(totalchains + sizeof(*in)), l->filelen);
5216
5217         loadmodel->brush.data_pvsclusters = (unsigned char *)Mem_Alloc(loadmodel->mempool, totalchains);
5218         memcpy(loadmodel->brush.data_pvsclusters, (unsigned char *)(in + 1), totalchains);
5219 }
5220
5221 static void Mod_Q3BSP_LightPoint(dp_model_t *model, const vec3_t p, vec3_t ambientcolor, vec3_t diffusecolor, vec3_t diffusenormal)
5222 {
5223         int i, j, k, index[3];
5224         float transformed[3], blend1, blend2, blend, stylescale;
5225         q3dlightgrid_t *a, *s;
5226
5227         // scale lighting by lightstyle[0] so that darkmode in dpmod works properly
5228         stylescale = r_refdef.scene.rtlightstylevalue[0];
5229
5230         if (!model->brushq3.num_lightgrid)
5231         {
5232                 ambientcolor[0] = stylescale;
5233                 ambientcolor[1] = stylescale;
5234                 ambientcolor[2] = stylescale;
5235                 return;
5236         }
5237
5238         Matrix4x4_Transform(&model->brushq3.num_lightgrid_indexfromworld, p, transformed);
5239         //Matrix4x4_Print(&model->brushq3.num_lightgrid_indexfromworld);
5240         //Con_Printf("%f %f %f transformed %f %f %f clamped ", p[0], p[1], p[2], transformed[0], transformed[1], transformed[2]);
5241         transformed[0] = bound(0, transformed[0], model->brushq3.num_lightgrid_isize[0] - 1);
5242         transformed[1] = bound(0, transformed[1], model->brushq3.num_lightgrid_isize[1] - 1);
5243         transformed[2] = bound(0, transformed[2], model->brushq3.num_lightgrid_isize[2] - 1);
5244         index[0] = (int)floor(transformed[0]);
5245         index[1] = (int)floor(transformed[1]);
5246         index[2] = (int)floor(transformed[2]);
5247         //Con_Printf("%f %f %f index %i %i %i:\n", transformed[0], transformed[1], transformed[2], index[0], index[1], index[2]);
5248
5249         // now lerp the values
5250         VectorClear(diffusenormal);
5251         a = &model->brushq3.data_lightgrid[(index[2] * model->brushq3.num_lightgrid_isize[1] + index[1]) * model->brushq3.num_lightgrid_isize[0] + index[0]];
5252         for (k = 0;k < 2;k++)
5253         {
5254                 blend1 = (k ? (transformed[2] - index[2]) : (1 - (transformed[2] - index[2])));
5255                 if (blend1 < 0.001f || index[2] + k >= model->brushq3.num_lightgrid_isize[2])
5256                         continue;
5257                 for (j = 0;j < 2;j++)
5258                 {
5259                         blend2 = blend1 * (j ? (transformed[1] - index[1]) : (1 - (transformed[1] - index[1])));
5260                         if (blend2 < 0.001f || index[1] + j >= model->brushq3.num_lightgrid_isize[1])
5261                                 continue;
5262                         for (i = 0;i < 2;i++)
5263                         {
5264                                 blend = blend2 * (i ? (transformed[0] - index[0]) : (1 - (transformed[0] - index[0]))) * stylescale;
5265                                 if (blend < 0.001f || index[0] + i >= model->brushq3.num_lightgrid_isize[0])
5266                                         continue;
5267                                 s = a + (k * model->brushq3.num_lightgrid_isize[1] + j) * model->brushq3.num_lightgrid_isize[0] + i;
5268                                 VectorMA(ambientcolor, blend * (1.0f / 128.0f), s->ambientrgb, ambientcolor);
5269                                 VectorMA(diffusecolor, blend * (1.0f / 128.0f), s->diffusergb, diffusecolor);
5270                                 // this uses the mod_md3_sin table because the values are
5271                                 // already in the 0-255 range, the 64+ bias fetches a cosine
5272                                 // instead of a sine value
5273                                 diffusenormal[0] += blend * (mod_md3_sin[64 + s->diffuseyaw] * mod_md3_sin[s->diffusepitch]);
5274                                 diffusenormal[1] += blend * (mod_md3_sin[     s->diffuseyaw] * mod_md3_sin[s->diffusepitch]);
5275                                 diffusenormal[2] += blend * (mod_md3_sin[64 + s->diffusepitch]);
5276                                 //Con_Printf("blend %f: ambient %i %i %i, diffuse %i %i %i, diffusepitch %i diffuseyaw %i (%f %f, normal %f %f %f)\n", blend, s->ambientrgb[0], s->ambientrgb[1], s->ambientrgb[2], s->diffusergb[0], s->diffusergb[1], s->diffusergb[2], s->diffusepitch, s->diffuseyaw, pitch, yaw, (cos(yaw) * cospitch), (sin(yaw) * cospitch), (-sin(pitch)));
5277                         }
5278                 }
5279         }
5280
5281         // normalize the light direction before turning
5282         VectorNormalize(diffusenormal);
5283         //Con_Printf("result: ambient %f %f %f diffuse %f %f %f diffusenormal %f %f %f\n", ambientcolor[0], ambientcolor[1], ambientcolor[2], diffusecolor[0], diffusecolor[1], diffusecolor[2], diffusenormal[0], diffusenormal[1], diffusenormal[2]);
5284 }
5285
5286 static void Mod_Q3BSP_TracePoint_RecursiveBSPNode(trace_t *trace, dp_model_t *model, mnode_t *node, const vec3_t point, int markframe)
5287 {
5288         int i;
5289         mleaf_t *leaf;
5290         colbrushf_t *brush;
5291         // find which leaf the point is in
5292         while (node->plane)
5293                 node = node->children[(node->plane->type < 3 ? point[node->plane->type] : DotProduct(point, node->plane->normal)) < node->plane->dist];
5294         // point trace the brushes
5295         leaf = (mleaf_t *)node;
5296         for (i = 0;i < leaf->numleafbrushes;i++)
5297         {
5298                 brush = model->brush.data_brushes[leaf->firstleafbrush[i]].colbrushf;
5299                 if (brush && brush->markframe != markframe && BoxesOverlap(point, point, brush->mins, brush->maxs))
5300                 {
5301                         brush->markframe = markframe;
5302                         Collision_TracePointBrushFloat(trace, point, brush);
5303                 }
5304         }
5305         // can't do point traces on curves (they have no thickness)
5306 }
5307
5308 static void Mod_Q3BSP_TraceLine_RecursiveBSPNode(trace_t *trace, dp_model_t *model, mnode_t *node, const vec3_t start, const vec3_t end, vec_t startfrac, vec_t endfrac, const vec3_t linestart, const vec3_t lineend, int markframe, const vec3_t segmentmins, const vec3_t segmentmaxs)
5309 {
5310         int i, startside, endside;
5311         float dist1, dist2, midfrac, mid[3], nodesegmentmins[3], nodesegmentmaxs[3];
5312         mleaf_t *leaf;
5313         msurface_t *surface;
5314         mplane_t *plane;
5315         colbrushf_t *brush;
5316         // walk the tree until we hit a leaf, recursing for any split cases
5317         while (node->plane)
5318         {
5319                 // abort if this part of the bsp tree can not be hit by this trace
5320 //              if (!(node->combinedsupercontents & trace->hitsupercontentsmask))
5321 //                      return;
5322                 plane = node->plane;
5323                 // axial planes are much more common than non-axial, so an optimized
5324                 // axial case pays off here
5325                 if (plane->type < 3)
5326                 {
5327                         dist1 = start[plane->type] - plane->dist;
5328                         dist2 = end[plane->type] - plane->dist;
5329                 }
5330                 else
5331                 {
5332                         dist1 = DotProduct(start, plane->normal) - plane->dist;
5333                         dist2 = DotProduct(end, plane->normal) - plane->dist;
5334                 }
5335                 startside = dist1 < 0;
5336                 endside = dist2 < 0;
5337                 if (startside == endside)
5338                 {
5339                         // most of the time the line fragment is on one side of the plane
5340                         node = node->children[startside];
5341                 }
5342                 else
5343                 {
5344                         // line crosses node plane, split the line
5345                         dist1 = PlaneDiff(linestart, plane);
5346                         dist2 = PlaneDiff(lineend, plane);
5347                         midfrac = dist1 / (dist1 - dist2);
5348                         VectorLerp(linestart, midfrac, lineend, mid);
5349                         // take the near side first
5350                         Mod_Q3BSP_TraceLine_RecursiveBSPNode(trace, model, node->children[startside], start, mid, startfrac, midfrac, linestart, lineend, markframe, segmentmins, segmentmaxs);
5351                         // if we found an impact on the front side, don't waste time
5352                         // exploring the far side
5353                         if (midfrac <= trace->realfraction)
5354                                 Mod_Q3BSP_TraceLine_RecursiveBSPNode(trace, model, node->children[endside], mid, end, midfrac, endfrac, linestart, lineend, markframe, segmentmins, segmentmaxs);
5355                         return;
5356                 }
5357         }
5358         // abort if this part of the bsp tree can not be hit by this trace
5359 //      if (!(node->combinedsupercontents & trace->hitsupercontentsmask))
5360 //              return;
5361         // hit a leaf
5362         nodesegmentmins[0] = min(start[0], end[0]) - 1;
5363         nodesegmentmins[1] = min(start[1], end[1]) - 1;
5364         nodesegmentmins[2] = min(start[2], end[2]) - 1;
5365         nodesegmentmaxs[0] = max(start[0], end[0]) + 1;
5366         nodesegmentmaxs[1] = max(start[1], end[1]) + 1;
5367         nodesegmentmaxs[2] = max(start[2], end[2]) + 1;
5368         // line trace the brushes
5369         leaf = (mleaf_t *)node;
5370         for (i = 0;i < leaf->numleafbrushes;i++)
5371         {
5372                 brush = model->brush.data_brushes[leaf->firstleafbrush[i]].colbrushf;
5373                 if (brush && brush->markframe != markframe && BoxesOverlap(nodesegmentmins, nodesegmentmaxs, brush->mins, brush->maxs))
5374                 {
5375                         brush->markframe = markframe;
5376                         Collision_TraceLineBrushFloat(trace, linestart, lineend, brush, brush);
5377                 }
5378         }
5379         // can't do point traces on curves (they have no thickness)
5380         if (leaf->containscollisionsurfaces && mod_q3bsp_curves_collisions.integer && !VectorCompare(start, end))
5381         {
5382                 // line trace the curves
5383                 for (i = 0;i < leaf->numleafsurfaces;i++)
5384                 {
5385                         surface = model->data_surfaces + leaf->firstleafsurface[i];
5386                         if (surface->num_collisiontriangles && surface->collisionmarkframe != markframe && BoxesOverlap(nodesegmentmins, nodesegmentmaxs, surface->mins, surface->maxs))
5387                         {
5388                                 surface->collisionmarkframe = markframe;
5389                                 Collision_TraceLineTriangleMeshFloat(trace, linestart, lineend, surface->num_collisiontriangles, surface->data_collisionelement3i, surface->data_collisionvertex3f, surface->texture->supercontents, surface->texture->surfaceflags, surface->texture, segmentmins, segmentmaxs);
5390                         }
5391                 }
5392         }
5393 }
5394
5395 static void Mod_Q3BSP_TraceBrush_RecursiveBSPNode(trace_t *trace, dp_model_t *model, mnode_t *node, const colbrushf_t *thisbrush_start, const colbrushf_t *thisbrush_end, int markframe, const vec3_t segmentmins, const vec3_t segmentmaxs)
5396 {
5397         int i;
5398         int sides;
5399         mleaf_t *leaf;
5400         colbrushf_t *brush;
5401         msurface_t *surface;
5402         mplane_t *plane;
5403         float nodesegmentmins[3], nodesegmentmaxs[3];
5404         // walk the tree until we hit a leaf, recursing for any split cases
5405         while (node->plane)
5406         {
5407                 // abort if this part of the bsp tree can not be hit by this trace
5408 //              if (!(node->combinedsupercontents & trace->hitsupercontentsmask))
5409 //                      return;
5410                 plane = node->plane;
5411                 // axial planes are much more common than non-axial, so an optimized
5412                 // axial case pays off here
5413                 if (plane->type < 3)
5414                 {
5415                         // this is an axial plane, compare bounding box directly to it and
5416                         // recurse sides accordingly
5417                         // recurse down node sides
5418                         // use an inlined axial BoxOnPlaneSide to slightly reduce overhead
5419                         //sides = BoxOnPlaneSide(nodesegmentmins, nodesegmentmaxs, plane);
5420                         //sides = ((segmentmaxs[plane->type] >= plane->dist) | ((segmentmins[plane->type] < plane->dist) << 1));
5421                         sides = ((segmentmaxs[plane->type] >= plane->dist) + ((segmentmins[plane->type] < plane->dist) * 2));
5422                 }
5423                 else
5424                 {
5425                         // this is a non-axial plane, so check if the start and end boxes
5426                         // are both on one side of the plane to handle 'diagonal' cases
5427                         sides = BoxOnPlaneSide(thisbrush_start->mins, thisbrush_start->maxs, plane) | BoxOnPlaneSide(thisbrush_end->mins, thisbrush_end->maxs, plane);
5428                 }
5429                 if (sides == 3)
5430                 {
5431                         // segment crosses plane
5432                         Mod_Q3BSP_TraceBrush_RecursiveBSPNode(trace, model, node->children[0], thisbrush_start, thisbrush_end, markframe, segmentmins, segmentmaxs);
5433                         sides = 2;
5434                 }
5435                 // if sides == 0 then the trace itself is bogus (Not A Number values),
5436                 // in this case we simply pretend the trace hit nothing
5437                 if (sides == 0)
5438                         return; // ERROR: NAN bounding box!
5439                 // take whichever side the segment box is on
5440                 node = node->children[sides - 1];
5441         }
5442         // abort if this part of the bsp tree can not be hit by this trace
5443 //      if (!(node->combinedsupercontents & trace->hitsupercontentsmask))
5444 //              return;
5445         nodesegmentmins[0] = max(segmentmins[0], node->mins[0] - 1);
5446         nodesegmentmins[1] = max(segmentmins[1], node->mins[1] - 1);
5447         nodesegmentmins[2] = max(segmentmins[2], node->mins[2] - 1);
5448         nodesegmentmaxs[0] = min(segmentmaxs[0], node->maxs[0] + 1);
5449         nodesegmentmaxs[1] = min(segmentmaxs[1], node->maxs[1] + 1);
5450         nodesegmentmaxs[2] = min(segmentmaxs[2], node->maxs[2] + 1);
5451         // hit a leaf
5452         leaf = (mleaf_t *)node;
5453         for (i = 0;i < leaf->numleafbrushes;i++)
5454         {
5455                 brush = model->brush.data_brushes[leaf->firstleafbrush[i]].colbrushf;
5456                 if (brush && brush->markframe != markframe && BoxesOverlap(nodesegmentmins, nodesegmentmaxs, brush->mins, brush->maxs))
5457                 {
5458                         brush->markframe = markframe;
5459                         Collision_TraceBrushBrushFloat(trace, thisbrush_start, thisbrush_end, brush, brush);
5460                 }
5461         }
5462         if (leaf->containscollisionsurfaces && mod_q3bsp_curves_collisions.integer)
5463         {
5464                 for (i = 0;i < leaf->numleafsurfaces;i++)
5465                 {
5466                         surface = model->data_surfaces + leaf->firstleafsurface[i];
5467                         if (surface->num_collisiontriangles && surface->collisionmarkframe != markframe && BoxesOverlap(nodesegmentmins, nodesegmentmaxs, surface->mins, surface->maxs))
5468                         {
5469                                 surface->collisionmarkframe = markframe;
5470                                 Collision_TraceBrushTriangleMeshFloat(trace, thisbrush_start, thisbrush_end, surface->num_collisiontriangles, surface->data_collisionelement3i, surface->data_collisionvertex3f, surface->texture->supercontents, surface->texture->surfaceflags, surface->texture, segmentmins, segmentmaxs);
5471                         }
5472                 }
5473         }
5474 }
5475
5476 static void Mod_Q3BSP_TraceBox(dp_model_t *model, int frame, trace_t *trace, const vec3_t start, const vec3_t boxmins, const vec3_t boxmaxs, const vec3_t end, int hitsupercontentsmask)
5477 {
5478         int i;
5479         float segmentmins[3], segmentmaxs[3];
5480         static int markframe = 0;
5481         msurface_t *surface;
5482         q3mbrush_t *brush;
5483         memset(trace, 0, sizeof(*trace));
5484         trace->fraction = 1;
5485         trace->realfraction = 1;
5486         trace->hitsupercontentsmask = hitsupercontentsmask;
5487         if (mod_q3bsp_optimizedtraceline.integer && VectorLength2(boxmins) + VectorLength2(boxmaxs) == 0)
5488         {
5489                 if (VectorCompare(start, end))
5490                 {
5491                         // point trace
5492                         if (model->brush.submodel)
5493                         {
5494                                 for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
5495                                         if (brush->colbrushf)
5496                                                 Collision_TracePointBrushFloat(trace, start, brush->colbrushf);
5497                         }
5498                         else
5499                                 Mod_Q3BSP_TracePoint_RecursiveBSPNode(trace, model, model->brush.data_nodes, start, ++markframe);
5500                 }
5501                 else
5502                 {
5503                         // line trace
5504                         segmentmins[0] = min(start[0], end[0]) - 1;
5505                         segmentmins[1] = min(start[1], end[1]) - 1;
5506                         segmentmins[2] = min(start[2], end[2]) - 1;
5507                         segmentmaxs[0] = max(start[0], end[0]) + 1;
5508                         segmentmaxs[1] = max(start[1], end[1]) + 1;
5509                         segmentmaxs[2] = max(start[2], end[2]) + 1;
5510                         if (model->brush.submodel)
5511                         {
5512                                 for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
5513                                         if (brush->colbrushf)
5514                                                 Collision_TraceLineBrushFloat(trace, start, end, brush->colbrushf, brush->colbrushf);
5515                                 if (mod_q3bsp_curves_collisions.integer)
5516                                         for (i = 0, surface = model->data_surfaces + model->firstmodelsurface;i < model->nummodelsurfaces;i++, surface++)
5517                                                 if (surface->num_collisiontriangles)
5518                                                         Collision_TraceLineTriangleMeshFloat(trace, start, end, surface->num_collisiontriangles, surface->data_collisionelement3i, surface->data_collisionvertex3f, surface->texture->supercontents, surface->texture->surfaceflags, surface->texture, segmentmins, segmentmaxs);
5519                         }
5520                         else
5521                                 Mod_Q3BSP_TraceLine_RecursiveBSPNode(trace, model, model->brush.data_nodes, start, end, 0, 1, start, end, ++markframe, segmentmins, segmentmaxs);
5522                 }
5523         }
5524         else
5525         {
5526                 // box trace, performed as brush trace
5527                 colbrushf_t *thisbrush_start, *thisbrush_end;
5528                 vec3_t boxstartmins, boxstartmaxs, boxendmins, boxendmaxs;
5529                 segmentmins[0] = min(start[0], end[0]) + boxmins[0] - 1;
5530                 segmentmins[1] = min(start[1], end[1]) + boxmins[1] - 1;
5531                 segmentmins[2] = min(start[2], end[2]) + boxmins[2] - 1;
5532                 segmentmaxs[0] = max(start[0], end[0]) + boxmaxs[0] + 1;
5533                 segmentmaxs[1] = max(start[1], end[1]) + boxmaxs[1] + 1;
5534                 segmentmaxs[2] = max(start[2], end[2]) + boxmaxs[2] + 1;
5535                 VectorAdd(start, boxmins, boxstartmins);
5536                 VectorAdd(start, boxmaxs, boxstartmaxs);
5537                 VectorAdd(end, boxmins, boxendmins);
5538                 VectorAdd(end, boxmaxs, boxendmaxs);
5539                 thisbrush_start = Collision_BrushForBox(&identitymatrix, boxstartmins, boxstartmaxs, 0, 0, NULL);
5540                 thisbrush_end = Collision_BrushForBox(&identitymatrix, boxendmins, boxendmaxs, 0, 0, NULL);
5541                 if (model->brush.submodel)
5542                 {
5543                         for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
5544                                 if (brush->colbrushf)
5545                                         Collision_TraceBrushBrushFloat(trace, thisbrush_start, thisbrush_end, brush->colbrushf, brush->colbrushf);
5546                         if (mod_q3bsp_curves_collisions.integer)
5547                                 for (i = 0, surface = model->data_surfaces + model->firstmodelsurface;i < model->nummodelsurfaces;i++, surface++)
5548                                         if (surface->num_collisiontriangles)
5549                                                 Collision_TraceBrushTriangleMeshFloat(trace, thisbrush_start, thisbrush_end, surface->num_collisiontriangles, surface->data_collisionelement3i, surface->data_collisionvertex3f, surface->texture->supercontents, surface->texture->surfaceflags, surface->texture, segmentmins, segmentmaxs);
5550                 }
5551                 else
5552                         Mod_Q3BSP_TraceBrush_RecursiveBSPNode(trace, model, model->brush.data_nodes, thisbrush_start, thisbrush_end, ++markframe, segmentmins, segmentmaxs);
5553         }
5554 }
5555
5556 static int Mod_Q3BSP_PointSuperContents(struct model_s *model, int frame, const vec3_t point)
5557 {
5558         int i;
5559         int supercontents = 0;
5560         q3mbrush_t *brush;
5561         // test if the point is inside each brush
5562         if (model->brush.submodel)
5563         {
5564                 // submodels are effectively one leaf
5565                 for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
5566                         if (brush->colbrushf && Collision_PointInsideBrushFloat(point, brush->colbrushf))
5567                                 supercontents |= brush->colbrushf->supercontents;
5568         }
5569         else
5570         {
5571                 mnode_t *node = model->brush.data_nodes;
5572                 mleaf_t *leaf;
5573                 // find which leaf the point is in
5574                 while (node->plane)
5575                         node = node->children[(node->plane->type < 3 ? point[node->plane->type] : DotProduct(point, node->plane->normal)) < node->plane->dist];
5576                 leaf = (mleaf_t *)node;
5577                 // now check the brushes in the leaf
5578                 for (i = 0;i < leaf->numleafbrushes;i++)
5579                 {
5580                         brush = model->brush.data_brushes + leaf->firstleafbrush[i];
5581                         if (brush->colbrushf && Collision_PointInsideBrushFloat(point, brush->colbrushf))
5582                                 supercontents |= brush->colbrushf->supercontents;
5583                 }
5584         }
5585         return supercontents;
5586 }
5587
5588 static int Mod_Q3BSP_SuperContentsFromNativeContents(dp_model_t *model, int nativecontents)
5589 {
5590         int supercontents = 0;
5591         if (nativecontents & CONTENTSQ3_SOLID)
5592                 supercontents |= SUPERCONTENTS_SOLID;
5593         if (nativecontents & CONTENTSQ3_WATER)
5594                 supercontents |= SUPERCONTENTS_WATER;
5595         if (nativecontents & CONTENTSQ3_SLIME)
5596                 supercontents |= SUPERCONTENTS_SLIME;
5597         if (nativecontents & CONTENTSQ3_LAVA)
5598                 supercontents |= SUPERCONTENTS_LAVA;
5599         if (nativecontents & CONTENTSQ3_BODY)
5600                 supercontents |= SUPERCONTENTS_BODY;
5601         if (nativecontents & CONTENTSQ3_CORPSE)
5602                 supercontents |= SUPERCONTENTS_CORPSE;
5603         if (nativecontents & CONTENTSQ3_NODROP)
5604                 supercontents |= SUPERCONTENTS_NODROP;
5605         if (nativecontents & CONTENTSQ3_PLAYERCLIP)
5606                 supercontents |= SUPERCONTENTS_PLAYERCLIP;
5607         if (nativecontents & CONTENTSQ3_MONSTERCLIP)
5608                 supercontents |= SUPERCONTENTS_MONSTERCLIP;
5609         if (nativecontents & CONTENTSQ3_DONOTENTER)
5610                 supercontents |= SUPERCONTENTS_DONOTENTER;
5611         return supercontents;
5612 }
5613
5614 static int Mod_Q3BSP_NativeContentsFromSuperContents(dp_model_t *model, int supercontents)
5615 {
5616         int nativecontents = 0;
5617         if (supercontents & SUPERCONTENTS_SOLID)
5618                 nativecontents |= CONTENTSQ3_SOLID;
5619         if (supercontents & SUPERCONTENTS_WATER)
5620                 nativecontents |= CONTENTSQ3_WATER;
5621         if (supercontents & SUPERCONTENTS_SLIME)
5622                 nativecontents |= CONTENTSQ3_SLIME;
5623         if (supercontents & SUPERCONTENTS_LAVA)
5624                 nativecontents |= CONTENTSQ3_LAVA;
5625         if (supercontents & SUPERCONTENTS_BODY)
5626                 nativecontents |= CONTENTSQ3_BODY;
5627         if (supercontents & SUPERCONTENTS_CORPSE)
5628                 nativecontents |= CONTENTSQ3_CORPSE;
5629         if (supercontents & SUPERCONTENTS_NODROP)
5630                 nativecontents |= CONTENTSQ3_NODROP;
5631         if (supercontents & SUPERCONTENTS_PLAYERCLIP)
5632                 nativecontents |= CONTENTSQ3_PLAYERCLIP;
5633         if (supercontents & SUPERCONTENTS_MONSTERCLIP)
5634                 nativecontents |= CONTENTSQ3_MONSTERCLIP;
5635         if (supercontents & SUPERCONTENTS_DONOTENTER)
5636                 nativecontents |= CONTENTSQ3_DONOTENTER;
5637         return nativecontents;
5638 }
5639
5640 void Mod_Q3BSP_RecursiveFindNumLeafs(mnode_t *node)
5641 {
5642         int numleafs;
5643         while (node->plane)
5644         {
5645                 Mod_Q3BSP_RecursiveFindNumLeafs(node->children[0]);
5646                 node = node->children[1];
5647         }
5648         numleafs = ((mleaf_t *)node - loadmodel->brush.data_leafs) + 1;
5649         if (loadmodel->brush.num_leafs < numleafs)
5650                 loadmodel->brush.num_leafs = numleafs;
5651 }
5652
5653 void Mod_Q3BSP_Load(dp_model_t *mod, void *buffer, void *bufferend)
5654 {
5655         int i, j, numshadowmeshtriangles, lumps;
5656         q3dheader_t *header;
5657         float corner[3], yawradius, modelradius;
5658         msurface_t *surface;
5659
5660         mod->modeldatatypestring = "Q3BSP";
5661
5662         mod->type = mod_brushq3;
5663         mod->numframes = 2; // although alternate textures are not supported it is annoying to complain about no such frame 1
5664         mod->numskins = 1;
5665
5666         header = (q3dheader_t *)buffer;
5667
5668         i = LittleLong(header->version);
5669         if (i != Q3BSPVERSION && i != Q3BSPVERSION_IG && i != Q3BSPVERSION_LIVE)
5670                 Host_Error("Mod_Q3BSP_Load: %s has wrong version number (%i, should be %i)", mod->name, i, Q3BSPVERSION);
5671         mod->brush.ishlbsp = false;
5672         if (loadmodel->isworldmodel)
5673                 Cvar_SetValue("halflifebsp", mod->brush.ishlbsp);
5674
5675         mod->soundfromcenter = true;
5676         mod->TraceBox = Mod_Q3BSP_TraceBox;
5677         mod->PointSuperContents = Mod_Q3BSP_PointSuperContents;
5678         mod->brush.TraceLineOfSight = Mod_Q1BSP_TraceLineOfSight;
5679         mod->brush.SuperContentsFromNativeContents = Mod_Q3BSP_SuperContentsFromNativeContents;
5680         mod->brush.NativeContentsFromSuperContents = Mod_Q3BSP_NativeContentsFromSuperContents;
5681         mod->brush.GetPVS = Mod_Q1BSP_GetPVS;
5682         mod->brush.FatPVS = Mod_Q1BSP_FatPVS;
5683         mod->brush.BoxTouchingPVS = Mod_Q1BSP_BoxTouchingPVS;
5684         mod->brush.BoxTouchingLeafPVS = Mod_Q1BSP_BoxTouchingLeafPVS;
5685         mod->brush.BoxTouchingVisibleLeafs = Mod_Q1BSP_BoxTouchingVisibleLeafs;
5686         mod->brush.FindBoxClusters = Mod_Q1BSP_FindBoxClusters;
5687         mod->brush.LightPoint = Mod_Q3BSP_LightPoint;
5688         mod->brush.FindNonSolidLocation = Mod_Q1BSP_FindNonSolidLocation;
5689         mod->brush.PointInLeaf = Mod_Q1BSP_PointInLeaf;
5690         mod->Draw = R_Q1BSP_Draw;
5691         mod->DrawDepth = R_Q1BSP_DrawDepth;
5692         mod->DrawDebug = R_Q1BSP_DrawDebug;
5693         mod->GetLightInfo = R_Q1BSP_GetLightInfo;
5694         mod->CompileShadowVolume = R_Q1BSP_CompileShadowVolume;
5695         mod->DrawShadowVolume = R_Q1BSP_DrawShadowVolume;
5696         mod->DrawLight = R_Q1BSP_DrawLight;
5697         mod->DrawAddWaterPlanes = NULL;
5698
5699         mod_base = (unsigned char *)header;
5700
5701         // swap all the lumps
5702         header->ident = LittleLong(header->ident);
5703         header->version = LittleLong(header->version);
5704         lumps = (header->version == Q3BSPVERSION_LIVE) ? Q3HEADER_LUMPS_LIVE : Q3HEADER_LUMPS;
5705         for (i = 0;i < lumps;i++)
5706         {
5707                 header->lumps[i].fileofs = LittleLong(header->lumps[i].fileofs);
5708                 header->lumps[i].filelen = LittleLong(header->lumps[i].filelen);
5709         }
5710         for (i = lumps;i < Q3HEADER_LUMPS_MAX;i++)
5711         {
5712                 header->lumps[i].fileofs = 0;
5713                 header->lumps[i].filelen = 0;
5714         }
5715
5716         mod->brush.qw_md4sum = 0;
5717         mod->brush.qw_md4sum2 = 0;
5718         for (i = 0;i < lumps;i++)
5719         {
5720                 if (i == Q3LUMP_ENTITIES)
5721                         continue;
5722                 mod->brush.qw_md4sum ^= Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen);
5723                 if (i == Q3LUMP_PVS || i == Q3LUMP_LEAFS || i == Q3LUMP_NODES)
5724                         continue;
5725                 mod->brush.qw_md4sum2 ^= Com_BlockChecksum(mod_base + header->lumps[i].fileofs, header->lumps[i].filelen);
5726         }
5727
5728         Mod_Q3BSP_LoadEntities(&header->lumps[Q3LUMP_ENTITIES]);
5729         Mod_Q3BSP_LoadTextures(&header->lumps[Q3LUMP_TEXTURES]);
5730         Mod_Q3BSP_LoadPlanes(&header->lumps[Q3LUMP_PLANES]);
5731         if (header->version == Q3BSPVERSION_IG)
5732                 Mod_Q3BSP_LoadBrushSides_IG(&header->lumps[Q3LUMP_BRUSHSIDES]);
5733         else
5734                 Mod_Q3BSP_LoadBrushSides(&header->lumps[Q3LUMP_BRUSHSIDES]);
5735         Mod_Q3BSP_LoadBrushes(&header->lumps[Q3LUMP_BRUSHES]);
5736         Mod_Q3BSP_LoadEffects(&header->lumps[Q3LUMP_EFFECTS]);
5737         Mod_Q3BSP_LoadVertices(&header->lumps[Q3LUMP_VERTICES]);
5738         Mod_Q3BSP_LoadTriangles(&header->lumps[Q3LUMP_TRIANGLES]);
5739         Mod_Q3BSP_LoadLightmaps(&header->lumps[Q3LUMP_LIGHTMAPS], &header->lumps[Q3LUMP_FACES]);
5740         Mod_Q3BSP_LoadFaces(&header->lumps[Q3LUMP_FACES]);
5741         Mod_Q3BSP_LoadModels(&header->lumps[Q3LUMP_MODELS]);
5742         Mod_Q3BSP_LoadLeafBrushes(&header->lumps[Q3LUMP_LEAFBRUSHES]);
5743         Mod_Q3BSP_LoadLeafFaces(&header->lumps[Q3LUMP_LEAFFACES]);
5744         Mod_Q3BSP_LoadLeafs(&header->lumps[Q3LUMP_LEAFS]);
5745         Mod_Q3BSP_LoadNodes(&header->lumps[Q3LUMP_NODES]);
5746         Mod_Q3BSP_LoadLightGrid(&header->lumps[Q3LUMP_LIGHTGRID]);
5747         Mod_Q3BSP_LoadPVS(&header->lumps[Q3LUMP_PVS]);
5748         loadmodel->brush.numsubmodels = loadmodel->brushq3.num_models;
5749
5750         // the MakePortals code works fine on the q3bsp data as well
5751         Mod_Q1BSP_MakePortals();
5752
5753         // FIXME: shader alpha should replace r_wateralpha support in q3bsp
5754         loadmodel->brush.supportwateralpha = true;
5755
5756         // make a single combined shadow mesh to allow optimized shadow volume creation
5757         numshadowmeshtriangles = 0;
5758         for (j = 0, surface = loadmodel->data_surfaces;j < loadmodel->num_surfaces;j++, surface++)
5759         {
5760                 surface->num_firstshadowmeshtriangle = numshadowmeshtriangles;
5761                 numshadowmeshtriangles += surface->num_triangles;
5762         }
5763         loadmodel->brush.shadowmesh = Mod_ShadowMesh_Begin(loadmodel->mempool, numshadowmeshtriangles * 3, numshadowmeshtriangles, NULL, NULL, NULL, false, false, true);
5764         for (j = 0, surface = loadmodel->data_surfaces;j < loadmodel->num_surfaces;j++, surface++)
5765                 if (surface->num_triangles > 0)
5766                         Mod_ShadowMesh_AddMesh(loadmodel->mempool, loadmodel->brush.shadowmesh, NULL, NULL, NULL, loadmodel->surfmesh.data_vertex3f, NULL, NULL, NULL, NULL, surface->num_triangles, (loadmodel->surfmesh.data_element3i + 3 * surface->num_firsttriangle));
5767         loadmodel->brush.shadowmesh = Mod_ShadowMesh_Finish(loadmodel->mempool, loadmodel->brush.shadowmesh, false, true, false);
5768         Mod_BuildTriangleNeighbors(loadmodel->brush.shadowmesh->neighbor3i, loadmodel->brush.shadowmesh->element3i, loadmodel->brush.shadowmesh->numtriangles);
5769
5770         loadmodel->brush.num_leafs = 0;
5771         Mod_Q3BSP_RecursiveFindNumLeafs(loadmodel->brush.data_nodes);
5772
5773         mod = loadmodel;
5774         for (i = 0;i < loadmodel->brush.numsubmodels;i++)
5775         {
5776                 if (i > 0)
5777                 {
5778                         char name[10];
5779                         // LordHavoc: only register submodels if it is the world
5780                         // (prevents external bsp models from replacing world submodels with
5781                         //  their own)
5782                         if (!loadmodel->isworldmodel)
5783                                 continue;
5784                         // duplicate the basic information
5785                         dpsnprintf(name, sizeof(name), "*%i", i);
5786                         mod = Mod_FindName(name);
5787                         *mod = *loadmodel;
5788                         strlcpy(mod->name, name, sizeof(mod->name));
5789                         // textures and memory belong to the main model
5790                         mod->texturepool = NULL;
5791                         mod->mempool = NULL;
5792                         mod->brush.TraceLineOfSight = NULL;
5793                         mod->brush.GetPVS = NULL;
5794                         mod->brush.FatPVS = NULL;
5795                         mod->brush.BoxTouchingPVS = NULL;
5796                         mod->brush.BoxTouchingLeafPVS = NULL;
5797                         mod->brush.BoxTouchingVisibleLeafs = NULL;
5798                         mod->brush.FindBoxClusters = NULL;
5799                         mod->brush.LightPoint = NULL;
5800                         mod->brush.FindNonSolidLocation = Mod_Q1BSP_FindNonSolidLocation;
5801                 }
5802                 mod->brush.submodel = i;
5803
5804                 // make the model surface list (used by shadowing/lighting)
5805                 mod->firstmodelsurface = mod->brushq3.data_models[i].firstface;
5806                 mod->nummodelsurfaces = mod->brushq3.data_models[i].numfaces;
5807                 mod->firstmodelbrush = mod->brushq3.data_models[i].firstbrush;
5808                 mod->nummodelbrushes = mod->brushq3.data_models[i].numbrushes;
5809                 mod->surfacelist = (int *)Mem_Alloc(loadmodel->mempool, mod->nummodelsurfaces * sizeof(*mod->surfacelist));
5810                 for (j = 0;j < mod->nummodelsurfaces;j++)
5811                         mod->surfacelist[j] = mod->firstmodelsurface + j;
5812
5813                 VectorCopy(mod->brushq3.data_models[i].mins, mod->normalmins);
5814                 VectorCopy(mod->brushq3.data_models[i].maxs, mod->normalmaxs);
5815                 // enlarge the bounding box to enclose all geometry of this model,
5816                 // because q3map2 sometimes lies (mostly to affect the lightgrid),
5817                 // which can in turn mess up the farclip (as well as culling when
5818                 // outside the level - an unimportant concern)
5819
5820                 //printf("Editing model %d... BEFORE re-bounding: %f %f %f - %f %f %f\n", i, mod->normalmins[0], mod->normalmins[1], mod->normalmins[2], mod->normalmaxs[0], mod->normalmaxs[1], mod->normalmaxs[2]);
5821                 for (j = 0;j < mod->nummodelsurfaces;j++)
5822                 {
5823                         const msurface_t *surface = mod->data_surfaces + j + mod->firstmodelsurface;
5824                         const float *v = mod->surfmesh.data_vertex3f + 3 * surface->num_firstvertex;
5825                         int k;
5826                         if (!surface->num_vertices)
5827                                 continue;
5828                         for (k = 0;k < surface->num_vertices;k++, v += 3)
5829                         {
5830                                 mod->normalmins[0] = min(mod->normalmins[0], v[0]);
5831                                 mod->normalmins[1] = min(mod->normalmins[1], v[1]);
5832                                 mod->normalmins[2] = min(mod->normalmins[2], v[2]);
5833                                 mod->normalmaxs[0] = max(mod->normalmaxs[0], v[0]);
5834                                 mod->normalmaxs[1] = max(mod->normalmaxs[1], v[1]);
5835                                 mod->normalmaxs[2] = max(mod->normalmaxs[2], v[2]);
5836                         }
5837                 }
5838                 //printf("Editing model %d... AFTER re-bounding: %f %f %f - %f %f %f\n", i, mod->normalmins[0], mod->normalmins[1], mod->normalmins[2], mod->normalmaxs[0], mod->normalmaxs[1], mod->normalmaxs[2]);
5839                 corner[0] = max(fabs(mod->normalmins[0]), fabs(mod->normalmaxs[0]));
5840                 corner[1] = max(fabs(mod->normalmins[1]), fabs(mod->normalmaxs[1]));
5841                 corner[2] = max(fabs(mod->normalmins[2]), fabs(mod->normalmaxs[2]));
5842                 modelradius = sqrt(corner[0]*corner[0]+corner[1]*corner[1]+corner[2]*corner[2]);
5843                 yawradius = sqrt(corner[0]*corner[0]+corner[1]*corner[1]);
5844                 mod->rotatedmins[0] = mod->rotatedmins[1] = mod->rotatedmins[2] = -modelradius;
5845                 mod->rotatedmaxs[0] = mod->rotatedmaxs[1] = mod->rotatedmaxs[2] = modelradius;
5846                 mod->yawmaxs[0] = mod->yawmaxs[1] = yawradius;
5847                 mod->yawmins[0] = mod->yawmins[1] = -yawradius;
5848                 mod->yawmins[2] = mod->normalmins[2];
5849                 mod->yawmaxs[2] = mod->normalmaxs[2];
5850                 mod->radius = modelradius;
5851                 mod->radius2 = modelradius * modelradius;
5852
5853                 for (j = 0;j < mod->nummodelsurfaces;j++)
5854                         if (mod->data_surfaces[j + mod->firstmodelsurface].texture->basematerialflags & MATERIALFLAG_SKY)
5855                                 break;
5856                 if (j < mod->nummodelsurfaces)
5857                         mod->DrawSky = R_Q1BSP_DrawSky;
5858                 else
5859                         mod->DrawSky = NULL;
5860
5861                 for (j = 0;j < mod->nummodelsurfaces;j++)
5862                         if (mod->data_surfaces[j + mod->firstmodelsurface].texture->basematerialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION))
5863                                 break;
5864                 if (j < mod->nummodelsurfaces)
5865                         mod->DrawAddWaterPlanes = R_Q1BSP_DrawAddWaterPlanes;
5866                 else
5867                         mod->DrawAddWaterPlanes = NULL;
5868         }
5869 }
5870
5871 void Mod_IBSP_Load(dp_model_t *mod, void *buffer, void *bufferend)
5872 {
5873         int i = LittleLong(((int *)buffer)[1]);
5874         if (i == Q3BSPVERSION || i == Q3BSPVERSION_IG || i == Q3BSPVERSION_LIVE)
5875                 Mod_Q3BSP_Load(mod,buffer, bufferend);
5876         else if (i == Q2BSPVERSION)
5877                 Mod_Q2BSP_Load(mod,buffer, bufferend);
5878         else
5879                 Host_Error("Mod_IBSP_Load: unknown/unsupported version %i", i);
5880 }
5881
5882 void Mod_MAP_Load(dp_model_t *mod, void *buffer, void *bufferend)
5883 {
5884         Host_Error("Mod_MAP_Load: not yet implemented");
5885 }
5886
5887 qboolean Mod_CanSeeBox_Trace(int numsamples, float t, dp_model_t *model, vec3_t eye, vec3_t minsX, vec3_t maxsX)
5888 {
5889         // we already have done PVS culling at this point...
5890         // so we don't need to do it again.
5891
5892         int i;
5893         vec3_t testorigin, mins, maxs;
5894
5895         testorigin[0] = (minsX[0] + maxsX[0]) * 0.5;
5896         testorigin[1] = (minsX[1] + maxsX[1]) * 0.5;
5897         testorigin[2] = (minsX[2] + maxsX[2]) * 0.5;
5898
5899         if(model->brush.TraceLineOfSight(model, eye, testorigin))
5900                 return 1;
5901
5902         // expand the box a little
5903         mins[0] = (t+1) * minsX[0] - t * maxsX[0];
5904         maxs[0] = (t+1) * maxsX[0] - t * minsX[0];
5905         mins[1] = (t+1) * minsX[1] - t * maxsX[1];
5906         maxs[1] = (t+1) * maxsX[1] - t * minsX[1];
5907         mins[2] = (t+1) * minsX[2] - t * maxsX[2];
5908         maxs[2] = (t+1) * maxsX[2] - t * minsX[2];
5909
5910         for(i = 0; i != numsamples; ++i)
5911         {
5912                 testorigin[0] = lhrandom(mins[0], maxs[0]);
5913                 testorigin[1] = lhrandom(mins[1], maxs[1]);
5914                 testorigin[2] = lhrandom(mins[2], maxs[2]);
5915
5916                 if(model->brush.TraceLineOfSight(model, eye, testorigin))
5917                         return 1;
5918         }
5919
5920         return 0;
5921 }
5922