aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/phantom/phantom_scenes1.h
diff options
context:
space:
mode:
authorStrangerke2015-10-20 14:07:26 +0200
committerStrangerke2015-10-20 14:07:26 +0200
commite2d86c32489a318327778f3626b2dbe1a1d2a067 (patch)
tree8d0153e76d9296e7ec7b31b491f79cb2e1cf7e7c /engines/mads/phantom/phantom_scenes1.h
parent340016f423f8f8982a70496d9b00aea244d18ce8 (diff)
downloadscummvm-rg350-e2d86c32489a318327778f3626b2dbe1a1d2a067.tar.gz
scummvm-rg350-e2d86c32489a318327778f3626b2dbe1a1d2a067.tar.bz2
scummvm-rg350-e2d86c32489a318327778f3626b2dbe1a1d2a067.zip
MADS: Phantom: Implement scene 113, some renaming
Diffstat (limited to 'engines/mads/phantom/phantom_scenes1.h')
-rw-r--r--engines/mads/phantom/phantom_scenes1.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/engines/mads/phantom/phantom_scenes1.h b/engines/mads/phantom/phantom_scenes1.h
index 05cf1732fe..820cc7df60 100644
--- a/engines/mads/phantom/phantom_scenes1.h
+++ b/engines/mads/phantom/phantom_scenes1.h
@@ -338,6 +338,59 @@ public:
virtual void actions();
};
+class Scene113 : public Scene1xx {
+private:
+ bool _standing_talking;
+ bool _day_wants_to_talk;
+ bool _music_is_playing;
+ bool _right_after_kiss;
+ bool _anim_0_running;
+ bool _anim_1_running;
+ bool _anim_2_running;
+ bool _anim_3_running;
+ bool _anim_4_running;
+ bool _prevent_1;
+ bool _prevent_2;
+ bool _raoul_is_up;
+ bool _arms_are_out;
+
+ int _christineHotspotId1;
+ int _christineHotspotId2;
+ int _dayStatus;
+ int _dayFrame;
+ int _dayCount;
+ int _florentStatus;
+ int _florentFrame;
+ int _florentCount;
+ int _julieStatus;
+ int _julieFrame;
+ int _julieCount;
+ int _raoulAction;
+ int _raoulFrame;
+ int _raoulCount;
+ int _lastDayResetFrame;
+ int _standCount;
+
+ void handle_animation_florent();
+ void handle_animation_13_day();
+ void handle_animation_4_raoul();
+ void handle_animation_13_raoul();
+ void handle_animation_6_julie();
+ void process_conversation_dead();
+ void process_conversation_florent();
+ void process_conversation_love();
+
+public:
+ Scene113(MADSEngine *vm);
+ virtual void synchronize(Common::Serializer &s);
+
+ virtual void setup();
+ virtual void enter();
+ virtual void step();
+ virtual void preActions();
+ virtual void actions();
+};
+
} // End of namespace Phantom
} // End of namespace MADS