ScummVM API documentation
ngiarchive.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 #ifndef NGI_NGIARCHIVE_H
23 #define NGI_NGIARCHIVE_H
24 
25 #include "common/path.h"
26 #include "common/ptr.h"
27 
28 namespace NGI {
29 
30 class Archive;
31 
32 #define NGI_FILENAME_MAX 13
33 
34 struct NgiHeader {
35  int32 pos;
36  int32 extVal;
37  int32 flags;
38  int32 size;
39  char filename[NGI_FILENAME_MAX];
40 };
41 
43 
44 class NGIArchive : public Common::Archive {
45  NgiHeadersMap _headers;
46  Common::Path _ngiFilename;
47 
48 public:
49  NGIArchive(const Common::Path &name);
50  ~NGIArchive() override;
51 
52  // Archive implementation
53  bool hasFile(const Common::Path &path) const override;
54  int listMembers(Common::ArchiveMemberList &list) const override;
55  const Common::ArchiveMemberPtr getMember(const Common::Path &path) const override;
56  Common::SeekableReadStream *createReadStreamForMember(const Common::Path &path) const override;
57 };
58 
65 NGIArchive *makeNGIArchive(const Common::Path &name);
66 
67 } // End of namespace NGI
68 
69 #endif
Definition: path.h:223
Definition: path.h:227
Definition: list.h:44
Definition: path.h:52
Definition: stream.h:745
Definition: ngiarchive.h:44
Definition: archive.h:141
Definition: ngiarchive.h:34
Definition: hashmap.h:85
Definition: anihandler.h:25