diff options
-rw-r--r-- | engines/fullpipe/scenes/scene12.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene12.cpp b/engines/fullpipe/scenes/scene12.cpp index 60059519e6..c5e03917d5 100644 --- a/engines/fullpipe/scenes/scene12.cpp +++ b/engines/fullpipe/scenes/scene12.cpp @@ -29,6 +29,9 @@ #include "fullpipe/scenes.h" #include "fullpipe/scene.h" #include "fullpipe/floaters.h" +#include "fullpipe/messages.h" +#include "fullpipe/statics.h" +#include "fullpipe/behavior.h" namespace Fullpipe { @@ -44,4 +47,35 @@ void scene12_initScene() { g_fp->setObjectState("Муха_12", g_fp->_rnd->getRandomNumber(1)); } +void sceneHandler12_updateFloaters() { + warning("STUB: sceneHandler12_updateFloaters()"); +} + +int sceneHandler12(ExCommand *cmd) { + int res = 0; + + if (cmd->_messageKind == 17 && cmd->_messageNum == 33) { + if (g_fp->_aniMan2) { + if (g_fp->_aniMan2->_ox < g_fp->_sceneRect.left + 200) + g_fp->_currentScene->_x = g_fp->_aniMan2->_ox - g_fp->_sceneRect.left - 300; + + if (g_fp->_aniMan2->_ox > g_fp->_sceneRect.right - 200) + g_fp->_currentScene->_x = g_fp->_aniMan2->_ox - g_fp->_sceneRect.right + 300; + + res = 1; + } + + g_vars->scene12_flyCountdown--; + + if (!g_vars->scene12_flyCountdown) + sceneHandler12_updateFloaters(); + + g_fp->_floaters->update(); + + g_fp->_behaviorManager->updateBehaviors(); + } + + return res; +} + } // End of namespace Fullpipe |