aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/captioncompiler.h
blob: 1b723dc69b6e41f4aafa8713477822e075f77d0e (plain) (blame)
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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================

#ifndef CAPTIONCOMPILER_H
#define CAPTIONCOMPILER_H
#ifdef _WIN32
#pragma once
#endif

#include "datamap.h"
#include "checksum_crc.h"

#define MAX_BLOCK_BITS	13

#define MAX_BLOCK_SIZE (1<<MAX_BLOCK_BITS )

#define COMPILED_CAPTION_FILEID			MAKEID( 'V', 'C', 'C', 'D' )
#define COMPILED_CAPTION_VERSION		1

#pragma pack(1)
struct CompiledCaptionHeader_t
{
	DECLARE_BYTESWAP_DATADESC()
	int				magic;
	int				version;
	int				numblocks;
	int				blocksize;
	int				directorysize;
	int				dataoffset;
};

struct CaptionLookup_t
{
	DECLARE_BYTESWAP_DATADESC()
	unsigned int	hash;
	int				blockNum;
	unsigned short	offset;
	unsigned short	length;

	void SetHash( char const *string )
	{
		int len = Q_strlen( string );
		char *tempstr = (char *)_alloca( len + 1 );
		Q_strncpy( tempstr, string, len + 1 );
		Q_strlower( tempstr );
		CRC32_t temp;
		CRC32_Init( &temp );
		CRC32_ProcessBuffer( &temp, tempstr, len );
		CRC32_Final( &temp );

		hash = ( unsigned int )temp;
	}
};
#pragma pack()

class CCaptionLookupLess
{
public:
	bool	Less( const CaptionLookup_t& lhs, const CaptionLookup_t& rhs, void *pContext )
	{
		return lhs.hash < rhs.hash;
	}
};

struct CaptionBlock_t
{
	byte	data[ MAX_BLOCK_SIZE ];
};

// For swapping compiled caption files
bool	SwapClosecaptionFile( void *pData );
int		UpdateOrCreateCaptionFile( const char *pSourceName, char *pTargetName, int targetLen, bool bForce = false );

#endif // CAPTIONCOMPILER_H