ScummVM API documentation
tt_quotes.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 TITANIC_TT_QUOTES_H
23 #define TITANIC_TT_QUOTES_H
24 
25 #include "common/scummsys.h"
26 #include "common/stream.h"
27 #include "titanic/support/string.h"
28 
29 namespace Titanic {
30 
31 class TTquotes {
32  struct TTquotesEntry {
33  byte _tagIndex, _maxSize;
34  const char *_strP;
35  TTquotesEntry() : _tagIndex(0), _maxSize(0), _strP(nullptr) {}
36  };
37  struct TTquotesLetter {
39  int _field4;
40  int _field8;
41 
42  TTquotesLetter() : _field4(0), _field8(0) {}
43  };
44 private:
45  TTquotesLetter _alphabet[26];
46  uint _tags[256];
47  char *_dataP;
48  size_t _dataSize;
49  int _field544;
50 private:
55  int find(const char *startP, const char *endP) const;
56 public:
57  bool _loaded;
58 public:
59  TTquotes();
60  ~TTquotes();
61 
65  void load();
66 
71  int find(const char *str) const;
72 };
73 
74 } // End of namespace Titanic
75 
76 #endif /* TITANIC_TT_QUOTES_H */
Definition: tt_quotes.h:31
Definition: arm.h:30