ScummVM API documentation
parser.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 TWINE_PARSER_PARSER_H
23 #define TWINE_PARSER_PARSER_H
24 
25 #include "common/array.h"
26 #include "common/memstream.h"
27 #include "common/stream.h"
28 #include "twine/shared.h"
29 
30 namespace TwinE {
31 
32 class Parser {
33 protected:
34  int _hqrIndex = -1;
35  virtual void reset() {}
36 public:
37  virtual ~Parser() {
38  reset();
39  }
40  virtual bool loadFromStream(Common::SeekableReadStream &stream, bool lba1) = 0;
41 
42  bool loadFromBuffer(const uint8 *buf, uint32 size, bool lba1);
43  bool loadFromHQR(const char *name, int index, bool lba1);
44 
45  int hqrIndex() const {
46  return _hqrIndex;
47  }
48 
49  inline bool loadFromHQR(const TwineResource &resource, bool lba1) {
50  return loadFromHQR(resource.hqr, resource.index, lba1);
51  }
52 };
53 
54 } // End of namespace TwinE
55 
56 #endif
Definition: stream.h:745
Definition: shared.h:683
Definition: achievements_tables.h:27
Definition: parser.h:32