]> icculus.org git repositories - divverent/darkplaces.git/blob - model_alias.h
glossmap textures are now brighter (no change to forced gloss brightness)
[divverent/darkplaces.git] / model_alias.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_ALIAS_H
22 #define MODEL_ALIAS_H
23
24 /*
25 ==============================================================================
26
27 ALIAS MODELS
28
29 Alias models are position independent, so the cache manager can move them.
30 ==============================================================================
31 */
32
33 #include "modelgen.h"
34
35 typedef struct {
36         int                     ident;
37         int                     version;
38         vec3_t          scale;
39         vec3_t          scale_origin;
40         float           boundingradius;
41         vec3_t          eyeposition;
42         int                     numskins;
43         int                     skinwidth;
44         int                     skinheight;
45         int                     numverts;
46         int                     numtris;
47         int                     numframes;
48         synctype_t      synctype;
49         int                     flags;
50         float           size;
51 } daliashdr_t;
52
53 #define MAXALIASVERTS   4096
54 #define MAXALIASFRAMES  1024
55 #define MAXALIASTRIS    4096
56
57 /*
58 ========================================================================
59
60 .MD2 triangle model file format
61
62 ========================================================================
63 */
64
65 // LordHavoc: grabbed this from the Q2 utility source,
66 // renamed a things to avoid conflicts
67
68 #define MD2ALIAS_VERSION        8
69
70 #define MD2MAX_TRIANGLES        4096
71 #define MD2MAX_VERTS            4096
72 #define MD2MAX_FRAMES           1024
73 #define MD2MAX_SKINNAME 64
74 // sanity checking size
75 #define MD2MAX_SIZE     (16777216)
76
77 typedef struct
78 {
79         short   s;
80         short   t;
81 } md2stvert_t;
82
83 typedef struct 
84 {
85         short   index_xyz[3];
86         short   index_st[3];
87 } md2triangle_t;
88
89 typedef struct
90 {
91         float           scale[3];       // multiply byte verts by this
92         float           translate[3];   // then add this
93         char            name[16];       // frame name from grabbing
94 } md2frame_t;
95
96 // the glcmd format:
97 // a positive integer starts a tristrip command, followed by that many
98 // vertex structures.
99 // a negative integer starts a trifan command, followed by -x vertexes
100 // a zero indicates the end of the command list.
101 // a vertex consists of a floating point s, a floating point t,
102 // and an integer vertex index.
103
104
105 typedef struct
106 {
107         int                     ident;
108         int                     version;
109
110         int                     skinwidth;
111         int                     skinheight;
112         int                     framesize;              // byte size of each frame
113
114         int                     num_skins;
115         int                     num_xyz;
116         int                     num_st;                 // greater than num_xyz for seams
117         int                     num_tris;
118         int                     num_glcmds;             // dwords in strip/fan command list
119         int                     num_frames;
120
121         int                     ofs_skins;              // each skin is a MAX_SKINNAME string
122         int                     ofs_st;                 // byte offset from start for stverts
123         int                     ofs_tris;               // offset for dtriangles
124         int                     ofs_frames;             // offset for first frame
125         int                     ofs_glcmds;
126         int                     ofs_end;                // end of file
127 } md2_t;
128
129 // LordHavoc: Q1 and Q2 models are converted to the same internal format
130 #define ALIASTYPE_MDLMD2 1
131 #define ALIASTYPE_ZYM 2
132
133 extern void Mod_LoadAliasModel (struct model_s *mod, void *buffer);
134 extern void Mod_LoadQ2AliasModel (struct model_s *mod, void *buffer);
135
136 extern void Mod_AliasInit(void);
137
138 #include "model_zymotic.h"
139
140 #endif
141