ScummVM API documentation
titania.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_TITANIA_H
23 #define TITANIC_TITANIA_H
24 
25 #include "titanic/npcs/character.h"
26 
27 namespace Titanic {
28 
29 class CTitania : public CCharacter {
30  DECLARE_MESSAGE_MAP;
31  bool AddHeadPieceMsg(CAddHeadPieceMsg *msg);
32  bool TakeHeadPieceMsg(CTakeHeadPieceMsg *msg);
33  bool ActMsg(CActMsg *msg);
34  bool EnterViewMsg(CEnterViewMsg *msg);
35  bool TimerMsg(CTimerMsg *msg);
36 private:
37  bool _speechCentre;
38  bool _olfactoryCentre;
39  bool _auditoryCentre;
40  bool _centralCore;
41  bool _visionCentre;
42  bool _eye1;
43  bool _eye2;
44  bool _ear1;
45  bool _ear2;
46  bool _nose;
47  bool _mouth;
48  bool _showSpeech;
49 public:
50  CLASSDEF;
51  CTitania();
52 
56  void save(SimpleFile *file, int indent) override;
57 
61  void load(SimpleFile *file) override;
62 };
63 
64 } // End of namespace Titanic
65 
66 #endif /* TITANIC_TITANIA_H */
void load(SimpleFile *file) override
Definition: messages.h:289
Definition: character.h:29
Definition: simple_file.h:49
Definition: messages.h:256
Definition: messages.h:188
Definition: messages.h:386
Definition: messages.h:254
Definition: arm.h:30
Definition: titania.h:29
void save(SimpleFile *file, int indent) override