forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathriff.cpp
506 lines (399 loc) · 12.3 KB
/
riff.cpp
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
// Avoid these warnings:
#pragma warning(disable : 4512) // warning C4512: 'InFileRIFF' : assignment operator could not be generated
#pragma warning(disable : 4514) // warning C4514: 'RIFFName' : unreferenced inline function has been removed
#include "riff.h"
#include <stdio.h>
#include <string.h>
#include "tier0/dbg.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
#if 0
//-----------------------------------------------------------------------------
// Purpose: Test code that implements the interface on stdio
//-----------------------------------------------------------------------------
class StdIOReadBinary : public IFileReadBinary
{
public:
intp open( const char *pFileName )
{
return (intp)fopen( pFileName, "rb" );
}
int read( void *pOutput, int size, intp file )
{
FILE *fp = (FILE *)file;
return fread( pOutput, size, 1, fp );
}
void seek( intp file, int pos )
{
fseek( (FILE *)file, pos, SEEK_SET );
}
unsigned int tell( intp file )
{
return ftell( (FILE *)file );
}
unsigned int size( intp file )
{
FILE *fp = (FILE *)file;
if ( !fp )
return 0;
unsigned int pos = ftell( fp );
fseek( fp, 0, SEEK_END );
unsigned int size = ftell( fp );
fseek( fp, pos, SEEK_SET );
return size;
}
void close( intp file )
{
FILE *fp = (FILE *)file;
fclose( fp );
}
};
#endif
#define RIFF_ID MAKEID('R','I','F','F')
//-----------------------------------------------------------------------------
// Purpose: Opens a RIFF file using the given I/O mechanism
// Input : *pFileName
// &io - I/O interface
//-----------------------------------------------------------------------------
InFileRIFF::InFileRIFF( const char *pFileName, IFileReadBinary &io ) : m_io(io)
{
m_file = m_io.open( pFileName );
int riff = 0;
if ( !m_file )
{
m_riffSize = 0;
m_riffName = 0;
return;
}
riff = ReadInt();
if ( riff != RIFF_ID )
{
printf( "Not a RIFF File [%s]\n", pFileName );
m_riffSize = 0;
}
else
{
// we store size as size of all chunks
// subtract off the RIFF form type (e.g. 'WAVE', 4 bytes)
m_riffSize = ReadInt() - 4;
m_riffName = ReadInt();
// HACKHACK: LWV files don't obey the RIFF format!!!
// Do this or miss the linguistic chunks at the end. Lame!
// subtract off 12 bytes for (RIFF, size, WAVE)
m_riffSize = m_io.size( m_file ) - 12;
}
}
//-----------------------------------------------------------------------------
// Purpose: Close the file
//-----------------------------------------------------------------------------
InFileRIFF::~InFileRIFF( void )
{
m_io.close( m_file );
}
//-----------------------------------------------------------------------------
// Purpose: read a 4-byte int out of the stream
// Output : int = read value, default is zero
//-----------------------------------------------------------------------------
int InFileRIFF::ReadInt( void )
{
int tmp = 0;
m_io.read( &tmp, sizeof(int), m_file );
tmp = LittleLong( tmp );
return tmp;
}
//-----------------------------------------------------------------------------
// Purpose: Read a block of binary data
// Input : *pOutput - pointer to destination memory
// dataSize - size of block to read
// Output : int - number of bytes read
//-----------------------------------------------------------------------------
int InFileRIFF::ReadData( void *pOutput, int dataSize )
{
int count = m_io.read( pOutput, dataSize, m_file );
return count;
}
//-----------------------------------------------------------------------------
// Purpose: Gets the file position
// Output : int (bytes from start of file)
//-----------------------------------------------------------------------------
int InFileRIFF::PositionGet( void )
{
return m_io.tell( m_file );
}
//-----------------------------------------------------------------------------
// Purpose: Seek to file position
// Input : position - bytes from start of file
//-----------------------------------------------------------------------------
void InFileRIFF::PositionSet( int position )
{
m_io.seek( m_file, position );
}
//-----------------------------------------------------------------------------
// Purpose: Used to write a RIFF format file
//-----------------------------------------------------------------------------
OutFileRIFF::OutFileRIFF( const char *pFileName, IFileWriteBinary &io ) : m_io( io )
{
m_file = m_io.create( pFileName );
if ( !m_file )
return;
int riff = RIFF_ID;
m_io.write( &riff, 4, m_file );
m_riffSize = 0;
m_nNamePos = m_io.tell( m_file );
// Save room for the size and name now
WriteInt( 0 );
// Write out the name
WriteInt( RIFF_WAVE );
m_bUseIncorrectLISETLength = false;
m_nLISETSize = 0;
}
OutFileRIFF::~OutFileRIFF( void )
{
if ( !IsValid() )
return;
unsigned int size = m_io.tell( m_file ) -8;
m_io.seek( m_file, m_nNamePos );
if ( m_bUseIncorrectLISETLength )
{
size = m_nLISETSize - 8;
}
WriteInt( size );
m_io.close( m_file );
}
void OutFileRIFF::HasLISETData( int position )
{
m_bUseIncorrectLISETLength = true;
m_nLISETSize = position;
}
bool OutFileRIFF::WriteInt( int number )
{
if ( !IsValid() )
return false;
m_io.write( &number, sizeof( int ), m_file );
return true;
}
bool OutFileRIFF::WriteData( void *pOutput, int dataSize )
{
if ( !IsValid() )
return false;
m_io.write( pOutput, dataSize, m_file );
return true;
}
int OutFileRIFF::PositionGet( void )
{
if ( !IsValid() )
return 0;
return m_io.tell( m_file );
}
void OutFileRIFF::PositionSet( int position )
{
if ( !IsValid() )
return;
m_io.seek( m_file, position );
}
//-----------------------------------------------------------------------------
// Purpose: Create an iterator for the given file
// Input : &riff - riff file
// size - size of file or sub-chunk
//-----------------------------------------------------------------------------
IterateRIFF::IterateRIFF( InFileRIFF &riff, int size )
: m_riff(riff), m_size(size)
{
if ( !m_riff.RIFFSize() )
{
// bad file, just be an empty iterator
ChunkClear();
return;
}
// get the position and parse a chunk
m_start = riff.PositionGet();
ChunkSetup();
}
//-----------------------------------------------------------------------------
// Purpose: Set up a sub-chunk iterator
// Input : &parent - parent iterator
//-----------------------------------------------------------------------------
IterateRIFF::IterateRIFF( IterateRIFF &parent )
: m_riff(parent.m_riff), m_size(parent.ChunkSize())
{
m_start = parent.ChunkFilePosition();
ChunkSetup();
}
//-----------------------------------------------------------------------------
// Purpose: Parse the chunk at the current file position
// This object will iterate over the sub-chunks of this chunk.
// This makes for easy hierarchical parsing
//-----------------------------------------------------------------------------
void IterateRIFF::ChunkSetup( void )
{
m_chunkPosition = m_riff.PositionGet();
m_chunkName = m_riff.ReadInt();
m_chunkSize = m_riff.ReadInt();
}
//-----------------------------------------------------------------------------
// Purpose: clear chunk setup, ChunkAvailable will return false
//-----------------------------------------------------------------------------
void IterateRIFF::ChunkClear( void )
{
m_chunkSize = -1;
}
//-----------------------------------------------------------------------------
// Purpose: If there are chunks left to read beyond this one, return true
//-----------------------------------------------------------------------------
bool IterateRIFF::ChunkAvailable( void )
{
if ( m_chunkSize != -1 && m_chunkSize < 0x10000000 )
return true;
return false;
}
//-----------------------------------------------------------------------------
// Purpose: Go to the next chunk in the file, return true if there is one.
//-----------------------------------------------------------------------------
bool IterateRIFF::ChunkNext( void )
{
if ( !ChunkAvailable() )
return false;
int nextPos = m_chunkPosition + 8 + m_chunkSize;
// chunks are aligned
nextPos += m_chunkSize & 1;
if ( nextPos >= (m_start + m_size) )
{
ChunkClear();
return false;
}
m_riff.PositionSet( nextPos );
ChunkSetup();
return ChunkAvailable();
}
//-----------------------------------------------------------------------------
// Purpose: get the chunk FOURCC as an int
// Output : unsigned int
//-----------------------------------------------------------------------------
unsigned int IterateRIFF::ChunkName( void )
{
return m_chunkName;
}
//-----------------------------------------------------------------------------
// Purpose: get the size of this chunk
// Output : unsigned int
//-----------------------------------------------------------------------------
unsigned int IterateRIFF::ChunkSize( void )
{
return m_chunkSize;
}
//-----------------------------------------------------------------------------
// Purpose: Read the entire chunk into a buffer
// Input : *pOutput - dest buffer
// Output : int bytes read
//-----------------------------------------------------------------------------
int IterateRIFF::ChunkRead( void *pOutput )
{
return m_riff.ReadData( pOutput, ChunkSize() );
}
//-----------------------------------------------------------------------------
// Purpose: Read a partial chunk (updates file position for subsequent partial reads).
// Input : *pOutput - dest buffer
// dataSize - partial size
// Output : int - bytes read
//-----------------------------------------------------------------------------
int IterateRIFF::ChunkReadPartial( void *pOutput, int dataSize )
{
return m_riff.ReadData( pOutput, dataSize );
}
//-----------------------------------------------------------------------------
// Purpose: Read a 4-byte int
// Output : int - read int
//-----------------------------------------------------------------------------
int IterateRIFF::ChunkReadInt( void )
{
return m_riff.ReadInt();
}
//-----------------------------------------------------------------------------
// Purpose: Used to iterate over an InFileRIFF
//-----------------------------------------------------------------------------
IterateOutputRIFF::IterateOutputRIFF( OutFileRIFF &riff )
: m_riff( riff )
{
if ( !m_riff.IsValid() )
return;
m_start = m_riff.PositionGet();
m_chunkPosition = m_start;
m_chunkStart = -1;
}
IterateOutputRIFF::IterateOutputRIFF( IterateOutputRIFF &parent )
: m_riff(parent.m_riff)
{
m_start = parent.ChunkFilePosition();
m_chunkPosition = m_start;
m_chunkStart = -1;
}
void IterateOutputRIFF::ChunkWrite( unsigned int chunkname, void *pOutput, int size )
{
m_chunkPosition = m_riff.PositionGet();
m_chunkName = chunkname;
m_chunkSize = size;
m_riff.WriteInt( chunkname );
m_riff.WriteInt( size );
m_riff.WriteData( pOutput, size );
m_chunkPosition = m_riff.PositionGet();
m_chunkPosition += m_chunkPosition & 1;
m_riff.PositionSet( m_chunkPosition );
m_chunkStart = -1;
}
void IterateOutputRIFF::ChunkWriteInt( int number )
{
m_riff.WriteInt( number );
}
void IterateOutputRIFF::ChunkWriteData( void *pOutput, int size )
{
m_riff.WriteData( pOutput, size );
}
void IterateOutputRIFF::ChunkFinish( void )
{
Assert( m_chunkStart != -1 );
m_chunkPosition = m_riff.PositionGet();
int size = m_chunkPosition - m_chunkStart - 8;
m_chunkPosition += m_chunkPosition & 1;
m_riff.PositionSet( m_chunkStart + sizeof( int ) );
m_riff.WriteInt( size );
m_riff.PositionSet( m_chunkPosition );
m_chunkStart = -1;
}
void IterateOutputRIFF::ChunkStart( unsigned int chunkname )
{
Assert( m_chunkStart == -1 );
m_chunkStart = m_riff.PositionGet();
m_riff.WriteInt( chunkname );
m_riff.WriteInt( 0 );
}
void IterateOutputRIFF::ChunkSetPosition( int position )
{
m_riff.PositionSet( position );
}
unsigned int IterateOutputRIFF::ChunkGetPosition( void )
{
return m_riff.PositionGet();
}
void IterateOutputRIFF::CopyChunkData( IterateRIFF& input )
{
if ( input.ChunkSize() > 0 )
{
char *buffer = new char[ input.ChunkSize() ];
Assert( buffer );
input.ChunkRead( buffer );
// Don't copy/write the name or size, just the data itself
ChunkWriteData( buffer, input.ChunkSize() );
delete[] buffer;
}
}
void IterateOutputRIFF::SetLISETData( int position )
{
m_riff.HasLISETData( position );
}