ScummVM API documentation
sgt_state_room.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_SGT_STATE_ROOM_H
23 #define TITANIC_SGT_STATE_ROOM_H
24 
25 #include "titanic/core/background.h"
26 #include "titanic/messages/messages.h"
27 
28 namespace Titanic {
29 
31  CString _bedhead;
32  CString _bedfoot;
33  CString _vase;
34  CString _tv;
35  CString _desk;
36  CString _chestOfDrawers;
37  CString _drawer;
38  CString _armchair;
39  CString _deskchair;
40  CString _washstand;
41  CString _basin;
42  CString _toilet;
43  bool _announcementFlag;
44  uint _roomFlags;
45 };
46 
47 class CSGTStateRoom : public CBackground {
48  DECLARE_MESSAGE_MAP;
49  bool ActMsg(CActMsg *msg);
50  bool VisibleMsg(CVisibleMsg *msg);
51  bool EnterRoomMsg(CEnterRoomMsg *msg);
52  bool LeaveRoomMsg(CLeaveRoomMsg *msg);
53 protected:
54  static CSGTStateRoomStatics *_statics;
55 protected:
56  bool _isClosed;
57  bool _displayFlag;
58  int _savedFrame;
59  bool _savedIsClosed;
60  bool _savedVisible;
61 public:
62  CLASSDEF;
63  CSGTStateRoom();
64  static void init();
65  static void deinit();
66 
70  void save(SimpleFile *file, int indent) override;
71 
75  void load(SimpleFile *file) override;
76 };
77 
78 } // End of namespace Titanic
79 
80 #endif /* TITANIC_SGT_STATE_ROOM_H */
Definition: messages.h:288
Definition: messages.h:309
Definition: background.h:30
Definition: simple_file.h:49
Definition: messages.h:254
Definition: arm.h:30
Definition: string.h:40
Definition: messages.h:409
Definition: sgt_state_room.h:47
Definition: sgt_state_room.h:30