]> git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/q3map2.h
Merge commit 'eef39952025db1375e33b6e314692ac76badb93c' into garux-merge
[xonotic/netradiant.git] / tools / quake3 / q3map2 / q3map2.h
1 /* -------------------------------------------------------------------------------
2
3    Copyright (C) 1999-2007 id Software, Inc. and contributors.
4    For a list of contributors, see the accompanying CONTRIBUTORS file.
5
6    This file is part of GtkRadiant.
7
8    GtkRadiant is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    GtkRadiant is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with GtkRadiant; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
22    ----------------------------------------------------------------------------------
23
24    This code has been altered significantly from its original form, to support
25    several games based on the Quake III Arena engine, in the form of "Q3Map2."
26
27    ------------------------------------------------------------------------------- */
28
29
30
31 /* marker */
32 #ifndef Q3MAP2_H
33 #define Q3MAP2_H
34
35 #include "globaldefs.h"
36
37 /* version */
38 #ifndef Q3MAP_VERSION
39 #error no Q3MAP_VERSION defined
40 #endif
41 #define Q3MAP_MOTD      "Your map saw the pretty lights from q3map2's BFG"
42
43
44
45
46 /* -------------------------------------------------------------------------------
47
48    dependencies
49
50    ------------------------------------------------------------------------------- */
51
52 /* platform-specific */
53 #if GDEF_OS_LINUX || GDEF_OS_MACOS
54         #define Q_UNIX
55 #endif
56
57 #ifdef Q_UNIX
58         #include <unistd.h>
59         #include <pwd.h>
60         #include <limits.h>
61 #endif
62
63 #if GDEF_OS_WINDOWS
64         #include <windows.h>
65 #endif
66
67
68 /* general */
69 #include "version.h"            /* ttimo: might want to guard that if built outside of the GtkRadiant tree */
70
71 #include "cmdlib.h"
72 #include "mathlib.h"
73 #include "md5lib.h"
74 #include "ddslib.h"
75 #ifdef BUILD_CRUNCH
76 #include "crn_rgba.h"
77 #endif // BUILD_CRUNCH
78
79 #include "picomodel.h"
80
81 #include "scriplib.h"
82 #include "polylib.h"
83 #include "imagelib.h"
84 #include "qthreads.h"
85 #include "inout.h"
86 #include "vfs.h"
87 #include "png.h"
88 #include "md4.h"
89 #include <stdlib.h>
90
91
92 /* -------------------------------------------------------------------------------
93
94    port-related hacks
95
96    ------------------------------------------------------------------------------- */
97
98 #define MAC_STATIC_HACK         0
99 #if GDEF_OS_MACOS && MAC_STATIC_HACK
100         #define MAC_STATIC          static
101 #else
102         #define MAC_STATIC
103 #endif
104
105 #if 1
106         #if GDEF_OS_WINDOWS
107                 #define Q_stricmp           stricmp
108                 #define Q_strncasecmp       strnicmp
109         #else
110                 #define Q_stricmp           strcasecmp
111                 #define Q_strncasecmp       strncasecmp
112         #endif
113 #endif
114
115 /* macro version */
116 #define VectorMA( a, s, b, c )  ( ( c )[ 0 ] = ( a )[ 0 ] + ( s ) * ( b )[ 0 ], ( c )[ 1 ] = ( a )[ 1 ] + ( s ) * ( b )[ 1 ], ( c )[ 2 ] = ( a )[ 2 ] + ( s ) * ( b )[ 2 ] )
117
118
119
120 /* -------------------------------------------------------------------------------
121
122    constants
123
124    ------------------------------------------------------------------------------- */
125
126 /* temporary hacks and tests (please keep off in SVN to prevent anyone's legacy map from screwing up) */
127 /* 2011-01-10 TTimo says we should turn these on in SVN, so turning on now */
128 #define Q3MAP2_EXPERIMENTAL_HIGH_PRECISION_MATH_FIXES   1
129 #define Q3MAP2_EXPERIMENTAL_SNAP_NORMAL_FIX     1
130 #define Q3MAP2_EXPERIMENTAL_SNAP_PLANE_FIX      1
131
132 /* general */
133 #define MAX_QPATH               64
134
135 #define MAX_IMAGES              512
136 #define DEFAULT_IMAGE           "*default"
137
138 #define MAX_MODELS              512
139
140 #define DEF_BACKSPLASH_FRACTION 0.05f   /* 5% backsplash by default */
141 #define DEF_BACKSPLASH_DISTANCE 23
142
143 #define DEF_RADIOSITY_BOUNCE    1.0f    /* ydnar: default to 100% re-emitted light */
144
145 #define MAX_SHADER_INFO         8192
146 #define MAX_CUST_SURFACEPARMS   256
147
148 #define SHADER_MAX_VERTEXES     1000
149 #define SHADER_MAX_INDEXES      ( 6 * SHADER_MAX_VERTEXES )
150
151 #define MAX_JITTERS             256
152
153
154 /* epair parsing (note case-sensitivity directive) */
155 #define CASE_INSENSITIVE_EPAIRS 1
156
157 #if CASE_INSENSITIVE_EPAIRS
158         #define EPAIR_STRCMP        Q_stricmp
159 #else
160         #define EPAIR_STRCMP        strcmp
161 #endif
162
163
164 /* ydnar: compiler flags, because games have widely varying content/surface flags */
165 #define C_SOLID                 0x00000001
166 #define C_TRANSLUCENT           0x00000002
167 #define C_STRUCTURAL            0x00000004
168 #define C_HINT                  0x00000008
169 #define C_NODRAW                0x00000010
170 #define C_LIGHTGRID             0x00000020
171 #define C_ALPHASHADOW           0x00000040
172 #define C_LIGHTFILTER           0x00000080
173 #define C_VERTEXLIT             0x00000100
174 #define C_LIQUID                0x00000200
175 #define C_FOG                   0x00000400
176 #define C_SKY                   0x00000800
177 #define C_ORIGIN                0x00001000
178 #define C_AREAPORTAL            0x00002000
179 #define C_ANTIPORTAL            0x00004000  /* like hint, but doesn't generate portals */
180 #define C_SKIP                  0x00008000  /* like hint, but skips this face (doesn't split bsp) */
181 #define C_NOMARKS               0x00010000  /* no decals */
182 #define C_OB                    0x00020000  /* skip -noob for this */
183 #define C_DETAIL                0x08000000  /* THIS MUST BE THE SAME AS IN RADIANT! */
184
185
186 /* shadow flags */
187 #define WORLDSPAWN_CAST_SHADOWS 1
188 #define WORLDSPAWN_RECV_SHADOWS 1
189 #define ENTITY_CAST_SHADOWS     0
190 #define ENTITY_RECV_SHADOWS     1
191
192
193 /* bsp */
194 #define MAX_PATCH_SIZE          32
195 #define MAX_BRUSH_SIDES         1024
196 #define MAX_BUILD_SIDES         1024
197
198 #define MAX_EXPANDED_AXIS       128
199
200 #define CLIP_EPSILON            0.1f
201 #define PLANESIDE_EPSILON       0.001f
202 #define PLANENUM_LEAF           -1
203
204 #define HINT_PRIORITY           1000        /* ydnar: force hint splits first and antiportal/areaportal splits last */
205 #define ANTIPORTAL_PRIORITY     -1000
206 #define AREAPORTAL_PRIORITY     -1000
207 #define DETAIL_PRIORITY     -3000
208
209 #define PSIDE_FRONT             1
210 #define PSIDE_BACK              2
211 #define PSIDE_BOTH              ( PSIDE_FRONT | PSIDE_BACK )
212 #define PSIDE_FACING            4
213
214 #define BPRIMIT_UNDEFINED       0
215 #define BPRIMIT_OLDBRUSHES      1
216 #define BPRIMIT_NEWBRUSHES      2
217
218
219 /* vis */
220 #define VIS_HEADER_SIZE         8
221
222 #define SEPERATORCACHE          /* seperator caching helps a bit */
223
224 #define PORTALFILE              "PRT1"
225
226 #define MAX_PORTALS             0x20000 /* same as MAX_MAP_PORTALS */
227 #define MAX_SEPERATORS          MAX_POINTS_ON_WINDING
228 #define MAX_POINTS_ON_FIXED_WINDING 24  /* ydnar: increased this from 12 at the expense of more memory */
229 #define MAX_PORTALS_ON_LEAF     1024
230
231
232 /* light */
233 #define EMIT_POINT              0
234 #define EMIT_AREA               1
235 #define EMIT_SPOT               2
236 #define EMIT_SUN                3
237
238 #define LIGHT_ATTEN_LINEAR      1
239 #define LIGHT_ATTEN_ANGLE       2
240 #define LIGHT_ATTEN_DISTANCE    4
241 #define LIGHT_TWOSIDED          8
242 #define LIGHT_GRID              16
243 #define LIGHT_SURFACES          32
244 #define LIGHT_DARK              64      /* probably never use this */
245 #define LIGHT_FAST              256
246 #define LIGHT_FAST_TEMP         512
247 #define LIGHT_FAST_ACTUAL       ( LIGHT_FAST | LIGHT_FAST_TEMP )
248 #define LIGHT_NEGATIVE          1024
249 #define LIGHT_UNNORMALIZED      2048    /* vortex: do not normalize _color */
250
251 #define LIGHT_SUN_DEFAULT       ( LIGHT_ATTEN_ANGLE | LIGHT_GRID | LIGHT_SURFACES )
252 #define LIGHT_AREA_DEFAULT      ( LIGHT_ATTEN_ANGLE | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES )    /* q3a and wolf are the same */
253 #define LIGHT_Q3A_DEFAULT       ( LIGHT_ATTEN_ANGLE | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES | LIGHT_FAST )
254 #define LIGHT_WOLF_DEFAULT      ( LIGHT_ATTEN_LINEAR | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES | LIGHT_FAST )
255
256 #define MAX_TRACE_TEST_NODES    256
257 #define DEFAULT_INHIBIT_RADIUS  1.5f
258
259 #define LUXEL_EPSILON           0.125f
260 #define VERTEX_EPSILON          -0.125f
261 #define GRID_EPSILON            0.0f
262
263 #define DEFAULT_LIGHTMAP_SAMPLE_SIZE    16
264 #define DEFAULT_LIGHTMAP_MIN_SAMPLE_SIZE    0
265 #define DEFAULT_LIGHTMAP_SAMPLE_OFFSET  1.0f
266 #define DEFAULT_SUBDIVIDE_THRESHOLD     1.0f
267
268 #define EXTRA_SCALE             2   /* -extrawide = -super 2 */
269 #define EXTRAWIDE_SCALE         2   /* -extrawide = -super 2 -filter */
270
271 #define CLUSTER_UNMAPPED        -1
272 #define CLUSTER_OCCLUDED        -2
273 #define CLUSTER_FLOODED         -3
274
275 #define VERTEX_LUXEL_SIZE       3
276 #define BSP_LUXEL_SIZE          3
277 #define RAD_LUXEL_SIZE          3
278 #define SUPER_LUXEL_SIZE        4
279 #define SUPER_FLAG_SIZE         4
280 #define FLAG_FORCE_SUBSAMPLING 1
281 #define FLAG_ALREADY_SUBSAMPLED 2
282 #define SUPER_ORIGIN_SIZE       3
283 #define SUPER_NORMAL_SIZE       4
284 #define SUPER_DELUXEL_SIZE      3
285 #define BSP_DELUXEL_SIZE        3
286 #define SUPER_FLOODLIGHT_SIZE   4
287
288 #define VERTEX_LUXEL( s, v )    ( vertexLuxels[ s ] + ( ( v ) * VERTEX_LUXEL_SIZE ) )
289 #define RAD_VERTEX_LUXEL( s, v )( radVertexLuxels[ s ] + ( ( v ) * VERTEX_LUXEL_SIZE ) )
290 #define BSP_LUXEL( s, x, y )    ( lm->bspLuxels[ s ] + ( ( ( ( y ) * lm->w ) + ( x ) ) * BSP_LUXEL_SIZE ) )
291 #define RAD_LUXEL( s, x, y )    ( lm->radLuxels[ s ] + ( ( ( ( y ) * lm->w ) + ( x ) ) * RAD_LUXEL_SIZE ) )
292 #define SUPER_LUXEL( s, x, y )  ( lm->superLuxels[ s ] + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_LUXEL_SIZE ) )
293 #define SUPER_FLAG( x, y )  ( lm->superFlags + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_FLAG_SIZE ) )
294 #define SUPER_DELUXEL( x, y )   ( lm->superDeluxels + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_DELUXEL_SIZE ) )
295 #define BSP_DELUXEL( x, y )     ( lm->bspDeluxels + ( ( ( ( y ) * lm->w ) + ( x ) ) * BSP_DELUXEL_SIZE ) )
296 #define SUPER_CLUSTER( x, y )   ( lm->superClusters + ( ( ( y ) * lm->sw ) + ( x ) ) )
297 #define SUPER_ORIGIN( x, y )    ( lm->superOrigins + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_ORIGIN_SIZE ) )
298 #define SUPER_NORMAL( x, y )    ( lm->superNormals + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_NORMAL_SIZE ) )
299 #define SUPER_DIRT( x, y )      ( lm->superNormals + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_NORMAL_SIZE ) + 3 )   /* stash dirtyness in normal[ 3 ] */
300 #define SUPER_FLOODLIGHT( x, y )    ( lm->superFloodLight + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_FLOODLIGHT_SIZE ) )
301
302
303
304 /* -------------------------------------------------------------------------------
305
306    abstracted bsp file
307
308    ------------------------------------------------------------------------------- */
309
310 #define EXTERNAL_LIGHTMAP       "lm_%04d.tga"
311
312 #define MAX_LIGHTMAPS           4           /* RBSP */
313 #define MAX_LIGHT_STYLES        64
314 #define MAX_SWITCHED_LIGHTS     32
315 #define LS_NORMAL               0x00
316 #define LS_UNUSED               0xFE
317 #define LS_NONE                 0xFF
318
319 #define MAX_LIGHTMAP_SHADERS    256
320
321 /* ok to increase these at the expense of more memory */
322 #define MAX_MAP_AREAS           0x100       /* MAX_MAP_AREA_BYTES in q_shared must match! */
323 #define MAX_MAP_FOGS            30          //& 0x100   /* RBSP (32 - world fog - goggles) */
324 #define MAX_MAP_LEAFS           0x20000
325 #define MAX_MAP_PORTALS         0x20000
326 #define MAX_MAP_LIGHTING        0x800000
327 #define MAX_MAP_LIGHTGRID       0x100000    //% 0x800000 /* ydnar: set to points, not bytes */
328 #define MAX_MAP_VISCLUSTERS     0x4000 // <= MAX_MAP_LEAFS
329 #define MAX_MAP_VISIBILITY      ( VIS_HEADER_SIZE + MAX_MAP_VISCLUSTERS * ( ( ( MAX_MAP_VISCLUSTERS + 63 ) & ~63 ) >> 3 ) )
330
331 #define MAX_MAP_DRAW_SURFS      0x20000
332
333 #define MAX_MAP_ADVERTISEMENTS  30
334
335 /* key / value pair sizes in the entities lump */
336 #define MAX_KEY                 32
337 #define MAX_VALUE               1024
338
339 /* the editor uses these predefined yaw angles to orient entities up or down */
340 #define ANGLE_UP                -1
341 #define ANGLE_DOWN              -2
342
343 #define LIGHTMAP_WIDTH          128
344 #define LIGHTMAP_HEIGHT         128
345
346 #define MIN_WORLD_COORD         ( -65536 )
347 #define MAX_WORLD_COORD         ( 65536 )
348 #define WORLD_SIZE              ( MAX_WORLD_COORD - MIN_WORLD_COORD )
349
350
351 typedef void ( *bspFunc )( const char * );
352
353
354 typedef struct
355 {
356         int offset, length;
357 }
358 bspLump_t;
359
360
361 typedef struct
362 {
363         char ident[ 4 ];
364         int version;
365
366         bspLump_t lumps[ 100 ];     /* theoretical maximum # of bsp lumps */
367 }
368 bspHeader_t;
369
370
371 typedef struct
372 {
373         float mins[ 3 ], maxs[ 3 ];
374         int firstBSPSurface, numBSPSurfaces;
375         int firstBSPBrush, numBSPBrushes;
376 }
377 bspModel_t;
378
379
380 typedef struct
381 {
382         char shader[ MAX_QPATH ];
383         int surfaceFlags;
384         int contentFlags;
385 }
386 bspShader_t;
387
388
389 /* planes x^1 is always the opposite of plane x */
390
391 typedef struct
392 {
393         float normal[ 3 ];
394         float dist;
395 }
396 bspPlane_t;
397
398
399 typedef struct
400 {
401         int planeNum;
402         int children[ 2 ];              /* negative numbers are -(leafs+1), not nodes */
403         int mins[ 3 ];                  /* for frustum culling */
404         int maxs[ 3 ];
405 }
406 bspNode_t;
407
408
409 typedef struct
410 {
411         int cluster;                    /* -1 = opaque cluster (do I still store these?) */
412         int area;
413
414         int mins[ 3 ];                  /* for frustum culling */
415         int maxs[ 3 ];
416
417         int firstBSPLeafSurface;
418         int numBSPLeafSurfaces;
419
420         int firstBSPLeafBrush;
421         int numBSPLeafBrushes;
422 }
423 bspLeaf_t;
424
425
426 typedef struct
427 {
428         int planeNum;                   /* positive plane side faces out of the leaf */
429         int shaderNum;
430         int surfaceNum;                 /* RBSP */
431 }
432 bspBrushSide_t;
433
434
435 typedef struct
436 {
437         int firstSide;
438         int numSides;
439         int shaderNum;                  /* the shader that determines the content flags */
440 }
441 bspBrush_t;
442
443
444 typedef struct
445 {
446         char shader[ MAX_QPATH ];
447         int brushNum;
448         int visibleSide;                /* the brush side that ray tests need to clip against (-1 == none) */
449 }
450 bspFog_t;
451
452
453 typedef struct
454 {
455         vec3_t xyz;
456         float st[ 2 ];
457         float lightmap[ MAX_LIGHTMAPS ][ 2 ];       /* RBSP */
458         vec3_t normal;
459         byte color[ MAX_LIGHTMAPS ][ 4 ];           /* RBSP */
460 }
461 bspDrawVert_t;
462
463
464 typedef enum
465 {
466         MST_BAD,
467         MST_PLANAR,
468         MST_PATCH,
469         MST_TRIANGLE_SOUP,
470         MST_FLARE,
471         MST_FOLIAGE
472 }
473 bspSurfaceType_t;
474
475
476 typedef struct bspGridPoint_s
477 {
478         byte ambient[ MAX_LIGHTMAPS ][ 3 ];
479         byte directed[ MAX_LIGHTMAPS ][ 3 ];
480         byte styles[ MAX_LIGHTMAPS ];
481         byte latLong[ 2 ];
482 }
483 bspGridPoint_t;
484
485
486 typedef struct
487 {
488         int shaderNum;
489         int fogNum;
490         int surfaceType;
491
492         int firstVert;
493         int numVerts;
494
495         int firstIndex;
496         int numIndexes;
497
498         byte lightmapStyles[ MAX_LIGHTMAPS ];                               /* RBSP */
499         byte vertexStyles[ MAX_LIGHTMAPS ];                                 /* RBSP */
500         int lightmapNum[ MAX_LIGHTMAPS ];                                   /* RBSP */
501         int lightmapX[ MAX_LIGHTMAPS ], lightmapY[ MAX_LIGHTMAPS ];         /* RBSP */
502         int lightmapWidth, lightmapHeight;
503
504         vec3_t lightmapOrigin;
505         vec3_t lightmapVecs[ 3 ];       /* on patches, [ 0 ] and [ 1 ] are lodbounds */
506
507         int patchWidth;
508         int patchHeight;
509 }
510 bspDrawSurface_t;
511
512
513 /* advertisements */
514 typedef struct {
515         int cellId;
516         vec3_t normal;
517         vec3_t rect[4];
518         char model[ MAX_QPATH ];
519 } bspAdvertisement_t;
520
521
522 /* -------------------------------------------------------------------------------
523
524    general types
525
526    ------------------------------------------------------------------------------- */
527
528 /* ydnar: for smaller structs */
529 typedef unsigned char qb_t;
530
531
532 /* ydnar: for q3map_tcMod */
533 typedef float tcMod_t[ 3 ][ 3 ];
534
535
536 /* ydnar: for multiple game support */
537 typedef struct surfaceParm_s
538 {
539         char        *name;
540         int contentFlags, contentFlagsClear;
541         int surfaceFlags, surfaceFlagsClear;
542         int compileFlags, compileFlagsClear;
543 }
544 surfaceParm_t;
545
546 typedef enum
547 {
548         MINIMAP_MODE_GRAY,
549         MINIMAP_MODE_BLACK,
550         MINIMAP_MODE_WHITE
551 }
552 miniMapMode_t;
553
554 typedef struct game_s
555 {
556         char                *arg;                           /* -game matches this */
557         char                *gamePath;                      /* main game data dir */
558         char                *homeBasePath;                  /* home sub-dir on unix */
559         char                *magic;                         /* magic word for figuring out base path */
560         char                *shaderPath;                    /* shader directory */
561         int maxLMSurfaceVerts;                              /* default maximum meta surface verts */
562         int maxSurfaceVerts;                                /* default maximum surface verts */
563         int maxSurfaceIndexes;                              /* default maximum surface indexes (tris * 3) */
564         qboolean emitFlares;                                /* when true, emit flare surfaces */
565         char                *flareShader;                   /* default flare shader (MUST BE SET) */
566         qboolean wolfLight;                                 /* when true, lights work like wolf q3map  */
567         int lightmapSize;                                   /* bsp lightmap width/height */
568         float lightmapGamma;                                /* default lightmap gamma */
569         qboolean lightmapsRGB;                              /* default lightmap sRGB mode */
570         qboolean texturesRGB;                               /* default texture sRGB mode */
571         qboolean colorsRGB;                             /* default color sRGB mode */
572         float lightmapExposure;                             /* default lightmap exposure */
573         float lightmapCompensate;                           /* default lightmap compensate value */
574         float gridScale;                                    /* vortex: default lightgrid scale (affects both directional and ambient spectres) */
575         float gridAmbientScale;                             /* vortex: default lightgrid ambient spectre scale */
576         qboolean lightAngleHL;                              /* jal: use half-lambert curve for light angle attenuation */
577         qboolean noStyles;                                  /* use lightstyles hack or not */
578         qboolean keepLights;                                /* keep light entities on bsp */
579         int patchSubdivisions;                              /* default patch subdivisions tolerance */
580         qboolean patchShadows;                              /* patch casting enabled */
581         qboolean deluxeMap;                                 /* compile deluxemaps */
582         int deluxeMode;                                     /* deluxemap mode (0 - modelspace, 1 - tangentspace with renormalization, 2 - tangentspace without renormalization) */
583         int miniMapSize;                                    /* minimap size */
584         float miniMapSharpen;                               /* minimap sharpening coefficient */
585         float miniMapBorder;                                /* minimap border amount */
586         qboolean miniMapKeepAspect;                         /* minimap keep aspect ratio by letterboxing */
587         miniMapMode_t miniMapMode;                          /* minimap mode */
588         char                *miniMapNameFormat;             /* minimap name format */
589         char                *bspIdent;                      /* 4-letter bsp file prefix */
590         int bspVersion;                                     /* bsp version to use */
591         qboolean lumpSwap;                                  /* cod-style len/ofs order */
592         bspFunc load, write;                                /* load/write function pointers */
593         surfaceParm_t surfaceParms[ 128 ];                  /* surfaceparm array */
594 }
595 game_t;
596
597
598 typedef struct image_s
599 {
600         char                *name, *filename;
601         int refCount;
602         int width, height;
603         byte                *pixels;
604 }
605 image_t;
606
607
608 typedef struct sun_s
609 {
610         struct sun_s        *next;
611         vec3_t direction, color;
612         float photons, deviance, filterRadius;
613         int numSamples, style;
614 }
615 sun_t;
616
617
618 typedef struct surfaceModel_s
619 {
620         struct surfaceModel_s   *next;
621         char model[ MAX_QPATH ];
622         float density, odds;
623         float minScale, maxScale;
624         float minAngle, maxAngle;
625         qboolean oriented;
626 }
627 surfaceModel_t;
628
629
630 /* ydnar/sd: foliage stuff for wolf et (engine-supported optimization of the above) */
631 typedef struct foliage_s
632 {
633         struct foliage_s    *next;
634         char model[ MAX_QPATH ];
635         float scale, density, odds;
636         qboolean inverseAlpha;
637 }
638 foliage_t;
639
640 typedef struct foliageInstance_s
641 {
642         vec3_t xyz, normal;
643 }
644 foliageInstance_t;
645
646
647 typedef struct remap_s
648 {
649         struct remap_s      *next;
650         char from[ 1024 ];
651         char to[ MAX_QPATH ];
652 }
653 remap_t;
654
655 typedef struct skinfile_s
656 {
657         struct skinfile_s   *next;
658         char name[ 1024 ];
659         char to[ MAX_QPATH ];
660 }
661 skinfile_t;
662
663
664 /* wingdi.h hack, it's the same: 0 */
665 #undef CM_NONE
666
667 typedef enum
668 {
669         CM_NONE,
670         CM_VOLUME,
671         CM_COLOR_SET,
672         CM_ALPHA_SET,
673         CM_COLOR_SCALE,
674         CM_ALPHA_SCALE,
675         CM_COLOR_DOT_PRODUCT,
676         CM_ALPHA_DOT_PRODUCT,
677         CM_COLOR_DOT_PRODUCT_SCALE,
678         CM_ALPHA_DOT_PRODUCT_SCALE,
679         CM_COLOR_DOT_PRODUCT_2,
680         CM_ALPHA_DOT_PRODUCT_2,
681         CM_COLOR_DOT_PRODUCT_2_SCALE,
682         CM_ALPHA_DOT_PRODUCT_2_SCALE
683 }
684 colorModType_t;
685
686
687 typedef struct colorMod_s
688 {
689         struct colorMod_s   *next;
690         colorModType_t type;
691         vec_t data[ 16 ];
692 }
693 colorMod_t;
694
695
696 typedef enum
697 {
698         IM_NONE,
699         IM_OPAQUE,
700         IM_MASKED,
701         IM_BLEND
702 }
703 implicitMap_t;
704
705
706 typedef struct shaderInfo_s
707 {
708         char shader[ MAX_QPATH ];
709         int surfaceFlags;
710         int contentFlags;
711         int compileFlags;
712         float value;                                        /* light value */
713
714         char                *flareShader;                   /* for light flares */
715         char                *damageShader;                  /* ydnar: sof2 damage shader name */
716         char                *backShader;                    /* for surfaces that generate different front and back passes */
717         char                *cloneShader;                   /* ydnar: for cloning of a surface */
718         char                *remapShader;                   /* ydnar: remap a shader in final stage */
719         char                *deprecateShader;               /* vortex: shader is deprecated and replaced by this on use */
720
721         surfaceModel_t      *surfaceModel;                  /* ydnar: for distribution of models */
722         foliage_t           *foliage;                       /* ydnar/splash damage: wolf et foliage */
723
724         float subdivisions;                                 /* from a "tesssize xxx" */
725         float backsplashFraction;                           /* floating point value, usually 0.05 */
726         float backsplashDistance;                           /* default 16 */
727         float lightSubdivide;                               /* default 999 */
728         float lightFilterRadius;                            /* ydnar: lightmap filtering/blurring radius for lights created by this shader (default: 0) */
729
730         int lightmapSampleSize;                             /* lightmap sample size */
731         float lightmapSampleOffset;                         /* ydnar: lightmap sample offset (default: 1.0) */
732
733         float bounceScale;                                  /* ydnar: radiosity re-emission [0,1.0+] */
734         float offset;                                       /* ydnar: offset in units */
735         float shadeAngleDegrees;                            /* ydnar: breaking angle for smooth shading (degrees) */
736
737         vec3_t mins, maxs;                                  /* ydnar: for particle studio vertexDeform move support */
738
739         qb_t legacyTerrain;                                 /* ydnar: enable legacy terrain crutches */
740         qb_t indexed;                                       /* ydnar: attempt to use indexmap (terrain alphamap style) */
741         qb_t forceMeta;                                     /* ydnar: force metasurface path */
742         qb_t noClip;                                        /* ydnar: don't clip into bsp, preserve original face winding */
743         qb_t noFast;                                        /* ydnar: supress fast lighting for surfaces with this shader */
744         qb_t invert;                                        /* ydnar: reverse facing */
745         qb_t nonplanar;                                     /* ydnar: for nonplanar meta surface merging */
746         qb_t tcGen;                                         /* ydnar: has explicit texcoord generation */
747         vec3_t vecs[ 2 ];                                   /* ydnar: explicit texture vectors for [0,1] texture space */
748         tcMod_t mod;                                        /* ydnar: q3map_tcMod matrix for djbob :) */
749         vec3_t lightmapAxis;                                /* ydnar: explicit lightmap axis projection */
750         colorMod_t          *colorMod;                      /* ydnar: q3map_rgb/color/alpha/Set/Mod support */
751
752         int furNumLayers;                                   /* ydnar: number of fur layers */
753         float furOffset;                                    /* ydnar: offset of each layer */
754         float furFade;                                      /* ydnar: alpha fade amount per layer */
755
756         qb_t splotchFix;                                    /* ydnar: filter splotches on lightmaps */
757
758         qb_t hasPasses;                                     /* false if the shader doesn't define any rendering passes */
759         qb_t globalTexture;                                 /* don't normalize texture repeats */
760         qb_t twoSided;                                      /* cull none */
761         qb_t autosprite;                                    /* autosprite shaders will become point lights instead of area lights */
762         qb_t polygonOffset;                                 /* ydnar: don't face cull this or against this */
763         qb_t patchShadows;                                  /* have patches casting shadows when using -light for this surface */
764         qb_t vertexShadows;                                 /* shadows will be casted at this surface even when vertex lit */
765         qb_t forceSunlight;                                 /* force sun light at this surface even tho we might not calculate shadows in vertex lighting */
766         qb_t notjunc;                                       /* don't use this surface for tjunction fixing */
767         qb_t fogParms;                                      /* ydnar: has fogparms */
768         qb_t noFog;                                         /* ydnar: supress fogging */
769         qb_t clipModel;                                     /* ydnar: solid model hack */
770         qb_t noVertexLight;                                 /* ydnar: leave vertex color alone */
771         qb_t noDirty;                                       /* jal: do not apply the dirty pass to this surface */
772
773         byte styleMarker;                                   /* ydnar: light styles hack */
774
775         float vertexScale;                                  /* vertex light scale */
776
777         char skyParmsImageBase[ MAX_QPATH ];                /* ydnar: for skies */
778
779         char editorImagePath[ MAX_QPATH ];                  /* use this image to generate texture coordinates */
780         char lightImagePath[ MAX_QPATH ];                   /* use this image to generate color / averageColor */
781         char normalImagePath[ MAX_QPATH ];                  /* ydnar: normalmap image for bumpmapping */
782
783         implicitMap_t implicitMap;                          /* ydnar: enemy territory implicit shaders */
784         char implicitImagePath[ MAX_QPATH ];
785
786         image_t             *shaderImage;
787         image_t             *lightImage;
788         image_t             *normalImage;
789
790         float skyLightValue;                                /* ydnar */
791         int skyLightIterations;                             /* ydnar */
792         sun_t               *sun;                           /* ydnar */
793
794         vec3_t color;                                       /* normalized color */
795         vec3_t averageColor;
796         byte lightStyle;
797
798         /* vortex: per-surface floodlight */
799         float floodlightDirectionScale;
800         vec3_t floodlightRGB;
801         float floodlightIntensity;
802         float floodlightDistance;
803
804         qb_t lmMergable;                                    /* ydnar */
805         int lmCustomWidth, lmCustomHeight;                  /* ydnar */
806         float lmBrightness;                                 /* ydnar */
807         float lmFilterRadius;                               /* ydnar: lightmap filtering/blurring radius for this shader (default: 0) */
808
809         int shaderWidth, shaderHeight;                      /* ydnar */
810         float stFlat[ 2 ];
811
812         vec3_t fogDir;                                      /* ydnar */
813
814         char                *shaderText;                    /* ydnar */
815         qb_t custom;
816         qb_t finished;
817 }
818 shaderInfo_t;
819
820
821
822 /* -------------------------------------------------------------------------------
823
824    bsp structures
825
826    ------------------------------------------------------------------------------- */
827
828 typedef struct face_s
829 {
830         struct face_s       *next;
831         int planenum;
832         int priority;
833         //qboolean                      checked;
834         int compileFlags;
835         winding_t           *w;
836 }
837 face_t;
838
839
840 typedef struct plane_s
841 {
842         vec3_t normal;
843         vec_t dist;
844         int type;
845         int counter;
846         int hash_chain;
847 }
848 plane_t;
849
850
851 typedef struct side_s
852 {
853         int planenum;
854
855         int outputNum;                          /* set when the side is written to the file list */
856
857         float texMat[ 2 ][ 3 ];                 /* brush primitive texture matrix */
858         float vecs[ 2 ][ 4 ];                   /* old-style texture coordinate mapping */
859
860         winding_t           *winding;
861         winding_t           *visibleHull;       /* convex hull of all visible fragments */
862
863         shaderInfo_t        *shaderInfo;
864
865         int contentFlags;                       /* from shaderInfo */
866         int surfaceFlags;                       /* from shaderInfo */
867         int compileFlags;                       /* from shaderInfo */
868         int value;                              /* from shaderInfo */
869
870         qboolean visible;                       /* choose visble planes first */
871         qboolean bevel;                         /* don't ever use for bsp splitting, and don't bother making windings for it */
872         qboolean culled;                        /* ydnar: face culling */
873 }
874 side_t;
875
876
877 typedef struct sideRef_s
878 {
879         struct sideRef_s    *next;
880         side_t              *side;
881 }
882 sideRef_t;
883
884
885 /* ydnar: generic index mapping for entities (natural extension of terrain texturing) */
886 typedef struct indexMap_s
887 {
888         int w, h, numLayers;
889         char name[ MAX_QPATH ], shader[ MAX_QPATH ];
890         float offsets[ 256 ];
891         byte                *pixels;
892 }
893 indexMap_t;
894
895
896 typedef struct brush_s
897 {
898         struct brush_s      *next;
899         struct brush_s      *nextColorModBrush; /* ydnar: colorMod volume brushes go here */
900         struct brush_s      *original;          /* chopped up brushes will reference the originals */
901
902         int entityNum, brushNum;                /* editor numbering */
903         int outputNum;                          /* set when the brush is written to the file list */
904
905         /* ydnar: for shadowcasting entities */
906         int castShadows;
907         int recvShadows;
908
909         shaderInfo_t        *contentShader;
910         shaderInfo_t        *celShader;         /* :) */
911
912         /* ydnar: gs mods */
913         int lightmapSampleSize;                 /* jal : entity based _lightmapsamplesize */
914         float lightmapScale;
915         float shadeAngleDegrees;               /* jal : entity based _shadeangle */
916         vec3_t eMins, eMaxs;
917         indexMap_t          *im;
918
919         int contentFlags;
920         int compileFlags;                       /* ydnar */
921         qboolean detail;
922         qboolean opaque;
923
924         int portalareas[ 2 ];
925
926         vec3_t mins, maxs;
927         int numsides;
928
929         side_t sides[ 6 ];                      /* variably sized */
930 }
931 brush_t;
932
933
934 typedef struct fog_s
935 {
936         shaderInfo_t        *si;
937         brush_t             *brush;
938         int visibleSide;                        /* the brush side that ray tests need to clip against (-1 == none) */
939 }
940 fog_t;
941
942
943 typedef struct
944 {
945         int width, height;
946         bspDrawVert_t       *verts;
947 }
948 mesh_t;
949
950
951 typedef struct parseMesh_s
952 {
953         struct parseMesh_s  *next;
954
955         int entityNum, brushNum;                    /* ydnar: editor numbering */
956
957         /* ydnar: for shadowcasting entities */
958         int castShadows;
959         int recvShadows;
960
961         mesh_t mesh;
962         shaderInfo_t        *shaderInfo;
963         shaderInfo_t        *celShader;             /* :) */
964
965         /* jal : entity based _lightmapsamplesize */
966         int lightmapSampleSize;
967         /* ydnar: gs mods */
968         float lightmapScale;
969         vec3_t eMins, eMaxs;
970         indexMap_t          *im;
971
972         /* grouping */
973         qboolean grouped;
974         float longestCurve;
975         int maxIterations;
976 }
977 parseMesh_t;
978
979
980 /*
981     ydnar: the drawsurf struct was extended to allow for:
982     - non-convex planar surfaces
983     - non-planar brushface surfaces
984     - lightmapped terrain
985     - planar patches
986  */
987
988 typedef enum
989 {
990         /* ydnar: these match up exactly with bspSurfaceType_t */
991         SURFACE_BAD,
992         SURFACE_FACE,
993         SURFACE_PATCH,
994         SURFACE_TRIANGLES,
995         SURFACE_FLARE,
996         SURFACE_FOLIAGE,    /* wolf et */
997
998         /* ydnar: compiler-relevant surface types */
999         SURFACE_FORCED_META,
1000         SURFACE_META,
1001         SURFACE_FOGHULL,
1002         SURFACE_DECAL,
1003         SURFACE_SHADER,
1004
1005         NUM_SURFACE_TYPES
1006 }
1007 surfaceType_t;
1008
1009 char            *surfaceTypes[ NUM_SURFACE_TYPES ]
1010 #ifndef MAIN_C
1011 ;
1012 #else
1013         =
1014         {
1015         "SURFACE_BAD",
1016         "SURFACE_FACE",
1017         "SURFACE_PATCH",
1018         "SURFACE_TRIANGLES",
1019         "SURFACE_FLARE",
1020         "SURFACE_FOLIAGE",
1021         "SURFACE_FORCED_META",
1022         "SURFACE_META",
1023         "SURFACE_FOGHULL",
1024         "SURFACE_DECAL",
1025         "SURFACE_SHADER"
1026         };
1027 #endif
1028
1029
1030 /* ydnar: this struct needs an overhaul (again, heh) */
1031 typedef struct mapDrawSurface_s
1032 {
1033         surfaceType_t type;
1034         qboolean planar;
1035         int outputNum;                          /* ydnar: to match this sort of thing up */
1036
1037         qboolean fur;                           /* ydnar: this is kind of a hack, but hey... */
1038         qboolean skybox;                        /* ydnar: yet another fun hack */
1039         qboolean backSide;                      /* ydnar: q3map_backShader support */
1040
1041         struct mapDrawSurface_s *parent;        /* ydnar: for cloned (skybox) surfaces to share lighting data */
1042         struct mapDrawSurface_s *clone;         /* ydnar: for cloned surfaces */
1043         struct mapDrawSurface_s *cel;           /* ydnar: for cloned cel surfaces */
1044
1045         shaderInfo_t        *shaderInfo;
1046         shaderInfo_t        *celShader;
1047         brush_t             *mapBrush;
1048         parseMesh_t         *mapMesh;
1049         sideRef_t           *sideRef;
1050
1051         int fogNum;
1052
1053         int numVerts;                           /* vertexes and triangles */
1054         bspDrawVert_t       *verts;
1055         int numIndexes;
1056         int                 *indexes;
1057
1058         int planeNum;
1059         vec3_t lightmapOrigin;                  /* also used for flares */
1060         vec3_t lightmapVecs[ 3 ];               /* also used for flares */
1061         int lightStyle;                         /* used for flares */
1062
1063         /* ydnar: per-surface (per-entity, actually) lightmap sample size scaling */
1064         float lightmapScale;
1065
1066         /* jal: per-surface (per-entity, actually) shadeangle */
1067         float shadeAngleDegrees;
1068
1069         /* ydnar: surface classification */
1070         vec3_t mins, maxs;
1071         vec3_t lightmapAxis;
1072         int sampleSize;
1073
1074         /* ydnar: shadow group support */
1075         int castShadows, recvShadows;
1076
1077         /* ydnar: texture coordinate range monitoring for hardware with limited texcoord precision (in texel space) */
1078         float bias[ 2 ];
1079         int texMins[ 2 ], texMaxs[ 2 ], texRange[ 2 ];
1080
1081         /* ydnar: for patches */
1082         float longestCurve;
1083         int maxIterations;
1084         int patchWidth, patchHeight;
1085         vec3_t bounds[ 2 ];
1086
1087         /* ydnar/sd: for foliage */
1088         int numFoliageInstances;
1089
1090         /* ydnar: editor/useful numbering */
1091         int entityNum;
1092         int surfaceNum;
1093 }
1094 mapDrawSurface_t;
1095
1096
1097 typedef struct drawSurfRef_s
1098 {
1099         struct drawSurfRef_s    *nextRef;
1100         int outputNum;
1101 }
1102 drawSurfRef_t;
1103
1104
1105 /* ydnar: metasurfaces are constructed from lists of metatriangles so they can be merged in the best way */
1106 typedef struct metaTriangle_s
1107 {
1108         shaderInfo_t        *si;
1109         side_t              *side;
1110         int entityNum, surfaceNum, planeNum, fogNum, sampleSize, castShadows, recvShadows;
1111         float shadeAngleDegrees;
1112         vec4_t plane;
1113         vec3_t lightmapAxis;
1114         int indexes[ 3 ];
1115 }
1116 metaTriangle_t;
1117
1118
1119 typedef struct epair_s
1120 {
1121         struct epair_s      *next;
1122         char                *key, *value;
1123 }
1124 epair_t;
1125
1126
1127 typedef struct
1128 {
1129         vec3_t origin;
1130         brush_t             *brushes, *lastBrush, *colorModBrushes;
1131         parseMesh_t         *patches;
1132         int mapEntityNum, firstDrawSurf;
1133         int firstBrush, numBrushes;                     /* only valid during BSP compile */
1134         epair_t             *epairs;
1135         vec3_t originbrush_origin;
1136 }
1137 entity_t;
1138
1139
1140 typedef struct node_s
1141 {
1142         /* both leafs and nodes */
1143         int planenum;                       /* -1 = leaf node */
1144         struct node_s       *parent;
1145         vec3_t mins, maxs;                  /* valid after portalization */
1146         brush_t             *volume;        /* one for each leaf/node */
1147
1148         /* nodes only */
1149         side_t              *side;          /* the side that created the node */
1150         struct node_s       *children[ 2 ];
1151         int compileFlags;                   /* ydnar: hint, antiportal */
1152         int tinyportals;
1153         vec3_t referencepoint;
1154
1155         /* leafs only */
1156         qboolean opaque;                    /* view can never be inside */
1157         qboolean areaportal;
1158         qboolean skybox;                    /* ydnar: a skybox leaf */
1159         qboolean sky;                       /* ydnar: a sky leaf */
1160         int cluster;                        /* for portalfile writing */
1161         int area;                           /* for areaportals */
1162         brush_t             *brushlist;     /* fragments of all brushes in this leaf */
1163         drawSurfRef_t       *drawSurfReferences;
1164
1165         int occupied;                       /* 1 or greater can reach entity */
1166         entity_t            *occupant;      /* for leak file testing */
1167
1168         struct portal_s     *portals;       /* also on nodes during construction */
1169
1170         qboolean has_structural_children;
1171 }
1172 node_t;
1173
1174
1175 typedef struct portal_s
1176 {
1177         plane_t plane;
1178         node_t              *onnode;        /* NULL = outside box */
1179         node_t              *nodes[ 2 ];    /* [ 0 ] = front side of plane */
1180         struct portal_s     *next[ 2 ];
1181         winding_t           *winding;
1182
1183         qboolean sidefound;                 /* false if ->side hasn't been checked */
1184         int compileFlags;                   /* from original face that caused the split */
1185         side_t              *side;          /* NULL = non-visible */
1186 }
1187 portal_t;
1188
1189
1190 typedef struct
1191 {
1192         node_t              *headnode;
1193         node_t outside_node;
1194         vec3_t mins, maxs;
1195 }
1196 tree_t;
1197
1198
1199
1200 /* -------------------------------------------------------------------------------
1201
1202    vis structures
1203
1204    ------------------------------------------------------------------------------- */
1205
1206 typedef struct
1207 {
1208         vec3_t normal;
1209         float dist;
1210 }
1211 visPlane_t;
1212
1213
1214 typedef struct
1215 {
1216         int numpoints;
1217         vec3_t points[ MAX_POINTS_ON_FIXED_WINDING ];                   /* variable sized */
1218 }
1219 fixedWinding_t;
1220
1221
1222 typedef struct passage_s
1223 {
1224         struct passage_s    *next;
1225         byte cansee[ 1 ];                   /* all portals that can be seen through this passage */
1226 } passage_t;
1227
1228
1229 typedef enum
1230 {
1231         stat_none,
1232         stat_working,
1233         stat_done
1234 }
1235 vstatus_t;
1236
1237
1238 typedef struct
1239 {
1240         int num;
1241         qboolean hint;                      /* true if this portal was created from a hint splitter */
1242         qboolean sky;                       /* true if this portal belongs to a sky leaf */
1243         qboolean removed;
1244         visPlane_t plane;                   /* normal pointing into neighbor */
1245         int leaf;                           /* neighbor */
1246
1247         vec3_t origin;                      /* for fast clip testing */
1248         float radius;
1249
1250         fixedWinding_t      *winding;
1251         vstatus_t status;
1252         byte                *portalfront;   /* [portals], preliminary */
1253         byte                *portalflood;   /* [portals], intermediate */
1254         byte                *portalvis;     /* [portals], final */
1255
1256         int nummightsee;                    /* bit count on portalflood for sort */
1257         passage_t           *passages;      /* there are just as many passages as there */
1258                                             /* are portals in the leaf this portal leads */
1259 }
1260 vportal_t;
1261
1262
1263 typedef struct leaf_s
1264 {
1265         int numportals;
1266         int merged;
1267         vportal_t           *portals[MAX_PORTALS_ON_LEAF];
1268 }
1269 leaf_t;
1270
1271
1272 typedef struct pstack_s
1273 {
1274         byte mightsee[ MAX_PORTALS / 8 ];
1275         struct pstack_s     *next;
1276         leaf_t              *leaf;
1277         vportal_t           *portal;        /* portal exiting */
1278         fixedWinding_t      *source;
1279         fixedWinding_t      *pass;
1280
1281         fixedWinding_t windings[ 3 ];       /* source, pass, temp in any order */
1282         int freewindings[ 3 ];
1283
1284         visPlane_t portalplane;
1285         int depth;
1286 #ifdef SEPERATORCACHE
1287         visPlane_t seperators[ 2 ][ MAX_SEPERATORS ];
1288         int numseperators[ 2 ];
1289 #endif
1290 }
1291 pstack_t;
1292
1293
1294 typedef struct
1295 {
1296         vportal_t           *base;
1297         int c_chains;
1298         pstack_t pstack_head;
1299 }
1300 threaddata_t;
1301
1302
1303
1304 /* -------------------------------------------------------------------------------
1305
1306    light structures
1307
1308    ------------------------------------------------------------------------------- */
1309
1310 /* ydnar: new light struct with flags */
1311 typedef struct light_s
1312 {
1313         struct light_s      *next;
1314
1315         int type;
1316         int flags;                          /* ydnar: condensed all the booleans into one flags int */
1317         shaderInfo_t        *si;
1318
1319         vec3_t origin;
1320         vec3_t normal;                      /* for surfaces, spotlights, and suns */
1321         float dist;                         /* plane location along normal */
1322
1323         float photons;
1324         int style;
1325         vec3_t color;
1326         float radiusByDist;                 /* for spotlights */
1327         float fade;                         /* ydnar: from wolf, for linear lights */
1328         float angleScale;                   /* ydnar: stolen from vlight for K */
1329         float extraDist;                    /* "extra dimension" distance of the light, to kill hot spots */
1330
1331         float add;                          /* ydnar: used for area lights */
1332         float envelope;                     /* ydnar: units until falloff < tolerance */
1333         float envelope2;                    /* ydnar: envelope squared (tiny optimization) */
1334         vec3_t mins, maxs;                  /* ydnar: pvs envelope */
1335         int cluster;                        /* ydnar: cluster light falls into */
1336
1337         winding_t           *w;
1338         vec3_t emitColor;                   /* full out-of-gamut value */
1339
1340         float falloffTolerance;                 /* ydnar: minimum attenuation threshold */
1341         float filterRadius;                 /* ydnar: lightmap filter radius in world units, 0 == default */
1342 }
1343 light_t;
1344
1345
1346 typedef struct
1347 {
1348         /* constant input */
1349         qboolean testOcclusion, forceSunlight, testAll;
1350         int recvShadows;
1351
1352         int numSurfaces;
1353         int                 *surfaces;
1354
1355         int numLights;
1356         light_t             **lights;
1357
1358         qboolean twoSided;
1359
1360         /* per-sample input */
1361         int cluster;
1362         vec3_t origin, normal;
1363         vec_t inhibitRadius;                /* sphere in which occluding geometry is ignored */
1364
1365         /* per-light input */
1366         light_t             *light;
1367         vec3_t end;
1368
1369         /* calculated input */
1370         vec3_t displacement, direction;
1371         vec_t distance;
1372
1373         /* input and output */
1374         vec3_t color;                       /* starts out at full color, may be reduced if transparent surfaces are crossed */
1375         vec3_t colorNoShadow;               /* result color with no shadow casting */
1376         vec3_t directionContribution;              /* result contribution to the deluxe map */
1377
1378         /* output */
1379         vec3_t hit;
1380         int compileFlags;                   /* for determining surface compile flags traced through */
1381         qboolean passSolid;
1382         qboolean opaque;
1383         vec_t forceSubsampling;           /* needs subsampling (alphashadow), value = max color contribution possible from it */
1384
1385         /* working data */
1386         int numTestNodes;
1387         int testNodes[ MAX_TRACE_TEST_NODES ];
1388 }
1389 trace_t;
1390
1391
1392
1393 /* must be identical to bspDrawVert_t except for float color! */
1394 typedef struct
1395 {
1396         vec3_t xyz;
1397         float st[ 2 ];
1398         float lightmap[ MAX_LIGHTMAPS ][ 2 ];
1399         vec3_t normal;
1400         float color[ MAX_LIGHTMAPS ][ 4 ];
1401 }
1402 radVert_t;
1403
1404
1405 typedef struct
1406 {
1407         int numVerts;
1408         radVert_t verts[ MAX_POINTS_ON_WINDING ];
1409 }
1410 radWinding_t;
1411
1412
1413 /* crutch for poor local allocations in win32 smp */
1414 typedef struct
1415 {
1416         vec_t dists[ MAX_POINTS_ON_WINDING + 4 ];
1417         int sides[ MAX_POINTS_ON_WINDING + 4 ];
1418 }
1419 clipWork_t;
1420
1421
1422 /* ydnar: new lightmap handling code */
1423 typedef struct outLightmap_s
1424 {
1425         int lightmapNum, extLightmapNum;
1426         int customWidth, customHeight;
1427         int numLightmaps;
1428         int freeLuxels;
1429         int numShaders;
1430         shaderInfo_t        *shaders[ MAX_LIGHTMAP_SHADERS ];
1431         byte                *lightBits;
1432         byte                *bspLightBytes;
1433         byte                *bspDirBytes;
1434 }
1435 outLightmap_t;
1436
1437
1438 typedef struct rawLightmap_s
1439 {
1440         qboolean finished, splotchFix, wrap[ 2 ];
1441         int customWidth, customHeight;
1442         float brightness;
1443         float filterRadius;
1444
1445         int firstLightSurface, numLightSurfaces;                        /* index into lightSurfaces */
1446         int numLightClusters, *lightClusters;
1447
1448         int sampleSize, actualSampleSize, axisNum;
1449
1450         /* vortex: per-surface floodlight */
1451         float floodlightDirectionScale;
1452         vec3_t floodlightRGB;
1453         float floodlightIntensity;
1454         float floodlightDistance;
1455
1456         int entityNum;
1457         int recvShadows;
1458         vec3_t mins, maxs, axis, origin, *vecs;
1459         float                   *plane;
1460         int w, h, sw, sh, used;
1461
1462         qboolean solid[ MAX_LIGHTMAPS ];
1463         vec3_t solidColor[ MAX_LIGHTMAPS ];
1464
1465         int numStyledTwins;
1466         struct rawLightmap_s    *twins[ MAX_LIGHTMAPS ];
1467
1468         int outLightmapNums[ MAX_LIGHTMAPS ];
1469         int twinNums[ MAX_LIGHTMAPS ];
1470         int lightmapX[ MAX_LIGHTMAPS ], lightmapY[ MAX_LIGHTMAPS ];
1471         byte styles[ MAX_LIGHTMAPS ];
1472         float                   *bspLuxels[ MAX_LIGHTMAPS ];
1473         float                   *radLuxels[ MAX_LIGHTMAPS ];
1474         float                   *superLuxels[ MAX_LIGHTMAPS ];
1475         unsigned char               *superFlags;
1476         float                   *superOrigins;
1477         float                   *superNormals;
1478         int                     *superClusters;
1479
1480         float                   *superDeluxels; /* average light direction */
1481         float                   *bspDeluxels;
1482         float                   *superFloodLight;
1483 }
1484 rawLightmap_t;
1485
1486
1487 typedef struct rawGridPoint_s
1488 {
1489         vec3_t ambient[ MAX_LIGHTMAPS ];
1490         vec3_t directed[ MAX_LIGHTMAPS ];
1491         vec3_t dir;
1492         byte styles[ MAX_LIGHTMAPS ];
1493 }
1494 rawGridPoint_t;
1495
1496
1497 typedef struct surfaceInfo_s
1498 {
1499         int modelindex;
1500         shaderInfo_t        *si;
1501         rawLightmap_t       *lm;
1502         int parentSurfaceNum, childSurfaceNum;
1503         int entityNum, castShadows, recvShadows, sampleSize, patchIterations;
1504         float longestCurve;
1505         float               *plane;
1506         vec3_t axis, mins, maxs;
1507         qboolean hasLightmap, approximated;
1508         int firstSurfaceCluster, numSurfaceClusters;
1509 }
1510 surfaceInfo_t;
1511
1512 /* -------------------------------------------------------------------------------
1513
1514    prototypes
1515
1516    ------------------------------------------------------------------------------- */
1517
1518 /* main.c */
1519 vec_t                       Random( void );
1520 char                        *Q_strncpyz( char *dst, const char *src, size_t len );
1521 char                        *Q_strcat( char *dst, size_t dlen, const char *src );
1522 char                        *Q_strncat( char *dst, size_t dlen, const char *src, size_t slen );
1523 int                         ShiftBSPMain( int argc, char **argv );
1524
1525 /* help.c */
1526 void                        HelpMain(const char* arg);
1527
1528 /* path_init.c */
1529 game_t                      *GetGame( char *arg );
1530 void                        InitPaths( int *argc, char **argv );
1531
1532
1533 /* fixaas.c */
1534 int                         FixAASMain( int argc, char **argv );
1535
1536
1537 /* bsp.c */
1538 int                         BSPMain( int argc, char **argv );
1539
1540
1541 /* bsp_analyze.c */
1542 int                         AnalyzeBSPMain( int argc, char **argv );
1543
1544
1545 /* bsp_info.c */
1546 int                         BSPInfoMain( int count, char **fileNames );
1547
1548 /* bsp_scale.c */
1549 int                         ScaleBSPMain( int argc, char **argv );
1550
1551 /* minimap.c */
1552 int                         MiniMapBSPMain( int argc, char **argv );
1553
1554 /* convert_bsp.c */
1555 int                         ConvertBSPMain( int argc, char **argv );
1556
1557
1558 /* convert_map.c */
1559 int                         ConvertBSPToMap( char *bspName );
1560 int                         ConvertBSPToMap_BP( char *bspName );
1561
1562 /* convert_ase.c */
1563 int                         ConvertBSPToASE( char *bspName );
1564
1565 /* convert_obj.c */
1566 int                         ConvertBSPToOBJ( char *bspName );
1567
1568 /* brush.c */
1569 sideRef_t                   *AllocSideRef( side_t *side, sideRef_t *next );
1570 int                         CountBrushList( brush_t *brushes );
1571 brush_t                     *AllocBrush( int numsides );
1572 void                        FreeBrush( brush_t *brushes );
1573 void                        FreeBrushList( brush_t *brushes );
1574 brush_t                     *CopyBrush( brush_t *brush );
1575 qboolean                    BoundBrush( brush_t *brush );
1576 qboolean                    CreateBrushWindings( brush_t *brush );
1577 brush_t                     *BrushFromBounds( vec3_t mins, vec3_t maxs );
1578 vec_t                       BrushVolume( brush_t *brush );
1579 void                        WriteBSPBrushMap( char *name, brush_t *list );
1580
1581 void                        FilterDetailBrushesIntoTree( entity_t *e, tree_t *tree );
1582 void                        FilterStructuralBrushesIntoTree( entity_t *e, tree_t *tree );
1583
1584 int                         BoxOnPlaneSide( vec3_t mins, vec3_t maxs, plane_t *plane );
1585 qboolean                    WindingIsTiny( winding_t *w );
1586
1587 void                        SplitBrush( brush_t *brush, int planenum, brush_t **front, brush_t **back );
1588
1589 tree_t                      *AllocTree( void );
1590 node_t                      *AllocNode( void );
1591
1592
1593 /* mesh.c */
1594 void                        LerpDrawVert( bspDrawVert_t *a, bspDrawVert_t *b, bspDrawVert_t *out );
1595 void                        LerpDrawVertAmount( bspDrawVert_t *a, bspDrawVert_t *b, float amount, bspDrawVert_t *out );
1596 void                        FreeMesh( mesh_t *m );
1597 mesh_t                      *CopyMesh( mesh_t *mesh );
1598 void                        PrintMesh( mesh_t *m );
1599 mesh_t                      *TransposeMesh( mesh_t *in );
1600 void                        InvertMesh( mesh_t *m );
1601 mesh_t                      *SubdivideMesh( mesh_t in, float maxError, float minLength );
1602 int                         IterationsForCurve( float len, int subdivisions );
1603 mesh_t                      *SubdivideMesh2( mesh_t in, int iterations );
1604 mesh_t                      *SubdivideMeshQuads( mesh_t *in, float minLength, int maxsize, int *widthtable, int *heighttable );
1605 mesh_t                      *RemoveLinearMeshColumnsRows( mesh_t *in );
1606 void                        MakeMeshNormals( mesh_t in );
1607 void                        PutMeshOnCurve( mesh_t in );
1608
1609 void                        MakeNormalVectors( vec3_t forward, vec3_t right, vec3_t up );
1610
1611
1612 /* map.c */
1613 void                        LoadMapFile( char *filename, qboolean onlyLights, qboolean noCollapseGroups );
1614 int                         FindFloatPlane( vec3_t normal, vec_t dist, int numPoints, vec3_t *points );
1615 int                         PlaneTypeForNormal( vec3_t normal );
1616 void                        AddBrushBevels( void );
1617 brush_t                     *FinishBrush( qboolean noCollapseGroups );
1618
1619
1620 /* portals.c */
1621 void                        MakeHeadnodePortals( tree_t *tree );
1622 void                        MakeNodePortal( node_t *node );
1623 void                        SplitNodePortals( node_t *node );
1624
1625 qboolean                    PortalPassable( portal_t *p );
1626
1627 #define FLOODENTITIES_LEAKED 1
1628 #define FLOODENTITIES_GOOD 0
1629 #define FLOODENTITIES_EMPTY -1
1630 int                     FloodEntities( tree_t *tree );
1631 void                        FillOutside( node_t *headnode );
1632 void                        FloodAreas( tree_t *tree );
1633 face_t                      *VisibleFaces( entity_t *e, tree_t *tree );
1634 void                        FreePortal( portal_t *p );
1635
1636 void                        MakeTreePortals( tree_t *tree );
1637
1638
1639 /* leakfile.c */
1640 xmlNodePtr                  LeakFile( tree_t *tree, const char *lineFilePath );
1641
1642
1643 /* prtfile.c */
1644 void                        NumberClusters( tree_t *tree );
1645 void                        WritePortalFile( tree_t *tree, const char *portalFilePath );
1646
1647
1648 /* writebsp.c */
1649 void                        SetModelNumbers( void );
1650 void                        SetLightStyles( void );
1651
1652 int                         EmitShader( const char *shader, int *contentFlags, int *surfaceFlags );
1653
1654 void                        BeginBSPFile( void );
1655 void                        EndBSPFile( qboolean do_write, const char *BSPFilePath, const char *surfaceFilePath );
1656 void                        EmitBrushes( brush_t *brushes, int *firstBrush, int *numBrushes );
1657 void                        EmitFogs( void );
1658
1659 void                        BeginModel( void );
1660 void                        EndModel( entity_t *e, node_t *headnode );
1661
1662
1663 /* tree.c */
1664 void                        FreeTree( tree_t *tree );
1665 void                        FreeTree_r( node_t *node );
1666 void                        PrintTree_r( node_t *node, int depth );
1667 void                        FreeTreePortals_r( node_t *node );
1668
1669
1670 /* patch.c */
1671 void                        ParsePatch( qboolean onlyLights );
1672 mesh_t                      *SubdivideMesh( mesh_t in, float maxError, float minLength );
1673 void                        PatchMapDrawSurfs( entity_t *e );
1674 void                        TriangulatePatchSurface( entity_t *e, mapDrawSurface_t *ds );
1675
1676
1677 /* tjunction.c */
1678 void                        FixTJunctions( entity_t *e );
1679
1680
1681 /* fog.c */
1682 winding_t                   *WindingFromDrawSurf( mapDrawSurface_t *ds );
1683 void                        FogDrawSurfaces( entity_t *e );
1684 int                         FogForPoint( vec3_t point, float epsilon );
1685 int                         FogForBounds( vec3_t mins, vec3_t maxs, float epsilon );
1686 void                        CreateMapFogs( void );
1687
1688
1689 /* facebsp.c */
1690 face_t                      *MakeStructuralBSPFaceList( brush_t *list );
1691 face_t                      *MakeVisibleBSPFaceList( brush_t *list );
1692 tree_t                      *FaceBSP( face_t *list );
1693
1694
1695 /* model.c */
1696 void                        PicoPrintFunc( int level, const char *str );
1697 void                        PicoLoadFileFunc( const char *name, byte **buffer, int *bufSize );
1698 picoModel_t                 *FindModel( const char *name, int frame );
1699 picoModel_t                 *LoadModel( const char *name, int frame );
1700 void                        InsertModel( const char *name, int skin, int frame, m4x4_t transform, remap_t *remap, shaderInfo_t *celShader, int eNum, int castShadows, int recvShadows, int spawnFlags, float lightmapScale, int lightmapSampleSize, float shadeAngle, float clipDepth );
1701 void                        AddTriangleModels( entity_t *e );
1702
1703
1704 /* surface.c */
1705 mapDrawSurface_t            *AllocDrawSurface( surfaceType_t type );
1706 void                        FinishSurface( mapDrawSurface_t *ds );
1707 void                        StripFaceSurface( mapDrawSurface_t *ds );
1708 void                        MaxAreaFaceSurface( mapDrawSurface_t *ds );
1709 qboolean                    CalcSurfaceTextureRange( mapDrawSurface_t *ds );
1710 qboolean                    CalcLightmapAxis( vec3_t normal, vec3_t axis );
1711 void                        ClassifySurfaces( int numSurfs, mapDrawSurface_t *ds );
1712 void                        ClassifyEntitySurfaces( entity_t *e );
1713 void                        TidyEntitySurfaces( entity_t *e );
1714 mapDrawSurface_t            *CloneSurface( mapDrawSurface_t *src, shaderInfo_t *si );
1715 mapDrawSurface_t            *MakeCelSurface( mapDrawSurface_t *src, shaderInfo_t *si );
1716 qboolean                    IsTriangleDegenerate( bspDrawVert_t *points, int a, int b, int c );
1717 void                        ClearSurface( mapDrawSurface_t *ds );
1718 void                        AddEntitySurfaceModels( entity_t *e );
1719 mapDrawSurface_t            *DrawSurfaceForSide( entity_t *e, brush_t *b, side_t *s, winding_t *w );
1720 mapDrawSurface_t            *DrawSurfaceForMesh( entity_t *e, parseMesh_t *p, mesh_t *mesh );
1721 mapDrawSurface_t            *DrawSurfaceForFlare( int entNum, vec3_t origin, vec3_t normal, vec3_t color, const char *flareShader, int lightStyle );
1722 mapDrawSurface_t            *DrawSurfaceForShader( char *shader );
1723 void                        ClipSidesIntoTree( entity_t *e, tree_t *tree );
1724 void                        MakeDebugPortalSurfs( tree_t *tree );
1725 void                        MakeFogHullSurfs( entity_t *e, tree_t *tree, char *shader );
1726 void                        SubdivideFaceSurfaces( entity_t *e, tree_t *tree );
1727 void                        AddEntitySurfaceModels( entity_t *e );
1728 int                         AddSurfaceModels( mapDrawSurface_t *ds );
1729 void                        FilterDrawsurfsIntoTree( entity_t *e, tree_t *tree );
1730 void                        EmitPatchSurface( entity_t *e, mapDrawSurface_t *ds );
1731 void                        EmitTriangleSurface( mapDrawSurface_t *ds );
1732
1733
1734 /* surface_fur.c */
1735 void                        Fur( mapDrawSurface_t *src );
1736
1737
1738 /* surface_foliage.c */
1739 void                        Foliage( mapDrawSurface_t *src );
1740
1741
1742 /* ydnar: surface_meta.c */
1743 void                        ClearMetaTriangles( void );
1744 int                         FindMetaTriangle( metaTriangle_t *src, bspDrawVert_t *a, bspDrawVert_t *b, bspDrawVert_t *c, int planeNum );
1745 void                        MakeEntityMetaTriangles( entity_t *e );
1746 void                        FixMetaTJunctions( void );
1747 void                        SmoothMetaTriangles( void );
1748 void                        MergeMetaTriangles( void );
1749 void                        EmitMetaStats(); // vortex: print meta statistics even in no-verbose mode
1750
1751
1752 /* surface_extra.c */
1753 void                        SetDefaultSampleSize( int sampleSize );
1754
1755 void                        SetSurfaceExtra( mapDrawSurface_t *ds, int num );
1756
1757 shaderInfo_t                *GetSurfaceExtraShaderInfo( int num );
1758 int                         GetSurfaceExtraParentSurfaceNum( int num );
1759 int                         GetSurfaceExtraEntityNum( int num );
1760 int                         GetSurfaceExtraCastShadows( int num );
1761 int                         GetSurfaceExtraRecvShadows( int num );
1762 int                         GetSurfaceExtraSampleSize( int num );
1763 int                         GetSurfaceExtraMinSampleSize( int num );
1764 float                       GetSurfaceExtraLongestCurve( int num );
1765 void                        GetSurfaceExtraLightmapAxis( int num, vec3_t lightmapAxis );
1766
1767 void                        WriteSurfaceExtraFile( const char *surfaceFilePath );
1768 void                        LoadSurfaceExtraFile( const char *surfaceFilePath );
1769
1770
1771 /* decals.c */
1772 void                        ProcessDecals( void );
1773 void                        MakeEntityDecals( entity_t *e );
1774
1775 /* map.c */
1776 void                        TextureAxisFromPlane( plane_t *pln, vec3_t xv, vec3_t yv );
1777
1778 /* brush_primit.c */
1779 void                        ComputeAxisBase( vec3_t normal, vec3_t texX, vec3_t texY );
1780
1781
1782 /* vis.c */
1783 fixedWinding_t              *NewFixedWinding( int points );
1784 int                         VisMain( int argc, char **argv );
1785
1786 /* visflow.c */
1787 int                         CountBits( byte *bits, int numbits );
1788 void                        PassageFlow( int portalnum );
1789 void                        CreatePassages( int portalnum );
1790 void                        PassageMemory( void );
1791 void                        BasePortalVis( int portalnum );
1792 void                        BetterPortalVis( int portalnum );
1793 void                        PortalFlow( int portalnum );
1794 void                        PassagePortalFlow( int portalnum );
1795
1796
1797
1798 /* light.c  */
1799 float                       PointToPolygonFormFactor( const vec3_t point, const vec3_t normal, const winding_t *w );
1800 int                         LightContributionToSample( trace_t *trace );
1801 void LightingAtSample( trace_t * trace, byte styles[ MAX_LIGHTMAPS ], vec3_t colors[ MAX_LIGHTMAPS ] );
1802 int                         LightContributionToPoint( trace_t *trace );
1803 int                         LightMain( int argc, char **argv );
1804
1805
1806 /* light_trace.c */
1807 void                        SetupTraceNodes( void );
1808 void                        TraceLine( trace_t *trace );
1809 float                       SetupTrace( trace_t *trace );
1810
1811
1812 /* light_bounce.c */
1813 qboolean RadSampleImage( byte * pixels, int width, int height, float st[ 2 ], float color[ 4 ] );
1814 void                        RadLightForTriangles( int num, int lightmapNum, rawLightmap_t *lm, shaderInfo_t *si, float scale, float subdivide, clipWork_t *cw );
1815 void                        RadLightForPatch( int num, int lightmapNum, rawLightmap_t *lm, shaderInfo_t *si, float scale, float subdivide, clipWork_t *cw );
1816 void                        RadCreateDiffuseLights( void );
1817 void                        RadFreeLights();
1818
1819
1820 /* light_ydnar.c */
1821 void                        ColorToBytes( const float *color, byte *colorBytes, float scale );
1822 void                        SmoothNormals( void );
1823
1824 void                        MapRawLightmap( int num );
1825
1826 void                        SetupDirt();
1827 float                       DirtForSample( trace_t *trace );
1828 void                        DirtyRawLightmap( int num );
1829
1830 void                        SetupFloodLight();
1831 void                        FloodlightRawLightmaps();
1832 void                        FloodlightIlluminateLightmap( rawLightmap_t *lm );
1833 float                       FloodLightForSample( trace_t *trace, float floodLightDistance, qboolean floodLightLowQuality );
1834 void                        FloodLightRawLightmap( int num );
1835
1836 void                        IlluminateRawLightmap( int num );
1837 void                        IlluminateVertexes( int num );
1838
1839 void                        SetupBrushesFlags( unsigned int mask_any, unsigned int test_any, unsigned int mask_all, unsigned int test_all );
1840 void                        SetupBrushes( void );
1841 void                        SetupClusters( void );
1842 qboolean                    ClusterVisible( int a, int b );
1843 qboolean                    ClusterVisibleToPoint( vec3_t point, int cluster );
1844 int                         ClusterForPoint( vec3_t point );
1845 int                         ClusterForPointExt( vec3_t point, float epsilon );
1846 int                         ClusterForPointExtFilter( vec3_t point, float epsilon, int numClusters, int *clusters );
1847 int                         ShaderForPointInLeaf( vec3_t point, int leafNum, float epsilon, int wantContentFlags, int wantSurfaceFlags, int *contentFlags, int *surfaceFlags );
1848 void                        SetupEnvelopes( qboolean forGrid, qboolean fastFlag );
1849 void                        FreeTraceLights( trace_t *trace );
1850 void                        CreateTraceLightsForBounds( vec3_t mins, vec3_t maxs, vec3_t normal, int numClusters, int *clusters, int flags, trace_t *trace );
1851 void                        CreateTraceLightsForSurface( int num, trace_t *trace );
1852
1853
1854 /* lightmaps_ydnar.c */
1855 void                        ExportLightmaps( void );
1856
1857 int                         ExportLightmapsMain( int argc, char **argv );
1858 int                         ImportLightmapsMain( int argc, char **argv );
1859
1860 void                        SetupSurfaceLightmaps( void );
1861 void                        StitchSurfaceLightmaps( void );
1862 void                        StoreSurfaceLightmaps( qboolean fastAllocate );
1863
1864
1865 /* exportents.c */
1866 void                        ExportEntities( void );
1867 int                         ExportEntitiesMain( int argc, char **argv );
1868
1869
1870 /* image.c */
1871 void                        ImageFree( image_t *image );
1872 image_t                     *ImageFind( const char *filename );
1873 image_t                     *ImageLoad( const char *filename );
1874
1875
1876 /* shaders.c */
1877 void                        ColorMod( colorMod_t *am, int numVerts, bspDrawVert_t *drawVerts );
1878
1879 void TCMod( tcMod_t mod, float st[ 2 ] );
1880 void                        TCModIdentity( tcMod_t mod );
1881 void                        TCModMultiply( tcMod_t a, tcMod_t b, tcMod_t out );
1882 void                        TCModTranslate( tcMod_t mod, float s, float t );
1883 void                        TCModScale( tcMod_t mod, float s, float t );
1884 void                        TCModRotate( tcMod_t mod, float euler );
1885
1886 qboolean                    ApplySurfaceParm( char *name, int *contentFlags, int *surfaceFlags, int *compileFlags );
1887
1888 void                        BeginMapShaderFile( const char *mapFile );
1889 void                        WriteMapShaderFile( void );
1890 shaderInfo_t                *CustomShader( shaderInfo_t *si, char *find, char *replace );
1891 void                        EmitVertexRemapShader( char *from, char *to );
1892
1893 void                        LoadShaderInfo( void );
1894 shaderInfo_t                *ShaderInfoForShader( const char *shader );
1895 shaderInfo_t                *ShaderInfoForShaderNull( const char *shader );
1896
1897
1898 /* bspfile_abstract.c */
1899 void                        SetGridPoints( int n );
1900 void                        SetDrawVerts( int n );
1901 void                        IncDrawVerts();
1902 void                        SetDrawSurfaces( int n );
1903 void                        SetDrawSurfacesBuffer();
1904 void                        BSPFilesCleanup();
1905
1906 void                        SwapBlock( int *block, int size );
1907
1908 int                         GetLumpElements( bspHeader_t *header, int lump, int size );
1909 void                        *GetLump( bspHeader_t *header, int lump );
1910 int                         CopyLump( bspHeader_t *header, int lump, void *dest, int size );
1911 int                         CopyLump_Allocate( bspHeader_t *header, int lump, void **dest, int size, int *allocationVariable );
1912 void                        AddLump( FILE *file, bspHeader_t *header, int lumpNum, const void *data, int length );
1913
1914 void                        LoadBSPFile( const char *filename );
1915 void                        WriteBSPFile( const char *filename );
1916 void                        PrintBSPFileSizes( void );
1917
1918 epair_t                     *ParseEPair( void );
1919 void                        ParseEntities( void );
1920 void                        UnparseEntities( void );
1921 void                        PrintEntity( const entity_t *ent );
1922 void                        SetKeyValue( entity_t *ent, const char *key, const char *value );
1923 qboolean                    KeyExists( const entity_t *ent, const char *key ); /* VorteX: check if key exists */
1924 const char                  *ValueForKey( const entity_t *ent, const char *key );
1925 int                         IntForKey( const entity_t *ent, const char *key );
1926 vec_t                       FloatForKey( const entity_t *ent, const char *key );
1927 qboolean                    GetVectorForKey( const entity_t *ent, const char *key, vec3_t vec );
1928 entity_t                    *FindTargetEntity( const char *target );
1929 void                        GetEntityShadowFlags( const entity_t *ent, const entity_t *ent2, int *castShadows, int *recvShadows );
1930 void InjectCommandLine( char **argv, int beginArgs, int endArgs );
1931
1932
1933
1934 /* bspfile_ibsp.c */
1935 void                        LoadIBSPFile( const char *filename );
1936 void                        WriteIBSPFile( const char *filename );
1937
1938
1939 /* bspfile_rbsp.c */
1940 void                        LoadRBSPFile( const char *filename );
1941 void                        WriteRBSPFile( const char *filename );
1942
1943
1944
1945 /* -------------------------------------------------------------------------------
1946
1947    bsp/general global variables
1948
1949    ------------------------------------------------------------------------------- */
1950
1951 #ifdef MAIN_C
1952         #define Q_EXTERN
1953         #define Q_ASSIGN( a )   = a
1954 #else
1955         #define Q_EXTERN extern
1956         #define Q_ASSIGN( a )
1957 #endif
1958
1959 /* game support */
1960 Q_EXTERN game_t games[]
1961 #ifndef MAIN_C
1962 ;
1963 #else
1964         =
1965         {
1966                                                                 #include "game_quake3.h"
1967         ,
1968                                                                 #include "game_quakelive.h" /* must be after game_quake3.h as they share defines! */
1969         ,
1970                                                                 #include "game_nexuiz.h" /* must be after game_quake3.h as they share defines! */
1971         ,
1972                                                                 #include "game_xonotic.h" /* must be after game_quake3.h as they share defines! */
1973         ,
1974                                                                 #include "game_tremulous.h" /*LinuxManMikeC: must be after game_quake3.h, depends on #define's set in it */
1975         ,
1976                                                                 #include "game_unvanquished.h" /* must be after game_tremulous.h as they share defines! */
1977         ,
1978                                                                 #include "game_tenebrae.h"
1979         ,
1980                                                                 #include "game_wolf.h"
1981         ,
1982                                                                 #include "game_wolfet.h" /* must be after game_wolf.h as they share defines! */
1983         ,
1984                                                                 #include "game_etut.h"
1985         ,
1986                                                                 #include "game_ef.h"
1987         ,
1988                                                                 #include "game_sof2.h"
1989         ,
1990                                                                 #include "game_jk2.h"   /* must be after game_sof2.h as they share defines! */
1991         ,
1992                                                                 #include "game_ja.h"    /* must be after game_jk2.h as they share defines! */
1993         ,
1994                                                                 #include "game_qfusion.h"   /* qfusion game */
1995         ,
1996                                                                 #include "game_reaction.h" /* must be after game_quake3.h */
1997         ,
1998                                                                 #include "game_darkplaces.h"    /* vortex: darkplaces q1 engine */
1999         ,
2000                                                                 #include "game_dq.h"    /* vortex: deluxe quake game ( darkplaces q1 engine) */
2001         ,
2002                                                                 #include "game_prophecy.h"  /* vortex: prophecy game ( darkplaces q1 engine) */
2003         ,
2004                                                                 #include "game__null.h" /* null game (must be last item) */
2005         };
2006 #endif
2007 Q_EXTERN game_t             *game Q_ASSIGN( &games[ 0 ] );
2008
2009
2010 /* general */
2011 Q_EXTERN int numImages Q_ASSIGN( 0 );
2012 Q_EXTERN image_t images[ MAX_IMAGES ];
2013
2014 Q_EXTERN int numPicoModels Q_ASSIGN( 0 );
2015 Q_EXTERN picoModel_t        *picoModels[ MAX_MODELS ];
2016
2017 Q_EXTERN shaderInfo_t       *shaderInfo Q_ASSIGN( NULL );
2018 Q_EXTERN int numShaderInfo Q_ASSIGN( 0 );
2019 Q_EXTERN int numVertexRemaps Q_ASSIGN( 0 );
2020
2021 Q_EXTERN surfaceParm_t custSurfaceParms[ MAX_CUST_SURFACEPARMS ];
2022 Q_EXTERN int numCustSurfaceParms Q_ASSIGN( 0 );
2023
2024 Q_EXTERN char mapName[ MAX_QPATH ];                 /* ydnar: per-map custom shaders for larger lightmaps */
2025 Q_EXTERN char mapShaderFile[ 1024 ];
2026 Q_EXTERN qboolean warnImage Q_ASSIGN( qtrue );
2027
2028 /* ydnar: sinusoid samples */
2029 Q_EXTERN float jitters[ MAX_JITTERS ];
2030
2031 /*can't code*/
2032 Q_EXTERN qboolean doingBSP Q_ASSIGN( qfalse );
2033
2034 /* commandline arguments */
2035 Q_EXTERN qboolean nocmdline Q_ASSIGN( qfalse );
2036 Q_EXTERN qboolean verbose;
2037 Q_EXTERN qboolean verboseEntities Q_ASSIGN( qfalse );
2038 Q_EXTERN qboolean force Q_ASSIGN( qfalse );
2039 Q_EXTERN qboolean infoMode Q_ASSIGN( qfalse );
2040 Q_EXTERN qboolean useCustomInfoParms Q_ASSIGN( qfalse );
2041 Q_EXTERN qboolean noprune Q_ASSIGN( qfalse );
2042 Q_EXTERN qboolean leaktest Q_ASSIGN( qfalse );
2043 Q_EXTERN qboolean nodetail Q_ASSIGN( qfalse );
2044 Q_EXTERN qboolean nosubdivide Q_ASSIGN( qfalse );
2045 Q_EXTERN qboolean notjunc Q_ASSIGN( qfalse );
2046 Q_EXTERN qboolean fulldetail Q_ASSIGN( qfalse );
2047 Q_EXTERN qboolean nowater Q_ASSIGN( qfalse );
2048 Q_EXTERN qboolean noCurveBrushes Q_ASSIGN( qfalse );
2049 Q_EXTERN qboolean fakemap Q_ASSIGN( qfalse );
2050 Q_EXTERN qboolean coplanar Q_ASSIGN( qfalse );
2051 Q_EXTERN qboolean nofog Q_ASSIGN( qfalse );
2052 Q_EXTERN qboolean noHint Q_ASSIGN( qfalse );                        /* ydnar */
2053 Q_EXTERN qboolean renameModelShaders Q_ASSIGN( qfalse );            /* ydnar */
2054 Q_EXTERN qboolean skyFixHack Q_ASSIGN( qfalse );                    /* ydnar */
2055 Q_EXTERN qboolean bspAlternateSplitWeights Q_ASSIGN( qfalse );                      /* 27 */
2056 Q_EXTERN qboolean deepBSP Q_ASSIGN( qfalse );                   /* div0 */
2057 Q_EXTERN qboolean maxAreaFaceSurface Q_ASSIGN( qfalse );                    /* divVerent */
2058
2059 Q_EXTERN int patchSubdivisions Q_ASSIGN( 8 );                       /* ydnar: -patchmeta subdivisions */
2060
2061 Q_EXTERN int maxLMSurfaceVerts Q_ASSIGN( 64 );                      /* ydnar */
2062 Q_EXTERN int maxSurfaceVerts Q_ASSIGN( 999 );                       /* ydnar */
2063 Q_EXTERN int maxSurfaceIndexes Q_ASSIGN( 6000 );                    /* ydnar */
2064 Q_EXTERN float npDegrees Q_ASSIGN( 0.0f );                          /* ydnar: nonplanar degrees */
2065 Q_EXTERN int bevelSnap Q_ASSIGN( 0 );                               /* ydnar: bevel plane snap */
2066 Q_EXTERN int texRange Q_ASSIGN( 0 );
2067 Q_EXTERN qboolean flat Q_ASSIGN( qfalse );
2068 Q_EXTERN qboolean meta Q_ASSIGN( qfalse );
2069 Q_EXTERN qboolean patchMeta Q_ASSIGN( qfalse );
2070 Q_EXTERN qboolean emitFlares Q_ASSIGN( qfalse );
2071 Q_EXTERN qboolean debugSurfaces Q_ASSIGN( qfalse );
2072 Q_EXTERN qboolean debugInset Q_ASSIGN( qfalse );
2073 Q_EXTERN qboolean debugPortals Q_ASSIGN( qfalse );
2074 Q_EXTERN qboolean debugClip Q_ASSIGN( qfalse );                 /* debug model autoclipping */
2075 Q_EXTERN float clipDepthGlobal Q_ASSIGN( 2.0f );
2076 Q_EXTERN qboolean lightmapTriangleCheck Q_ASSIGN( qfalse );
2077 Q_EXTERN qboolean lightmapExtraVisClusterNudge Q_ASSIGN( qfalse );
2078 Q_EXTERN qboolean lightmapFill Q_ASSIGN( qfalse );
2079 Q_EXTERN int metaAdequateScore Q_ASSIGN( -1 );
2080 Q_EXTERN int metaGoodScore Q_ASSIGN( -1 );
2081 Q_EXTERN float metaMaxBBoxDistance Q_ASSIGN( -1 );
2082 Q_EXTERN qboolean noob Q_ASSIGN( qfalse );
2083
2084 #if Q3MAP2_EXPERIMENTAL_SNAP_NORMAL_FIX
2085 // Increasing the normalEpsilon to compensate for new logic in SnapNormal(), where
2086 // this epsilon is now used to compare against 0 components instead of the 1 or -1
2087 // components.  Unfortunately, normalEpsilon is also used in PlaneEqual().  So changing
2088 // this will affect anything that calls PlaneEqual() as well (which are, at the time
2089 // of this writing, FindFloatPlane() and AddBrushBevels()).
2090 Q_EXTERN double normalEpsilon Q_ASSIGN( 0.00005 );
2091 #else
2092 Q_EXTERN double normalEpsilon Q_ASSIGN( 0.00001 );
2093 #endif
2094
2095 #if Q3MAP2_EXPERIMENTAL_HIGH_PRECISION_MATH_FIXES
2096 // NOTE: This distanceEpsilon is too small if parts of the map are at maximum world
2097 // extents (in the range of plus or minus 2^16).  The smallest epsilon at values
2098 // close to 2^16 is about 0.007, which is greater than distanceEpsilon.  Therefore,
2099 // maps should be constrained to about 2^15, otherwise slightly undesirable effects
2100 // may result.  The 0.01 distanceEpsilon used previously is just too coarse in my
2101 // opinion.  The real fix for this problem is to have 64 bit distances and then make
2102 // this epsilon even smaller, or to constrain world coordinates to plus minus 2^15
2103 // (or even 2^14).
2104 Q_EXTERN double distanceEpsilon Q_ASSIGN( 0.005 );
2105 #else
2106 Q_EXTERN double distanceEpsilon Q_ASSIGN( 0.01 );
2107 #endif
2108
2109
2110 /* bsp */
2111 Q_EXTERN int numMapEntities Q_ASSIGN( 0 );
2112
2113 Q_EXTERN int blockSize[ 3 ]                                 /* should be the same as in radiant */
2114 #ifndef MAIN_C
2115 ;
2116 #else
2117         = { 1024, 1024, 1024 };
2118 #endif
2119
2120 Q_EXTERN char EnginePath[ 1024 ];
2121
2122 Q_EXTERN char name[ 1024 ];
2123 Q_EXTERN char source[ 1024 ];
2124 Q_EXTERN char outbase[ 32 ];
2125
2126 Q_EXTERN int sampleSize;                                    /* lightmap sample size in units */
2127 Q_EXTERN int minSampleSize;                                 /* minimum sample size to use at all */
2128 Q_EXTERN int sampleScale;                                   /* vortex: lightmap sample scale (ie quality)*/
2129
2130 Q_EXTERN int mapEntityNum Q_ASSIGN( 0 );
2131
2132 Q_EXTERN int entitySourceBrushes;
2133
2134 Q_EXTERN plane_t            *mapplanes Q_ASSIGN( NULL );  /* mapplanes[ num ^ 1 ] will always be the mirror or mapplanes[ num ] */
2135 Q_EXTERN int nummapplanes Q_ASSIGN( 0 );                    /* nummapplanes will always be even */
2136 Q_EXTERN int allocatedmapplanes Q_ASSIGN( 0 );
2137 Q_EXTERN int numMapPatches;
2138 Q_EXTERN vec3_t mapMins, mapMaxs;
2139
2140 Q_EXTERN int defaultFogNum Q_ASSIGN( -1 );                  /* ydnar: cleaner fog handling */
2141 Q_EXTERN int numMapFogs Q_ASSIGN( 0 );
2142 Q_EXTERN fog_t mapFogs[ MAX_MAP_FOGS ];
2143
2144 Q_EXTERN entity_t           *mapEnt;
2145 Q_EXTERN brush_t            *buildBrush;
2146 Q_EXTERN int numActiveBrushes;
2147 Q_EXTERN int g_bBrushPrimit;
2148
2149 Q_EXTERN int numStrippedLights Q_ASSIGN( 0 );
2150
2151
2152 /* surface stuff */
2153 Q_EXTERN mapDrawSurface_t   *mapDrawSurfs Q_ASSIGN( NULL );
2154 Q_EXTERN int numMapDrawSurfs;
2155
2156 Q_EXTERN int numSurfacesByType[ NUM_SURFACE_TYPES ];
2157 Q_EXTERN int numClearedSurfaces;
2158 Q_EXTERN int numStripSurfaces;
2159 Q_EXTERN int numMaxAreaSurfaces;
2160 Q_EXTERN int numFanSurfaces;
2161 Q_EXTERN int numMergedSurfaces;
2162 Q_EXTERN int numMergedVerts;
2163
2164 Q_EXTERN int numRedundantIndexes;
2165
2166 Q_EXTERN int numSurfaceModels Q_ASSIGN( 0 );
2167
2168 Q_EXTERN byte debugColors[ 12 ][ 3 ]
2169 #ifndef MAIN_C
2170 ;
2171 #else
2172         =
2173         {
2174         { 255, 0, 0 },
2175         { 192, 128, 128 },
2176         { 255, 255, 0 },
2177         { 192, 192, 128 },
2178         { 0, 255, 255 },
2179         { 128, 192, 192 },
2180         { 0, 0, 255 },
2181         { 128, 128, 192 },
2182         { 255, 0, 255 },
2183         { 192, 128, 192 },
2184         { 0, 255, 0 },
2185         { 128, 192, 128 }
2186         };
2187 #endif
2188
2189 Q_EXTERN qboolean skyboxPresent Q_ASSIGN( qfalse );
2190 Q_EXTERN int skyboxArea Q_ASSIGN( -1 );
2191 Q_EXTERN m4x4_t skyboxTransform;
2192
2193
2194
2195 /* -------------------------------------------------------------------------------
2196
2197    vis global variables
2198
2199    ------------------------------------------------------------------------------- */
2200
2201 /* commandline arguments */
2202 Q_EXTERN qboolean fastvis;
2203 Q_EXTERN qboolean noPassageVis;
2204 Q_EXTERN qboolean passageVisOnly;
2205 Q_EXTERN qboolean mergevis;
2206 Q_EXTERN qboolean mergevisportals;
2207 Q_EXTERN qboolean nosort;
2208 Q_EXTERN qboolean saveprt;
2209 Q_EXTERN qboolean hint;             /* ydnar */
2210 Q_EXTERN char inbase[ MAX_QPATH ];
2211 Q_EXTERN char globalCelShader[ MAX_QPATH ];
2212
2213 Q_EXTERN float farPlaneDist;                /* rr2do2, rf, mre, ydnar all contributed to this one... */
2214 Q_EXTERN int farPlaneDistMode;
2215
2216 Q_EXTERN int numportals;
2217 Q_EXTERN int portalclusters;
2218
2219 Q_EXTERN vportal_t          *portals;
2220 Q_EXTERN leaf_t             *leafs;
2221
2222 Q_EXTERN vportal_t          *faces;
2223 Q_EXTERN leaf_t             *faceleafs;
2224
2225 Q_EXTERN int numfaces;
2226
2227 Q_EXTERN int c_portaltest, c_portalpass, c_portalcheck;
2228 Q_EXTERN int c_portalskip, c_leafskip;
2229 Q_EXTERN int c_vistest, c_mighttest;
2230 Q_EXTERN int c_chains;
2231
2232 Q_EXTERN byte               *vismap, *vismap_p, *vismap_end;
2233
2234 Q_EXTERN int testlevel;
2235
2236 Q_EXTERN byte               *uncompressed;
2237
2238 Q_EXTERN int leafbytes, leaflongs;
2239 Q_EXTERN int portalbytes, portallongs;
2240
2241 Q_EXTERN vportal_t          *sorted_portals[ MAX_MAP_PORTALS * 2 ];
2242
2243
2244
2245 /* -------------------------------------------------------------------------------
2246
2247    light global variables
2248
2249    ------------------------------------------------------------------------------- */
2250
2251 /* commandline arguments */
2252 Q_EXTERN qboolean wolfLight Q_ASSIGN( qfalse );
2253 Q_EXTERN float extraDist Q_ASSIGN( 0.0f );
2254 Q_EXTERN qboolean loMem Q_ASSIGN( qfalse );
2255 Q_EXTERN qboolean noStyles Q_ASSIGN( qfalse );
2256 Q_EXTERN qboolean keepLights Q_ASSIGN( qfalse );
2257
2258 Q_EXTERN int sampleSize Q_ASSIGN( DEFAULT_LIGHTMAP_SAMPLE_SIZE );
2259 Q_EXTERN int minSampleSize Q_ASSIGN( DEFAULT_LIGHTMAP_MIN_SAMPLE_SIZE );
2260 Q_EXTERN qboolean noVertexLighting Q_ASSIGN( qfalse );
2261 Q_EXTERN qboolean nolm Q_ASSIGN( qfalse );
2262 Q_EXTERN qboolean noGridLighting Q_ASSIGN( qfalse );
2263
2264 Q_EXTERN qboolean noTrace Q_ASSIGN( qfalse );
2265 Q_EXTERN qboolean noSurfaces Q_ASSIGN( qfalse );
2266 Q_EXTERN qboolean patchShadows Q_ASSIGN( qfalse );
2267 Q_EXTERN qboolean cpmaHack Q_ASSIGN( qfalse );
2268
2269 Q_EXTERN qboolean deluxemap Q_ASSIGN( qfalse );
2270 Q_EXTERN qboolean debugDeluxemap Q_ASSIGN( qfalse );
2271 Q_EXTERN int deluxemode Q_ASSIGN( 0 );                  /* deluxemap format (0 - modelspace, 1 - tangentspace with renormalization, 2 - tangentspace without renormalization) */
2272
2273 Q_EXTERN qboolean fast Q_ASSIGN( qfalse );
2274 Q_EXTERN qboolean fastpoint Q_ASSIGN( qtrue );
2275 Q_EXTERN qboolean faster Q_ASSIGN( qfalse );
2276 Q_EXTERN qboolean fastgrid Q_ASSIGN( qfalse );
2277 Q_EXTERN qboolean fastbounce Q_ASSIGN( qfalse );
2278 Q_EXTERN qboolean cheap Q_ASSIGN( qfalse );
2279 Q_EXTERN qboolean cheapgrid Q_ASSIGN( qfalse );
2280 Q_EXTERN int bounce Q_ASSIGN( 0 );
2281 Q_EXTERN qboolean bounceOnly Q_ASSIGN( qfalse );
2282 Q_EXTERN qboolean bouncing Q_ASSIGN( qfalse );
2283 Q_EXTERN qboolean bouncegrid Q_ASSIGN( qfalse );
2284 Q_EXTERN qboolean normalmap Q_ASSIGN( qfalse );
2285 Q_EXTERN qboolean trisoup Q_ASSIGN( qfalse );
2286 Q_EXTERN qboolean shade Q_ASSIGN( qfalse );
2287 Q_EXTERN float shadeAngleDegrees Q_ASSIGN( 0.0f );
2288 Q_EXTERN int superSample Q_ASSIGN( 0 );
2289 Q_EXTERN int lightSamples Q_ASSIGN( 1 );
2290 Q_EXTERN qboolean lightRandomSamples Q_ASSIGN( qfalse );
2291 Q_EXTERN int lightSamplesSearchBoxSize Q_ASSIGN( 1 );
2292 Q_EXTERN qboolean filter Q_ASSIGN( qfalse );
2293 Q_EXTERN qboolean dark Q_ASSIGN( qfalse );
2294 Q_EXTERN qboolean sunOnly Q_ASSIGN( qfalse );
2295 Q_EXTERN int approximateTolerance Q_ASSIGN( 0 );
2296 Q_EXTERN qboolean noCollapse Q_ASSIGN( qfalse );
2297 Q_EXTERN int lightmapSearchBlockSize Q_ASSIGN( 0 );
2298 Q_EXTERN qboolean exportLightmaps Q_ASSIGN( qfalse );
2299 Q_EXTERN qboolean externalLightmaps Q_ASSIGN( qfalse );
2300 Q_EXTERN int lmCustomSize Q_ASSIGN( LIGHTMAP_WIDTH );
2301 Q_EXTERN char *             lmCustomDir Q_ASSIGN( NULL );
2302 Q_EXTERN int lmLimitSize Q_ASSIGN( 0 );
2303
2304 Q_EXTERN qboolean dirty Q_ASSIGN( qfalse );
2305 Q_EXTERN qboolean dirtDebug Q_ASSIGN( qfalse );
2306 Q_EXTERN int dirtMode Q_ASSIGN( 0 );
2307 Q_EXTERN float dirtDepth Q_ASSIGN( 128.0f );
2308 Q_EXTERN float dirtScale Q_ASSIGN( 1.0f );
2309 Q_EXTERN float dirtGain Q_ASSIGN( 1.0f );
2310
2311 /* 27: floodlighting */
2312 Q_EXTERN qboolean debugnormals Q_ASSIGN( qfalse );
2313 Q_EXTERN qboolean floodlighty Q_ASSIGN( qfalse );
2314 Q_EXTERN qboolean floodlight_lowquality Q_ASSIGN( qfalse );
2315 Q_EXTERN vec3_t floodlightRGB;
2316 Q_EXTERN float floodlightIntensity Q_ASSIGN( 512.0f );
2317 Q_EXTERN float floodlightDistance Q_ASSIGN( 1024.0f );
2318 Q_EXTERN float floodlightDirectionScale Q_ASSIGN( 1.0f );
2319
2320 Q_EXTERN qboolean dump Q_ASSIGN( qfalse );
2321 Q_EXTERN qboolean debug Q_ASSIGN( qfalse );
2322 Q_EXTERN qboolean debugUnused Q_ASSIGN( qfalse );
2323 Q_EXTERN qboolean debugAxis Q_ASSIGN( qfalse );
2324 Q_EXTERN qboolean debugCluster Q_ASSIGN( qfalse );
2325 Q_EXTERN qboolean debugOrigin Q_ASSIGN( qfalse );
2326 Q_EXTERN qboolean lightmapBorder Q_ASSIGN( qfalse );
2327 //1=warn; 0=warn if lmsize>128
2328 Q_EXTERN int debugSampleSize Q_ASSIGN( 0 );
2329
2330 /* longest distance across the map */
2331 Q_EXTERN float maxMapDistance Q_ASSIGN( 0 );
2332
2333 /* for run time tweaking of light sources */
2334 Q_EXTERN float pointScale Q_ASSIGN( 7500.0f );
2335 Q_EXTERN float spotScale Q_ASSIGN( 7500.0f );
2336 Q_EXTERN float areaScale Q_ASSIGN( 0.25f );
2337 Q_EXTERN float skyScale Q_ASSIGN( 1.0f );
2338 Q_EXTERN float bounceScale Q_ASSIGN( 0.25f );
2339 Q_EXTERN float bounceColorRatio Q_ASSIGN( 1.0f );
2340 Q_EXTERN float vertexglobalscale Q_ASSIGN( 1.0f );
2341
2342 /* jal: alternative angle attenuation curve */
2343 Q_EXTERN qboolean lightAngleHL Q_ASSIGN( qfalse );
2344
2345 /* vortex: gridscale and gridambientscale */
2346 Q_EXTERN float gridScale Q_ASSIGN( 1.0f );
2347 Q_EXTERN float gridAmbientScale Q_ASSIGN( 1.0f );
2348 Q_EXTERN float gridDirectionality Q_ASSIGN( 1.0f );
2349 Q_EXTERN float gridAmbientDirectionality Q_ASSIGN( 0.0f );
2350 Q_EXTERN qboolean inGrid Q_ASSIGN( 0 );
2351
2352 /* ydnar: lightmap gamma/compensation */
2353 Q_EXTERN float lightmapGamma Q_ASSIGN( 1.0f );
2354 Q_EXTERN float lightmapsRGB Q_ASSIGN( qfalse );
2355 Q_EXTERN float texturesRGB Q_ASSIGN( qfalse );
2356 Q_EXTERN float colorsRGB Q_ASSIGN( qfalse );
2357 Q_EXTERN float lightmapExposure Q_ASSIGN( 0.0f );
2358 Q_EXTERN float lightmapCompensate Q_ASSIGN( 1.0f );
2359
2360 /* ydnar: for runtime tweaking of falloff tolerance */
2361 Q_EXTERN float falloffTolerance Q_ASSIGN( 1.0f );
2362 Q_EXTERN qboolean exactPointToPolygon Q_ASSIGN( qtrue );
2363 Q_EXTERN float formFactorValueScale Q_ASSIGN( 3.0f );
2364 Q_EXTERN float linearScale Q_ASSIGN( 1.0f / 8000.0f );
2365
2366 // for .ase conversion
2367 Q_EXTERN qboolean shadersAsBitmap Q_ASSIGN( qfalse );
2368 Q_EXTERN qboolean lightmapsAsTexcoord Q_ASSIGN( qfalse );
2369
2370 Q_EXTERN light_t            *lights;
2371 Q_EXTERN int numPointLights;
2372 Q_EXTERN int numSpotLights;
2373 Q_EXTERN int numSunLights;
2374 Q_EXTERN int numAreaLights;
2375
2376 /* ydnar: for luxel placement */
2377 Q_EXTERN int numSurfaceClusters, maxSurfaceClusters;
2378 Q_EXTERN int                *surfaceClusters;
2379
2380 /* ydnar: for radiosity */
2381 Q_EXTERN int numDiffuseLights;
2382 Q_EXTERN int numBrushDiffuseLights;
2383 Q_EXTERN int numTriangleDiffuseLights;
2384 Q_EXTERN int numPatchDiffuseLights;
2385
2386 /* ydnar: general purpose extra copy of drawvert list */
2387 Q_EXTERN bspDrawVert_t      *yDrawVerts;
2388
2389 /* ydnar: for tracing statistics */
2390 Q_EXTERN int minSurfacesTested;
2391 Q_EXTERN int maxSurfacesTested;
2392 Q_EXTERN int totalSurfacesTested;
2393 Q_EXTERN int totalTraces;
2394
2395 Q_EXTERN FILE               *dumpFile;
2396
2397 Q_EXTERN int c_visible, c_occluded;
2398 Q_EXTERN int c_subsampled;                  /* ydnar */
2399
2400 Q_EXTERN int defaultLightSubdivide Q_ASSIGN( 999 );
2401
2402 Q_EXTERN vec3_t ambientColor;
2403 Q_EXTERN vec3_t minLight, minVertexLight, minGridLight;
2404
2405 Q_EXTERN int                *entitySurface;
2406 Q_EXTERN vec3_t             *surfaceOrigin;
2407
2408 Q_EXTERN vec3_t sunDirection;
2409 Q_EXTERN vec3_t sunLight;
2410
2411 /* tracing */
2412 Q_EXTERN int c_totalTrace;
2413 Q_EXTERN int c_cullTrace, c_testTrace;
2414 Q_EXTERN int c_testFacets;
2415
2416 /* ydnar: light optimization */
2417 Q_EXTERN float subdivideThreshold Q_ASSIGN( DEFAULT_SUBDIVIDE_THRESHOLD );
2418
2419 Q_EXTERN int numOpaqueBrushes, maxOpaqueBrush;
2420 Q_EXTERN byte               *opaqueBrushes;
2421
2422 Q_EXTERN int numLights;
2423 Q_EXTERN int numCulledLights;
2424
2425 Q_EXTERN int gridBoundsCulled;
2426 Q_EXTERN int gridEnvelopeCulled;
2427
2428 Q_EXTERN int lightsBoundsCulled;
2429 Q_EXTERN int lightsEnvelopeCulled;
2430 Q_EXTERN int lightsPlaneCulled;
2431 Q_EXTERN int lightsClusterCulled;
2432
2433 /* ydnar: radiosity */
2434 Q_EXTERN float diffuseSubdivide Q_ASSIGN( 256.0f );
2435 Q_EXTERN float minDiffuseSubdivide Q_ASSIGN( 64.0f );
2436 Q_EXTERN int numDiffuseSurfaces Q_ASSIGN( 0 );
2437
2438 /* ydnar: list of surface information necessary for lightmap calculation */
2439 Q_EXTERN surfaceInfo_t      *surfaceInfos Q_ASSIGN( NULL );
2440
2441 /* ydnar: sorted list of surfaces */
2442 Q_EXTERN int                *sortSurfaces Q_ASSIGN( NULL );
2443
2444 /* clumps of surfaces that share a raw lightmap */
2445 Q_EXTERN int numLightSurfaces Q_ASSIGN( 0 );
2446 Q_EXTERN int                *lightSurfaces Q_ASSIGN( NULL );
2447
2448 /* raw lightmaps */
2449 Q_EXTERN int numRawSuperLuxels Q_ASSIGN( 0 );
2450 Q_EXTERN int numRawLightmaps Q_ASSIGN( 0 );
2451 Q_EXTERN rawLightmap_t      *rawLightmaps Q_ASSIGN( NULL );
2452 Q_EXTERN int                *sortLightmaps Q_ASSIGN( NULL );
2453
2454 /* vertex luxels */
2455 Q_EXTERN float              *vertexLuxels[ MAX_LIGHTMAPS ];
2456 Q_EXTERN float              *radVertexLuxels[ MAX_LIGHTMAPS ];
2457
2458 /* bsp lightmaps */
2459 Q_EXTERN int numLightmapShaders Q_ASSIGN( 0 );
2460 Q_EXTERN int numSolidLightmaps Q_ASSIGN( 0 );
2461 Q_EXTERN int numOutLightmaps Q_ASSIGN( 0 );
2462 Q_EXTERN int numBSPLightmaps Q_ASSIGN( 0 );
2463 Q_EXTERN int numExtLightmaps Q_ASSIGN( 0 );
2464 Q_EXTERN outLightmap_t      *outLightmaps Q_ASSIGN( NULL );
2465
2466 /* vortex: per surface floodlight statictics */
2467 Q_EXTERN int numSurfacesFloodlighten Q_ASSIGN( 0 );
2468
2469 /* grid points */
2470 Q_EXTERN int numRawGridPoints Q_ASSIGN( 0 );
2471 Q_EXTERN rawGridPoint_t     *rawGridPoints Q_ASSIGN( NULL );
2472
2473 Q_EXTERN int numSurfsVertexLit Q_ASSIGN( 0 );
2474 Q_EXTERN int numSurfsVertexForced Q_ASSIGN( 0 );
2475 Q_EXTERN int numSurfsVertexApproximated Q_ASSIGN( 0 );
2476 Q_EXTERN int numSurfsLightmapped Q_ASSIGN( 0 );
2477 Q_EXTERN int numPlanarsLightmapped Q_ASSIGN( 0 );
2478 Q_EXTERN int numNonPlanarsLightmapped Q_ASSIGN( 0 );
2479 Q_EXTERN int numPatchesLightmapped Q_ASSIGN( 0 );
2480 Q_EXTERN int numPlanarPatchesLightmapped Q_ASSIGN( 0 );
2481
2482 Q_EXTERN int numLuxels Q_ASSIGN( 0 );
2483 Q_EXTERN int numLuxelsMapped Q_ASSIGN( 0 );
2484 Q_EXTERN int numLuxelsOccluded Q_ASSIGN( 0 );
2485 Q_EXTERN int numLuxelsIlluminated Q_ASSIGN( 0 );
2486 Q_EXTERN int numVertsIlluminated Q_ASSIGN( 0 );
2487
2488 /* lightgrid */
2489 Q_EXTERN vec3_t gridMins;
2490 Q_EXTERN int gridBounds[ 3 ];
2491 Q_EXTERN vec3_t gridSize
2492 #ifndef MAIN_C
2493 ;
2494 #else
2495         = { 64, 64, 128 };
2496 #endif
2497
2498
2499
2500 /* -------------------------------------------------------------------------------
2501
2502    abstracted bsp globals
2503
2504    ------------------------------------------------------------------------------- */
2505
2506 Q_EXTERN int numEntities Q_ASSIGN( 0 );
2507 Q_EXTERN int numBSPEntities Q_ASSIGN( 0 );
2508 Q_EXTERN int allocatedEntities Q_ASSIGN( 0 );
2509 Q_EXTERN entity_t*          entities Q_ASSIGN( NULL );
2510
2511 Q_EXTERN int numBSPModels Q_ASSIGN( 0 );
2512 Q_EXTERN int allocatedBSPModels Q_ASSIGN( 0 );
2513 Q_EXTERN bspModel_t*        bspModels Q_ASSIGN( NULL );
2514
2515 Q_EXTERN int numBSPShaders Q_ASSIGN( 0 );
2516 Q_EXTERN int allocatedBSPShaders Q_ASSIGN( 0 );
2517 Q_EXTERN bspShader_t*       bspShaders Q_ASSIGN( 0 );
2518
2519 Q_EXTERN int bspEntDataSize Q_ASSIGN( 0 );
2520 Q_EXTERN int allocatedBSPEntData Q_ASSIGN( 0 );
2521 Q_EXTERN char               *bspEntData Q_ASSIGN( 0 );
2522
2523 Q_EXTERN int numBSPLeafs Q_ASSIGN( 0 );
2524 Q_EXTERN bspLeaf_t bspLeafs[ MAX_MAP_LEAFS ];
2525
2526 Q_EXTERN int numBSPPlanes Q_ASSIGN( 0 );
2527 Q_EXTERN int allocatedBSPPlanes Q_ASSIGN( 0 );
2528 Q_EXTERN bspPlane_t         *bspPlanes;
2529
2530 Q_EXTERN int numBSPNodes Q_ASSIGN( 0 );
2531 Q_EXTERN int allocatedBSPNodes Q_ASSIGN( 0 );
2532 Q_EXTERN bspNode_t*         bspNodes Q_ASSIGN( NULL );
2533
2534 Q_EXTERN int numBSPLeafSurfaces Q_ASSIGN( 0 );
2535 Q_EXTERN int allocatedBSPLeafSurfaces Q_ASSIGN( 0 );
2536 Q_EXTERN int*               bspLeafSurfaces Q_ASSIGN( NULL );
2537
2538 Q_EXTERN int numBSPLeafBrushes Q_ASSIGN( 0 );
2539 Q_EXTERN int allocatedBSPLeafBrushes Q_ASSIGN( 0 );
2540 Q_EXTERN int*               bspLeafBrushes Q_ASSIGN( NULL );
2541
2542 Q_EXTERN int numBSPBrushes Q_ASSIGN( 0 );
2543 Q_EXTERN int allocatedBSPBrushes Q_ASSIGN( 0 );
2544 Q_EXTERN bspBrush_t*        bspBrushes Q_ASSIGN( NULL );
2545
2546 Q_EXTERN int numBSPBrushSides Q_ASSIGN( 0 );
2547 Q_EXTERN int allocatedBSPBrushSides Q_ASSIGN( 0 );
2548 Q_EXTERN bspBrushSide_t*    bspBrushSides Q_ASSIGN( NULL );
2549
2550 Q_EXTERN int numBSPLightBytes Q_ASSIGN( 0 );
2551 Q_EXTERN byte               *bspLightBytes Q_ASSIGN( NULL );
2552
2553 //%     Q_EXTERN int                            numBSPGridPoints Q_ASSIGN( 0 );
2554 //%     Q_EXTERN byte                           *bspGridPoints Q_ASSIGN( NULL );
2555
2556 Q_EXTERN int numBSPGridPoints Q_ASSIGN( 0 );
2557 Q_EXTERN bspGridPoint_t     *bspGridPoints Q_ASSIGN( NULL );
2558
2559 Q_EXTERN int numBSPVisBytes Q_ASSIGN( 0 );
2560 Q_EXTERN byte bspVisBytes[ MAX_MAP_VISIBILITY ];
2561
2562 Q_EXTERN int numBSPDrawVerts Q_ASSIGN( 0 );
2563 Q_EXTERN bspDrawVert_t          *bspDrawVerts Q_ASSIGN( NULL );
2564
2565 Q_EXTERN int numBSPDrawIndexes Q_ASSIGN( 0 );
2566 Q_EXTERN int allocatedBSPDrawIndexes Q_ASSIGN( 0 );
2567 Q_EXTERN int                *bspDrawIndexes Q_ASSIGN( NULL );
2568
2569 Q_EXTERN int numBSPDrawSurfaces Q_ASSIGN( 0 );
2570 Q_EXTERN bspDrawSurface_t   *bspDrawSurfaces Q_ASSIGN( NULL );
2571
2572 Q_EXTERN int numBSPFogs Q_ASSIGN( 0 );
2573 Q_EXTERN bspFog_t bspFogs[ MAX_MAP_FOGS ];
2574
2575 Q_EXTERN int numBSPAds Q_ASSIGN( 0 );
2576 Q_EXTERN bspAdvertisement_t bspAds[ MAX_MAP_ADVERTISEMENTS ];
2577
2578 #define AUTOEXPAND_BY_REALLOC( ptr, reqitem, allocated, def ) \
2579         do \
2580         { \
2581                 if ( reqitem >= allocated )     \
2582                 { \
2583                         if ( allocated == 0 ) { \
2584                                 allocated = def; } \
2585                         while ( reqitem >= allocated && allocated )     \
2586                                 allocated *= 2; \
2587                         if ( !allocated || allocated > 2147483647 / (int)sizeof( *ptr ) ) \
2588                         { \
2589                                 Error( # ptr " over 2 GB" ); \
2590                         } \
2591                         ptr = realloc( ptr, sizeof( *ptr ) * allocated ); \
2592                         if ( !ptr ) { \
2593                                 Error( # ptr " out of memory" ); } \
2594                 } \
2595         } \
2596         while ( 0 )
2597
2598 #define AUTOEXPAND_BY_REALLOC_BSP( suffix, def ) AUTOEXPAND_BY_REALLOC( bsp ## suffix, numBSP ## suffix, allocatedBSP ## suffix, def )
2599
2600 #define Image_LinearFloatFromsRGBFloat( c ) ( ( ( c ) <= 0.04045f ) ? ( c ) * ( 1.0f / 12.92f ) : (float)pow( ( ( c ) + 0.055f ) * ( 1.0f / 1.055f ), 2.4f ) )
2601 #define Image_sRGBFloatFromLinearFloat( c ) ( ( ( c ) < 0.0031308f ) ? ( c ) * 12.92f : 1.055f * (float)pow( ( c ), 1.0f / 2.4f ) - 0.055f )
2602
2603 /* end marker */
2604 #endif