ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
phantom_scenes5.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 #ifdef ENABLE_MADSV2
23 
24 #ifndef MADS_PHANTOM_SCENES5_H
25 #define MADS_PHANTOM_SCENES5_H
26 
27 #include "common/serializer.h"
28 #include "mads/phantom/phantom_scenes.h"
29 
30 namespace MADS {
31 
32 namespace Phantom {
33 
34 class Scene5xx : public PhantomScene {
35 protected:
39  void sceneEntrySound();
40 
44  void setAAName();
45 
49  void setPlayerSpritesPrefix();
50 public:
51  Scene5xx(MADSEngine *vm) : PhantomScene(vm) {}
52 };
53 
54 class Scene501 : public Scene5xx {
55 private:
56  bool _anim0ActvFl;
57  bool _skipFl;
58 
59 public:
60  Scene501(MADSEngine *vm);
61  void synchronize(Common::Serializer &s) override;
62 
63  void setup() override;
64  void enter() override;
65  void step() override;
66  void preActions() override;
67  void actions() override;
68 };
69 
70 class Scene502 : public Scene5xx {
71 private:
72  bool _fire1ActiveFl;
73  bool _fire2ActiveFl;
74  bool _fire3ActiveFl;
75  bool _fire4ActiveFl;
76  bool _panelTurningFl;
77  bool _trapDoorHotspotEnabled;
78  bool _acceleratedFireActivationFl;
79 
80  int _panelPushedNum;
81  int _puzzlePictures[16];
82  int _puzzleSprites[16];
83  int _puzzleSequences[16];
84  int _messageLevel;
85  int _cycleStage;
86 
87  Common::Point _nextPos;
88 
89  uint32 _lastFrameTime;
90  uint32 _timer;
91  uint32 _deathTimer;
92 
93  byte *_cyclePointer;
94 
95  void room_502_initialize_panels();
96  void loadCyclingInfo();
97  void animateFireBursts();
98  void setPaletteCycle();
99  void handlePanelAnimation();
100  void getPanelInfo(Common::Point *walkToPos, int *panel, Common::Point mousePos, Common::Point *interimPos);
101 
102 public:
103  Scene502(MADSEngine *vm);
104  ~Scene502() override;
105 
106  void synchronize(Common::Serializer &s) override;
107 
108  void setup() override;
109  void enter() override;
110  void step() override;
111  void preActions() override;
112  void actions() override;
113 };
114 
115 class Scene504 : public Scene5xx {
116 private:
117  bool _anim0ActvFl;
118  bool _anim1ActvFl;
119  bool _anim2ActvFl;
120  bool _anim3ActvFl;
121  bool _anim4ActvFl;
122  bool _anim5ActvFl;
123  bool _playingMusicFl;
124  bool _chairDialogDoneFl;
125  bool _fireBreathFl;
126 
127  int _songNum;
128  int _input3Count;
129  int _playCount;
130  int _listenStatus;
131  int _listenFrame;
132  int _chairStatus;
133  int _chairFrame;
134  int _playStatus;
135  int _playFrame;
136  int _phantomStatus;
137  int _phantomFrame;
138  int _christineTalkCount;
139  int _deathCounter;
140 
141  void handleListenAnimation();
142  void handleOrganAnimation();
143  void handleChairAnimation();
144  void handlePhantomAnimation1();
145  void handlePhantomAnimation2();
146  void handlePhantomAnimation3();
147  void handleListenConversation();
148  void handlePlayConversation();
149  void handleFightConversation();
150 
151 public:
152  Scene504(MADSEngine *vm);
153  void synchronize(Common::Serializer &s) override;
154 
155  void setup() override;
156  void enter() override;
157  void step() override;
158  void preActions() override;
159  void actions() override;
160 };
161 
162 class Scene505 : public Scene5xx {
163 private:
164  bool _anim0ActvFl;
165  bool _anim1ActvFl;
166  bool _anim2ActvFl;
167  bool _checkFrame106;
168  bool _leaveRoomFl;
169  bool _partedFl;
170 
171  int _raoulStatus;
172  int _raoulFrame;
173  int _raoulCount;
174  int _bothStatus;
175  int _bothFrame;
176  int _bothCount;
177  int _partStatus;
178  int _partFrame;
179  int _partCount;
180 
181  void handleRaoulAnimation();
182  void handleBothanimation();
183  void handlePartedAnimation();
184  void handleCoffinDialog();
185 
186 public:
187  Scene505(MADSEngine *vm);
188  void synchronize(Common::Serializer &s) override;
189 
190  void setup() override;
191  void enter() override;
192  void step() override;
193  void preActions() override;
194  void actions() override;
195 };
196 
197 class Scene506 : public Scene5xx {
198 private:
199  bool _anim0ActvFl;
200  bool _skipFl;
201  bool _ascendingFl;
202 
203 public:
204  Scene506(MADSEngine *vm);
205  void synchronize(Common::Serializer &s) override;
206 
207  void setup() override;
208  void enter() override;
209  void step() override;
210  void preActions() override;
211  void actions() override;
212 };
213 
214 } // End of namespace Phantom
215 } // End of namespace MADS
216 
217 #endif /* MADS_PHANTOM_SCENES5_H */
218 
219 #endif
Definition: serializer.h:79
Definition: rect.h:45
Definition: action.h:28