2020-01-20 18:36:45 +00:00
# ifndef COM_MESH_H
# define COM_MESH_H
2020-06-12 23:29:58 +00:00
# include "quakedef.h"
2016-07-12 00:40:13 +00:00
# ifdef __cplusplus
extern " C " {
# endif
# include "hash.h"
# include "shader.h"
# ifdef SKELETALMODELS
# include <stdlib.h>
# endif
2016-12-07 18:45:25 +00:00
# ifdef HALFLIFEMODELS
# include "model_hl.h"
# endif
2016-07-12 00:40:13 +00:00
2019-09-04 07:59:40 +00:00
struct galiasinfo_s ; //per-surface info.
2017-02-19 00:15:42 +00:00
# ifdef NONSKELETALMODELS
2016-07-12 00:40:13 +00:00
//a single pose within an animation (note: always refered to via a framegroup, even if there's only one frame in that group).
typedef struct
{
vecV_t * ofsverts ;
# ifndef SERVERONLY
vec3_t * ofsnormals ;
vec3_t * ofstvector ;
vec3_t * ofssvector ;
vboarray_t vboverts ;
vboarray_t vbonormals ;
vboarray_t vbosvector ;
vboarray_t vbotvector ;
# endif
vec3_t scale ;
vec3_t scale_origin ;
} galiaspose_t ;
2017-02-19 00:15:42 +00:00
# endif
2016-07-12 00:40:13 +00:00
2017-01-13 00:39:50 +00:00
typedef struct galiasevent_s
{
struct galiasevent_s * next ;
float timestamp ;
int code ;
char * data ;
} galiasevent_t ;
2016-07-12 00:40:13 +00:00
//a frame group (aka: animation)
2019-09-04 07:59:40 +00:00
typedef struct galiasanimation_s
2016-07-12 00:40:13 +00:00
{
# ifdef SKELETALMODELS
skeltype_t skeltype ; //for models with transforms, states that bones need to be transformed from their parent.
//this is actually bad, and can result in bones shortening as they interpolate.
2019-09-04 07:59:40 +00:00
float * ( QDECL * GetRawBones ) ( const struct galiasinfo_s * mesh , const struct galiasanimation_s * a , float time , float * bonematrixstorage , int numbones ) ;
void * boneofs ; //numposes*12*numbones
2016-07-12 00:40:13 +00:00
# endif
qboolean loop ;
int numposes ;
2019-05-23 15:11:32 +00:00
//float *poseendtime; //first starts at 0, anim duration is poseendtime[numposes-1]
float rate ; //average framerate of animation.
2017-02-19 00:15:42 +00:00
# ifdef NONSKELETALMODELS
2016-07-12 00:40:13 +00:00
galiaspose_t * poseofs ;
2017-02-19 00:15:42 +00:00
# endif
2017-01-13 00:39:50 +00:00
galiasevent_t * events ;
2016-07-12 00:40:13 +00:00
char name [ 64 ] ;
} galiasanimation_t ;
typedef struct galiasbone_s galiasbone_t ;
# ifdef SKELETALMODELS
struct galiasbone_s
{
char name [ 32 ] ;
int parent ;
2018-07-22 11:49:37 +00:00
// float radius;
2016-07-12 00:40:13 +00:00
float inverse [ 12 ] ;
} ;
2016-12-13 11:50:15 +00:00
typedef struct
2016-07-12 00:40:13 +00:00
{
2016-12-13 11:50:15 +00:00
//should be load-time only
2016-07-12 00:40:13 +00:00
//use of this prevents the use of glsl acceleration. the framerate loss is of the order of 90%
//skeletal poses refer to this.
int vertexindex ;
int boneindex ;
vec4_t org ;
# ifndef SERVERONLY
vec3_t normal ;
# endif
} galisskeletaltransforms_t ;
# endif
//we can't be bothered with animating skins.
//We'll load up to four of them but after that you're on your own
# ifndef SERVERONLY
typedef struct
{
shader_t * shader ;
qbyte * texels ; //this is 8bit for frame 0 only. only valid in q1 models without replacement textures, used for colourising player skins.
const char * defaultshader ;
char shadername [ MAX_QPATH ] ;
texnums_t texnums ;
} skinframe_t ;
2020-01-20 18:36:45 +00:00
struct galiasskin_s
2016-07-12 00:40:13 +00:00
{
int skinwidth ;
int skinheight ;
float skinspeed ;
int numframes ;
skinframe_t * frame ;
char name [ MAX_QPATH ] ;
2020-01-20 18:36:45 +00:00
} ;
2016-07-12 00:40:13 +00:00
typedef struct
{
char name [ MAX_QPATH ] ;
texnums_t texnum ;
unsigned int tcolour ;
unsigned int bcolour ;
unsigned int pclass ;
int skinnum ;
unsigned int subframe ;
bucket_t bucket ;
} galiascolourmapped_t ;
# endif
2020-01-20 18:36:45 +00:00
typedef struct galiasskin_s galiasskin_t ;
2016-07-12 00:40:13 +00:00
typedef struct
{
char name [ 64 ] ;
vec3_t org ;
float ang [ 3 ] [ 3 ] ;
} md3tag_t ;
typedef struct galiasinfo_s
{
char surfacename [ MAX_QPATH ] ;
unsigned short geomset ;
unsigned short geomid ;
index_t * ofs_indexes ;
int numindexes ;
2017-01-13 00:39:50 +00:00
//for hitmodel
unsigned int contents ; //default CONTENTS_BODY
q2csurface_t csurface ; //flags, and also collision name, if useful...
unsigned int surfaceid ; //the body reported to qc via trace_surface
float mindist ;
float maxdist ;
2016-07-12 00:40:13 +00:00
int * ofs_trineighbours ;
float lerpcutoff ; //hack. should probably be part of the entity structure, but I really don't want new models (and thus code) to have access to this ugly inefficient hack. make your models properly in the first place.
int numskins ;
2017-03-04 19:36:06 +00:00
//#ifndef SERVERONLY
2016-07-12 00:40:13 +00:00
galiasskin_t * ofsskins ;
2017-03-04 19:36:06 +00:00
//#endif
2016-07-12 00:40:13 +00:00
int shares_verts ; //used with models with two shaders using the same vertex. set to the surface number to inherit from (or itself).
int shares_bones ; //use last mesh's bones. set to the surface number to inherit from (or itself).
int numverts ;
2017-03-04 19:36:06 +00:00
//#ifndef SERVERONLY
2016-07-12 00:40:13 +00:00
vec2_t * ofs_st_array ;
2018-06-02 08:55:57 +00:00
vec2_t * ofs_lmst_array ;
2016-07-12 00:40:13 +00:00
vec4_t * ofs_rgbaf ;
byte_vec4_t * ofs_rgbaub ;
2017-03-04 19:36:06 +00:00
//#endif
2016-07-12 00:40:13 +00:00
int numanimations ;
galiasanimation_t * ofsanimations ;
struct galiasinfo_s * nextsurf ;
# ifdef SKELETALMODELS
2019-03-12 05:04:27 +00:00
boneidx_t * bonemap ; //filled in automatically if our mesh has more gpu bones than we can support
unsigned int mappedbones ;
2020-06-12 23:29:58 +00:00
unsigned int nummorphs ; //extra data after the xyz/norm/stvect arrays
const float * ( QDECL * AnimateMorphs ) ( const struct galiasinfo_s * surf , const framestate_t * framestate ) ;
2020-07-01 05:32:21 +00:00
int meshrootbone ;
2019-02-16 19:09:07 +00:00
2016-07-12 00:40:13 +00:00
float * baseframeofs ; /*non-heirachical*/
int numbones ;
galiasbone_t * ofsbones ;
vecV_t * ofs_skel_xyz ;
vec3_t * ofs_skel_norm ;
vec3_t * ofs_skel_svect ;
vec3_t * ofs_skel_tvect ;
2019-03-12 05:04:27 +00:00
bone_vec4_t * ofs_skel_idx ;
2016-07-12 00:40:13 +00:00
vec4_t * ofs_skel_weight ;
vboarray_t vbo_skel_verts ;
vboarray_t vbo_skel_normals ;
vboarray_t vbo_skel_svector ;
vboarray_t vbo_skel_tvector ;
vboarray_t vbo_skel_bonenum ;
vboarray_t vbo_skel_bweight ;
# endif
vboarray_t vboindicies ;
vboarray_t vbotexcoords ;
vboarray_t vborgba ; //yeah, just you try reading THAT as an actual word.
void * vbomem ;
void * ebomem ;
//these exist only in the root mesh.
2016-12-13 11:50:15 +00:00
# ifdef MD3MODELS
2016-07-12 00:40:13 +00:00
int numtagframes ;
int numtags ;
md3tag_t * ofstags ;
2016-12-13 11:50:15 +00:00
# else
FTE_DEPRECATED int numtagframes ;
FTE_DEPRECATED int numtags ;
FTE_DEPRECATED md3tag_t * ofstags ;
# endif
2019-09-04 07:59:40 +00:00
void * ctx ; //loader-specific stuff. must be ZG_Malloced if it lasts beyond the loader.
2016-07-12 00:40:13 +00:00
unsigned int warned ; //passed around at load time, so we don't spam warnings
} galiasinfo_t ;
struct terrainfuncs_s ;
typedef struct modplugfuncs_s
{
int version ;
2019-09-04 07:59:40 +00:00
//format handling
2016-07-12 00:40:13 +00:00
int ( QDECL * RegisterModelFormatText ) ( const char * formatname , char * magictext , qboolean ( QDECL * load ) ( struct model_s * mod , void * buffer , size_t fsize ) ) ;
int ( QDECL * RegisterModelFormatMagic ) ( const char * formatname , unsigned int magic , qboolean ( QDECL * load ) ( struct model_s * mod , void * buffer , size_t fsize ) ) ;
void ( QDECL * UnRegisterModelFormat ) ( int idx ) ;
void ( QDECL * UnRegisterAllModelFormats ) ( void ) ;
2019-09-04 07:59:40 +00:00
//util
2019-05-23 15:11:32 +00:00
void * ( QDECL * ZG_Malloc ) ( zonegroup_t * ctx , size_t size ) ; //ctx=&mod->memgroup and the data will be freed when the model is freed.
2019-09-04 07:59:40 +00:00
void ( QDECL * StripExtension ) ( const char * in , char * out , int outlen ) ;
2016-07-12 00:40:13 +00:00
2019-09-04 07:59:40 +00:00
//matrix maths
2018-11-19 06:37:25 +00:00
void ( QDECL * ConcatTransforms ) ( const float in1 [ 3 ] [ 4 ] , const float in2 [ 3 ] [ 4 ] , float out [ 3 ] [ 4 ] ) ;
2016-07-12 00:40:13 +00:00
void ( QDECL * M3x4_Invert ) ( const float * in1 , float * out ) ;
2019-07-02 04:12:20 +00:00
void ( QDECL * VectorAngles ) ( const float * forward , const float * up , float * result , qboolean meshpitch ) ;
2016-07-12 00:40:13 +00:00
void ( QDECL * AngleVectors ) ( const vec3_t angles , vec3_t forward , vec3_t right , vec3_t up ) ;
void ( QDECL * GenMatrixPosQuat4Scale ) ( const vec3_t pos , const vec4_t quat , const vec3_t scale , float result [ 12 ] ) ;
2019-09-04 07:59:40 +00:00
//bone stuff
2016-07-12 00:40:13 +00:00
void ( QDECL * ForceConvertBoneData ) ( skeltype_t sourcetype , const float * sourcedata , size_t bonecount , galiasbone_t * bones , skeltype_t desttype , float * destbuffer , size_t destbonecount ) ;
2019-09-04 07:59:40 +00:00
//texturing
2018-06-02 08:55:57 +00:00
image_t * ( QDECL * GetTexture ) ( const char * identifier , const char * subpath , unsigned int flags , void * fallbackdata , void * fallbackpalette , int fallbackwidth , int fallbackheight , uploadfmt_t fallbackfmt ) ;
2019-03-12 05:04:27 +00:00
void ( QDECL * AccumulateTextureVectors ) ( vecV_t * const vc , vec2_t * const tc , vec3_t * nv , vec3_t * sv , vec3_t * tv , const index_t * idx , int numidx , qboolean calcnorms ) ;
void ( QDECL * NormaliseTextureVectors ) ( vec3_t * n , vec3_t * s , vec3_t * t , int v , qboolean calcnorms ) ;
2019-09-04 07:59:40 +00:00
model_t * ( QDECL * GetModel ) ( const char * identifier , enum mlverbosity_e verbosity ) ;
# define plugmodfuncs_name "Models"
} plugmodfuncs_t ;
# define MODPLUGFUNCS_VERSION 1
2016-07-12 00:40:13 +00:00
# ifdef SKELETALMODELS
void Alias_TransformVerticies ( float * bonepose , galisskeletaltransforms_t * weights , int numweights , vecV_t * xyzout , vec3_t * normout ) ;
void QDECL Alias_ForceConvertBoneData ( skeltype_t sourcetype , const float * sourcedata , size_t bonecount , galiasbone_t * bones , skeltype_t desttype , float * destbuffer , size_t destbonecount ) ;
# endif
qboolean Alias_GAliasBuildMesh ( mesh_t * mesh , vbo_t * * vbop , galiasinfo_t * inf , int surfnum , entity_t * e , qboolean allowskel ) ;
void Mod_DestroyMesh ( galiasinfo_t * galias ) ;
void Alias_FlushCache ( void ) ;
void Alias_Shutdown ( void ) ;
void Alias_Register ( void ) ;
shader_t * Mod_ShaderForSkin ( model_t * model , int surfaceidx , int num ) ;
const char * Mod_SkinNameForNum ( model_t * model , int surfaceidx , int num ) ;
const char * Mod_SurfaceNameForNum ( model_t * model , int num ) ;
const char * Mod_FrameNameForNum ( model_t * model , int surfaceidx , int num ) ;
const char * Mod_SkinNameForNum ( model_t * model , int surfaceidx , int num ) ;
qboolean Mod_FrameInfoForNum ( model_t * model , int surfaceidx , int num , char * * name , int * numframes , float * duration , qboolean * loop ) ;
void Mod_DoCRC ( model_t * mod , char * buffer , int buffersize ) ;
2019-03-12 05:04:27 +00:00
void QDECL Mod_AccumulateTextureVectors ( vecV_t * const vc , vec2_t * const tc , vec3_t * nv , vec3_t * sv , vec3_t * tv , const index_t * idx , int numidx , qboolean calcnorms ) ;
2016-07-12 00:40:13 +00:00
void Mod_AccumulateMeshTextureVectors ( mesh_t * mesh ) ;
2019-03-12 05:04:27 +00:00
void QDECL Mod_NormaliseTextureVectors ( vec3_t * n , vec3_t * s , vec3_t * t , int v , qboolean calcnorms ) ;
2016-12-07 18:45:25 +00:00
void R_Generate_Mesh_ST_Vectors ( mesh_t * mesh ) ;
2016-07-12 00:40:13 +00:00
# ifdef __cplusplus
} ;
2020-01-20 18:36:45 +00:00
# endif
# endif //COM_MESH_H