]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - model_shared.h
added LDFLAGS_SDL to the pmake file
[xonotic/darkplaces.git] / model_shared.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #ifndef MODEL_SHARED_H
22 #define MODEL_SHARED_H
23
24 typedef enum synctype_e {ST_SYNC=0, ST_RAND } synctype_t;
25
26 /*
27
28 d*_t structures are on-disk representations
29 m*_t structures are in-memory
30
31 */
32
33 typedef enum modtype_e {mod_invalid, mod_brushq1, mod_sprite, mod_alias, mod_brushq2, mod_brushq3} modtype_t;
34
35 typedef struct animscene_s
36 {
37         char name[32]; // for viewthing support
38         int firstframe;
39         int framecount;
40         int loop; // true or false
41         float framerate;
42 }
43 animscene_t;
44
45 typedef struct skinframe_s
46 {
47         rtexture_t *stain; // inverse modulate with background (used for decals and such)
48         rtexture_t *merged; // original texture without glow
49         rtexture_t *base; // original texture without pants/shirt/glow
50         rtexture_t *pants; // pants only (in greyscale)
51         rtexture_t *shirt; // shirt only (in greyscale)
52         rtexture_t *nmap; // normalmap (bumpmap for dot3)
53         rtexture_t *gloss; // glossmap (for dot3)
54         rtexture_t *glow; // glow only (fullbrights)
55         rtexture_t *fog; // alpha of the base texture (if not opaque)
56 }
57 skinframe_t;
58
59 #define MAX_SKINS 256
60
61 typedef struct overridetagname_s
62 {
63         char name[MAX_QPATH];
64 }
65 overridetagname_t;
66
67 // a replacement set of tag names, per skin
68 typedef struct overridetagnameset_s
69 {
70         int num_overridetagnames;
71         overridetagname_t *data_overridetagnames;
72 }
73 overridetagnameset_t;
74
75 typedef struct surfmeshvertexboneweight_s
76 {
77         unsigned int vertexindex;
78         unsigned int boneindex;
79         float origin[3];
80         float weight;
81 }
82 surfmeshvertexboneweight_t;
83
84 // used for mesh lists in q1bsp/q3bsp map models
85 // (the surfaces reference portions of these meshes)
86 typedef struct surfmesh_s
87 {
88         int num_triangles; // number of triangles in the mesh
89         int *data_element3i; // int[tris*3] triangles of the mesh, 3 indices into vertex arrays for each
90         int *data_neighbor3i; // int[tris*3] neighboring triangle on each edge (-1 if none)
91         int num_vertices; // number of vertices in the mesh
92         float *data_vertex3f; // float[verts*3] vertex locations
93         float *data_svector3f; // float[verts*3] direction of 'S' (right) texture axis for each vertex
94         float *data_tvector3f; // float[verts*3] direction of 'T' (down) texture axis for each vertex
95         float *data_normal3f; // float[verts*3] direction of 'R' (out) texture axis for each vertex
96         float *data_texcoordtexture2f; // float[verts*2] texcoords for surface texture
97         float *data_texcoordlightmap2f; // float[verts*2] texcoords for lightmap texture
98         float *data_lightmapcolor4f;
99         int *data_lightmapoffsets; // index into surface's lightmap samples for vertex lighting
100         // morph blending, these are zero if model is skeletal or static
101         int num_morphframes;
102         float *data_morphvertex3f;
103         // skeletal blending, these are zero if model is morph or static
104         int num_vertexboneweights;
105         surfmeshvertexboneweight_t *data_vertexboneweights;
106 }
107 surfmesh_t;
108
109 #define SHADOWMESHVERTEXHASH 1024
110 typedef struct shadowmeshvertexhash_s
111 {
112         struct shadowmeshvertexhash_s *next;
113 }
114 shadowmeshvertexhash_t;
115
116 typedef struct shadowmesh_s
117 {
118         // next mesh in chain
119         struct shadowmesh_s *next;
120         // used for light mesh (NULL on shadow mesh)
121         rtexture_t *map_diffuse;
122         rtexture_t *map_specular;
123         rtexture_t *map_normal;
124         // buffer sizes
125         int numverts, maxverts;
126         int numtriangles, maxtriangles;
127         // used always
128         float *vertex3f;
129         // used for light mesh (NULL on shadow mesh)
130         float *svector3f;
131         float *tvector3f;
132         float *normal3f;
133         float *texcoord2f;
134         // used always
135         int *element3i;
136         // used for shadow mesh (NULL on light mesh)
137         int *neighbor3i;
138         // these are NULL after Mod_ShadowMesh_Finish is performed, only used
139         // while building meshes
140         shadowmeshvertexhash_t **vertexhashtable, *vertexhashentries;
141 }
142 shadowmesh_t;
143
144 typedef enum texturelayertype_e
145 {
146         TEXTURELAYERTYPE_INVALID,
147         TEXTURELAYERTYPE_LITTEXTURE_COMBINE,
148         TEXTURELAYERTYPE_LITTEXTURE_MULTIPASS,
149         TEXTURELAYERTYPE_LITTEXTURE_VERTEX,
150         TEXTURELAYERTYPE_TEXTURE,
151         TEXTURELAYERTYPE_FOG,
152 }
153 texturelayertype_t;
154
155 typedef enum texturelayerflag_e
156 {
157         // indicates that the pass should apply fog darkening; used on
158         // transparent surfaces where simply blending an alpha fog as a final
159         // pass would not behave properly, so all the surfaces must be darkened,
160         // and the fog color added as a separate pass
161         TEXTURELAYERFLAG_FOGDARKEN = 1,
162 }
163 texturelayerflag_t;
164
165 typedef struct texturelayer_s
166 {
167         texturelayertype_t type;
168         qboolean depthmask;
169         int blendfunc1;
170         int blendfunc2;
171         rtexture_t *texture;
172         matrix4x4_t texmatrix;
173         vec4_t color;
174         int flags;
175 }
176 texturelayer_t;
177
178 typedef struct texture_s
179 {
180         // q1bsp
181         // name
182         //char name[16];
183         // size
184         unsigned int width, height;
185         // SURF_ flags
186         //unsigned int flags;
187
188         // base material flags
189         int basematerialflags;
190         // current material flags (updated each bmodel render)
191         int currentmaterialflags;
192
193         // loaded the same as model skins
194         skinframe_t skin;
195
196         // total frames in sequence and alternate sequence
197         int anim_total[2];
198         // direct pointers to each of the frames in the sequences
199         // (indexed as [alternate][frame])
200         struct texture_s *anim_frames[2][10];
201         // set if animated or there is an alternate frame set
202         // (this is an optimization in the renderer)
203         int animated;
204
205         // the current alpha of this texture (may be affected by r_wateralpha)
206         float currentalpha;
207         // the current texture frame in animation
208         struct texture_s *currentframe;
209         // current texture transform matrix (used for water scrolling)
210         matrix4x4_t currenttexmatrix;
211
212         qboolean colormapping;
213         rtexture_t *basetexture;
214         rtexture_t *glosstexture;
215         float specularscale;
216         float specularpower;
217
218         int currentnumlayers;
219         texturelayer_t currentlayers[16];
220
221         // q3bsp
222         char name[64];
223         char firstpasstexturename[64]; // used only during loading
224         int surfaceflags;
225         int supercontents;
226         int surfaceparms;
227         int textureflags;
228
229         //skinframe_t skin;
230 }
231 texture_t;
232
233 typedef struct mtexinfo_s
234 {
235         float vecs[2][4];
236         texture_t *texture;
237         int flags;
238 }
239 mtexinfo_t;
240
241 typedef struct msurface_lightmapinfo_s
242 {
243         // texture mapping properties used by this surface
244         mtexinfo_t *texinfo; // q1bsp
245         // index into r_refdef.lightstylevalue array, 255 means not used (black)
246         unsigned char styles[MAXLIGHTMAPS]; // q1bsp
247         // RGB lighting data [numstyles][height][width][3]
248         unsigned char *samples; // q1bsp
249         // RGB normalmap data [numstyles][height][width][3]
250         unsigned char *nmapsamples; // q1bsp
251         // stain to apply on lightmap (soot/dirt/blood/whatever)
252         unsigned char *stainsamples; // q1bsp
253         int texturemins[2]; // q1bsp
254         int extents[2]; // q1bsp
255         int lightmaporigin[2]; // q1bsp
256 }
257 msurface_lightmapinfo_t;
258
259 struct q3deffect_s;
260 typedef struct msurface_s
261 {
262         // bounding box for onscreen checks
263         vec3_t mins;
264         vec3_t maxs;
265         // the texture to use on the surface
266         texture_t *texture;
267         // the lightmap texture fragment to use on the rendering mesh
268         rtexture_t *lightmaptexture;
269         // the lighting direction texture fragment to use on the rendering mesh
270         rtexture_t *deluxemaptexture;
271
272         // this surface is part of this mesh
273         surfmesh_t *groupmesh;
274         int num_triangles; // number of triangles in the mesh
275         int num_firsttriangle; // first triangle in the mesh (index into groupmesh)
276         int num_vertices; // number of vertices in the mesh
277         int num_firstvertex; // first vertex in the mesh (index into groupmesh)
278
279         // shadow volume building information
280         int num_firstshadowmeshtriangle; // index into model->brush.shadowmesh
281
282         // lightmaptexture rebuild information not used in q3bsp
283         int cached_dlight; // q1bsp // forces rebuild of lightmaptexture
284         msurface_lightmapinfo_t *lightmapinfo; // q1bsp
285
286         // mesh information for collisions (only used by q3bsp curves)
287         int num_collisiontriangles; // q3bsp
288         int *data_collisionelement3i; // q3bsp
289         int num_collisionvertices; // q3bsp
290         float *data_collisionvertex3f; // q3bsp
291         struct q3deffect_s *effect; // q3bsp
292         // FIXME: collisionmarkframe should be kept in a separate array
293         int collisionmarkframe; // q3bsp // don't collide twice in one trace
294 }
295 msurface_t;
296
297 #include "matrixlib.h"
298
299 #include "model_brush.h"
300 #include "model_sprite.h"
301 #include "model_alias.h"
302
303 typedef struct model_sprite_s
304 {
305         int                             sprnum_type;
306         mspriteframe_t  *sprdata_frames;
307 }
308 model_sprite_t;
309
310 struct trace_s;
311
312 typedef struct model_brush_s
313 {
314         // true if this model is a HalfLife .bsp file
315         qboolean ishlbsp;
316         // true if this model is a Martial Concert .bsp file
317         qboolean ismcbsp;
318         // string of entity definitions (.map format)
319         char *entities;
320
321         // if non-zero this is a submodel
322         // (this is the number of the submodel, an index into submodels)
323         int submodel;
324
325         // number of submodels in this map (just used by server to know how many
326         // submodels to load)
327         int numsubmodels;
328         // pointers to each of the submodels if .isworldmodel is true
329         struct model_s **submodels;
330
331         int num_planes;
332         mplane_t *data_planes;
333
334         int num_nodes;
335         mnode_t *data_nodes;
336
337         // visible leafs, not counting 0 (solid)
338         int num_visleafs;
339         // number of actual leafs (including 0 which is solid)
340         int num_leafs;
341         mleaf_t *data_leafs;
342
343         int num_leafbrushes;
344         int *data_leafbrushes;
345
346         int num_leafsurfaces;
347         int *data_leafsurfaces;
348
349         int num_portals;
350         mportal_t *data_portals;
351
352         int num_portalpoints;
353         mvertex_t *data_portalpoints;
354
355         int num_brushes;
356         q3mbrush_t *data_brushes;
357
358         int num_brushsides;
359         q3mbrushside_t *data_brushsides;
360
361         // pvs
362         int num_pvsclusters;
363         int num_pvsclusterbytes;
364         unsigned char *data_pvsclusters;
365         // example
366         //pvschain = model->brush.data_pvsclusters + mycluster * model->brush.num_pvsclusterbytes;
367         //if (pvschain[thatcluster >> 3] & (1 << (thatcluster & 7)))
368
369         // a mesh containing all shadow casting geometry for the whole model (including submodels), portions of this are referenced by each surface's num_firstshadowmeshtriangle
370         shadowmesh_t *shadowmesh;
371
372         // common functions
373         int (*SuperContentsFromNativeContents)(struct model_s *model, int nativecontents);
374         int (*NativeContentsFromSuperContents)(struct model_s *model, int supercontents);
375         unsigned char *(*GetPVS)(struct model_s *model, const vec3_t p);
376         int (*FatPVS)(struct model_s *model, const vec3_t org, vec_t radius, unsigned char *pvsbuffer, int pvsbufferlength);
377         int (*BoxTouchingPVS)(struct model_s *model, const unsigned char *pvs, const vec3_t mins, const vec3_t maxs);
378         int (*BoxTouchingLeafPVS)(struct model_s *model, const unsigned char *pvs, const vec3_t mins, const vec3_t maxs);
379         int (*BoxTouchingVisibleLeafs)(struct model_s *model, const unsigned char *visibleleafs, const vec3_t mins, const vec3_t maxs);
380         int (*FindBoxClusters)(struct model_s *model, const vec3_t mins, const vec3_t maxs, int maxclusters, int *clusterlist);
381         void (*LightPoint)(struct model_s *model, const vec3_t p, vec3_t ambientcolor, vec3_t diffusecolor, vec3_t diffusenormal);
382         void (*FindNonSolidLocation)(struct model_s *model, const vec3_t in, vec3_t out, vec_t radius);
383         mleaf_t *(*PointInLeaf)(struct model_s *model, const float *p);
384         // these are actually only found on brushq1, but NULL is handled gracefully
385         void (*AmbientSoundLevelsForPoint)(struct model_s *model, const vec3_t p, unsigned char *out, int outsize);
386         void (*RoundUpToHullSize)(struct model_s *cmodel, const vec3_t inmins, const vec3_t inmaxs, vec3_t outmins, vec3_t outmaxs);
387
388         char skybox[MAX_QPATH];
389
390         rtexture_t *solidskytexture;
391         rtexture_t *alphaskytexture;
392
393         // QuakeWorld
394         int qw_md4sum;
395         int qw_md4sum2;
396 }
397 model_brush_t;
398
399 typedef struct model_brushq1_s
400 {
401         // lightmap format, set to r_lightmaprgba when model is loaded
402         int                             lightmaprgba;
403
404         dmodel_t                *submodels;
405
406         int                             numvertexes;
407         mvertex_t               *vertexes;
408
409         int                             numedges;
410         medge_t                 *edges;
411
412         int                             numtexinfo;
413         mtexinfo_t              *texinfo;
414
415         int                             numsurfedges;
416         int                             *surfedges;
417
418         int                             numclipnodes;
419         dclipnode_t             *clipnodes;
420
421         hull_t                  hulls[MAX_MAP_HULLS];
422
423         int                             num_compressedpvs;
424         unsigned char                   *data_compressedpvs;
425
426         int                             num_lightdata;
427         unsigned char                   *lightdata;
428         unsigned char                   *nmaplightdata; // deluxemap file
429
430         // lightmap update chains for light styles
431         int                             light_styles;
432         unsigned char                   *light_style;
433         int                             *light_stylevalue;
434         msurface_t              ***light_styleupdatechains;
435         msurface_t              **light_styleupdatechainsbuffer;
436 }
437 model_brushq1_t;
438
439 /* MSVC can't compile empty structs, so this is commented out for now
440 typedef struct model_brushq2_s
441 {
442 }
443 model_brushq2_t;
444 */
445
446 typedef struct model_brushq3_s
447 {
448         int num_models;
449         q3dmodel_t *data_models;
450
451         // freed after loading!
452         int num_vertices;
453         float *data_vertex3f;
454         float *data_texcoordtexture2f;
455         float *data_texcoordlightmap2f;
456         float *data_color4f;
457
458         // freed after loading!
459         int num_triangles;
460         int *data_element3i;
461
462         int num_effects;
463         q3deffect_t *data_effects;
464
465         // lightmap textures
466         int num_lightmaps;
467         rtexture_t **data_lightmaps;
468
469         // voxel light data with directional shading
470         int num_lightgrid;
471         q3dlightgrid_t *data_lightgrid;
472         // size of each cell (may vary by map, typically 64 64 128)
473         float num_lightgrid_cellsize[3];
474         // 1.0 / num_lightgrid_cellsize
475         float num_lightgrid_scale[3];
476         // dimensions of the world model in lightgrid cells
477         int num_lightgrid_imins[3];
478         int num_lightgrid_imaxs[3];
479         int num_lightgrid_isize[3];
480         // indexing/clamping
481         int num_lightgrid_dimensions[3];
482         // transform modelspace coordinates to lightgrid index
483         matrix4x4_t num_lightgrid_indexfromworld;
484
485         // true if this q3bsp file has been detected as using deluxemapping
486         // (lightmap texture pairs, every odd one is never directly refernced,
487         //  and contains lighting normals, not colors)
488         qboolean deluxemapping;
489         // true if the detected deluxemaps are the modelspace kind, rather than
490         // the faster tangentspace kind
491         qboolean deluxemapping_modelspace;
492 }
493 model_brushq3_t;
494
495 typedef struct model_s
496 {
497         // name and path of model, for example "progs/player.mdl"
498         char                    name[MAX_QPATH];
499         // model needs to be loaded if this is false
500         qboolean                loaded;
501         // set if the model is used in current map, models which are not, are purged
502         qboolean                used;
503         // true if this is the world model (I.E. defines what sky to use, and may contain submodels)
504         qboolean                isworldmodel;
505         // CRC of the file this model was loaded from, to reload if changed
506         unsigned int    crc;
507         // mod_brush, mod_alias, mod_sprite
508         modtype_t               type;
509         // memory pool for allocations
510         mempool_t               *mempool;
511         // all models use textures...
512         rtexturepool_t  *texturepool;
513         // flags from the model file
514         int                             flags;
515         // engine calculated flags, ones that can not be set in the file
516         int                             flags2;
517         // number of QC accessible frame(group)s in the model
518         int                             numframes;
519         // number of QC accessible skin(group)s in the model
520         int                             numskins;
521         // whether to randomize animated framegroups
522         synctype_t              synctype;
523         // bounding box at angles '0 0 0'
524         vec3_t                  normalmins, normalmaxs;
525         // bounding box if yaw angle is not 0, but pitch and roll are
526         vec3_t                  yawmins, yawmaxs;
527         // bounding box if pitch or roll are used
528         vec3_t                  rotatedmins, rotatedmaxs;
529         // sphere radius, usable at any angles
530         float                   radius;
531         // squared sphere radius for easier comparisons
532         float                   radius2;
533         // skin animation info
534         animscene_t             *skinscenes; // [numskins]
535         // skin animation info
536         animscene_t             *animscenes; // [numframes]
537         // range of surface numbers in this (sub)model
538         int                             firstmodelsurface;
539         int                             nummodelsurfaces;
540         // range of collision brush numbers in this (sub)model
541         int                             firstmodelbrush;
542         int                             nummodelbrushes;
543         // list of surface numbers in this (sub)model
544         int                             *surfacelist;
545         // for md3 models
546         int                             num_tags;
547         int                             num_tagframes;
548         aliastag_t              *data_tags;
549         // for skeletal models
550         int                             num_bones;
551         aliasbone_t             *data_bones;
552         int                             num_poses;
553         float                   *data_poses;
554         // textures of this model
555         int                             num_textures;
556         texture_t               *data_textures;
557         // surfaces of this model
558         int                             num_surfaces;
559         msurface_t              *data_surfaces;
560         // optional lightmapinfo data for surface lightmap updates
561         msurface_lightmapinfo_t *data_surfaces_lightmapinfo;
562         // surface meshes are merged to a smaller set of meshes to allow reduced
563         // vertex array switching, the meshes are limited to 65536 vertices each
564         // to play nice with Geforce1 hardware
565         int                             nummeshes;
566         surfmesh_t              **meshlist;
567         // draw the model's sky polygons (only used by brush models)
568         void(*DrawSky)(struct entity_render_s *ent);
569         // draw the model using lightmap/dlight shading
570         void(*Draw)(struct entity_render_s *ent);
571         // gathers info on which clusters and surfaces are lit by light, as well as calculating a bounding box
572         void(*GetLightInfo)(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, vec3_t outmins, vec3_t outmaxs, int *outleaflist, unsigned char *outleafpvs, int *outnumleafspointer, int *outsurfacelist, unsigned char *outsurfacepvs, int *outnumsurfacespointer);
573         // compile a shadow volume for the model based on light source
574         void(*CompileShadowVolume)(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist);
575         // draw a shadow volume for the model based on light source
576         void(*DrawShadowVolume)(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist, const vec3_t lightmins, const vec3_t lightmaxs);
577         // draw the lighting on a model (through stencil)
578         void(*DrawLight)(struct entity_render_s *ent, int numsurfaces, const int *surfacelist);
579         // trace a box against this model
580         void (*TraceBox)(struct model_s *model, int frame, struct trace_s *trace, const vec3_t start, const vec3_t boxmins, const vec3_t boxmaxs, const vec3_t end, int hitsupercontentsmask);
581         // fields belonging to some types of model
582         model_sprite_t  sprite;
583         model_brush_t   brush;
584         model_brushq1_t brushq1;
585         /* MSVC can't handle an empty struct, so this is commented out for now
586         model_brushq2_t brushq2;
587         */
588         model_brushq3_t brushq3;
589         // skin files can have different tags for each skin
590         overridetagnameset_t    *data_overridetagnamesforskin;
591         // flags this model for offseting sounds to the model center (used by brush models)
592         int soundfromcenter;
593 }
594 model_t;
595
596 //============================================================================
597
598 // model loading
599 extern model_t *loadmodel;
600 extern unsigned char *mod_base;
601 // sky/water subdivision
602 //extern cvar_t gl_subdivide_size;
603 // texture fullbrights
604 extern cvar_t r_fullbrights;
605
606 void Mod_Init (void);
607 model_t *Mod_LoadModel(model_t *mod, qboolean crash, qboolean checkdisk, qboolean isworldmodel);
608 model_t *Mod_FindName (const char *name);
609 model_t *Mod_ForName (const char *name, qboolean crash, qboolean checkdisk, qboolean isworldmodel);
610 void Mod_UnloadModel (model_t *mod);
611
612 void Mod_ClearUsed(void);
613 void Mod_PurgeUnused(void);
614 void Mod_RemoveStaleWorldModels(model_t *skip); // only used during loading!
615
616 extern model_t *loadmodel;
617 extern char loadname[32];       // for hunk tags
618
619 int Mod_BuildVertexRemapTableFromElements(int numelements, const int *elements, int numvertices, int *remapvertices);
620 void Mod_BuildTriangleNeighbors(int *neighbors, const int *elements, int numtriangles);
621 void Mod_ValidateElements(int *elements, int numtriangles, int firstvertex, int numverts, const char *filename, int fileline);
622 void Mod_BuildNormals(int firstvertex, int numvertices, int numtriangles, const float *vertex3f, const int *elements, float *normal3f, qboolean areaweighting);
623 void Mod_BuildTextureVectorsAndNormals(int firstvertex, int numvertices, int numtriangles, const float *vertex, const float *texcoord, const int *elements, float *svectors, float *tvectors, float *normals, qboolean areaweighting);
624
625 surfmesh_t *Mod_AllocSurfMesh(mempool_t *mempool, int numvertices, int numtriangles, qboolean lightmapoffsets, qboolean vertexcolors, qboolean neighbors);
626
627 shadowmesh_t *Mod_ShadowMesh_Alloc(mempool_t *mempool, int maxverts, int maxtriangles, rtexture_t *map_diffuse, rtexture_t *map_specular, rtexture_t *map_normal, int light, int neighbors, int expandable);
628 shadowmesh_t *Mod_ShadowMesh_ReAlloc(mempool_t *mempool, shadowmesh_t *oldmesh, int light, int neighbors);
629 int Mod_ShadowMesh_AddVertex(shadowmesh_t *mesh, float *vertex14f);
630 void Mod_ShadowMesh_AddTriangle(mempool_t *mempool, shadowmesh_t *mesh, rtexture_t *map_diffuse, rtexture_t *map_specular, rtexture_t *map_normal, float *vertex14f);
631 void Mod_ShadowMesh_AddMesh(mempool_t *mempool, shadowmesh_t *mesh, rtexture_t *map_diffuse, rtexture_t *map_specular, rtexture_t *map_normal, const float *vertex3f, const float *svector3f, const float *tvector3f, const float *normal3f, const float *texcoord2f, int numtris, const int *element3i);
632 shadowmesh_t *Mod_ShadowMesh_Begin(mempool_t *mempool, int maxverts, int maxtriangles, rtexture_t *map_diffuse, rtexture_t *map_specular, rtexture_t *map_normal, int light, int neighbors, int expandable);
633 shadowmesh_t *Mod_ShadowMesh_Finish(mempool_t *mempool, shadowmesh_t *firstmesh, int light, int neighbors);
634 void Mod_ShadowMesh_CalcBBox(shadowmesh_t *firstmesh, vec3_t mins, vec3_t maxs, vec3_t center, float *radius);
635 void Mod_ShadowMesh_Free(shadowmesh_t *mesh);
636
637 int Mod_LoadSkinFrame(skinframe_t *skinframe, const char *basename, int textureflags, int loadpantsandshirt, int loadglowtexture);
638 int Mod_LoadSkinFrame_Internal(skinframe_t *skinframe, const char *basename, int textureflags, int loadpantsandshirt, int loadglowtexture, const unsigned char *skindata, int width, int height, int bitsperpixel, const unsigned int *palette, const unsigned int *alphapalette);
639
640 extern cvar_t r_mipskins;
641
642 typedef struct skinfileitem_s
643 {
644         struct skinfileitem_s *next;
645         char name[MAX_QPATH];
646         char replacement[MAX_QPATH];
647 }
648 skinfileitem_t;
649
650 typedef struct skinfile_s
651 {
652         struct skinfile_s *next;
653         skinfileitem_t *items;
654 }
655 skinfile_t;
656
657 skinfile_t *Mod_LoadSkinFiles(void);
658 void Mod_FreeSkinFiles(skinfile_t *skinfile);
659 int Mod_CountSkinFiles(skinfile_t *skinfile);
660
661 void Mod_SnapVertices(int numcomponents, int numvertices, float *vertices, float snap);
662 int Mod_RemoveDegenerateTriangles(int numtriangles, const int *inelement3i, int *outelement3i, const float *vertex3f);
663
664 // bsp models
665 void Mod_BrushInit(void);
666 // used for talking to the QuakeC mainly
667 int Mod_Q1BSP_NativeContentsFromSuperContents(struct model_s *model, int supercontents);
668 int Mod_Q1BSP_SuperContentsFromNativeContents(struct model_s *model, int nativecontents);
669
670 // a lot of model formats use the Q1BSP code, so here are the prototypes...
671 struct entity_render_s;
672 void R_Q1BSP_DrawSky(struct entity_render_s *ent);
673 void R_Q1BSP_Draw(struct entity_render_s *ent);
674 void R_Q1BSP_GetLightInfo(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, vec3_t outmins, vec3_t outmaxs, int *outleaflist, unsigned char *outleafpvs, int *outnumleafspointer, int *outsurfacelist, unsigned char *outsurfacepvs, int *outnumsurfacespointer);
675 void R_Q1BSP_CompileShadowVolume(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist);
676 void R_Q1BSP_DrawShadowVolume(struct entity_render_s *ent, vec3_t relativelightorigin, float lightradius, int numsurfaces, const int *surfacelist, const vec3_t lightmins, const vec3_t lightmaxs);
677 void R_Q1BSP_DrawLight(struct entity_render_s *ent, int numsurfaces, const int *surfacelist);
678
679 // alias models
680 struct frameblend_s;
681 void Mod_AliasInit(void);
682 void Mod_Alias_GetMesh_Vertex3f(const model_t *model, const struct frameblend_s *frameblend, const struct surfmesh_s *mesh, float *out3f);
683 int Mod_Alias_GetTagMatrix(const model_t *model, int poseframe, int tagindex, matrix4x4_t *outmatrix);
684 int Mod_Alias_GetTagIndexForName(const model_t *model, unsigned int skin, const char *tagname);
685
686 // sprite models
687 void Mod_SpriteInit(void);
688
689 // loaders
690 void Mod_Q1BSP_Load(model_t *mod, void *buffer, void *bufferend);
691 void Mod_IBSP_Load(model_t *mod, void *buffer, void *bufferend);
692 void Mod_MAP_Load(model_t *mod, void *buffer, void *bufferend);
693 void Mod_IDP0_Load(model_t *mod, void *buffer, void *bufferend);
694 void Mod_IDP2_Load(model_t *mod, void *buffer, void *bufferend);
695 void Mod_IDP3_Load(model_t *mod, void *buffer, void *bufferend);
696 void Mod_ZYMOTICMODEL_Load(model_t *mod, void *buffer, void *bufferend);
697 void Mod_DARKPLACESMODEL_Load(model_t *mod, void *buffer, void *bufferend);
698 void Mod_PSKMODEL_Load(model_t *mod, void *buffer, void *bufferend);
699 void Mod_IDSP_Load(model_t *mod, void *buffer, void *bufferend);
700 void Mod_IDS2_Load(model_t *mod, void *buffer, void *bufferend);
701
702 #endif  // MODEL_SHARED_H
703