]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - model_shared.h
no more warping meshs of any kind
[xonotic/darkplaces.git] / model_shared.h
index d3a701a792545c0cc6b076c1eba9381e83fef611..90657ed2e1b2cadb882b0ed46e9a5b5729e343d5 100644 (file)
@@ -8,7 +8,7 @@ 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.  
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 See the GNU General Public License for more details.
 
@@ -33,7 +33,31 @@ m*_t structures are in-memory
 
 */
 
-typedef enum {mod_brush, mod_sprite, mod_alias} modtype_t;
+typedef enum {mod_invalid, mod_brush, mod_sprite, mod_alias} modtype_t;
+
+typedef struct animscene_s
+{
+       char name[32]; // for viewthing support
+       int firstframe;
+       int framecount;
+       int loop; // true or false
+       float framerate;
+}
+animscene_t;
+
+typedef struct skinframe_s
+{
+       rtexture_t *base; // original texture minus pants/shirt/glow
+       rtexture_t *pants; // pants only (in greyscale)
+       rtexture_t *shirt; // shirt only (in greyscale)
+       rtexture_t *glow; // glow only
+       rtexture_t *merged; // original texture minus glow
+       rtexture_t *fog; // white texture with alpha of the base texture, NULL if not transparent
+}
+skinframe_t;
+
+#define MAX_SKINS 256
+
 
 #include "model_brush.h"
 #include "model_sprite.h"
@@ -41,97 +65,177 @@ typedef enum {mod_brush, mod_sprite, mod_alias} modtype_t;
 
 typedef struct model_s
 {
-       char            name[MAX_QPATH];
-       qboolean        needload;               // bmodels and sprites don't cache normally
-
-       modtype_t       type;
-       int                     aliastype; // LordHavoc: Q2 model support
-       int                     fullbright; // LordHavoc: if true (normally only for sprites) the model/sprite/bmodel is always rendered fullbright
-       int                     numframes;
-       synctype_t      synctype;
-       
-       int                     flags;
-
-// volume occupied by the model graphics
-       vec3_t          mins, maxs;
-       float           radius;
-
-// solid volume for clipping 
-       qboolean        clipbox;
-       vec3_t          clipmins, clipmaxs;
-
-// brush model
-       int                     firstmodelsurface, nummodelsurfaces;
-
-       int                     numsubmodels;
-       dmodel_t        *submodels;
-
-       int                     numplanes;
-       mplane_t        *planes;
+       char                    name[MAX_QPATH];
+       // model needs to be loaded if this is true
+       qboolean                needload;
+       // set if the model is used in current map, models which are not, are purged
+       qboolean                used;
+       // CRC of the file this model was loaded from, to reload if changed
+       qboolean                crc;
+       // true if this is the world model (I.E. defines what sky to use, and may contain submodels)
+       qboolean                isworldmodel;
+       // true if this model is a HalfLife .bsp file
+       qboolean                ishlbsp;
+
+       // mod_brush, mod_alias, mod_sprite
+       modtype_t               type;
+       // LordHavoc: Q2/ZYM model support
+       int                             aliastype;
+       // LordHavoc: if true (normally only for sprites) the model/sprite/bmodel is always rendered fullbright
+       int                             fullbright;
+       // number of QC accessable frame(group)s in the model
+       int                             numframes;
+       // whether to randomize animated framegroups
+       synctype_t              synctype;
+
+       // used for sprites and models
+       int                             numtris;
+       // used for models
+       int                             numskins;
+       // used by models
+       int                             numverts;
+
+       // flags from the model file
+       int                             flags;
+       // engine calculated flags, ones that can not be set in the file
+       int                             flags2;
+
+       // all models use textures...
+       rtexturepool_t  *texturepool;
+
+       // volume occupied by the model
+       // bounding box at angles '0 0 0'
+       vec3_t                  normalmins, normalmaxs;
+       // bounding box if yaw angle is not 0, but pitch and roll are
+       vec3_t                  yawmins, yawmaxs;
+       // bounding box if pitch or roll are used
+       vec3_t                  rotatedmins, rotatedmaxs;
+       // usable at any angles
+//     float                   modelradius;
+
+       // brush model specific
+       int                             firstmodelsurface, nummodelsurfaces;
+       // LordHavoc: sorted surface pointer array, sorted by shader type and then by texture
+       msurface_t              **modelsortedsurfaces; // [nummodelsurfaces]
+
+       // lightmap format, set to r_lightmaprgba when model is loaded
+       int                             lightmaprgba;
+
+       int                             numsubmodels;
+       dmodel_t                *submodels;
+
+       int                             numplanes;
+       mplane_t                *planes;
+
+       // number of visible leafs, not counting 0 (solid)
+       int                             numleafs;
+       mleaf_t                 *leafs;
+
+       int                             numvertexes;
+       mvertex_t               *vertexes;
+
+       int                             numedges;
+       medge_t                 *edges;
+
+       int                             numnodes;
+       mnode_t                 *nodes;
+
+       int                             numtexinfo;
+       mtexinfo_t              *texinfo;
+
+       int                             numsurfaces;
+       msurface_t              *surfaces;
+
+       int                             numsurfedges;
+       int                             *surfedges;
+
+       int                             numclipnodes;
+       dclipnode_t             *clipnodes;
+
+       int                             nummarksurfaces;
+       msurface_t              **marksurfaces;
+
+       hull_t                  hulls[MAX_MAP_HULLS];
+
+       int                             numtextures;
+       texture_t               **textures;
+
+       qbyte                   *visdata;
+       qbyte                   *lightdata;
+       char                    *entities;
+
+       int                             numportals;
+       mportal_t               *portals;
+
+       int                             numportalpoints;
+       mvertex_t               *portalpoints;
+
+       int                             numlights;
+       mlight_t                *lights;
+
+       // skin animation info
+       animscene_t             *skinscenes; // [numskins]
+       // skin frame info
+       skinframe_t             *skinframes;
 
-       int                     numleafs;               // number of visible leafs, not counting 0
-       mleaf_t         *leafs;
+       animscene_t             *animscenes; // [numframes]
 
-       int                     numvertexes;
-       mvertex_t       *vertexes;
+       // Q1 and Q2 models are the same after loading
+       int                             *mdlmd2data_indices;
+       float                   *mdlmd2data_texcoords;
+       md2frame_t              *mdlmd2data_frames;
+       trivertx_t              *mdlmd2data_pose;
 
-       int                     numedges;
-       medge_t         *edges;
+       // for Zymotic models
+       void                    *zymdata_header;
 
-       int                     numnodes;
-       mnode_t         *nodes;
+       int                             sprnum_type;
+       mspriteframe_t  *sprdata_frames;
 
-       int                     numtexinfo;
-       mtexinfo_t      *texinfo;
+       // draw the model
+       void(*Draw)(void);
+       // draw the model's sky polygons (only used by brush models)
+       void(*DrawSky)(void);
+       // draw the model's shadows
+       void(*DrawShadow)(void);
 
-       int                     numsurfaces;
-       msurface_t      *surfaces;
-
-       int                     numsurfedges;
-       int                     *surfedges;
-
-       int                     numclipnodes;
-       dclipnode_t     *clipnodes;
-
-       int                     nummarksurfaces;
-       msurface_t      **marksurfaces;
-
-       hull_t          hulls[MAX_MAP_HULLS];
-
-       int                     numtextures;
-       texture_t       **textures;
-
-       byte            *visdata;
-       byte            *lightdata;
-       char            *entities;
-
-       // LordHavoc: useful for sprites and models
-       int                     numtris;
-       int                     numskins;
-       int                     skinanimrange[1024]; // array of start and length pairs, note: offset from ->cache.data
-       int                     skinanim[1024*5]; // texture numbers for each frame (indexed by animrange), note: offset from ->cache.data, second note: normal pants shirt glow body (normal contains no shirt/pants/glow colors and body is normal + pants + shirt, but not glow)
-
-// additional model data
-       cache_user_t    cache;          // only access through Mod_Extradata
-
-} model_t;
+       // memory pool for allocations
+       mempool_t               *mempool;
+}
+model_t;
 
 //============================================================================
 
-void   Mod_Init (void);
-void   Mod_ClearAll (void);
-model_t *Mod_ForName (char *name, qboolean crash);
-void   *Mod_Extradata (model_t *mod);  // handles caching
-void   Mod_TouchModel (char *name);
+// this can be used for anything without a valid texture
+extern rtexture_t *r_notexture;
+// every texture must be in a pool...
+extern rtexturepool_t *r_notexturepool;
+
+// model loading
+extern model_t *loadmodel;
+extern qbyte *mod_base;
+// sky/water subdivision
+//extern cvar_t gl_subdivide_size;
+// texture fullbrights
+extern cvar_t r_fullbrights;
+
+void Mod_Init (void);
+void Mod_CheckLoaded (model_t *mod);
+void Mod_ClearAll (void);
+model_t *Mod_ForName (char *name, qboolean crash, qboolean checkdisk, qboolean isworldmodel);
+void Mod_TouchModel (char *name);
+void Mod_UnloadModel (model_t *mod);
 
 mleaf_t *Mod_PointInLeaf (float *p, model_t *model);
-byte   *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
+qbyte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
 
-extern model_t *loadmodel;
-extern char    loadname[32];   // for hunk tags
+void Mod_ClearUsed(void);
+void Mod_PurgeUnused(void);
 
-extern model_t *Mod_LoadModel (model_t *mod, qboolean crash);
+extern model_t *loadmodel;
+extern char loadname[32];      // for hunk tags
 
-extern float RadiusFromBounds (vec3_t mins, vec3_t maxs);
 extern model_t *Mod_FindName (char *name);
+
 #endif // __MODEL__
+