2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
model.h
|
|
|
|
|
|
|
|
(description)
|
|
|
|
|
|
|
|
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 _MODEL_H
|
|
|
|
#define _MODEL_H
|
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qtypes.h"
|
2001-04-10 06:55:28 +00:00
|
|
|
#include "QF/bspfile.h"
|
|
|
|
#include "QF/spritegn.h"
|
|
|
|
#include "QF/modelgen.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/zone.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
2002-07-25 14:43:36 +00:00
|
|
|
d*_t structures are on-disk representations
|
|
|
|
m*_t structures are in-memory
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// entity effects =============================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
#define EF_BRIGHTFIELD 1
|
|
|
|
#define EF_MUZZLEFLASH 2
|
|
|
|
#define EF_BRIGHTLIGHT 4
|
|
|
|
#define EF_DIMLIGHT 8
|
|
|
|
#define EF_FLAG1 16
|
|
|
|
#define EF_FLAG2 32
|
|
|
|
#define EF_BLUE 64
|
|
|
|
#define EF_RED 128
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// BRUSH MODELS ===============================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-10 06:55:28 +00:00
|
|
|
typedef struct efrag_s
|
|
|
|
{
|
|
|
|
struct mleaf_s *leaf;
|
|
|
|
struct efrag_s *leafnext;
|
|
|
|
struct entity_s *entity;
|
|
|
|
struct efrag_s *entnext;
|
|
|
|
} efrag_t;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// in memory representation ===================================================
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
// !!! if this is changed, it must be changed in asm_draw.h too !!!
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
vec3_t position;
|
|
|
|
} mvertex_t;
|
|
|
|
|
|
|
|
typedef struct texture_s
|
|
|
|
{
|
|
|
|
char name[16];
|
|
|
|
unsigned int width, height;
|
|
|
|
int gl_texturenum;
|
|
|
|
int gl_fb_texturenum;
|
|
|
|
struct msurface_s *texturechain; // for gl_texsort drawing
|
2001-11-05 06:20:35 +00:00
|
|
|
struct msurface_s **texturechain_tail;
|
2001-02-19 21:15:25 +00:00
|
|
|
int anim_total; // total tenths in sequence ( 0 = no)
|
|
|
|
int anim_min, anim_max; // time for this frame min <=time< max
|
|
|
|
struct texture_s *anim_next; // in the animation sequence
|
|
|
|
struct texture_s *alternate_anims; // bmodels in frmae 1 use these
|
|
|
|
unsigned int offsets[MIPLEVELS]; // four mip maps stored
|
|
|
|
} texture_t;
|
|
|
|
|
|
|
|
|
|
|
|
#define SURF_PLANEBACK 2
|
|
|
|
#define SURF_DRAWSKY 4
|
|
|
|
#define SURF_DRAWSPRITE 8
|
|
|
|
#define SURF_DRAWTURB 0x10
|
|
|
|
#define SURF_DRAWTILED 0x20
|
|
|
|
#define SURF_DRAWBACKGROUND 0x40
|
|
|
|
#define SURF_UNDERWATER 0x80
|
|
|
|
#define SURF_DONTWARP 0x100
|
2001-08-05 05:59:15 +00:00
|
|
|
#define SURF_DRAWNOALPHA 0x200
|
|
|
|
#define SURF_DRAWFULLBRIGHT 0x400
|
|
|
|
#define SURF_LIGHTBOTHSIDES 0x800
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// !!! if this is changed, it must be changed in asm_draw.h too !!!
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned short v[2];
|
|
|
|
unsigned int cachededgeoffset;
|
|
|
|
} medge_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float vecs[2][4];
|
|
|
|
float mipadjust;
|
|
|
|
texture_t *texture;
|
|
|
|
int flags;
|
|
|
|
} mtexinfo_t;
|
|
|
|
|
|
|
|
#define VERTEXSIZE 7
|
|
|
|
|
|
|
|
typedef struct glpoly_s
|
|
|
|
{
|
|
|
|
struct glpoly_s *next;
|
|
|
|
struct glpoly_s *chain;
|
|
|
|
struct glpoly_s *fb_chain;
|
|
|
|
int numverts;
|
2004-02-08 02:49:38 +00:00
|
|
|
int flags; // for SURF_UNDERWATER
|
2001-02-19 21:15:25 +00:00
|
|
|
float verts[4][VERTEXSIZE]; // variable sized (xyz s1t1 s2t2)
|
|
|
|
} glpoly_t;
|
|
|
|
|
|
|
|
typedef struct msurface_s
|
|
|
|
{
|
|
|
|
int visframe; // should be drawn when node is crossed
|
|
|
|
|
|
|
|
mplane_t *plane;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
int firstedge; // look up in model->surfedges[], negative numbers
|
|
|
|
int numedges; // are backwards edges
|
2004-02-08 02:49:38 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
struct surfcache_s *cachespots[MIPLEVELS];
|
|
|
|
|
|
|
|
short texturemins[2];
|
2002-07-24 15:58:52 +00:00
|
|
|
unsigned short extents[2];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
int light_s, light_t; // gl lightmap coordinates
|
|
|
|
|
|
|
|
glpoly_t *polys; // multiple if warped
|
|
|
|
struct msurface_s *texturechain;
|
2004-02-08 02:49:38 +00:00
|
|
|
// struct msurface_s *lightmapchain; // Quake 2 ???
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
mtexinfo_t *texinfo;
|
2004-02-08 02:49:38 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
// lighting info
|
|
|
|
int dlightframe;
|
|
|
|
int dlightbits;
|
|
|
|
|
|
|
|
int lightmaptexturenum;
|
|
|
|
byte styles[MAXLIGHTMAPS];
|
|
|
|
int cached_light[MAXLIGHTMAPS]; // values currently used in lightmap
|
|
|
|
qboolean cached_dlight; // true if dynamic light in cache
|
|
|
|
byte *samples; // [numstyles*surfsize]
|
|
|
|
} msurface_t;
|
|
|
|
|
|
|
|
typedef struct mnode_s
|
|
|
|
{
|
|
|
|
// common with leaf
|
|
|
|
int contents; // 0, to differentiate from leafs
|
|
|
|
int visframe; // node needs to be traversed if current
|
2004-02-08 02:49:38 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
float minmaxs[6]; // for bounding box culling
|
|
|
|
|
|
|
|
struct mnode_s *parent;
|
|
|
|
|
|
|
|
// node specific
|
|
|
|
mplane_t *plane;
|
2004-02-08 02:49:38 +00:00
|
|
|
struct mnode_s *children[2];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
unsigned short firstsurface;
|
|
|
|
unsigned short numsurfaces;
|
|
|
|
} mnode_t;
|
|
|
|
|
|
|
|
typedef struct mleaf_s
|
|
|
|
{
|
|
|
|
// common with node
|
|
|
|
int contents; // wil be a negative contents number
|
|
|
|
int visframe; // node needs to be traversed if current
|
|
|
|
|
2001-08-03 23:54:09 +00:00
|
|
|
// for bounding box culling
|
|
|
|
float mins[3];
|
|
|
|
float maxs[3];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
struct mnode_s *parent;
|
|
|
|
|
|
|
|
// leaf specific
|
|
|
|
byte *compressed_vis;
|
|
|
|
efrag_t *efrags;
|
|
|
|
|
|
|
|
msurface_t **firstmarksurface;
|
|
|
|
int nummarksurfaces;
|
|
|
|
int key; // BSP sequence number for leaf's contents
|
|
|
|
byte ambient_sound_level[NUM_AMBIENTS];
|
|
|
|
} mleaf_t;
|
|
|
|
|
|
|
|
// !!! if this is changed, it must be changed in asm_i386.h too !!!
|
2001-07-30 04:33:59 +00:00
|
|
|
typedef struct hull_s
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
dclipnode_t *clipnodes;
|
|
|
|
mplane_t *planes;
|
|
|
|
int firstclipnode;
|
|
|
|
int lastclipnode;
|
|
|
|
vec3_t clip_mins;
|
|
|
|
vec3_t clip_maxs;
|
|
|
|
} hull_t;
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// SPRITE MODELS ==============================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// FIXME: shorten these?
|
|
|
|
typedef struct mspriteframe_s
|
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
float up, down, left, right;
|
|
|
|
byte pixels[4];
|
|
|
|
int gl_texturenum;
|
|
|
|
} mspriteframe_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int numframes;
|
|
|
|
float *intervals;
|
|
|
|
mspriteframe_t *frames[1];
|
|
|
|
} mspritegroup_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
spriteframetype_t type;
|
|
|
|
mspriteframe_t *frameptr;
|
|
|
|
} mspriteframedesc_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
int maxwidth;
|
|
|
|
int maxheight;
|
|
|
|
int numframes;
|
|
|
|
float beamlength; // remove?
|
|
|
|
void *cachespot; // remove?
|
|
|
|
mspriteframedesc_t frames[1];
|
|
|
|
} msprite_t;
|
|
|
|
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// ALIAS MODELS ===============================================================
|
|
|
|
// Alias models are position independent, so the cache manager can move them.
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
// NOTE: the first three lines must match maliasgroupframedesc_t
|
2001-02-19 21:15:25 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
trivertx_t bboxmin;
|
|
|
|
trivertx_t bboxmax;
|
|
|
|
int frame;
|
|
|
|
aliasframetype_t type;
|
|
|
|
int firstpose;
|
|
|
|
int numposes;
|
|
|
|
float interval;
|
|
|
|
char name[16];
|
|
|
|
} maliasframedesc_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
aliasskintype_t type;
|
|
|
|
int skin;
|
2001-11-21 08:14:05 +00:00
|
|
|
int texnum;
|
|
|
|
int fb_texnum;
|
2001-02-19 21:15:25 +00:00
|
|
|
} maliasskindesc_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
trivertx_t bboxmin;
|
|
|
|
trivertx_t bboxmax;
|
|
|
|
int frame;
|
|
|
|
} maliasgroupframedesc_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int numframes;
|
|
|
|
int intervals;
|
|
|
|
maliasgroupframedesc_t frames[1];
|
|
|
|
} maliasgroup_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int numskins;
|
|
|
|
int intervals;
|
|
|
|
maliasskindesc_t skindescs[1];
|
|
|
|
} maliasskingroup_t;
|
|
|
|
|
|
|
|
// !!! if this is changed, it must be changed in asm_draw.h too !!!
|
|
|
|
typedef struct mtriangle_s {
|
|
|
|
int facesfront;
|
|
|
|
int vertindex[3];
|
|
|
|
} mtriangle_t;
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_SKINS 32
|
|
|
|
typedef struct {
|
|
|
|
int model;
|
|
|
|
int stverts;
|
|
|
|
int skindesc;
|
|
|
|
int triangles;
|
|
|
|
|
|
|
|
mdl_t mdl;
|
2003-04-08 04:13:49 +00:00
|
|
|
int tex_coord;
|
2001-02-19 21:15:25 +00:00
|
|
|
int numposes;
|
|
|
|
int poseverts;
|
2002-08-20 00:48:59 +00:00
|
|
|
int posedata; // numposes * poseverts trivert_t
|
2001-02-19 21:15:25 +00:00
|
|
|
int commands; // gl command list with embedded s/t
|
2001-05-29 17:37:48 +00:00
|
|
|
|
|
|
|
unsigned short crc;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
maliasframedesc_t frames[1];
|
|
|
|
} aliashdr_t;
|
|
|
|
|
|
|
|
#define MAXALIASFRAMES 256
|
|
|
|
extern aliashdr_t *pheader;
|
2002-01-04 07:40:00 +00:00
|
|
|
extern stvert_t *stverts;
|
|
|
|
extern mtriangle_t *triangles;
|
2001-02-19 21:15:25 +00:00
|
|
|
extern trivertx_t *poseverts[MAXALIASFRAMES];
|
2002-06-14 09:33:37 +00:00
|
|
|
extern int aliasbboxmins[3];
|
|
|
|
extern int aliasbboxmaxs[3];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
// Whole model ================================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
typedef enum {mod_brush, mod_sprite, mod_alias} modtype_t;
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
#define EF_ROCKET 1 // leave a trail
|
|
|
|
#define EF_GRENADE 2 // leave a trail
|
|
|
|
#define EF_GIB 4 // leave a trail
|
|
|
|
#define EF_ROTATE 8 // rotate (bonus items)
|
|
|
|
#define EF_TRACER 16 // green split trail
|
|
|
|
#define EF_ZOMGIB 32 // small blood trail
|
|
|
|
#define EF_TRACER2 64 // orange split trail + rotate
|
|
|
|
#define EF_TRACER3 128 // purple trail
|
|
|
|
#define EF_GLOWTRAIL 4096 // glowcolor particle trail
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
typedef struct model_s
|
|
|
|
{
|
2002-08-20 00:48:59 +00:00
|
|
|
char name[MAX_QPATH];
|
|
|
|
qboolean needload; // bmodels and sprites don't cache normally
|
|
|
|
qboolean hasfullbrights;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
modtype_t type;
|
|
|
|
int numframes;
|
|
|
|
synctype_t synctype;
|
|
|
|
|
|
|
|
int flags;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-11-20 08:02:35 +00:00
|
|
|
// lighting info
|
2002-08-20 00:48:59 +00:00
|
|
|
float min_light;
|
|
|
|
byte shadow_alpha; // 255 = 1.0
|
|
|
|
byte fullbright;
|
2001-11-20 08:02:35 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
// coarse cull, for fine culling, axis-aligned bbox isn't good enough
|
|
|
|
float radius;
|
|
|
|
// FIXME: bbox cruft has to stay until sw rendering gets updated
|
|
|
|
vec3_t mins, maxs;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
// solid volume for clipping
|
|
|
|
qboolean clipbox;
|
|
|
|
vec3_t clipmins, clipmaxs;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// brush model
|
2002-08-20 00:48:59 +00:00
|
|
|
int firstmodelsurface, nummodelsurfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numsubmodels;
|
2001-02-19 21:15:25 +00:00
|
|
|
dmodel_t *submodels;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numplanes;
|
2001-02-19 21:15:25 +00:00
|
|
|
mplane_t *planes;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numleafs; // number of visible leafs, not counting 0
|
2001-02-19 21:15:25 +00:00
|
|
|
mleaf_t *leafs;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numvertexes;
|
2001-02-19 21:15:25 +00:00
|
|
|
mvertex_t *vertexes;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numedges;
|
2001-02-19 21:15:25 +00:00
|
|
|
medge_t *edges;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numnodes;
|
2001-02-19 21:15:25 +00:00
|
|
|
mnode_t *nodes;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numtexinfo;
|
2001-02-19 21:15:25 +00:00
|
|
|
mtexinfo_t *texinfo;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numsurfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
msurface_t *surfaces;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numsurfedges;
|
2001-02-19 21:15:25 +00:00
|
|
|
int *surfedges;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numclipnodes;
|
2001-02-19 21:15:25 +00:00
|
|
|
dclipnode_t *clipnodes;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int nummarksurfaces;
|
2001-02-19 21:15:25 +00:00
|
|
|
msurface_t **marksurfaces;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
hull_t hulls[MAX_MAP_HULLS];
|
2006-12-24 03:13:29 +00:00
|
|
|
hull_t *hull_list[MAX_MAP_HULLS];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
int numtextures;
|
2001-02-19 21:15:25 +00:00
|
|
|
texture_t **textures;
|
2004-11-06 02:21:00 +00:00
|
|
|
texture_t *skytexture;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
byte *visdata;
|
|
|
|
byte *lightdata;
|
|
|
|
char *entities;
|
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
unsigned int checksum;
|
|
|
|
unsigned int checksum2;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// additional model data
|
2010-01-13 06:42:26 +00:00
|
|
|
cache_user_t cache; // access only through Mod_Extradata
|
2001-02-19 21:15:25 +00:00
|
|
|
} model_t;
|
|
|
|
|
2002-07-25 14:43:36 +00:00
|
|
|
// ============================================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-20 00:48:59 +00:00
|
|
|
extern float RadiusFromBounds (const vec3_t mins, const vec3_t maxs);
|
2001-02-19 21:15:25 +00:00
|
|
|
void Mod_Init (void);
|
|
|
|
void Mod_Init_Cvars (void);
|
|
|
|
void Mod_ClearAll (void);
|
2001-07-15 07:04:17 +00:00
|
|
|
model_t *Mod_ForName (const char *name, qboolean crash);
|
2001-02-19 21:15:25 +00:00
|
|
|
void *Mod_Extradata (model_t *mod); // handles caching
|
2001-07-15 07:04:17 +00:00
|
|
|
void Mod_TouchModel (const char *name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-01-03 05:29:38 +00:00
|
|
|
mleaf_t *Mod_PointInLeaf (const vec3_t p, model_t *model);
|
2001-02-19 21:15:25 +00:00
|
|
|
byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
|
2001-07-15 07:04:17 +00:00
|
|
|
model_t *Mod_FindName (const char *name);
|
2001-02-19 21:15:25 +00:00
|
|
|
void Mod_ProcessTexture(miptex_t *mt, texture_t *tx);
|
2002-01-16 20:32:39 +00:00
|
|
|
void Mod_LoadExternalSkins (model_t * mod);
|
2002-01-16 01:02:50 +00:00
|
|
|
void Mod_LoadExternalTextures (model_t * mod);
|
2010-08-23 02:56:43 +00:00
|
|
|
void Mod_LoadLighting (bsp_t *bsp);
|
2001-02-19 21:15:25 +00:00
|
|
|
int Mod_CalcFullbright (byte *in, byte *out, int pixels);
|
2001-11-20 08:45:26 +00:00
|
|
|
int Mod_Fullbright (byte * skin, int width, int height, char *name);
|
|
|
|
|
2002-01-03 05:29:38 +00:00
|
|
|
void *Mod_LoadAliasFrame (void *pin, int *posenum, maliasframedesc_t *frame,
|
|
|
|
int extra);
|
|
|
|
void *Mod_LoadAliasGroup (void *pin, int *posenum, maliasframedesc_t *frame,
|
|
|
|
int extra);
|
2001-11-21 19:13:53 +00:00
|
|
|
void *Mod_LoadSkin (byte *skin, int skinsize, int snum, int gnum,
|
|
|
|
qboolean group, maliasskindesc_t *skindesc);
|
2001-11-20 08:02:35 +00:00
|
|
|
void Mod_MakeAliasModelDisplayLists (model_t *m, aliashdr_t *hdr, void *_m,
|
2001-12-30 02:30:26 +00:00
|
|
|
int _s, int extra);
|
2001-11-20 08:02:35 +00:00
|
|
|
void Mod_FinalizeAliasModel (model_t *m, aliashdr_t *hdr);
|
2001-11-22 05:31:44 +00:00
|
|
|
void Mod_SpriteLoadTexture (mspriteframe_t *pspriteframe, int framenum);
|
2001-10-28 04:23:37 +00:00
|
|
|
|
2002-11-05 19:12:51 +00:00
|
|
|
void Mod_LoadBrushModel (model_t *mod, void *buffer);
|
|
|
|
void Mod_LoadAliasModel (model_t *mod, void *buffer,
|
|
|
|
cache_allocator_t allocator);
|
2004-02-08 02:49:38 +00:00
|
|
|
void Mod_LoadAlias2Model (model_t *mod, void *buffer,
|
|
|
|
cache_allocator_t allocator);
|
2002-11-05 19:12:51 +00:00
|
|
|
void Mod_LoadSpriteModel (model_t *mod, void *buffer);
|
2004-02-08 02:49:38 +00:00
|
|
|
void Mod_LoadSprite2Model (model_t *mod, void *buffer);
|
2002-11-05 19:12:51 +00:00
|
|
|
void Mod_SubdivideSurface (msurface_t *fa);
|
|
|
|
|
|
|
|
void Mod_Print (void);
|
2001-10-28 04:23:37 +00:00
|
|
|
|
|
|
|
extern struct cvar_s *gl_mesh_cache;
|
|
|
|
extern struct cvar_s *gl_subdivide_size;
|
2003-04-08 04:13:49 +00:00
|
|
|
extern struct cvar_s *gl_alias_render_tri;
|
2003-12-23 20:05:52 +00:00
|
|
|
extern struct cvar_s *gl_textures_external;
|
2001-10-28 04:23:37 +00:00
|
|
|
extern model_t *loadmodel;
|
2003-07-08 22:39:45 +00:00
|
|
|
extern char *loadname;
|
2001-10-28 04:23:37 +00:00
|
|
|
extern byte *mod_base;
|
|
|
|
extern byte mod_novis[MAX_MAP_LEAFS / 8];
|
2002-05-28 04:11:40 +00:00
|
|
|
extern int mod_lightmap_bytes;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif // _MODEL_H
|