forked from Penguinwizzard/Source2ResourceDecompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stupidvalve.h
393 lines (348 loc) · 9.74 KB
/
stupidvalve.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
#ifndef stupidvalve_h
#define stupidvalve_h
#include "fileinfo.h"
#include<sys/types.h>
#include<inttypes.h>
#include<errno.h>
#include<stdbool.h>
#include<fenv.h>
// Pretty common
typedef struct {
uint32_t offset;
uint32_t count;
} offsetcount;
// SVF = Stupid Valve Format
#ifndef WIN32
typedef struct __attribute__((__packed__)) {
#else
#pragma pack(push,1)
typedef struct {
#endif
uint32_t filelength; // Why this is specified in a modern format is beyond me
// The whole format would be so much better if this was a type-specific magic number instead
// We'd actually be able to add a `file` rule for them, we'd be able to do exention-agnostic
// code, and a ton of other stuff
// But no, Valve is stuck in the 90s.
// Also, note that this number is often wrong, so don't use it for allocation or anything
// terribly important. In fact, it's probably better if you ignore this altogether, and
// just go on with your life and ignore the format details.
uint16_t always_twelve; // 12 - Length of lump header?
uint16_t version; // Type information
offsetcount lumps;
} svf_header;
#ifdef WIN32
#pragma pack(pop)
#endif
typedef struct {
union {
char tag[4]; // A magic number type identifier. AREN'T THEY NICE VALVE?
uint32_t type_asint;
};
uint32_t offset; // Offset in the source file that the body of the lump starts at
uint32_t length; // Note that length includes the 12 bytes for the header
} svflump_header;
typedef struct {
union {
uint32_t type; // uint32 representation of tag, e.g. RERL
char type_aschar[4];
};
char* content;
uint32_t filler[10];
} svfl_header;
typedef struct {
svf_header* hdr;
svflump_header* lumpheaders;
svfl_header* lumps;
} svffile_generic;
/*
* RERL
*/
typedef struct {
offsetcount entries;
} svfl_rerl_header_datafile;
typedef struct {
uint64_t objecttag; // The tag of the target resource - calculation method unknown
uint32_t offset; // Measured from this entry ... volvo plz
uint32_t unknown; // Always 0?
} svfl_rerl_entry_datafile;
typedef struct {
svfl_rerl_entry_datafile* df;
char* content;
} svfl_rerl_entry;
typedef struct {
uint32_t type;
char* content;
svfl_rerl_header_datafile* df;
svfl_rerl_entry* entries;
} svfl_rerl_header;
/*
* REDI
*/
#ifndef WIN32
typedef struct __attribute__((__packed__)) {
#else
#pragma pack(push,1)
typedef struct {
#endif
offsetcount sourceresource;
offsetcount sourceresourceadd;
offsetcount arguments;
offsetcount namemap;
offsetcount customdeps;
offsetcount additional_related;
offsetcount child_ref;
offsetcount extradata_int;
offsetcount extradata_float;
offsetcount extradata_string;
} svfl_redi_header_datafile;
#ifdef WIN32
#pragma pack(pop)
#endif
// Sourceresourceref sub
// Sourceresourcerefadd sub
typedef struct {
uint32_t offset_filename;
uint32_t offset_modname;
uint32_t CRC; // CRC of the input file
uint32_t flags; // often 2
} svfl_redi_sourceresource_datafile;
typedef struct {
svfl_redi_sourceresource_datafile* df;
char* filename;
char* contentsearchpath;
} svfl_redi_sourceresource;
// Typeddata sub
typedef struct {
uint32_t offset_name;
uint32_t offset_type;
uint32_t fingerprint; // The two flag fields are generally the same value.
uint32_t fingerprint_default; // observed are 0x00000001 and 0x00002000
} svfl_redi_argument_datafile;
typedef struct {
svfl_redi_argument_datafile* df;
char* name;
char* type;
} svfl_redi_argument;
// Namemap sub
typedef struct {
uint32_t offset_expanded;// the longer one, occurs second later :/
uint32_t offset_key; // the shorter one, occurs first later
uint32_t fingerprint; // Various values
uint32_t userdata; // Always 0?
} svfl_redi_namemap_datafile;
typedef struct {
svfl_redi_namemap_datafile* df;
char* key;
char* expanded;
} svfl_redi_namemap;
// Deferredref sub
typedef struct {
uint64_t objecttag; // The tag of the target resource - calculation method unknown
uint32_t offset; // Measured from this entry ... volvo plz
uint32_t unknown; // Always 0? - padding?
} svfl_redi_childref_datafile;
typedef struct {
svfl_redi_childref_datafile* df;
char* content;
} svfl_redi_childref;
// SpecialData sub
typedef struct {
uint32_t offset_key;
uint32_t value;
} svfl_redi_extradata_int_datafile;
typedef struct {
svfl_redi_extradata_int_datafile* df;
char* key;
} svfl_redi_extradata_int;
// SpecialData sub
typedef struct {
uint32_t offset_key;
float value;
} svfl_redi_extradata_float_datafile;
typedef struct {
svfl_redi_extradata_float_datafile* df;
char* key;
} svfl_redi_extradata_float;
// SpecialData sub
typedef struct {
uint32_t offset_key;
uint32_t value;
} svfl_redi_extradata_string_datafile;
typedef struct {
svfl_redi_extradata_string_datafile* df;
char* key;
} svfl_redi_extradata_string;
typedef struct {
uint32_t type;
char* content;
svfl_redi_header_datafile* df;
svfl_redi_sourceresource* srentries;
svfl_redi_sourceresource* sraentries;
svfl_redi_argument* tdentries;
svfl_redi_namemap* nmentries;
void* unknown2;
void* unknown3;
svfl_redi_childref* crentries;
svfl_redi_extradata_int* edientries;
svfl_redi_extradata_float* edfentries;
svfl_redi_extradata_string* edsentries;
char* resourcename;
char* modname;
} svfl_redi_header;
/*
* NTRO
*/
#ifndef WIN32
typedef struct __attribute__((__packed__)) {
#else
#pragma pack(push,1)
typedef struct {
#endif
uint32_t version; // Always 4? (thanks hmfd for tag)
uint32_t typetag; // Used for structs in structs and the like
uint32_t offset_classname;
uint32_t crc; // crc (thanks hmfd for tag)
int32_t user_version; // Always 0? (thanks hmfd for tag)
uint16_t length; // length in data lump
uint16_t alignment; // Always 4? (thanks hmfd for tag)
uint32_t base_struct_id;// Always 0? (thanks hmfd for tag)
offsetcount tags; // Where to find the tags
uint8_t struct_flags;
uint8_t padding[3]; // padding?
} svfl_ntro_entry_header_datafile;
#ifdef WIN32
#pragma pack(pop)
#endif
#define SVFL_DATATYPE_SUBSTRUCT 1
#define SVFL_DATATYPE_ENUM 2
#define SVFL_DATATYPE_EXTREF 3
#define SVFL_DATATYPE_STRING4 4
#define SVFL_DATATYPE_INT8 10
#define SVFL_DATATYPE_UINT8 11
#define SVFL_DATATYPE_SINT 12 // INT16
#define SVFL_DATATYPE_UINT16 13
#define SVFL_DATATYPE_INT32 14
#define SVFL_DATATYPE_UINT32 15
#define SVFL_DATATYPE_INT64 16 // TENTATIVE - NOT ENCOUNTERED
#define SVFL_DATATYPE_UINT64 17
#define SVFL_DATATYPE_FLOAT 18
#define SVFL_DATATYPE_VEC3 22
#define SVFL_DATATYPE_VECTOR4D 23
#define SVFL_DATATYPE_QUATERNION 25
#define SVFL_DATATYPE_FLTX4 27
#define SVFL_DATATYPE_VEC4 28 // tentative - likely incorrect, may be _COLOR
#define SVFL_DATATYPE_BOOLEAN 30
#define SVFL_DATATYPE_STRING 31
#define SVFL_DATATYPE_MATRIX3X4 33
#define SVFL_DATATYPE_MATRIX3X4A 36
#define SVFL_DATATYPE_CTRANSFORM 40
#ifndef WIN32
typedef struct __attribute__((__packed__)) {
#else
#pragma pack(push,1)
typedef struct {
#endif
uint32_t offset_tagname;
int16_t count; // if 0, treat as 1; if more, treat as is
int16_t offset_in_struct; // increases based on size of entry
offsetcount indirections; // Indirect data
uint32_t ref_typetag; // Type tag referenced
int16_t datatype; // 1 - array reference - 8 bytes - offset 4b, count 4b
// 2/n - enum?
// 3 - other resource reference - 8 bytes, holds resource key
// 4 - also string? (hmfd)
// 11/p -
// 12/n - signed number? - 4 bytes
// 14/n - number - 4 bytes
// 15/n - flags - 4 bytes
// 17/h - buffer? - 8 bytes
// 18/fl - float - 4 bytes
// 22/v - vector - 12 bytes
// 23/v - vector - 64 bytes!
// 25/q - quaternion? - 16 bytes
// 30/b - boolean - 1 byte
// 31 - worldNodePrefix/ResoureFileNameList?
uint16_t padding;
} svfl_ntro_entry_tag_datafile;
#ifdef WIN32
#pragma pack(pop)
#endif
typedef struct {
svfl_ntro_entry_tag_datafile* df;
char* name;
int refindex; // Index into the refs table
} svfl_ntro_entry_tag;
typedef struct {
svfl_ntro_entry_header_datafile* hdf;
svfl_ntro_entry_tag* tags;
char* classname;
int numrefs; // Number of references to internal stuffs
} svfl_ntro_entry;
typedef struct {
uint32_t offset_fieldname;
uint32_t value;
} svfl_ntro_enum_field_datafile;
typedef struct {
svfl_ntro_enum_field_datafile* df;
char* fieldname;
} svfl_ntro_enum_field;
typedef struct {
uint32_t version;
uint32_t id;
uint32_t offset_enumname;
uint32_t crc;
int32_t user_version;
offsetcount fields;
} svfl_ntro_enum_datafile;
typedef struct {
svfl_ntro_enum_datafile* df;
char* name;
svfl_ntro_enum_field* fields;
} svfl_ntro_enum;
typedef struct {
uint32_t version;
offsetcount entries;
offsetcount enums;
} svfl_ntro_header_datafile;
typedef struct {
uint32_t type;
char* content;
svfl_ntro_header_datafile* df;
svfl_ntro_entry* entries;
svfl_ntro_enum* enums;
} svfl_ntro_header;
/*
* VBIB sub
*/
// This structure shows up in mesh data for models.
typedef struct {
offsetcount vertexheaders;
offsetcount indexheaders;
} svfl_vbib_header_datafile;
typedef struct {
uint32_t vertex_count; //?
uint32_t vertex_size; //?
offsetcount fra; // format-related array ?
} svfl_vbib_vertex_header;
/*
* DATA sub
*/
// Since this is where actual data is handled, we change form a bit
// The data is just an instance of the first described struct (from the NTRO sub)
// which has been encoded as specified. We just need to decode it, and then
// provide means by which we can access the constituent values.
typedef struct svfl_struct_t {
svfl_ntro_header* NTRO;
svfl_ntro_entry* type;
char* data;
} svfl_struct;
/*
* Function stubs
*/
void parse_svf(filedata* fd);
void parse_object(svfl_struct* object, svfl_ntro_header* ntro, char* data);
void print_object_recursive(svfl_struct* object);
svfl_ntro_entry* do_type_lookup(svfl_ntro_header* ntro, uint32_t typetag);
svfl_ntro_enum* do_enum_lookup(svfl_ntro_header* ntro, uint32_t enumtag);
void free_svf(filedata* fd);
#endif