2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
bspfile.h
|
|
|
|
|
|
|
|
BSP (Binary Space Partitioning) file definitions
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
#ifndef __bspfile_h_
|
|
|
|
#define __bspfile_h_
|
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qtypes.h"
|
2002-09-19 05:35:17 +00:00
|
|
|
#include "QF/quakeio.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// upper design bounds
|
|
|
|
|
2010-12-07 06:41:57 +00:00
|
|
|
#define MAX_MAP_HULLS 4 // format limit (array)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-12-07 06:41:57 +00:00
|
|
|
#define MAX_MAP_PLANES 32767 // format limit (s16) FIXME u16 ok?
|
|
|
|
#define MAX_MAP_NODES 65520 // because negative shorts are contents
|
|
|
|
#define MAX_MAP_CLIPNODES 65520 // but contents "max" is -15, so
|
|
|
|
#define MAX_MAP_LEAFS 65520 // -32768 to -17 are available
|
|
|
|
#define MAX_MAP_VERTS 65535 // format limit (u16)
|
|
|
|
#define MAX_MAP_FACES 65535 // format limit (u16)
|
|
|
|
#define MAX_MAP_MARKSURFACES 65535 // format limit (u16)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
2004-02-08 02:49:38 +00:00
|
|
|
#define BSPVERSION 29
|
|
|
|
#define Q2BSPVERSION 38
|
2010-08-22 23:21:32 +00:00
|
|
|
#define TOOLVERSION 2
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct lump_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t fileofs;
|
|
|
|
int32_t filelen;
|
2001-02-19 21:15:25 +00:00
|
|
|
} lump_t;
|
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define LUMP_ENTITIES 0
|
|
|
|
#define LUMP_PLANES 1
|
|
|
|
#define LUMP_TEXTURES 2
|
|
|
|
#define LUMP_VERTEXES 3
|
|
|
|
#define LUMP_VISIBILITY 4
|
|
|
|
#define LUMP_NODES 5
|
|
|
|
#define LUMP_TEXINFO 6
|
|
|
|
#define LUMP_FACES 7
|
|
|
|
#define LUMP_LIGHTING 8
|
|
|
|
#define LUMP_CLIPNODES 9
|
|
|
|
#define LUMP_LEAFS 10
|
|
|
|
#define LUMP_MARKSURFACES 11
|
|
|
|
#define LUMP_EDGES 12
|
|
|
|
#define LUMP_SURFEDGES 13
|
|
|
|
#define LUMP_MODELS 14
|
|
|
|
#define HEADER_LUMPS 15
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dmodel_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
float mins[3], maxs[3];
|
|
|
|
float origin[3];
|
|
|
|
int32_t headnode[MAX_MAP_HULLS];
|
|
|
|
int32_t visleafs; // not including the solid leaf 0
|
|
|
|
int32_t firstface, numfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
} dmodel_t;
|
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dheader_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t version;
|
|
|
|
lump_t lumps[HEADER_LUMPS];
|
2001-02-19 21:15:25 +00:00
|
|
|
} dheader_t;
|
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dmiptexlump_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t nummiptex;
|
|
|
|
int32_t dataofs[4]; // [nummiptex]
|
2001-02-19 21:15:25 +00:00
|
|
|
} dmiptexlump_t;
|
|
|
|
|
2010-12-07 06:41:57 +00:00
|
|
|
#define MIPTEXNAME 16
|
2010-08-22 23:21:32 +00:00
|
|
|
#define MIPLEVELS 4
|
2001-02-19 21:15:25 +00:00
|
|
|
typedef struct miptex_s {
|
2010-12-07 06:41:57 +00:00
|
|
|
char name[MIPTEXNAME];
|
2010-08-22 23:21:32 +00:00
|
|
|
uint32_t width, height;
|
|
|
|
uint32_t offsets[MIPLEVELS]; // four mip maps stored
|
2001-02-19 21:15:25 +00:00
|
|
|
} miptex_t;
|
|
|
|
|
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dvertex_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
float point[3];
|
2001-02-19 21:15:25 +00:00
|
|
|
} dvertex_t;
|
|
|
|
|
|
|
|
|
|
|
|
// 0-2 are axial planes
|
2010-08-22 23:21:32 +00:00
|
|
|
#define PLANE_X 0
|
|
|
|
#define PLANE_Y 1
|
|
|
|
#define PLANE_Z 2
|
2001-02-19 21:15:25 +00:00
|
|
|
// 3-5 are non-axial planes snapped to the nearest
|
2010-08-22 23:21:32 +00:00
|
|
|
#define PLANE_ANYX 3
|
|
|
|
#define PLANE_ANYY 4
|
|
|
|
#define PLANE_ANYZ 5
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dplane_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
float normal[3];
|
|
|
|
float dist;
|
|
|
|
int32_t type; // PLANE_X - PLANE_ANYZ
|
2001-02-19 21:15:25 +00:00
|
|
|
} dplane_t;
|
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define CONTENTS_EMPTY -1
|
|
|
|
#define CONTENTS_SOLID -2
|
|
|
|
#define CONTENTS_WATER -3
|
|
|
|
#define CONTENTS_SLIME -4
|
|
|
|
#define CONTENTS_LAVA -5
|
|
|
|
#define CONTENTS_SKY -6
|
|
|
|
#define CONTENTS_ORIGIN -7 // removed at csg time
|
|
|
|
#define CONTENTS_CLIP -8 // changed to contents_solid
|
2001-04-10 06:55:28 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define CONTENTS_CURRENT_0 -9
|
|
|
|
#define CONTENTS_CURRENT_90 -10
|
|
|
|
#define CONTENTS_CURRENT_180 -11
|
|
|
|
#define CONTENTS_CURRENT_270 -12
|
|
|
|
#define CONTENTS_CURRENT_UP -13
|
|
|
|
#define CONTENTS_CURRENT_DOWN -14
|
2001-04-10 06:55:28 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dnode_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t planenum;
|
|
|
|
int16_t children[2]; // negative numbers are -(leafs+1), not nodes
|
|
|
|
int16_t mins[3]; // for sphere culling
|
|
|
|
int16_t maxs[3];
|
|
|
|
uint16_t firstface;
|
|
|
|
uint16_t numfaces; // counting both sides
|
2001-02-19 21:15:25 +00:00
|
|
|
} dnode_t;
|
|
|
|
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dclipnode_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t planenum;
|
|
|
|
int16_t children[2]; // negative numbers are contents
|
2001-02-19 21:15:25 +00:00
|
|
|
} dclipnode_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct texinfo_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
float vecs[2][4]; // [s/t][xyz offset]
|
|
|
|
int32_t miptex;
|
|
|
|
int32_t flags;
|
2001-02-19 21:15:25 +00:00
|
|
|
} texinfo_t;
|
2010-08-22 23:21:32 +00:00
|
|
|
#define TEX_SPECIAL 1 // sky or slime, no lightmap or 256 subdivision
|
2010-08-24 00:53:54 +00:00
|
|
|
#define TEX_MISSING 2 // this texinfo does not have a texture
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// note that edge 0 is never used, because negative edge nums are used for
|
|
|
|
// counterclockwise use of the edge in a face
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dedge_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
uint16_t v[2]; // vertex numbers
|
2001-02-19 21:15:25 +00:00
|
|
|
} dedge_t;
|
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define MAXLIGHTMAPS 4
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dface_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int16_t planenum;
|
|
|
|
int16_t side;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t firstedge; // we must support > 64k edges
|
|
|
|
int16_t numedges;
|
|
|
|
int16_t texinfo;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// lighting info
|
2010-08-22 23:21:32 +00:00
|
|
|
byte styles[MAXLIGHTMAPS];
|
|
|
|
int32_t lightofs; // start of [numstyles*surfsize] samples
|
2001-02-19 21:15:25 +00:00
|
|
|
} dface_t;
|
|
|
|
|
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define AMBIENT_WATER 0
|
|
|
|
#define AMBIENT_SKY 1
|
|
|
|
#define AMBIENT_SLIME 2
|
|
|
|
#define AMBIENT_LAVA 3
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#define NUM_AMBIENTS 4 // automatic ambient sounds
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// leaf 0 is the generic CONTENTS_SOLID leaf, used for all solid areas
|
|
|
|
// all other leafs need visibility info
|
2002-09-19 20:39:33 +00:00
|
|
|
typedef struct dleaf_s {
|
2010-08-22 23:21:32 +00:00
|
|
|
int32_t contents;
|
|
|
|
int32_t visofs; // -1 = no visibility info
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
int16_t mins[3]; // for frustum culling
|
|
|
|
int16_t maxs[3];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
uint16_t firstmarksurface;
|
|
|
|
uint16_t nummarksurfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
byte ambient_level[NUM_AMBIENTS];
|
2001-02-19 21:15:25 +00:00
|
|
|
} dleaf_t;
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
2002-09-19 05:35:17 +00:00
|
|
|
typedef struct bsp_s {
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_header;
|
2010-08-22 23:21:32 +00:00
|
|
|
dheader_t *header;
|
2010-08-22 13:29:26 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_models;
|
|
|
|
int nummodels;
|
|
|
|
dmodel_t *models;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_visdata;
|
2010-08-22 23:21:32 +00:00
|
|
|
size_t visdatasize;
|
|
|
|
byte *visdata;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_lightdata;
|
2010-08-22 23:21:32 +00:00
|
|
|
size_t lightdatasize;
|
|
|
|
byte *lightdata;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_texdata;
|
2010-08-22 23:21:32 +00:00
|
|
|
size_t texdatasize;
|
|
|
|
byte *texdata; // (dmiptexlump_t)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_entdata;
|
2010-08-22 23:21:32 +00:00
|
|
|
size_t entdatasize;
|
|
|
|
char *entdata;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_leafs;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numleafs;
|
|
|
|
dleaf_t *leafs;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_planes;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numplanes;
|
|
|
|
dplane_t *planes;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_vertexes;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numvertexes;
|
|
|
|
dvertex_t *vertexes;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_nodes;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numnodes;
|
|
|
|
dnode_t *nodes;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_texinfo;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numtexinfo;
|
|
|
|
texinfo_t *texinfo;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_faces;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numfaces;
|
|
|
|
dface_t *faces;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_clipnodes;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numclipnodes;
|
|
|
|
dclipnode_t *clipnodes;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_edges;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numedges;
|
|
|
|
dedge_t *edges;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_marksurfaces;
|
2010-08-22 23:21:32 +00:00
|
|
|
int nummarksurfaces;
|
|
|
|
uint16_t *marksurfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 00:04:21 +00:00
|
|
|
int own_surfedges;
|
2010-08-22 23:21:32 +00:00
|
|
|
int numsurfedges;
|
|
|
|
int32_t *surfedges;
|
2002-09-19 05:35:17 +00:00
|
|
|
} bsp_t;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-23 02:56:43 +00:00
|
|
|
/** Create a bsp structure from a memory buffer.
|
|
|
|
The returned structure will be setup to point into the supplied buffer.
|
|
|
|
All structures within the bsp will be byte-swapped. For this reason, if
|
|
|
|
a callback is provided, the callback be called after byteswapping the
|
|
|
|
header, but before byteswapping any data in the lumps.
|
|
|
|
|
|
|
|
\param mem The buffer holding the bsp data.
|
|
|
|
\param size The size of the buffer. This is used for sanity checking.
|
|
|
|
\param cb Pointer to the callback function.
|
|
|
|
\param cbdata Pointer to extra data for the callback.
|
|
|
|
\return Initialized bsp structure.
|
|
|
|
|
|
|
|
\note The caller maintains ownership of the memory buffer. BSP_Free will
|
|
|
|
free only the bsp structure itself. However, if the caller wishes to
|
|
|
|
relinquish ownership of the buffer, set bsp_t::own_header to true.
|
|
|
|
*/
|
|
|
|
bsp_t *LoadBSPMem (void *mem, size_t size, void (*cb) (const bsp_t *, void *),
|
|
|
|
void *cbdata);
|
2010-08-21 23:40:31 +00:00
|
|
|
bsp_t *LoadBSPFile (QFile *file, size_t size);
|
2010-08-22 13:29:26 +00:00
|
|
|
void WriteBSPFile (const bsp_t *bsp, QFile *file);
|
2002-09-19 20:39:33 +00:00
|
|
|
bsp_t *BSP_New (void);
|
2010-08-23 00:04:21 +00:00
|
|
|
void BSP_Free (bsp_t *bsp);
|
2010-09-02 04:01:45 +00:00
|
|
|
void BSP_AddPlane (bsp_t *bsp, const dplane_t *plane);
|
|
|
|
void BSP_AddLeaf (bsp_t *bsp, const dleaf_t *leaf);
|
|
|
|
void BSP_AddVertex (bsp_t *bsp, const dvertex_t *vertex);
|
|
|
|
void BSP_AddNode (bsp_t *bsp, const dnode_t *node);
|
|
|
|
void BSP_AddTexinfo (bsp_t *bsp, const texinfo_t *texinfo);
|
|
|
|
void BSP_AddFace (bsp_t *bsp, const dface_t *face);
|
|
|
|
void BSP_AddClipnode (bsp_t *bsp, const dclipnode_t *clipnode);
|
2010-08-21 23:40:31 +00:00
|
|
|
void BSP_AddMarkSurface (bsp_t *bsp, int marksurface);
|
2002-09-19 20:39:33 +00:00
|
|
|
void BSP_AddSurfEdge (bsp_t *bsp, int surfedge);
|
2010-09-02 04:01:45 +00:00
|
|
|
void BSP_AddEdge (bsp_t *bsp, const dedge_t *edge);
|
|
|
|
void BSP_AddModel (bsp_t *bsp, const dmodel_t *model);
|
|
|
|
void BSP_AddLighting (bsp_t *bsp, const byte *lightdata, size_t lightdatasize);
|
|
|
|
void BSP_AddVisibility (bsp_t *bsp, const byte *visdata, size_t visdatasize);
|
|
|
|
void BSP_AddEntities (bsp_t *bsp, const char *entdata, size_t entdatasize);
|
|
|
|
void BSP_AddTextures (bsp_t *bsp, const byte *texdata, size_t texdatasize);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-22 23:21:32 +00:00
|
|
|
#endif//__bspfile_h_
|