ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
multi_file_lib.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 //=============================================================================
23 //
24 // A packed data file header and functions for reading it from the stream.
25 //
26 //-----------------------------------------------------------------------------
27 //
28 // The code is based on CLIB32, by Chris Jones (1998-99), DJGPP implementation
29 // of the CLIB reader.
30 //
31 //=============================================================================
32 
33 #ifndef AGS_SHARED_UTIL_MULTI_FILE_LIB_H
34 #define AGS_SHARED_UTIL_MULTI_FILE_LIB_H
35 
36 #include "ags/shared/core/asset.h"
37 #include "ags/shared/util/stream.h"
38 
39 namespace AGS3 {
40 namespace AGS {
41 namespace Shared {
42 
43 //
44 // MultiFileLib utilities: (de)serialization of asset library in MFL format
45 //
46 namespace MFLUtil {
47 enum MFLError {
48  kMFLNoError = 0,
49  kMFLErrNoLibSig = -1, // library signature does not match
50  kMFLErrLibVersion = -2, // library version unsupported
51  kMFLErrNoLibBase = -3, // file is not library base (head)
52  kMFLErrLibAssetCount = -4, // too many assets in library
53  kMFLErrAssetNameLong = -5 // asset name is too long (old formats only)
54 };
55 
56 enum MFLVersion {
57  kMFLVersion_SingleLib = 6,
58  kMFLVersion_MultiV10 = 10,
59  kMFLVersion_MultiV11 = 11,
60  kMFLVersion_MultiV15 = 15, // unknown differences
61  kMFLVersion_MultiV20 = 20,
62  kMFLVersion_MultiV21 = 21,
63  kMFLVersion_MultiV30 = 30 // 64-bit file support, lose limits
64 };
65 
66 // Maximal number of the data files in one library chain (1-byte index)
67 const size_t MaxMultiLibFiles = 256;
68 
69 MFLError TestIsMFL(Stream *in, bool test_is_main = false);
70 MFLError ReadHeader(AssetLibInfo &lib, Stream *in);
71 
72 void WriteHeader(const AssetLibInfo &lib, MFLVersion lib_version, int lib_index, Stream *out);
73 void WriteEnder(soff_t lib_offset, MFLVersion lib_index, Stream *out);
74 } // namespace MFLUtil
75 
76 } // namespace Shared
77 } // namespace AGS
78 } // namespace AGS3
79 
80 #endif
Definition: achievements_tables.h:27
Definition: ags.h:40