ScummVM API documentation
gxlarchive.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 WAYNESWORLD_GXLARCHIVE_H
23 #define WAYNESWORLD_GXLARCHIVE_H
24 
25 #include "common/archive.h"
26 #include "waynesworld/gamelogic.h"
27 
28 namespace Common {
29 class File;
30 }
31 
32 namespace WaynesWorld {
33 
34 #define GXL_FILENAME_MAX 13
35 
36 struct GxlHeader {
37  int32 offset;
38  int32 size;
39  char filename[GXL_FILENAME_MAX];
40 };
41 
43 
44 class GxlArchive : public Common::Archive {
45  GxlHeadersMap _headers;
46  Common::File *_gxlFile;
47 
48  WWSurface *loadSurfaceIntern(const char *filename);
49 
50 public:
51  GxlArchive(const Common::String name);
52  ~GxlArchive() override;
53 
54  // Archive implementation
55  bool hasFile(const Common::Path &path) const override;
56  int listMembers(Common::ArchiveMemberList &list) const override;
57  const Common::ArchiveMemberPtr getMember(const Common::Path &path) const override;
58  Common::SeekableReadStream *createReadStreamForMember(const Common::Path &path) const override;
59 
60  Image::PCXDecoder *loadImage(const char *filename);
61  WWSurface *loadRoomSurface(const char *filename);
62  WWSurface *loadSurface(const char *filename);
63 };
64 
65 } // End of namespace WaynesWorld
66 
67 #endif
Definition: path.h:220
Definition: str.h:59
Definition: graphics.h:30
Definition: detection.h:25
Definition: pcx.h:51
Definition: path.h:224
Definition: list.h:44
Definition: path.h:52
Definition: stream.h:745
Definition: archive.h:141
Definition: hashmap.h:85
Definition: file.h:47
Definition: gxlarchive.h:36
Definition: algorithm.h:29
Definition: gxlarchive.h:44