-
Notifications
You must be signed in to change notification settings - Fork 0
/
vvm.h
151 lines (133 loc) · 2.57 KB
/
vvm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#ifndef __VVM_H__
#define __VVM_H__
#define VVM_MAGIC "INTERQUAKEMODEL"
#define VVM_VERSION 2
struct vvmheader
{
char magic[16];
unsigned int version;
unsigned int filesize;
unsigned int flags;
unsigned int num_text, ofs_text;
unsigned int num_meshes, ofs_meshes;
unsigned int num_vertexarrays, num_vertexes, ofs_vertexarrays;
unsigned int num_triangles, ofs_triangles, ofs_adjacency;
unsigned int num_joints, ofs_joints;
unsigned int num_poses, ofs_poses;
unsigned int num_anims, ofs_anims;
unsigned int num_frames, num_framechannels, ofs_frames, ofs_bounds;
unsigned int num_comment, ofs_comment;
unsigned int num_extensions, ofs_extensions;
};
struct vvmmesh
{
unsigned int name;
unsigned int material;
unsigned int first_vertex, num_vertexes;
unsigned int first_triangle, num_triangles;
};
enum
{
VVM_POSITION = 0,
VVM_TEXCOORD = 1,
VVM_NORMAL = 2,
VVM_TANGENT = 3,
VVM_BLENDINDEXES = 4,
VVM_BLENDWEIGHTS = 5,
VVM_COLOR = 6,
VVM_CUSTOM = 0x10
};
enum
{
VVM_BYTE = 0,
VVM_UBYTE = 1,
VVM_SHORT = 2,
VVM_USHORT = 3,
VVM_INT = 4,
VVM_UINT = 5,
VVM_HALF = 6,
VVM_FLOAT = 7,
VVM_DOUBLE = 8
};
struct vvmtriangle
{
unsigned int vertex[3];
};
struct vvmadjacency
{
unsigned int triangle[3];
};
struct vvmjointv1
{
unsigned int name;
int parent;
float translate[3], rotate[3], scale[3];
};
struct vvmjoint
{
unsigned int name;
int parent;
float translate[3], rotate[4], scale[3];
};
struct vvmposev1
{
int parent;
unsigned int mask;
float channeloffset[9];
float channelscale[9];
};
struct vvmpose
{
int parent;
unsigned int mask;
float channeloffset[10];
float channelscale[10];
};
struct vvmanim
{
unsigned int name;
unsigned int first_frame, num_frames;
float framerate;
unsigned int flags;
};
enum
{
VVM_LOOP = 1<<0
};
struct vvmvertexarray
{
unsigned int type;
unsigned int flags;
unsigned int format;
unsigned int size;
unsigned int offset;
};
struct vvmbounds
{
float bbmin[3], bbmax[3];
float xyradius, radius;
};
struct vvmextension
{
unsigned int name;
unsigned int num_data, ofs_data;
unsigned int ofs_extensions; // pointer to next extension
};
struct vvmext_fte_mesh
{
unsigned int contents; //default CONTENTS_BODY
unsigned int surfaceflags; //propagates to trace_surfaceflags
unsigned int body; //the part of the body that this mesh is meant to be from
unsigned int geomset;
unsigned int geomid;
float mindist;
float maxdist;
};
struct vvmext_fte_events
{
unsigned int anim;
float timestamp;
unsigned int evcode;
unsigned int evdata_str;
};
#endif