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