ScummVM API documentation
bedhead.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_BEDHEAD_H
23 #define TITANIC_BEDHEAD_H
24 
25 #include "common/array.h"
26 #include "titanic/game/sgt/sgt_state_room.h"
27 
28 namespace Titanic {
29 
30 struct BedheadEntry {
31  CString _name1;
32  CString _name2;
33  CString _name3;
34  CString _name4;
35  int _startFrame;
36  int _endFrame;
37 
38  void load(Common::SeekableReadStream *s);
39 };
40 class BedheadEntries : public Common::Array<BedheadEntry> {
41 public:
42  void load(Common::SeekableReadStream *s, int count);
43 };
44 
45 struct TurnOnEntries {
46  BedheadEntries _closed;
47  BedheadEntries _restingTV;
48  BedheadEntries _restingUV;
49  BedheadEntries _closedWrong;
50 
51  void load(Common::SeekableReadStream *s);
52 };
53 
55  BedheadEntries _open;
56  BedheadEntries _restingUTV;
57  BedheadEntries _restingV;
58  BedheadEntries _restingG;
59  BedheadEntries _openWrong;
60  BedheadEntries _restingDWrong;
61 
62  void load(Common::SeekableReadStream *s);
63 };
64 
65 class CBedhead : public CSGTStateRoom {
66  DECLARE_MESSAGE_MAP;
67  bool TurnOn(CTurnOn *msg);
68  bool TurnOff(CTurnOff *msg);
69 private:
70  TurnOnEntries _on;
71  TurnOffEntries _off;
72 public:
73  CLASSDEF;
74  CBedhead();
75 
79  void save(SimpleFile *file, int indent) override;
80 
84  void load(SimpleFile *file) override;
85 };
86 
87 } // End of namespace Titanic
88 
89 #endif /* TITANIC_BEDHEAD_H */
Definition: messages.h:404
Definition: array.h:52
Definition: bedhead.h:65
Definition: stream.h:745
Definition: simple_file.h:49
Definition: bedhead.h:45
Definition: bedhead.h:30
Definition: bedhead.h:54
Definition: arm.h:30
Definition: string.h:40
Definition: sgt_state_room.h:47
Definition: bedhead.h:40
Definition: messages.h:403