2008-07-25 07:31:37 +00:00
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Copyright (C) 1999-2007 id Software, Inc. and contributors.
|
|
|
|
For a list of contributors, see the accompanying CONTRIBUTORS file.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
This file is part of GtkRadiant.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GtkRadiant; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
----------------------------------------------------------------------------------
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
This code has been altered significantly from its original form, to support
|
|
|
|
several games based on the Quake III Arena engine, in the form of "Q3Map2."
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* marker */
|
|
|
|
#ifndef Q3MAP2_H
|
|
|
|
#define Q3MAP2_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* version */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q3MAP_VERSION "2.5.17"
|
|
|
|
#define Q3MAP_MOTD "Last one turns the lights off"
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
dependencies
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* platform-specific */
|
|
|
|
#if defined( __linux__ ) || defined( __APPLE__ )
|
|
|
|
#define Q_UNIX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef Q_UNIX
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
|
|
|
|
2008-07-25 07:31:37 +00:00
|
|
|
#ifdef WIN32
|
2007-11-04 03:34:51 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* general */
|
2012-03-17 20:01:54 +00:00
|
|
|
#include "version.h" /* ttimo: might want to guard that if built outside of the GtkRadiant tree */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
#include "cmdlib.h"
|
|
|
|
#include "mathlib.h"
|
|
|
|
#include "md5lib.h"
|
2010-11-26 05:59:17 +00:00
|
|
|
#include "md4lib.h"
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "ddslib.h"
|
|
|
|
|
|
|
|
#include "picomodel.h"
|
|
|
|
|
|
|
|
#include "scriplib.h"
|
|
|
|
#include "polylib.h"
|
|
|
|
#include "imagelib.h"
|
|
|
|
#include "qthreads.h"
|
|
|
|
#include "inout.h"
|
|
|
|
#include "vfs.h"
|
|
|
|
#include "png.h"
|
2009-12-31 18:24:36 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-03-17 23:34:31 +00:00
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
port-related hacks
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAC_STATIC_HACK 0
|
|
|
|
#if defined( __APPLE__ ) && MAC_STATIC_HACK
|
|
|
|
#define MAC_STATIC static
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAC_STATIC
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 1
|
2008-07-25 07:31:37 +00:00
|
|
|
#ifdef WIN32
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q_stricmp stricmp
|
|
|
|
#define Q_strncasecmp strnicmp
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q_stricmp strcasecmp
|
|
|
|
#define Q_strncasecmp strncasecmp
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* macro version */
|
2012-03-17 20:01:54 +00:00
|
|
|
#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 ] )
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
constants
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2011-01-10 06:15:47 +00:00
|
|
|
/* temporary hacks and tests (please keep off in SVN to prevent anyone's legacy map from screwing up) */
|
2011-01-11 08:25:10 +00:00
|
|
|
/* 2011-01-10 TTimo says we should turn these on in SVN, so turning on now */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q3MAP2_EXPERIMENTAL_HIGH_PRECISION_MATH_FIXES 1
|
|
|
|
#define Q3MAP2_EXPERIMENTAL_SNAP_NORMAL_FIX 1
|
|
|
|
#define Q3MAP2_EXPERIMENTAL_SNAP_PLANE_FIX 1
|
|
|
|
#define Q3MAP2_EXPERIMENTAL_MODEL_CLIPPING_FIX 1
|
2011-01-10 06:15:47 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* general */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_QPATH 64
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_IMAGES 512
|
|
|
|
#define DEFAULT_IMAGE "*default"
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_MODELS 512
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define DEF_BACKSPLASH_FRACTION 0.05f /* 5% backsplash by default */
|
|
|
|
#define DEF_BACKSPLASH_DISTANCE 23
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define DEF_RADIOSITY_BOUNCE 1.0f /* ydnar: default to 100% re-emitted light */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_SHADER_INFO 8192
|
|
|
|
#define MAX_CUST_SURFACEPARMS 64
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define SHADER_MAX_VERTEXES 1000
|
|
|
|
#define SHADER_MAX_INDEXES ( 6 * SHADER_MAX_VERTEXES )
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_JITTERS 256
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* epair parsing (note case-sensitivity directive) */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define CASE_INSENSITIVE_EPAIRS 1
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
#if CASE_INSENSITIVE_EPAIRS
|
2012-03-17 20:01:54 +00:00
|
|
|
#define EPAIR_STRCMP Q_stricmp
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
#define EPAIR_STRCMP strcmp
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: compiler flags, because games have widely varying content/surface flags */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define C_SOLID 0x00000001
|
|
|
|
#define C_TRANSLUCENT 0x00000002
|
|
|
|
#define C_STRUCTURAL 0x00000004
|
|
|
|
#define C_HINT 0x00000008
|
|
|
|
#define C_NODRAW 0x00000010
|
|
|
|
#define C_LIGHTGRID 0x00000020
|
|
|
|
#define C_ALPHASHADOW 0x00000040
|
|
|
|
#define C_LIGHTFILTER 0x00000080
|
|
|
|
#define C_VERTEXLIT 0x00000100
|
|
|
|
#define C_LIQUID 0x00000200
|
|
|
|
#define C_FOG 0x00000400
|
|
|
|
#define C_SKY 0x00000800
|
|
|
|
#define C_ORIGIN 0x00001000
|
|
|
|
#define C_AREAPORTAL 0x00002000
|
|
|
|
#define C_ANTIPORTAL 0x00004000 /* like hint, but doesn't generate portals */
|
|
|
|
#define C_SKIP 0x00008000 /* like hint, but skips this face (doesn't split bsp) */
|
|
|
|
#define C_NOMARKS 0x00010000 /* no decals */
|
|
|
|
#define C_DETAIL 0x08000000 /* THIS MUST BE THE SAME AS IN RADIANT! */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* shadow flags */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define WORLDSPAWN_CAST_SHADOWS 1
|
|
|
|
#define WORLDSPAWN_RECV_SHADOWS 1
|
|
|
|
#define ENTITY_CAST_SHADOWS 0
|
|
|
|
#define ENTITY_RECV_SHADOWS 1
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bsp */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_PATCH_SIZE 32
|
|
|
|
#define MAX_BRUSH_SIDES 1024
|
|
|
|
#define MAX_BUILD_SIDES 300
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_EXPANDED_AXIS 128
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define CLIP_EPSILON 0.1f
|
|
|
|
#define PLANESIDE_EPSILON 0.001f
|
|
|
|
#define PLANENUM_LEAF -1
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define HINT_PRIORITY 1000 /* ydnar: force hint splits first and antiportal/areaportal splits last */
|
|
|
|
#define ANTIPORTAL_PRIORITY -1000
|
|
|
|
#define AREAPORTAL_PRIORITY -1000
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define PSIDE_FRONT 1
|
|
|
|
#define PSIDE_BACK 2
|
|
|
|
#define PSIDE_BOTH ( PSIDE_FRONT | PSIDE_BACK )
|
|
|
|
#define PSIDE_FACING 4
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define BPRIMIT_UNDEFINED 0
|
|
|
|
#define BPRIMIT_OLDBRUSHES 1
|
|
|
|
#define BPRIMIT_NEWBRUSHES 2
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* vis */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define VIS_HEADER_SIZE 8
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define SEPERATORCACHE /* seperator caching helps a bit */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define PORTALFILE "PRT1"
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_PORTALS 32768
|
|
|
|
#define MAX_SEPERATORS MAX_POINTS_ON_WINDING
|
|
|
|
#define MAX_POINTS_ON_FIXED_WINDING 24 /* ydnar: increased this from 12 at the expense of more memory */
|
|
|
|
#define MAX_PORTALS_ON_LEAF 128
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* light */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define EMIT_POINT 0
|
|
|
|
#define EMIT_AREA 1
|
|
|
|
#define EMIT_SPOT 2
|
|
|
|
#define EMIT_SUN 3
|
|
|
|
|
|
|
|
#define LIGHT_ATTEN_LINEAR 1
|
|
|
|
#define LIGHT_ATTEN_ANGLE 2
|
|
|
|
#define LIGHT_ATTEN_DISTANCE 4
|
|
|
|
#define LIGHT_TWOSIDED 8
|
|
|
|
#define LIGHT_GRID 16
|
|
|
|
#define LIGHT_SURFACES 32
|
|
|
|
#define LIGHT_DARK 64 /* probably never use this */
|
|
|
|
#define LIGHT_FAST 256
|
|
|
|
#define LIGHT_FAST_TEMP 512
|
|
|
|
#define LIGHT_FAST_ACTUAL ( LIGHT_FAST | LIGHT_FAST_TEMP )
|
|
|
|
#define LIGHT_NEGATIVE 1024
|
|
|
|
|
|
|
|
#define LIGHT_SUN_DEFAULT ( LIGHT_ATTEN_ANGLE | LIGHT_GRID | LIGHT_SURFACES )
|
|
|
|
#define LIGHT_AREA_DEFAULT ( LIGHT_ATTEN_ANGLE | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES ) /* q3a and wolf are the same */
|
|
|
|
#define LIGHT_Q3A_DEFAULT ( LIGHT_ATTEN_ANGLE | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES | LIGHT_FAST )
|
|
|
|
#define LIGHT_WOLF_DEFAULT ( LIGHT_ATTEN_LINEAR | LIGHT_ATTEN_DISTANCE | LIGHT_GRID | LIGHT_SURFACES | LIGHT_FAST )
|
|
|
|
|
|
|
|
#define MAX_TRACE_TEST_NODES 256
|
|
|
|
#define DEFAULT_INHIBIT_RADIUS 1.5f
|
|
|
|
|
|
|
|
#define LUXEL_EPSILON 0.125f
|
|
|
|
#define VERTEX_EPSILON -0.125f
|
|
|
|
#define GRID_EPSILON 0.0f
|
|
|
|
|
|
|
|
#define DEFAULT_LIGHTMAP_SAMPLE_SIZE 16
|
|
|
|
#define DEFAULT_LIGHTMAP_SAMPLE_OFFSET 1.0f
|
|
|
|
#define DEFAULT_SUBDIVIDE_THRESHOLD 1.0f
|
|
|
|
|
|
|
|
#define EXTRA_SCALE 2 /* -extrawide = -super 2 */
|
|
|
|
#define EXTRAWIDE_SCALE 2 /* -extrawide = -super 2 -filter */
|
|
|
|
|
|
|
|
#define CLUSTER_UNMAPPED -1
|
|
|
|
#define CLUSTER_OCCLUDED -2
|
|
|
|
#define CLUSTER_FLOODED -3
|
|
|
|
|
|
|
|
#define VERTEX_LUXEL_SIZE 3
|
|
|
|
#define BSP_LUXEL_SIZE 3
|
|
|
|
#define RAD_LUXEL_SIZE 3
|
|
|
|
#define SUPER_LUXEL_SIZE 4
|
|
|
|
#define SUPER_ORIGIN_SIZE 3
|
|
|
|
#define SUPER_NORMAL_SIZE 4
|
|
|
|
#define SUPER_DELUXEL_SIZE 3
|
|
|
|
#define BSP_DELUXEL_SIZE 3
|
|
|
|
|
|
|
|
#define VERTEX_LUXEL( s, v ) ( vertexLuxels[ s ] + ( ( v ) * VERTEX_LUXEL_SIZE ) )
|
|
|
|
#define RAD_VERTEX_LUXEL( s, v )( radVertexLuxels[ s ] + ( ( v ) * VERTEX_LUXEL_SIZE ) )
|
|
|
|
#define BSP_LUXEL( s, x, y ) ( lm->bspLuxels[ s ] + ( ( ( ( y ) * lm->w ) + ( x ) ) * BSP_LUXEL_SIZE ) )
|
|
|
|
#define RAD_LUXEL( s, x, y ) ( lm->radLuxels[ s ] + ( ( ( ( y ) * lm->w ) + ( x ) ) * RAD_LUXEL_SIZE ) )
|
|
|
|
#define SUPER_LUXEL( s, x, y ) ( lm->superLuxels[ s ] + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_LUXEL_SIZE ) )
|
|
|
|
#define SUPER_DELUXEL( x, y ) ( lm->superDeluxels + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_DELUXEL_SIZE ) )
|
|
|
|
#define BSP_DELUXEL( x, y ) ( lm->bspDeluxels + ( ( ( ( y ) * lm->w ) + ( x ) ) * BSP_DELUXEL_SIZE ) )
|
|
|
|
#define SUPER_CLUSTER( x, y ) ( lm->superClusters + ( ( ( y ) * lm->sw ) + ( x ) ) )
|
|
|
|
#define SUPER_ORIGIN( x, y ) ( lm->superOrigins + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_ORIGIN_SIZE ) )
|
|
|
|
#define SUPER_NORMAL( x, y ) ( lm->superNormals + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_NORMAL_SIZE ) )
|
|
|
|
#define SUPER_DIRT( x, y ) ( lm->superNormals + ( ( ( ( y ) * lm->sw ) + ( x ) ) * SUPER_NORMAL_SIZE ) + 3 ) /* stash dirtyness in normal[ 3 ] */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
abstracted bsp file
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define EXTERNAL_LIGHTMAP "lm_%04d.tga"
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_LIGHTMAPS 4 /* RBSP */
|
|
|
|
#define MAX_LIGHT_STYLES 64
|
|
|
|
#define MAX_SWITCHED_LIGHTS 32
|
|
|
|
#define LS_NORMAL 0x00
|
|
|
|
#define LS_UNUSED 0xFE
|
|
|
|
#define LS_NONE 0xFF
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_LIGHTMAP_SHADERS 256
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ok to increase these at the expense of more memory */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_MAP_MODELS 0x400
|
|
|
|
#define MAX_MAP_BRUSHES 0x10000
|
|
|
|
#define MAX_MAP_ENTITIES 0x1000 //% 0x800 /* ydnar */
|
|
|
|
#define MAX_MAP_ENTSTRING 0x80000 //% 0x40000 /* ydnar */
|
|
|
|
#define MAX_MAP_SHADERS 0x800 //% 0x400 /* ydnar */
|
|
|
|
|
|
|
|
#define MAX_MAP_AREAS 0x100 /* MAX_MAP_AREA_BYTES in q_shared must match! */
|
|
|
|
#define MAX_MAP_FOGS 30 //& 0x100 /* RBSP (32 - world fog - goggles) */
|
|
|
|
#define MAX_MAP_PLANES 0x100000 //% 0x20000 /* ydnar for md */
|
|
|
|
#define MAX_MAP_NODES 0x20000
|
|
|
|
#define MAX_MAP_BRUSHSIDES 0x100000 //% 0x20000 /* ydnar */
|
|
|
|
#define MAX_MAP_LEAFS 0x20000
|
|
|
|
#define MAX_MAP_LEAFFACES 0x100000 //% 0x20000 /* ydnar */
|
|
|
|
#define MAX_MAP_LEAFBRUSHES 0x40000
|
|
|
|
#define MAX_MAP_PORTALS 0x20000
|
|
|
|
#define MAX_MAP_LIGHTING 0x800000
|
|
|
|
#define MAX_MAP_LIGHTGRID 0x100000 //% 0x800000 /* ydnar: set to points, not bytes */
|
|
|
|
#define MAX_MAP_VISIBILITY 0x200000
|
|
|
|
|
|
|
|
#define MAX_MAP_DRAW_SURFS 0x20000
|
|
|
|
#define MAX_MAP_DRAW_VERTS 0x100000
|
|
|
|
#define MAX_MAP_DRAW_INDEXES 0x80000
|
|
|
|
|
|
|
|
#define MAX_MAP_ADVERTISEMENTS 30
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* key / value pair sizes in the entities lump */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MAX_KEY 32
|
|
|
|
#define MAX_VALUE 1024
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* the editor uses these predefined yaw angles to orient entities up or down */
|
2012-03-17 20:01:54 +00:00
|
|
|
#define ANGLE_UP -1
|
|
|
|
#define ANGLE_DOWN -2
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define LIGHTMAP_WIDTH 128
|
|
|
|
#define LIGHTMAP_HEIGHT 128
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define MIN_WORLD_COORD ( -65536 )
|
|
|
|
#define MAX_WORLD_COORD ( 65536 )
|
|
|
|
#define WORLD_SIZE ( MAX_WORLD_COORD - MIN_WORLD_COORD )
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
typedef void ( *bspFunc )( const char * );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int offset, length;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspLump_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char ident[ 4 ];
|
|
|
|
int version;
|
|
|
|
|
|
|
|
bspLump_t lumps[ 100 ]; /* theoretical maximum # of bsp lumps */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspHeader_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
float mins[ 3 ], maxs[ 3 ];
|
|
|
|
int firstBSPSurface, numBSPSurfaces;
|
|
|
|
int firstBSPBrush, numBSPBrushes;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspModel_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char shader[ MAX_QPATH ];
|
|
|
|
int surfaceFlags;
|
|
|
|
int contentFlags;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspShader_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* planes x^1 is allways the opposite of plane x */
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
float normal[ 3 ];
|
|
|
|
float dist;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspPlane_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int planeNum;
|
|
|
|
int children[ 2 ]; /* negative numbers are -(leafs+1), not nodes */
|
|
|
|
int mins[ 3 ]; /* for frustom culling */
|
|
|
|
int maxs[ 3 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspNode_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int cluster; /* -1 = opaque cluster (do I still store these?) */
|
|
|
|
int area;
|
|
|
|
|
|
|
|
int mins[ 3 ]; /* for frustum culling */
|
|
|
|
int maxs[ 3 ];
|
|
|
|
|
|
|
|
int firstBSPLeafSurface;
|
|
|
|
int numBSPLeafSurfaces;
|
|
|
|
|
|
|
|
int firstBSPLeafBrush;
|
|
|
|
int numBSPLeafBrushes;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspLeaf_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int planeNum; /* positive plane side faces out of the leaf */
|
|
|
|
int shaderNum;
|
|
|
|
int surfaceNum; /* RBSP */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspBrushSide_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int firstSide;
|
|
|
|
int numSides;
|
|
|
|
int shaderNum; /* the shader that determines the content flags */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspBrush_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char shader[ MAX_QPATH ];
|
|
|
|
int brushNum;
|
|
|
|
int visibleSide; /* the brush side that ray tests need to clip against (-1 == none) */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspFog_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t xyz;
|
|
|
|
float st[ 2 ];
|
|
|
|
float lightmap[ MAX_LIGHTMAPS ][ 2 ]; /* RBSP */
|
|
|
|
vec3_t normal;
|
|
|
|
byte color[ MAX_LIGHTMAPS ][ 4 ]; /* RBSP */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspDrawVert_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MST_BAD,
|
|
|
|
MST_PLANAR,
|
|
|
|
MST_PATCH,
|
|
|
|
MST_TRIANGLE_SOUP,
|
|
|
|
MST_FLARE,
|
|
|
|
MST_FOLIAGE
|
|
|
|
}
|
|
|
|
bspSurfaceType_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct bspGridPoint_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
byte ambient[ MAX_LIGHTMAPS ][ 3 ];
|
|
|
|
byte directed[ MAX_LIGHTMAPS ][ 3 ];
|
|
|
|
byte styles[ MAX_LIGHTMAPS ];
|
|
|
|
byte latLong[ 2 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspGridPoint_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int shaderNum;
|
|
|
|
int fogNum;
|
|
|
|
int surfaceType;
|
|
|
|
|
|
|
|
int firstVert;
|
|
|
|
int numVerts;
|
|
|
|
|
|
|
|
int firstIndex;
|
|
|
|
int numIndexes;
|
|
|
|
|
|
|
|
byte lightmapStyles[ MAX_LIGHTMAPS ]; /* RBSP */
|
|
|
|
byte vertexStyles[ MAX_LIGHTMAPS ]; /* RBSP */
|
|
|
|
int lightmapNum[ MAX_LIGHTMAPS ]; /* RBSP */
|
|
|
|
int lightmapX[ MAX_LIGHTMAPS ], lightmapY[ MAX_LIGHTMAPS ]; /* RBSP */
|
|
|
|
int lightmapWidth, lightmapHeight;
|
|
|
|
|
|
|
|
vec3_t lightmapOrigin;
|
|
|
|
vec3_t lightmapVecs[ 3 ]; /* on patches, [ 0 ] and [ 1 ] are lodbounds */
|
|
|
|
|
|
|
|
int patchWidth;
|
|
|
|
int patchHeight;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
bspDrawSurface_t;
|
|
|
|
|
|
|
|
|
2008-08-24 03:20:51 +00:00
|
|
|
/* advertisements */
|
|
|
|
typedef struct {
|
2012-03-17 20:01:54 +00:00
|
|
|
int cellId;
|
|
|
|
vec3_t normal;
|
|
|
|
vec3_t rect[4];
|
|
|
|
char model[ MAX_QPATH ];
|
2008-08-24 03:20:51 +00:00
|
|
|
} bspAdvertisement_t;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
general types
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: for smaller structs */
|
2012-03-17 20:01:54 +00:00
|
|
|
typedef char qb_t;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: for q3map_tcMod */
|
2012-03-17 20:01:54 +00:00
|
|
|
typedef float tcMod_t[ 3 ][ 3 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: for multiple game support */
|
|
|
|
typedef struct surfaceParm_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char *name;
|
|
|
|
int contentFlags, contentFlagsClear;
|
|
|
|
int surfaceFlags, surfaceFlagsClear;
|
|
|
|
int compileFlags, compileFlagsClear;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
surfaceParm_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct game_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char *arg; /* -game matches this */
|
|
|
|
char *gamePath; /* main game data dir */
|
|
|
|
char *homeBasePath; /* home sub-dir on unix */
|
|
|
|
char *magic; /* magic word for figuring out base path */
|
|
|
|
char *shaderPath; /* shader directory */
|
|
|
|
int maxLMSurfaceVerts; /* default maximum meta surface verts */
|
|
|
|
int maxSurfaceVerts; /* default maximum surface verts */
|
|
|
|
int maxSurfaceIndexes; /* default maximum surface indexes (tris * 3) */
|
|
|
|
qboolean emitFlares; /* when true, emit flare surfaces */
|
|
|
|
char *flareShader; /* default flare shader (MUST BE SET) */
|
|
|
|
qboolean wolfLight; /* when true, lights work like wolf q3map */
|
|
|
|
int lightmapSize; /* bsp lightmap width/height */
|
|
|
|
float lightmapGamma; /* default lightmap gamma */
|
|
|
|
float lightmapCompensate; /* default lightmap compensate value */
|
|
|
|
char *bspIdent; /* 4-letter bsp file prefix */
|
|
|
|
int bspVersion; /* bsp version to use */
|
|
|
|
qboolean lumpSwap; /* cod-style len/ofs order */
|
|
|
|
bspFunc load, write; /* load/write function pointers */
|
|
|
|
surfaceParm_t surfaceParms[ 128 ]; /* surfaceparm array */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
game_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct image_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char *name, *filename;
|
|
|
|
int refCount;
|
|
|
|
int width, height;
|
|
|
|
byte *pixels;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
image_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct sun_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct sun_s *next;
|
|
|
|
vec3_t direction, color;
|
|
|
|
float photons, deviance, filterRadius;
|
|
|
|
int numSamples, style;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
sun_t;
|
|
|
|
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
typedef struct surfaceModel_s
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct surfaceModel_s *next;
|
|
|
|
char model[ MAX_QPATH ];
|
|
|
|
float density, odds;
|
|
|
|
float minScale, maxScale;
|
|
|
|
float minAngle, maxAngle;
|
|
|
|
qboolean oriented;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
surfaceModel_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar/sd: foliage stuff for wolf et (engine-supported optimization of the above) */
|
2012-03-17 20:01:54 +00:00
|
|
|
typedef struct foliage_s
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct foliage_s *next;
|
|
|
|
char model[ MAX_QPATH ];
|
|
|
|
float scale, density, odds;
|
|
|
|
qboolean inverseAlpha;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
foliage_t;
|
|
|
|
|
|
|
|
typedef struct foliageInstance_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t xyz, normal;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
foliageInstance_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct remap_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct remap_s *next;
|
|
|
|
char from[ 1024 ];
|
|
|
|
char to[ MAX_QPATH ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
remap_t;
|
|
|
|
|
|
|
|
|
2008-07-25 07:31:37 +00:00
|
|
|
/* wingdi.h hack, it's the same: 0 */
|
|
|
|
#undef CM_NONE
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-07-25 07:31:37 +00:00
|
|
|
CM_NONE,
|
|
|
|
CM_VOLUME,
|
|
|
|
CM_COLOR_SET,
|
|
|
|
CM_ALPHA_SET,
|
|
|
|
CM_COLOR_SCALE,
|
|
|
|
CM_ALPHA_SCALE,
|
|
|
|
CM_COLOR_DOT_PRODUCT,
|
|
|
|
CM_ALPHA_DOT_PRODUCT,
|
|
|
|
CM_COLOR_DOT_PRODUCT_2,
|
|
|
|
CM_ALPHA_DOT_PRODUCT_2
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
2008-07-25 07:31:37 +00:00
|
|
|
colorModType_t;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
2008-07-25 07:31:37 +00:00
|
|
|
typedef struct colorMod_s
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct colorMod_s *next;
|
|
|
|
colorModType_t type;
|
|
|
|
vec_t data[ 16 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
2008-07-25 07:31:37 +00:00
|
|
|
colorMod_t;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
IM_NONE,
|
|
|
|
IM_OPAQUE,
|
|
|
|
IM_MASKED,
|
|
|
|
IM_BLEND
|
|
|
|
}
|
|
|
|
implicitMap_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct shaderInfo_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
char shader[ MAX_QPATH ];
|
|
|
|
int surfaceFlags;
|
|
|
|
int contentFlags;
|
|
|
|
int compileFlags;
|
|
|
|
float value; /* light value */
|
|
|
|
|
|
|
|
char *flareShader; /* for light flares */
|
|
|
|
char *damageShader; /* ydnar: sof2 damage shader name */
|
|
|
|
char *backShader; /* for surfaces that generate different front and back passes */
|
|
|
|
char *cloneShader; /* ydnar: for cloning of a surface */
|
|
|
|
char *remapShader; /* ydnar: remap a shader in final stage */
|
|
|
|
|
|
|
|
surfaceModel_t *surfaceModel; /* ydnar: for distribution of models */
|
|
|
|
foliage_t *foliage; /* ydnar/splash damage: wolf et foliage */
|
|
|
|
|
|
|
|
float subdivisions; /* from a "tesssize xxx" */
|
|
|
|
float backsplashFraction; /* floating point value, usually 0.05 */
|
|
|
|
float backsplashDistance; /* default 16 */
|
|
|
|
float lightSubdivide; /* default 999 */
|
|
|
|
float lightFilterRadius; /* ydnar: lightmap filtering/blurring radius for lights created by this shader (default: 0) */
|
|
|
|
|
|
|
|
int lightmapSampleSize; /* lightmap sample size */
|
|
|
|
float lightmapSampleOffset; /* ydnar: lightmap sample offset (default: 1.0) */
|
|
|
|
|
|
|
|
float bounceScale; /* ydnar: radiosity re-emission [0,1.0+] */
|
|
|
|
float offset; /* ydnar: offset in units */
|
|
|
|
float shadeAngleDegrees; /* ydnar: breaking angle for smooth shading (degrees) */
|
|
|
|
|
|
|
|
vec3_t mins, maxs; /* ydnar: for particle studio vertexDeform move support */
|
|
|
|
|
|
|
|
qb_t legacyTerrain; /* ydnar: enable legacy terrain crutches */
|
|
|
|
qb_t indexed; /* ydnar: attempt to use indexmap (terrain alphamap style) */
|
|
|
|
qb_t forceMeta; /* ydnar: force metasurface path */
|
|
|
|
qb_t noClip; /* ydnar: don't clip into bsp, preserve original face winding */
|
|
|
|
qb_t noFast; /* ydnar: supress fast lighting for surfaces with this shader */
|
|
|
|
qb_t invert; /* ydnar: reverse facing */
|
|
|
|
qb_t nonplanar; /* ydnar: for nonplanar meta surface merging */
|
|
|
|
qb_t tcGen; /* ydnar: has explicit texcoord generation */
|
|
|
|
vec3_t vecs[ 2 ]; /* ydnar: explicit texture vectors for [0,1] texture space */
|
|
|
|
tcMod_t mod; /* ydnar: q3map_tcMod matrix for djbob :) */
|
|
|
|
vec3_t lightmapAxis; /* ydnar: explicit lightmap axis projection */
|
|
|
|
colorMod_t *colorMod; /* ydnar: q3map_rgb/color/alpha/Set/Mod support */
|
|
|
|
|
|
|
|
int furNumLayers; /* ydnar: number of fur layers */
|
|
|
|
float furOffset; /* ydnar: offset of each layer */
|
|
|
|
float furFade; /* ydnar: alpha fade amount per layer */
|
|
|
|
|
|
|
|
qb_t splotchFix; /* ydnar: filter splotches on lightmaps */
|
|
|
|
|
|
|
|
qb_t hasPasses; /* false if the shader doesn't define any rendering passes */
|
|
|
|
qb_t globalTexture; /* don't normalize texture repeats */
|
|
|
|
qb_t twoSided; /* cull none */
|
|
|
|
qb_t autosprite; /* autosprite shaders will become point lights instead of area lights */
|
|
|
|
qb_t polygonOffset; /* ydnar: don't face cull this or against this */
|
|
|
|
qb_t patchShadows; /* have patches casting shadows when using -light for this surface */
|
|
|
|
qb_t vertexShadows; /* shadows will be casted at this surface even when vertex lit */
|
|
|
|
qb_t forceSunlight; /* force sun light at this surface even tho we might not calculate shadows in vertex lighting */
|
|
|
|
qb_t notjunc; /* don't use this surface for tjunction fixing */
|
|
|
|
qb_t fogParms; /* ydnar: has fogparms */
|
|
|
|
qb_t noFog; /* ydnar: supress fogging */
|
|
|
|
qb_t clipModel; /* ydnar: solid model hack */
|
|
|
|
qb_t noVertexLight; /* ydnar: leave vertex color alone */
|
|
|
|
|
|
|
|
byte styleMarker; /* ydnar: light styles hack */
|
|
|
|
|
|
|
|
float vertexScale; /* vertex light scale */
|
|
|
|
|
|
|
|
char skyParmsImageBase[ MAX_QPATH ]; /* ydnar: for skies */
|
|
|
|
|
|
|
|
char editorImagePath[ MAX_QPATH ]; /* use this image to generate texture coordinates */
|
|
|
|
char lightImagePath[ MAX_QPATH ]; /* use this image to generate color / averageColor */
|
|
|
|
char normalImagePath[ MAX_QPATH ]; /* ydnar: normalmap image for bumpmapping */
|
|
|
|
|
|
|
|
implicitMap_t implicitMap; /* ydnar: enemy territory implicit shaders */
|
|
|
|
char implicitImagePath[ MAX_QPATH ];
|
|
|
|
|
|
|
|
image_t *shaderImage;
|
|
|
|
image_t *lightImage;
|
|
|
|
image_t *normalImage;
|
|
|
|
|
|
|
|
float skyLightValue; /* ydnar */
|
|
|
|
int skyLightIterations; /* ydnar */
|
|
|
|
sun_t *sun; /* ydnar */
|
|
|
|
|
|
|
|
vec3_t color; /* normalized color */
|
|
|
|
vec3_t averageColor;
|
|
|
|
byte lightStyle;
|
|
|
|
|
|
|
|
qb_t lmMergable; /* ydnar */
|
|
|
|
int lmCustomWidth, lmCustomHeight; /* ydnar */
|
|
|
|
float lmBrightness; /* ydnar */
|
|
|
|
float lmFilterRadius; /* ydnar: lightmap filtering/blurring radius for this shader (default: 0) */
|
|
|
|
|
|
|
|
int shaderWidth, shaderHeight; /* ydnar */
|
|
|
|
float stFlat[ 2 ];
|
|
|
|
|
|
|
|
vec3_t fogDir; /* ydnar */
|
|
|
|
|
|
|
|
char *shaderText; /* ydnar */
|
|
|
|
qb_t custom;
|
|
|
|
qb_t finished;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
shaderInfo_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
bsp structures
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
typedef struct face_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct face_s *next;
|
|
|
|
int planenum;
|
|
|
|
int priority;
|
|
|
|
qboolean checked;
|
|
|
|
int compileFlags;
|
|
|
|
winding_t *w;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
face_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct plane_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t normal;
|
|
|
|
vec_t dist;
|
|
|
|
int type;
|
|
|
|
struct plane_s *hash_chain;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
plane_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct side_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int planenum;
|
|
|
|
|
|
|
|
int outputNum; /* set when the side is written to the file list */
|
|
|
|
|
|
|
|
float texMat[ 2 ][ 3 ]; /* brush primitive texture matrix */
|
|
|
|
float vecs[ 2 ][ 4 ]; /* old-style texture coordinate mapping */
|
|
|
|
|
|
|
|
winding_t *winding;
|
|
|
|
winding_t *visibleHull; /* convex hull of all visible fragments */
|
|
|
|
|
|
|
|
shaderInfo_t *shaderInfo;
|
|
|
|
|
|
|
|
int contentFlags; /* from shaderInfo */
|
|
|
|
int surfaceFlags; /* from shaderInfo */
|
|
|
|
int compileFlags; /* from shaderInfo */
|
|
|
|
int value; /* from shaderInfo */
|
|
|
|
|
|
|
|
qboolean visible; /* choose visble planes first */
|
|
|
|
qboolean bevel; /* don't ever use for bsp splitting, and don't bother making windings for it */
|
|
|
|
qboolean culled; /* ydnar: face culling */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
side_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct sideRef_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct sideRef_s *next;
|
|
|
|
side_t *side;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
sideRef_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: generic index mapping for entities (natural extension of terrain texturing) */
|
|
|
|
typedef struct indexMap_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int w, h, numLayers;
|
|
|
|
char name[ MAX_QPATH ], shader[ MAX_QPATH ];
|
|
|
|
float offsets[ 256 ];
|
|
|
|
byte *pixels;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
indexMap_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct brush_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct brush_s *next;
|
|
|
|
struct brush_s *nextColorModBrush; /* ydnar: colorMod volume brushes go here */
|
|
|
|
struct brush_s *original; /* chopped up brushes will reference the originals */
|
|
|
|
|
|
|
|
int entityNum, brushNum; /* editor numbering */
|
|
|
|
int outputNum; /* set when the brush is written to the file list */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: for shadowcasting entities */
|
2012-03-17 20:01:54 +00:00
|
|
|
int castShadows;
|
|
|
|
int recvShadows;
|
|
|
|
|
|
|
|
shaderInfo_t *contentShader;
|
|
|
|
shaderInfo_t *celShader; /* :) */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: gs mods */
|
2012-03-17 20:01:54 +00:00
|
|
|
float lightmapScale;
|
|
|
|
vec3_t eMins, eMaxs;
|
|
|
|
indexMap_t *im;
|
|
|
|
|
|
|
|
int contentFlags;
|
|
|
|
int compileFlags; /* ydnar */
|
|
|
|
qboolean detail;
|
|
|
|
qboolean opaque;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
int portalareas[ 2 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t mins, maxs;
|
|
|
|
int numsides;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
side_t sides[ 6 ]; /* variably sized */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
brush_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct fog_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
shaderInfo_t *si;
|
|
|
|
brush_t *brush;
|
|
|
|
int visibleSide; /* the brush side that ray tests need to clip against (-1 == none) */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
fog_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int width, height;
|
|
|
|
bspDrawVert_t *verts;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
mesh_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct parseMesh_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct parseMesh_s *next;
|
|
|
|
|
|
|
|
int entityNum, brushNum; /* ydnar: editor numbering */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: for shadowcasting entities */
|
2012-03-17 20:01:54 +00:00
|
|
|
int castShadows;
|
|
|
|
int recvShadows;
|
|
|
|
|
|
|
|
mesh_t mesh;
|
|
|
|
shaderInfo_t *shaderInfo;
|
|
|
|
shaderInfo_t *celShader; /* :) */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: gs mods */
|
2012-03-17 20:01:54 +00:00
|
|
|
float lightmapScale;
|
|
|
|
vec3_t eMins, eMaxs;
|
|
|
|
indexMap_t *im;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* grouping */
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean grouped;
|
|
|
|
float longestCurve;
|
|
|
|
int maxIterations;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
parseMesh_t;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2012-03-17 20:01:54 +00:00
|
|
|
ydnar: the drawsurf struct was extended to allow for:
|
|
|
|
- non-convex planar surfaces
|
|
|
|
- non-planar brushface surfaces
|
|
|
|
- lightmapped terrain
|
|
|
|
- planar patches
|
|
|
|
*/
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* ydnar: these match up exactly with bspSurfaceType_t */
|
|
|
|
SURFACE_BAD,
|
|
|
|
SURFACE_FACE,
|
|
|
|
SURFACE_PATCH,
|
|
|
|
SURFACE_TRIANGLES,
|
|
|
|
SURFACE_FLARE,
|
2012-03-17 20:01:54 +00:00
|
|
|
SURFACE_FOLIAGE, /* wolf et */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: compiler-relevant surface types */
|
|
|
|
SURFACE_FORCED_META,
|
|
|
|
SURFACE_META,
|
|
|
|
SURFACE_FOGHULL,
|
|
|
|
SURFACE_DECAL,
|
|
|
|
SURFACE_SHADER,
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
NUM_SURFACE_TYPES
|
|
|
|
}
|
|
|
|
surfaceType_t;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
char *surfaceTypes[ NUM_SURFACE_TYPES ]
|
2007-11-04 03:34:51 +00:00
|
|
|
#ifndef MAIN_C
|
2012-03-17 20:01:54 +00:00
|
|
|
;
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
=
|
|
|
|
{
|
|
|
|
"SURFACE_BAD",
|
|
|
|
"SURFACE_FACE",
|
|
|
|
"SURFACE_PATCH",
|
|
|
|
"SURFACE_TRIANGLES",
|
|
|
|
"SURFACE_FLARE",
|
|
|
|
"SURFACE_FOLIAGE",
|
|
|
|
"SURFACE_FORCED_META",
|
|
|
|
"SURFACE_META",
|
|
|
|
"SURFACE_FOGHULL",
|
|
|
|
"SURFACE_DECAL",
|
|
|
|
"SURFACE_SHADER"
|
|
|
|
};
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: this struct needs an overhaul (again, heh) */
|
|
|
|
typedef struct mapDrawSurface_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
surfaceType_t type;
|
|
|
|
qboolean planar;
|
|
|
|
int outputNum; /* ydnar: to match this sort of thing up */
|
|
|
|
|
|
|
|
qboolean fur; /* ydnar: this is kind of a hack, but hey... */
|
|
|
|
qboolean skybox; /* ydnar: yet another fun hack */
|
|
|
|
qboolean backSide; /* ydnar: q3map_backShader support */
|
|
|
|
|
|
|
|
struct mapDrawSurface_s *parent; /* ydnar: for cloned (skybox) surfaces to share lighting data */
|
|
|
|
struct mapDrawSurface_s *clone; /* ydnar: for cloned surfaces */
|
|
|
|
struct mapDrawSurface_s *cel; /* ydnar: for cloned cel surfaces */
|
|
|
|
|
|
|
|
shaderInfo_t *shaderInfo;
|
|
|
|
shaderInfo_t *celShader;
|
|
|
|
brush_t *mapBrush;
|
|
|
|
parseMesh_t *mapMesh;
|
|
|
|
sideRef_t *sideRef;
|
|
|
|
|
|
|
|
int fogNum;
|
|
|
|
|
|
|
|
int numVerts; /* vertexes and triangles */
|
|
|
|
bspDrawVert_t *verts;
|
|
|
|
int numIndexes;
|
|
|
|
int *indexes;
|
|
|
|
|
|
|
|
int planeNum;
|
|
|
|
vec3_t lightmapOrigin; /* also used for flares */
|
|
|
|
vec3_t lightmapVecs[ 3 ]; /* also used for flares */
|
|
|
|
int lightStyle; /* used for flares */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: per-surface (per-entity, actually) lightmap sample size scaling */
|
2012-03-17 20:01:54 +00:00
|
|
|
float lightmapScale;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: surface classification */
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t mins, maxs;
|
|
|
|
vec3_t lightmapAxis;
|
|
|
|
int sampleSize;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: shadow group support */
|
2012-03-17 20:01:54 +00:00
|
|
|
int castShadows, recvShadows;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: texture coordinate range monitoring for hardware with limited texcoord precision (in texel space) */
|
2012-03-17 20:01:54 +00:00
|
|
|
float bias[ 2 ];
|
|
|
|
int texMins[ 2 ], texMaxs[ 2 ], texRange[ 2 ];
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: for patches */
|
2012-03-17 20:01:54 +00:00
|
|
|
float longestCurve;
|
|
|
|
int maxIterations;
|
|
|
|
int patchWidth, patchHeight;
|
|
|
|
vec3_t bounds[ 2 ];
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar/sd: for foliage */
|
2012-03-17 20:01:54 +00:00
|
|
|
int numFoliageInstances;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: editor/useful numbering */
|
2012-03-17 20:01:54 +00:00
|
|
|
int entityNum;
|
|
|
|
int surfaceNum;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
mapDrawSurface_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct drawSurfRef_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct drawSurfRef_s *nextRef;
|
|
|
|
int outputNum;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
drawSurfRef_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: metasurfaces are constructed from lists of metatriangles so they can be merged in the best way */
|
|
|
|
typedef struct metaTriangle_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
shaderInfo_t *si;
|
|
|
|
side_t *side;
|
|
|
|
int entityNum, surfaceNum, planeNum, fogNum, sampleSize, castShadows, recvShadows;
|
|
|
|
vec4_t plane;
|
|
|
|
vec3_t lightmapAxis;
|
|
|
|
int indexes[ 3 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
metaTriangle_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct epair_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct epair_s *next;
|
|
|
|
char *key, *value;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
epair_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t origin;
|
|
|
|
brush_t *brushes, *lastBrush, *colorModBrushes;
|
|
|
|
parseMesh_t *patches;
|
|
|
|
int mapEntityNum, firstDrawSurf;
|
|
|
|
int firstBrush, numBrushes; /* only valid during BSP compile */
|
|
|
|
epair_t *epairs;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
entity_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct node_s
|
|
|
|
{
|
|
|
|
/* both leafs and nodes */
|
2012-03-17 20:01:54 +00:00
|
|
|
int planenum; /* -1 = leaf node */
|
|
|
|
struct node_s *parent;
|
|
|
|
vec3_t mins, maxs; /* valid after portalization */
|
|
|
|
brush_t *volume; /* one for each leaf/node */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* nodes only */
|
2012-03-17 20:01:54 +00:00
|
|
|
side_t *side; /* the side that created the node */
|
|
|
|
struct node_s *children[ 2 ];
|
|
|
|
int compileFlags; /* ydnar: hint, antiportal */
|
|
|
|
int tinyportals;
|
|
|
|
vec3_t referencepoint;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* leafs only */
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean opaque; /* view can never be inside */
|
|
|
|
qboolean areaportal;
|
|
|
|
qboolean skybox; /* ydnar: a skybox leaf */
|
|
|
|
qboolean sky; /* ydnar: a sky leaf */
|
|
|
|
int cluster; /* for portalfile writing */
|
|
|
|
int area; /* for areaportals */
|
|
|
|
brush_t *brushlist; /* fragments of all brushes in this leaf */
|
|
|
|
drawSurfRef_t *drawSurfReferences;
|
|
|
|
|
|
|
|
int occupied; /* 1 or greater can reach entity */
|
|
|
|
entity_t *occupant; /* for leak file testing */
|
|
|
|
|
|
|
|
struct portal_s *portals; /* also on nodes during construction */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
node_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct portal_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
plane_t plane;
|
|
|
|
node_t *onnode; /* NULL = outside box */
|
|
|
|
node_t *nodes[ 2 ]; /* [ 0 ] = front side of plane */
|
|
|
|
struct portal_s *next[ 2 ];
|
|
|
|
winding_t *winding;
|
|
|
|
|
|
|
|
qboolean sidefound; /* false if ->side hasn't been checked */
|
|
|
|
int compileFlags; /* from original face that caused the split */
|
|
|
|
side_t *side; /* NULL = non-visible */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
portal_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
node_t *headnode;
|
|
|
|
node_t outside_node;
|
|
|
|
vec3_t mins, maxs;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
tree_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
vis structures
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t normal;
|
|
|
|
float dist;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
visPlane_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int numpoints;
|
|
|
|
vec3_t points[ MAX_POINTS_ON_FIXED_WINDING ]; /* variable sized */
|
|
|
|
}
|
2007-11-04 03:34:51 +00:00
|
|
|
fixedWinding_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct passage_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct passage_s *next;
|
|
|
|
byte cansee[ 1 ]; /* all portals that can be seen through this passage */
|
2007-11-04 03:34:51 +00:00
|
|
|
} passage_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
stat_none,
|
|
|
|
stat_working,
|
|
|
|
stat_done
|
|
|
|
}
|
|
|
|
vstatus_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int num;
|
|
|
|
qboolean hint; /* true if this portal was created from a hint splitter */
|
|
|
|
qboolean removed;
|
|
|
|
visPlane_t plane; /* normal pointing into neighbor */
|
|
|
|
int leaf; /* neighbor */
|
|
|
|
|
|
|
|
vec3_t origin; /* for fast clip testing */
|
|
|
|
float radius;
|
|
|
|
|
|
|
|
fixedWinding_t *winding;
|
|
|
|
vstatus_t status;
|
|
|
|
byte *portalfront; /* [portals], preliminary */
|
|
|
|
byte *portalflood; /* [portals], intermediate */
|
|
|
|
byte *portalvis; /* [portals], final */
|
|
|
|
|
|
|
|
int nummightsee; /* bit count on portalflood for sort */
|
|
|
|
passage_t *passages; /* there are just as many passages as there */
|
|
|
|
/* are portals in the leaf this portal leads */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
vportal_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct leaf_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int numportals;
|
|
|
|
int merged;
|
|
|
|
vportal_t *portals[MAX_PORTALS_ON_LEAF];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
leaf_t;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
typedef struct pstack_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
byte mightsee[ MAX_PORTALS / 8 ];
|
|
|
|
struct pstack_s *next;
|
|
|
|
leaf_t *leaf;
|
|
|
|
vportal_t *portal; /* portal exiting */
|
|
|
|
fixedWinding_t *source;
|
|
|
|
fixedWinding_t *pass;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
fixedWinding_t windings[ 3 ]; /* source, pass, temp in any order */
|
|
|
|
int freewindings[ 3 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
visPlane_t portalplane;
|
2007-11-04 03:34:51 +00:00
|
|
|
int depth;
|
|
|
|
#ifdef SEPERATORCACHE
|
2012-03-17 20:01:54 +00:00
|
|
|
visPlane_t seperators[ 2 ][ MAX_SEPERATORS ];
|
|
|
|
int numseperators[ 2 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
pstack_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vportal_t *base;
|
|
|
|
int c_chains;
|
|
|
|
pstack_t pstack_head;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
threaddata_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
light structures
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: new light struct with flags */
|
|
|
|
typedef struct light_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
struct light_s *next;
|
|
|
|
|
|
|
|
int type;
|
|
|
|
int flags; /* ydnar: condensed all the booleans into one flags int */
|
|
|
|
shaderInfo_t *si;
|
|
|
|
|
|
|
|
vec3_t origin;
|
|
|
|
vec3_t normal; /* for surfaces, spotlights, and suns */
|
|
|
|
float dist; /* plane location along normal */
|
|
|
|
|
|
|
|
float photons;
|
|
|
|
int style;
|
|
|
|
vec3_t color;
|
|
|
|
float radiusByDist; /* for spotlights */
|
|
|
|
float fade; /* ydnar: from wolf, for linear lights */
|
|
|
|
float angleScale; /* ydnar: stolen from vlight for K */
|
|
|
|
|
|
|
|
float add; /* ydnar: used for area lights */
|
|
|
|
float envelope; /* ydnar: units until falloff < tolerance */
|
|
|
|
float envelope2; /* ydnar: envelope squared (tiny optimization) */
|
|
|
|
vec3_t mins, maxs; /* ydnar: pvs envelope */
|
|
|
|
int cluster; /* ydnar: cluster light falls into */
|
|
|
|
|
|
|
|
winding_t *w;
|
|
|
|
vec3_t emitColor; /* full out-of-gamut value */
|
|
|
|
|
|
|
|
float falloffTolerance; /* ydnar: minimum attenuation threshold */
|
|
|
|
float filterRadius; /* ydnar: lightmap filter radius in world units, 0 == default */
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
light_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* constant input */
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean testOcclusion, forceSunlight, testAll;
|
|
|
|
int recvShadows;
|
|
|
|
|
|
|
|
int numSurfaces;
|
|
|
|
int *surfaces;
|
|
|
|
|
|
|
|
int numLights;
|
|
|
|
light_t **lights;
|
|
|
|
|
|
|
|
qboolean twoSided;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* per-sample input */
|
2012-03-17 20:01:54 +00:00
|
|
|
int cluster;
|
|
|
|
vec3_t origin, normal;
|
|
|
|
vec_t inhibitRadius; /* sphere in which occluding geometry is ignored */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* per-light input */
|
2012-03-17 20:01:54 +00:00
|
|
|
light_t *light;
|
|
|
|
vec3_t end;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* calculated input */
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t displacement, direction;
|
|
|
|
vec_t distance;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* input and output */
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t color; /* starts out at full color, may be reduced if transparent surfaces are crossed */
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* output */
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t hit;
|
|
|
|
int compileFlags; /* for determining surface compile flags traced through */
|
|
|
|
qboolean passSolid;
|
|
|
|
qboolean opaque;
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* working data */
|
2012-03-17 20:01:54 +00:00
|
|
|
int numTestNodes;
|
|
|
|
int testNodes[ MAX_TRACE_TEST_NODES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
trace_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* must be identical to bspDrawVert_t except for float color! */
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t xyz;
|
|
|
|
float st[ 2 ];
|
|
|
|
float lightmap[ MAX_LIGHTMAPS ][ 2 ];
|
|
|
|
vec3_t normal;
|
|
|
|
float color[ MAX_LIGHTMAPS ][ 4 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
radVert_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int numVerts;
|
|
|
|
radVert_t verts[ MAX_POINTS_ON_WINDING ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
radWinding_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* crutch for poor local allocations in win32 smp */
|
|
|
|
typedef struct
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec_t dists[ MAX_POINTS_ON_WINDING + 4 ];
|
|
|
|
int sides[ MAX_POINTS_ON_WINDING + 4 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
clipWork_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: new lightmap handling code */
|
|
|
|
typedef struct outLightmap_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int lightmapNum, extLightmapNum;
|
|
|
|
int customWidth, customHeight;
|
|
|
|
int numLightmaps;
|
|
|
|
int freeLuxels;
|
|
|
|
int numShaders;
|
|
|
|
shaderInfo_t *shaders[ MAX_LIGHTMAP_SHADERS ];
|
|
|
|
byte *lightBits;
|
|
|
|
byte *bspLightBytes;
|
|
|
|
byte *bspDirBytes;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
outLightmap_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct rawLightmap_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean finished, splotchFix, wrap[ 2 ];
|
|
|
|
int customWidth, customHeight;
|
|
|
|
float brightness;
|
|
|
|
float filterRadius;
|
|
|
|
|
|
|
|
int firstLightSurface, numLightSurfaces; /* index into lightSurfaces */
|
|
|
|
int numLightClusters, *lightClusters;
|
|
|
|
|
|
|
|
int sampleSize, actualSampleSize, axisNum;
|
|
|
|
int entityNum;
|
|
|
|
int recvShadows;
|
|
|
|
vec3_t mins, maxs, axis, origin, *vecs;
|
|
|
|
float *plane;
|
|
|
|
int w, h, sw, sh, used;
|
|
|
|
|
|
|
|
qboolean solid[ MAX_LIGHTMAPS ];
|
|
|
|
vec3_t solidColor[ MAX_LIGHTMAPS ];
|
|
|
|
|
|
|
|
int numStyledTwins;
|
|
|
|
struct rawLightmap_s *twins[ MAX_LIGHTMAPS ];
|
|
|
|
|
|
|
|
int outLightmapNums[ MAX_LIGHTMAPS ];
|
|
|
|
int twinNums[ MAX_LIGHTMAPS ];
|
|
|
|
int lightmapX[ MAX_LIGHTMAPS ], lightmapY[ MAX_LIGHTMAPS ];
|
|
|
|
byte styles[ MAX_LIGHTMAPS ];
|
|
|
|
float *bspLuxels[ MAX_LIGHTMAPS ];
|
|
|
|
float *radLuxels[ MAX_LIGHTMAPS ];
|
|
|
|
float *superLuxels[ MAX_LIGHTMAPS ];
|
|
|
|
float *superOrigins;
|
|
|
|
float *superNormals;
|
|
|
|
int *superClusters;
|
|
|
|
|
|
|
|
float *superDeluxels; /* average light direction */
|
|
|
|
float *bspDeluxels;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
rawLightmap_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct rawGridPoint_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
vec3_t ambient[ MAX_LIGHTMAPS ];
|
|
|
|
vec3_t directed[ MAX_LIGHTMAPS ];
|
|
|
|
vec3_t dir;
|
|
|
|
byte styles[ MAX_LIGHTMAPS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
rawGridPoint_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct surfaceInfo_s
|
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
bspModel_t *model;
|
|
|
|
shaderInfo_t *si;
|
|
|
|
rawLightmap_t *lm;
|
|
|
|
int parentSurfaceNum, childSurfaceNum;
|
|
|
|
int entityNum, castShadows, recvShadows, sampleSize, patchIterations;
|
|
|
|
float longestCurve;
|
|
|
|
float *plane;
|
|
|
|
vec3_t axis, mins, maxs;
|
|
|
|
qboolean hasLightmap, approximated;
|
|
|
|
int firstSurfaceCluster, numSurfaceClusters;
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
surfaceInfo_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
prototypes
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* main.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
vec_t Random( void );
|
2012-03-17 23:34:31 +00:00
|
|
|
char *Q_strncpyz( char *dst, const char *src, size_t len );
|
|
|
|
char *Q_strcat( char *dst, size_t dlen, const char *src );
|
|
|
|
char *Q_strncat( char *dst, size_t dlen, const char *src, size_t slen );
|
2012-03-17 20:01:54 +00:00
|
|
|
int BSPInfo( int count, char **fileNames );
|
|
|
|
int ScaleBSPMain( int argc, char **argv );
|
|
|
|
int ConvertMain( int argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* path_init.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
game_t *GetGame( char *arg );
|
|
|
|
void InitPaths( int *argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bsp.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
int BSPMain( int argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* convert_map.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
int ConvertBSPToMap( char *bspName );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* convert_ase.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
int ConvertBSPToASE( char *bspName );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* brush.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
sideRef_t *AllocSideRef( side_t *side, sideRef_t *next );
|
|
|
|
int CountBrushList( brush_t *brushes );
|
|
|
|
brush_t *AllocBrush( int numsides );
|
|
|
|
void FreeBrush( brush_t *brushes );
|
|
|
|
void FreeBrushList( brush_t *brushes );
|
|
|
|
brush_t *CopyBrush( brush_t *brush );
|
|
|
|
qboolean BoundBrush( brush_t *brush );
|
|
|
|
qboolean CreateBrushWindings( brush_t *brush );
|
|
|
|
brush_t *BrushFromBounds( vec3_t mins, vec3_t maxs );
|
|
|
|
vec_t BrushVolume( brush_t *brush );
|
|
|
|
void WriteBSPBrushMap( char *name, brush_t *list );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void FilterDetailBrushesIntoTree( entity_t *e, tree_t *tree );
|
|
|
|
void FilterStructuralBrushesIntoTree( entity_t *e, tree_t *tree );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
int BoxOnPlaneSide( vec3_t mins, vec3_t maxs, plane_t *plane );
|
|
|
|
qboolean WindingIsTiny( winding_t *w );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void SplitBrush( brush_t *brush, int planenum, brush_t **front, brush_t **back );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
tree_t *AllocTree( void );
|
|
|
|
node_t *AllocNode( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* mesh.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void LerpDrawVert( bspDrawVert_t *a, bspDrawVert_t *b, bspDrawVert_t *out );
|
|
|
|
void LerpDrawVertAmount( bspDrawVert_t *a, bspDrawVert_t *b, float amount, bspDrawVert_t *out );
|
|
|
|
void FreeMesh( mesh_t *m );
|
|
|
|
mesh_t *CopyMesh( mesh_t *mesh );
|
|
|
|
void PrintMesh( mesh_t *m );
|
|
|
|
mesh_t *TransposeMesh( mesh_t *in );
|
|
|
|
void InvertMesh( mesh_t *m );
|
|
|
|
mesh_t *SubdivideMesh( mesh_t in, float maxError, float minLength );
|
|
|
|
int IterationsForCurve( float len, int subdivisions );
|
|
|
|
mesh_t *SubdivideMesh2( mesh_t in, int iterations );
|
|
|
|
mesh_t *SubdivideMeshQuads( mesh_t *in, float minLength, int maxsize, int *widthtable, int *heighttable );
|
|
|
|
mesh_t *RemoveLinearMeshColumnsRows( mesh_t *in );
|
|
|
|
void MakeMeshNormals( mesh_t in );
|
|
|
|
void PutMeshOnCurve( mesh_t in );
|
|
|
|
|
|
|
|
void MakeNormalVectors( vec3_t forward, vec3_t right, vec3_t up );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* map.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void LoadMapFile( char *filename, qboolean onlyLights );
|
|
|
|
int FindFloatPlane( vec3_t normal, vec_t dist, int numPoints, vec3_t *points );
|
|
|
|
int PlaneTypeForNormal( vec3_t normal );
|
|
|
|
void AddBrushBevels( void );
|
|
|
|
brush_t *FinishBrush( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* portals.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void MakeHeadnodePortals( tree_t *tree );
|
|
|
|
void MakeNodePortal( node_t *node );
|
|
|
|
void SplitNodePortals( node_t *node );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean PortalPassable( portal_t *p );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean FloodEntities( tree_t *tree );
|
|
|
|
void FillOutside( node_t *headnode );
|
|
|
|
void FloodAreas( tree_t *tree );
|
|
|
|
face_t *VisibleFaces( entity_t *e, tree_t *tree );
|
|
|
|
void FreePortal( portal_t *p );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void MakeTreePortals( tree_t *tree );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* leakfile.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
xmlNodePtr LeakFile( tree_t *tree );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* prtfile.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void NumberClusters( tree_t *tree );
|
|
|
|
void WritePortalFile( tree_t *tree );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* writebsp.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetModelNumbers( void );
|
|
|
|
void SetLightStyles( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
int EmitShader( const char *shader, int *contentFlags, int *surfaceFlags );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void BeginBSPFile( void );
|
|
|
|
void EndBSPFile( void );
|
|
|
|
void EmitBrushes( brush_t *brushes, int *firstBrush, int *numBrushes );
|
|
|
|
void EmitFogs( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void BeginModel( void );
|
|
|
|
void EndModel( entity_t *e, node_t *headnode );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* tree.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void FreeTree( tree_t *tree );
|
|
|
|
void FreeTree_r( node_t *node );
|
|
|
|
void PrintTree_r( node_t *node, int depth );
|
|
|
|
void FreeTreePortals_r( node_t *node );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* patch.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ParsePatch( qboolean onlyLights );
|
|
|
|
mesh_t *SubdivideMesh( mesh_t in, float maxError, float minLength );
|
|
|
|
void PatchMapDrawSurfs( entity_t *e );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* tjunction.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void FixTJunctions( entity_t *e );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* fog.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
winding_t *WindingFromDrawSurf( mapDrawSurface_t *ds );
|
|
|
|
void FogDrawSurfaces( entity_t *e );
|
|
|
|
int FogForPoint( vec3_t point, float epsilon );
|
|
|
|
int FogForBounds( vec3_t mins, vec3_t maxs, float epsilon );
|
|
|
|
void CreateMapFogs( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* facebsp.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
face_t *MakeStructuralBSPFaceList( brush_t *list );
|
|
|
|
face_t *MakeVisibleBSPFaceList( brush_t *list );
|
|
|
|
tree_t *FaceBSP( face_t *list );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* model.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void PicoPrintFunc( int level, const char *str );
|
|
|
|
void PicoLoadFileFunc( char *name, byte **buffer, int *bufSize );
|
|
|
|
picoModel_t *FindModel( char *name, int frame );
|
|
|
|
picoModel_t *LoadModel( char *name, int frame );
|
|
|
|
void InsertModel( char *name, int frame, m4x4_t transform, remap_t *remap, shaderInfo_t *celShader, int eNum, int castShadows, int recvShadows, int spawnFlags, float lightmapScale );
|
|
|
|
void AddTriangleModels( entity_t *e );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* surface.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
mapDrawSurface_t *AllocDrawSurface( surfaceType_t type );
|
|
|
|
void FinishSurface( mapDrawSurface_t *ds );
|
|
|
|
void StripFaceSurface( mapDrawSurface_t *ds );
|
|
|
|
qboolean CalcSurfaceTextureRange( mapDrawSurface_t *ds );
|
|
|
|
qboolean CalcLightmapAxis( vec3_t normal, vec3_t axis );
|
|
|
|
void ClassifySurfaces( int numSurfs, mapDrawSurface_t *ds );
|
|
|
|
void ClassifyEntitySurfaces( entity_t *e );
|
|
|
|
void TidyEntitySurfaces( entity_t *e );
|
|
|
|
mapDrawSurface_t *CloneSurface( mapDrawSurface_t *src, shaderInfo_t *si );
|
|
|
|
mapDrawSurface_t *MakeCelSurface( mapDrawSurface_t *src, shaderInfo_t *si );
|
|
|
|
qboolean IsTriangleDegenerate( bspDrawVert_t *points, int a, int b, int c );
|
|
|
|
void ClearSurface( mapDrawSurface_t *ds );
|
|
|
|
void AddEntitySurfaceModels( entity_t *e );
|
|
|
|
mapDrawSurface_t *DrawSurfaceForSide( entity_t *e, brush_t *b, side_t *s, winding_t *w );
|
|
|
|
mapDrawSurface_t *DrawSurfaceForMesh( entity_t *e, parseMesh_t *p, mesh_t *mesh );
|
|
|
|
mapDrawSurface_t *DrawSurfaceForFlare( int entNum, vec3_t origin, vec3_t normal, vec3_t color, char *flareShader, int lightStyle );
|
|
|
|
mapDrawSurface_t *DrawSurfaceForShader( char *shader );
|
|
|
|
void ClipSidesIntoTree( entity_t *e, tree_t *tree );
|
|
|
|
void MakeDebugPortalSurfs( tree_t *tree );
|
|
|
|
void MakeFogHullSurfs( entity_t *e, tree_t *tree, char *shader );
|
|
|
|
void SubdivideFaceSurfaces( entity_t *e, tree_t *tree );
|
|
|
|
void AddEntitySurfaceModels( entity_t *e );
|
|
|
|
int AddSurfaceModels( mapDrawSurface_t *ds );
|
|
|
|
void FilterDrawsurfsIntoTree( entity_t *e, tree_t *tree );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* surface_fur.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void Fur( mapDrawSurface_t *src );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* surface_foliage.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void Foliage( mapDrawSurface_t *src );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* ydnar: surface_meta.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ClearMetaTriangles( void );
|
|
|
|
int FindMetaTriangle( metaTriangle_t *src, bspDrawVert_t *a, bspDrawVert_t *b, bspDrawVert_t *c, int planeNum );
|
|
|
|
void MakeEntityMetaTriangles( entity_t *e );
|
|
|
|
void FixMetaTJunctions( void );
|
|
|
|
void SmoothMetaTriangles( void );
|
|
|
|
void MergeMetaTriangles( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* surface_extra.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetDefaultSampleSize( int sampleSize );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetSurfaceExtra( mapDrawSurface_t *ds, int num );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
shaderInfo_t *GetSurfaceExtraShaderInfo( int num );
|
|
|
|
int GetSurfaceExtraParentSurfaceNum( int num );
|
|
|
|
int GetSurfaceExtraEntityNum( int num );
|
|
|
|
int GetSurfaceExtraCastShadows( int num );
|
|
|
|
int GetSurfaceExtraRecvShadows( int num );
|
|
|
|
int GetSurfaceExtraSampleSize( int num );
|
|
|
|
float GetSurfaceExtraLongestCurve( int num );
|
|
|
|
void GetSurfaceExtraLightmapAxis( int num, vec3_t lightmapAxis );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void WriteSurfaceExtraFile( const char *path );
|
|
|
|
void LoadSurfaceExtraFile( const char *path );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* decals.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ProcessDecals( void );
|
|
|
|
void MakeEntityDecals( entity_t *e );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* brush_primit.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ComputeAxisBase( vec3_t normal, vec3_t texX, vec3_t texY );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* vis.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
fixedWinding_t *NewFixedWinding( int points );
|
|
|
|
int VisMain( int argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* visflow.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
int CountBits( byte *bits, int numbits );
|
|
|
|
void PassageFlow( int portalnum );
|
|
|
|
void CreatePassages( int portalnum );
|
|
|
|
void PassageMemory( void );
|
|
|
|
void BasePortalVis( int portalnum );
|
|
|
|
void BetterPortalVis( int portalnum );
|
|
|
|
void PortalFlow( int portalnum );
|
|
|
|
void PassagePortalFlow( int portalnum );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* light.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
float PointToPolygonFormFactor( const vec3_t point, const vec3_t normal, const winding_t *w );
|
|
|
|
int LightContributionToSample( trace_t *trace );
|
|
|
|
void LightingAtSample( trace_t * trace, byte styles[ MAX_LIGHTMAPS ], vec3_t colors[ MAX_LIGHTMAPS ] );
|
|
|
|
int LightContributionToPoint( trace_t *trace );
|
|
|
|
int LightMain( int argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* light_trace.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetupTraceNodes( void );
|
|
|
|
void TraceLine( trace_t *trace );
|
|
|
|
float SetupTrace( trace_t *trace );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* light_bounce.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean RadSampleImage( byte * pixels, int width, int height, float st[ 2 ], float color[ 4 ] );
|
|
|
|
void RadLightForTriangles( int num, int lightmapNum, rawLightmap_t *lm, shaderInfo_t *si, float scale, float subdivide, clipWork_t *cw );
|
|
|
|
void RadLightForPatch( int num, int lightmapNum, rawLightmap_t *lm, shaderInfo_t *si, float scale, float subdivide, clipWork_t *cw );
|
|
|
|
void RadCreateDiffuseLights( void );
|
|
|
|
void RadFreeLights();
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* light_ydnar.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ColorToBytes( const float *color, byte *colorBytes, float scale );
|
|
|
|
void SmoothNormals( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void MapRawLightmap( int num );
|
2008-07-25 07:31:37 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetupDirt();
|
|
|
|
float DirtForSample( trace_t *trace );
|
|
|
|
void DirtyRawLightmap( int num );
|
2008-07-25 07:31:37 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void IlluminateRawLightmap( int num );
|
|
|
|
void IlluminateVertexes( int num );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetupBrushes( void );
|
|
|
|
void SetupClusters( void );
|
|
|
|
qboolean ClusterVisible( int a, int b );
|
|
|
|
qboolean ClusterVisibleToPoint( vec3_t point, int cluster );
|
|
|
|
int ClusterForPoint( vec3_t point );
|
|
|
|
int ClusterForPointExt( vec3_t point, float epsilon );
|
|
|
|
int ClusterForPointExtFilter( vec3_t point, float epsilon, int numClusters, int *clusters );
|
|
|
|
int ShaderForPointInLeaf( vec3_t point, int leafNum, float epsilon, int wantContentFlags, int wantSurfaceFlags, int *contentFlags, int *surfaceFlags );
|
|
|
|
void SetupEnvelopes( qboolean forGrid, qboolean fastFlag );
|
|
|
|
void FreeTraceLights( trace_t *trace );
|
|
|
|
void CreateTraceLightsForBounds( vec3_t mins, vec3_t maxs, vec3_t normal, int numClusters, int *clusters, int flags, trace_t *trace );
|
|
|
|
void CreateTraceLightsForSurface( int num, trace_t *trace );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* lightmaps_ydnar.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ExportLightmaps( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
int ExportLightmapsMain( int argc, char **argv );
|
|
|
|
int ImportLightmapsMain( int argc, char **argv );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetupSurfaceLightmaps( void );
|
|
|
|
void StitchSurfaceLightmaps( void );
|
|
|
|
void StoreSurfaceLightmaps( void );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* image.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ImageFree( image_t *image );
|
|
|
|
image_t *ImageFind( const char *filename );
|
|
|
|
image_t *ImageLoad( const char *filename );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* shaders.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void ColorMod( colorMod_t *am, int numVerts, bspDrawVert_t *drawVerts );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void TCMod( tcMod_t mod, float st[ 2 ] );
|
|
|
|
void TCModIdentity( tcMod_t mod );
|
|
|
|
void TCModMultiply( tcMod_t a, tcMod_t b, tcMod_t out );
|
|
|
|
void TCModTranslate( tcMod_t mod, float s, float t );
|
|
|
|
void TCModScale( tcMod_t mod, float s, float t );
|
|
|
|
void TCModRotate( tcMod_t mod, float euler );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
qboolean ApplySurfaceParm( char *name, int *contentFlags, int *surfaceFlags, int *compileFlags );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void BeginMapShaderFile( const char *mapFile );
|
|
|
|
void WriteMapShaderFile( void );
|
|
|
|
shaderInfo_t *CustomShader( shaderInfo_t *si, char *find, char *replace );
|
|
|
|
void EmitVertexRemapShader( char *from, char *to );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void LoadShaderInfo( void );
|
|
|
|
shaderInfo_t *ShaderInfoForShader( const char *shader );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bspfile_abstract.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void SetGridPoints( int n );
|
|
|
|
void SetDrawVerts( int n );
|
|
|
|
void IncDrawVerts();
|
|
|
|
void SetDrawSurfaces( int n );
|
|
|
|
void SetDrawSurfacesBuffer();
|
|
|
|
void BSPFilesCleanup();
|
|
|
|
|
|
|
|
void SwapBlock( int *block, int size );
|
|
|
|
|
|
|
|
int GetLumpElements( bspHeader_t *header, int lump, int size );
|
|
|
|
void *GetLump( bspHeader_t *header, int lump );
|
|
|
|
int CopyLump( bspHeader_t *header, int lump, void *dest, int size );
|
|
|
|
void AddLump( FILE *file, bspHeader_t *header, int lumpNum, const void *data, int length );
|
|
|
|
|
|
|
|
void LoadBSPFile( const char *filename );
|
|
|
|
void WriteBSPFile( const char *filename );
|
|
|
|
void PrintBSPFileSizes( void );
|
|
|
|
|
|
|
|
epair_t *ParseEPair( void );
|
|
|
|
void ParseEntities( void );
|
|
|
|
void UnparseEntities( void );
|
|
|
|
void PrintEntity( const entity_t *ent );
|
|
|
|
void SetKeyValue( entity_t *ent, const char *key, const char *value );
|
|
|
|
const char *ValueForKey( const entity_t *ent, const char *key );
|
|
|
|
int IntForKey( const entity_t *ent, const char *key );
|
|
|
|
vec_t FloatForKey( const entity_t *ent, const char *key );
|
|
|
|
void GetVectorForKey( const entity_t *ent, const char *key, vec3_t vec );
|
|
|
|
entity_t *FindTargetEntity( const char *target );
|
|
|
|
void GetEntityShadowFlags( const entity_t *ent, const entity_t *ent2, int *castShadows, int *recvShadows );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bspfile_ibsp.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void LoadIBSPFile( const char *filename );
|
|
|
|
void WriteIBSPFile( const char *filename );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bspfile_rbsp.c */
|
2012-03-17 20:01:54 +00:00
|
|
|
void LoadRBSPFile( const char *filename );
|
|
|
|
void WriteRBSPFile( const char *filename );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
bsp/general global variables
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
#ifdef MAIN_C
|
|
|
|
#define Q_EXTERN
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q_ASSIGN( a ) = a
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
|
|
|
#define Q_EXTERN extern
|
2012-03-17 20:01:54 +00:00
|
|
|
#define Q_ASSIGN( a )
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* game support */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN game_t games[]
|
2007-11-04 03:34:51 +00:00
|
|
|
#ifndef MAIN_C
|
2012-03-17 20:01:54 +00:00
|
|
|
;
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
=
|
|
|
|
{
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "game_quake3.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
|
|
|
#include "game_quakelive.h" /* most be after game_quake3.h as they share defines! */
|
|
|
|
,
|
|
|
|
#include "game_nexuiz.h" /* most be after game_quake3.h as they share defines! */
|
|
|
|
,
|
2008-07-25 07:31:37 +00:00
|
|
|
#include "game_tremulous.h" /*LinuxManMikeC: must be after game_quake3.h, depends on #define's set in it */
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "game_tenebrae.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "game_wolf.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
|
|
|
#include "game_wolfet.h" /* most be after game_wolf.h as they share defines! */
|
|
|
|
,
|
2008-07-25 07:31:37 +00:00
|
|
|
#include "game_etut.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "game_ef.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
2007-11-04 03:34:51 +00:00
|
|
|
#include "game_sof2.h"
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
|
|
|
#include "game_jk2.h" /* most be after game_sof2.h as they share defines! */
|
|
|
|
,
|
|
|
|
#include "game_ja.h" /* most be after game_jk2.h as they share defines! */
|
|
|
|
,
|
|
|
|
#include "game_qfusion.h" /* qfusion game */
|
|
|
|
,
|
2011-01-20 06:31:26 +00:00
|
|
|
#include "game_reaction.h" /* must be after game_quake3.h */
|
2012-03-17 20:01:54 +00:00
|
|
|
,
|
|
|
|
{ NULL } /* null game */
|
|
|
|
};
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN game_t *game Q_ASSIGN( &games[ 0 ] );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* general */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numImages Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN image_t images[ MAX_IMAGES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numPicoModels Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN picoModel_t *picoModels[ MAX_MODELS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN shaderInfo_t *shaderInfo Q_ASSIGN( NULL );
|
|
|
|
Q_EXTERN int numShaderInfo Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numVertexRemaps Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN surfaceParm_t custSurfaceParms[ MAX_CUST_SURFACEPARMS ];
|
|
|
|
Q_EXTERN int numCustSurfaceParms Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN char mapName[ MAX_QPATH ]; /* ydnar: per-map custom shaders for larger lightmaps */
|
|
|
|
Q_EXTERN char mapShaderFile[ 1024 ];
|
|
|
|
Q_EXTERN qboolean warnImage Q_ASSIGN( qtrue );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: sinusoid samples */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float jitters[ MAX_JITTERS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* commandline arguments */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN qboolean verbose;
|
|
|
|
Q_EXTERN qboolean verboseEntities Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean force Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean infoMode Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean useCustomInfoParms Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noprune Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean leaktest Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean nodetail Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean nosubdivide Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean notjunc Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean fulldetail Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean nowater Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noCurveBrushes Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean fakemap Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean coplanar Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean nofog Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noHint Q_ASSIGN( qfalse ); /* ydnar */
|
|
|
|
Q_EXTERN qboolean renameModelShaders Q_ASSIGN( qfalse ); /* ydnar */
|
|
|
|
Q_EXTERN qboolean skyFixHack Q_ASSIGN( qfalse ); /* ydnar */
|
|
|
|
|
|
|
|
Q_EXTERN int patchSubdivisions Q_ASSIGN( 8 ); /* ydnar: -patchmeta subdivisions */
|
|
|
|
|
|
|
|
Q_EXTERN int maxLMSurfaceVerts Q_ASSIGN( 64 ); /* ydnar */
|
|
|
|
Q_EXTERN int maxSurfaceVerts Q_ASSIGN( 999 ); /* ydnar */
|
|
|
|
Q_EXTERN int maxSurfaceIndexes Q_ASSIGN( 6000 ); /* ydnar */
|
|
|
|
Q_EXTERN float npDegrees Q_ASSIGN( 0.0f ); /* ydnar: nonplanar degrees */
|
|
|
|
Q_EXTERN int bevelSnap Q_ASSIGN( 0 ); /* ydnar: bevel plane snap */
|
|
|
|
Q_EXTERN int texRange Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN qboolean flat Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean meta Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean patchMeta Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean emitFlares Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugSurfaces Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugInset Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugPortals Q_ASSIGN( qfalse );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2011-01-12 03:21:31 +00:00
|
|
|
#if Q3MAP2_EXPERIMENTAL_SNAP_NORMAL_FIX
|
2011-01-10 06:15:47 +00:00
|
|
|
// Increasing the normalEpsilon to compensate for new logic in SnapNormal(), where
|
|
|
|
// this epsilon is now used to compare against 0 components instead of the 1 or -1
|
|
|
|
// components. Unfortunately, normalEpsilon is also used in PlaneEqual(). So changing
|
|
|
|
// this will affect anything that calls PlaneEqual() as well (which are, at the time
|
|
|
|
// of this writing, FindFloatPlane() and AddBrushBevels()).
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN double normalEpsilon Q_ASSIGN( 0.00005 );
|
2011-01-10 06:15:47 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN double normalEpsilon Q_ASSIGN( 0.00001 );
|
2011-01-10 06:15:47 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-12 03:21:31 +00:00
|
|
|
#if Q3MAP2_EXPERIMENTAL_HIGH_PRECISION_MATH_FIXES
|
2011-01-10 06:15:47 +00:00
|
|
|
// NOTE: This distanceEpsilon is too small if parts of the map are at maximum world
|
|
|
|
// extents (in the range of plus or minus 2^16). The smallest epsilon at values
|
|
|
|
// close to 2^16 is about 0.007, which is greater than distanceEpsilon. Therefore,
|
|
|
|
// maps should be constrained to about 2^15, otherwise slightly undesirable effects
|
|
|
|
// may result. The 0.01 distanceEpsilon used previously is just too coarse in my
|
|
|
|
// opinion. The real fix for this problem is to have 64 bit distances and then make
|
|
|
|
// this epsilon even smaller, or to constrain world coordinates to plus minus 2^15
|
|
|
|
// (or even 2^14).
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN double distanceEpsilon Q_ASSIGN( 0.005 );
|
2011-01-10 06:15:47 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN double distanceEpsilon Q_ASSIGN( 0.01 );
|
2011-01-10 06:15:47 +00:00
|
|
|
#endif
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* bsp */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numMapEntities Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int blockSize[ 3 ] /* should be the same as in radiant */
|
2007-11-04 03:34:51 +00:00
|
|
|
#ifndef MAIN_C
|
2012-03-17 20:01:54 +00:00
|
|
|
;
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
= { 1024, 1024, 1024 };
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN char name[ 1024 ];
|
|
|
|
Q_EXTERN char source[ 1024 ];
|
|
|
|
Q_EXTERN char outbase[ 32 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int sampleSize; /* lightmap sample size in units */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int mapEntityNum Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int entitySourceBrushes;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN plane_t mapplanes[ MAX_MAP_PLANES ]; /* mapplanes[ num ^ 1 ] will always be the mirror or mapplanes[ num ] */
|
|
|
|
Q_EXTERN int nummapplanes; /* nummapplanes will always be even */
|
|
|
|
Q_EXTERN int numMapPatches;
|
|
|
|
Q_EXTERN vec3_t mapMins, mapMaxs;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int defaultFogNum Q_ASSIGN( -1 ); /* ydnar: cleaner fog handling */
|
|
|
|
Q_EXTERN int numMapFogs Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN fog_t mapFogs[ MAX_MAP_FOGS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN entity_t *mapEnt;
|
|
|
|
Q_EXTERN brush_t *buildBrush;
|
|
|
|
Q_EXTERN int numActiveBrushes;
|
|
|
|
Q_EXTERN int g_bBrushPrimit;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numStrippedLights Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* surface stuff */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN mapDrawSurface_t *mapDrawSurfs Q_ASSIGN( NULL );
|
|
|
|
Q_EXTERN int numMapDrawSurfs;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numSurfacesByType[ NUM_SURFACE_TYPES ];
|
|
|
|
Q_EXTERN int numClearedSurfaces;
|
|
|
|
Q_EXTERN int numStripSurfaces;
|
|
|
|
Q_EXTERN int numFanSurfaces;
|
|
|
|
Q_EXTERN int numMergedSurfaces;
|
|
|
|
Q_EXTERN int numMergedVerts;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numRedundantIndexes;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numSurfaceModels Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN byte debugColors[ 12 ][ 3 ]
|
2007-11-04 03:34:51 +00:00
|
|
|
#ifndef MAIN_C
|
2012-03-17 20:01:54 +00:00
|
|
|
;
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
=
|
|
|
|
{
|
|
|
|
{ 255, 0, 0 },
|
|
|
|
{ 192, 128, 128 },
|
|
|
|
{ 255, 255, 0 },
|
|
|
|
{ 192, 192, 128 },
|
|
|
|
{ 0, 255, 255 },
|
|
|
|
{ 128, 192, 192 },
|
|
|
|
{ 0, 0, 255 },
|
|
|
|
{ 128, 128, 192 },
|
|
|
|
{ 255, 0, 255 },
|
|
|
|
{ 192, 128, 192 },
|
|
|
|
{ 0, 255, 0 },
|
|
|
|
{ 128, 192, 128 }
|
|
|
|
};
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN qboolean skyboxPresent Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN int skyboxArea Q_ASSIGN( -1 );
|
|
|
|
Q_EXTERN m4x4_t skyboxTransform;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
vis global variables
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* commandline arguments */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN qboolean fastvis;
|
|
|
|
Q_EXTERN qboolean noPassageVis;
|
|
|
|
Q_EXTERN qboolean passageVisOnly;
|
|
|
|
Q_EXTERN qboolean mergevis;
|
|
|
|
Q_EXTERN qboolean nosort;
|
|
|
|
Q_EXTERN qboolean saveprt;
|
|
|
|
Q_EXTERN qboolean hint; /* ydnar */
|
|
|
|
Q_EXTERN char inbase[ MAX_QPATH ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* other bits */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int totalvis;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float farPlaneDist; /* rr2do2, rf, mre, ydnar all contributed to this one... */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numportals;
|
|
|
|
Q_EXTERN int portalclusters;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vportal_t *portals;
|
|
|
|
Q_EXTERN leaf_t *leafs;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vportal_t *faces;
|
|
|
|
Q_EXTERN leaf_t *faceleafs;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numfaces;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int c_portaltest, c_portalpass, c_portalcheck;
|
|
|
|
Q_EXTERN int c_portalskip, c_leafskip;
|
|
|
|
Q_EXTERN int c_vistest, c_mighttest;
|
|
|
|
Q_EXTERN int c_chains;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN byte *vismap, *vismap_p, *vismap_end;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int testlevel;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN byte *uncompressed;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int leafbytes, leaflongs;
|
|
|
|
Q_EXTERN int portalbytes, portallongs;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vportal_t *sorted_portals[ MAX_MAP_PORTALS * 2 ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
light global variables
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* commandline arguments */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN qboolean wolfLight Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean loMem Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noStyles Q_ASSIGN( qfalse );
|
|
|
|
|
|
|
|
Q_EXTERN int sampleSize Q_ASSIGN( DEFAULT_LIGHTMAP_SAMPLE_SIZE );
|
|
|
|
Q_EXTERN qboolean noVertexLighting Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noGridLighting Q_ASSIGN( qfalse );
|
|
|
|
|
|
|
|
Q_EXTERN qboolean noTrace Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean noSurfaces Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean patchShadows Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean cpmaHack Q_ASSIGN( qfalse );
|
|
|
|
|
|
|
|
Q_EXTERN qboolean deluxemap Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugDeluxemap Q_ASSIGN( qfalse );
|
|
|
|
|
|
|
|
Q_EXTERN qboolean fast Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean faster Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean fastgrid Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean fastbounce Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean cheap Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean cheapgrid Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN int bounce Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN qboolean bounceOnly Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean bouncing Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean bouncegrid Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean normalmap Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean trisoup Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean shade Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN float shadeAngleDegrees Q_ASSIGN( 0.0f );
|
|
|
|
Q_EXTERN int superSample Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int lightSamples Q_ASSIGN( 1 );
|
|
|
|
Q_EXTERN qboolean filter Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean dark Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean sunOnly Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN int approximateTolerance Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN qboolean noCollapse Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean exportLightmaps Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean externalLightmaps Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN int lmCustomSize Q_ASSIGN( LIGHTMAP_WIDTH );
|
|
|
|
|
|
|
|
Q_EXTERN qboolean dirty Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean dirtDebug Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN int dirtMode Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN float dirtDepth Q_ASSIGN( 128.0f );
|
|
|
|
Q_EXTERN float dirtScale Q_ASSIGN( 1.0f );
|
|
|
|
Q_EXTERN float dirtGain Q_ASSIGN( 1.0f );
|
|
|
|
|
|
|
|
Q_EXTERN qboolean dump Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debug Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugUnused Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugAxis Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugCluster Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean debugOrigin Q_ASSIGN( qfalse );
|
|
|
|
Q_EXTERN qboolean lightmapBorder Q_ASSIGN( qfalse );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* longest distance across the map */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float maxMapDistance Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* for run time tweaking of light sources */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float pointScale Q_ASSIGN( 7500.0f );
|
|
|
|
Q_EXTERN float areaScale Q_ASSIGN( 0.25f );
|
|
|
|
Q_EXTERN float skyScale Q_ASSIGN( 1.0f );
|
|
|
|
Q_EXTERN float bounceScale Q_ASSIGN( 0.25f );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2008-07-25 07:31:37 +00:00
|
|
|
/* ydnar: lightmap gamma/compensation */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float lightmapGamma Q_ASSIGN( 1.0f );
|
|
|
|
Q_EXTERN float lightmapCompensate Q_ASSIGN( 1.0f );
|
2008-07-25 07:31:37 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* ydnar: for runtime tweaking of falloff tolerance */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float falloffTolerance Q_ASSIGN( 1.0f );
|
|
|
|
Q_EXTERN qboolean exactPointToPolygon Q_ASSIGN( qtrue );
|
|
|
|
Q_EXTERN float formFactorValueScale Q_ASSIGN( 3.0f );
|
|
|
|
Q_EXTERN float linearScale Q_ASSIGN( 1.0f / 8000.0f );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN light_t *lights;
|
|
|
|
Q_EXTERN int numPointLights;
|
|
|
|
Q_EXTERN int numSpotLights;
|
|
|
|
Q_EXTERN int numSunLights;
|
|
|
|
Q_EXTERN int numAreaLights;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: for luxel placement */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numSurfaceClusters, maxSurfaceClusters;
|
|
|
|
Q_EXTERN int *surfaceClusters;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: for radiosity */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numDiffuseLights;
|
|
|
|
Q_EXTERN int numBrushDiffuseLights;
|
|
|
|
Q_EXTERN int numTriangleDiffuseLights;
|
|
|
|
Q_EXTERN int numPatchDiffuseLights;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: general purpose extra copy of drawvert list */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN bspDrawVert_t *yDrawVerts;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: for tracing statistics */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int minSurfacesTested;
|
|
|
|
Q_EXTERN int maxSurfacesTested;
|
|
|
|
Q_EXTERN int totalSurfacesTested;
|
|
|
|
Q_EXTERN int totalTraces;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN FILE *dumpFile;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int c_visible, c_occluded;
|
|
|
|
Q_EXTERN int c_subsampled; /* ydnar */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int defaultLightSubdivide Q_ASSIGN( 999 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vec3_t ambientColor;
|
|
|
|
Q_EXTERN vec3_t minLight, minVertexLight, minGridLight;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int *entitySurface;
|
|
|
|
Q_EXTERN vec3_t *surfaceOrigin;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vec3_t sunDirection;
|
|
|
|
Q_EXTERN vec3_t sunLight;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* tracing */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int c_totalTrace;
|
|
|
|
Q_EXTERN int c_cullTrace, c_testTrace;
|
|
|
|
Q_EXTERN int c_testFacets;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: light optimization */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float subdivideThreshold Q_ASSIGN( DEFAULT_SUBDIVIDE_THRESHOLD );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numOpaqueBrushes, maxOpaqueBrush;
|
|
|
|
Q_EXTERN byte *opaqueBrushes;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numLights;
|
|
|
|
Q_EXTERN int numCulledLights;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int gridBoundsCulled;
|
|
|
|
Q_EXTERN int gridEnvelopeCulled;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int lightsBoundsCulled;
|
|
|
|
Q_EXTERN int lightsEnvelopeCulled;
|
|
|
|
Q_EXTERN int lightsPlaneCulled;
|
|
|
|
Q_EXTERN int lightsClusterCulled;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: radiosity */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float diffuseSubdivide Q_ASSIGN( 256.0f );
|
|
|
|
Q_EXTERN float minDiffuseSubdivide Q_ASSIGN( 64.0f );
|
|
|
|
Q_EXTERN int numDiffuseSurfaces Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: list of surface information necessary for lightmap calculation */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN surfaceInfo_t *surfaceInfos Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* ydnar: sorted list of surfaces */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int *sortSurfaces Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* clumps of surfaces that share a raw lightmap */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numLightSurfaces Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int *lightSurfaces Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* raw lightmaps */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numRawSuperLuxels Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numRawLightmaps Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN rawLightmap_t *rawLightmaps Q_ASSIGN( NULL );
|
|
|
|
Q_EXTERN int *sortLightmaps Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* vertex luxels */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN float *vertexLuxels[ MAX_LIGHTMAPS ];
|
|
|
|
Q_EXTERN float *radVertexLuxels[ MAX_LIGHTMAPS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* bsp lightmaps */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numLightmapShaders Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numSolidLightmaps Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numOutLightmaps Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numBSPLightmaps Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numExtLightmaps Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN outLightmap_t *outLightmaps Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* grid points */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numRawGridPoints Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN rawGridPoint_t *rawGridPoints Q_ASSIGN( NULL );
|
|
|
|
|
|
|
|
Q_EXTERN int numSurfsVertexLit Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numSurfsVertexForced Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numSurfsVertexApproximated Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numSurfsLightmapped Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numPlanarsLightmapped Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numNonPlanarsLightmapped Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numPatchesLightmapped Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numPlanarPatchesLightmapped Q_ASSIGN( 0 );
|
|
|
|
|
|
|
|
Q_EXTERN int numLuxels Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numLuxelsMapped Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numLuxelsOccluded Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numLuxelsIlluminated Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numVertsIlluminated Q_ASSIGN( 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/* lightgrid */
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN vec3_t gridMins;
|
|
|
|
Q_EXTERN int gridBounds[ 3 ];
|
|
|
|
Q_EXTERN vec3_t gridSize
|
2007-11-04 03:34:51 +00:00
|
|
|
#ifndef MAIN_C
|
2012-03-17 20:01:54 +00:00
|
|
|
;
|
2007-11-04 03:34:51 +00:00
|
|
|
#else
|
2012-03-17 20:01:54 +00:00
|
|
|
= { 64, 64, 128 };
|
2007-11-04 03:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
abstracted bsp globals
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numEntities Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int numBSPEntities Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN entity_t entities[ MAX_MAP_ENTITIES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPModels Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspModel_t bspModels[ MAX_MAP_MODELS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPShaders Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspShader_t bspShaders[ MAX_MAP_MODELS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int bspEntDataSize Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN char bspEntData[ MAX_MAP_ENTSTRING ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPLeafs Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspLeaf_t bspLeafs[ MAX_MAP_LEAFS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPPlanes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspPlane_t bspPlanes[ MAX_MAP_PLANES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPNodes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspNode_t bspNodes[ MAX_MAP_NODES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPLeafSurfaces Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int bspLeafSurfaces[ MAX_MAP_LEAFFACES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPLeafBrushes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int bspLeafBrushes[ MAX_MAP_LEAFBRUSHES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPBrushes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspBrush_t bspBrushes[ MAX_MAP_BRUSHES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPBrushSides Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspBrushSide_t bspBrushSides[ MAX_MAP_BRUSHSIDES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPLightBytes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN byte *bspLightBytes Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
//% Q_EXTERN int numBSPGridPoints Q_ASSIGN( 0 );
|
|
|
|
//% Q_EXTERN byte *bspGridPoints Q_ASSIGN( NULL );
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPGridPoints Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspGridPoint_t *bspGridPoints Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPVisBytes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN byte bspVisBytes[ MAX_MAP_VISIBILITY ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPDrawVerts Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspDrawVert_t *bspDrawVerts Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPDrawIndexes Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN int bspDrawIndexes[ MAX_MAP_DRAW_INDEXES ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPDrawSurfaces Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspDrawSurface_t *bspDrawSurfaces Q_ASSIGN( NULL );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPFogs Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspFog_t bspFogs[ MAX_MAP_FOGS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Q_EXTERN int numBSPAds Q_ASSIGN( 0 );
|
|
|
|
Q_EXTERN bspAdvertisement_t bspAds[ MAX_MAP_ADVERTISEMENTS ];
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* end marker */
|
|
|
|
#endif
|