aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes/scene13.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-12-30 00:33:31 +0200
committerEugene Sandulenko2013-12-30 00:33:31 +0200
commitcb647a4dfadf693aeeea0c07e677b5a788ca056e (patch)
tree6c191e3d42b55af85544d9c5900915e2f8189053 /engines/fullpipe/scenes/scene13.cpp
parentedb26cb56305f7cfec816ba57c0d18e860038ae1 (diff)
downloadscummvm-rg350-cb647a4dfadf693aeeea0c07e677b5a788ca056e.tar.gz
scummvm-rg350-cb647a4dfadf693aeeea0c07e677b5a788ca056e.tar.bz2
scummvm-rg350-cb647a4dfadf693aeeea0c07e677b5a788ca056e.zip
FULLPIPE: Implement sceneHandler13_testClose()/testOpen()
Diffstat (limited to 'engines/fullpipe/scenes/scene13.cpp')
-rw-r--r--engines/fullpipe/scenes/scene13.cpp23
1 files changed, 21 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene13.cpp b/engines/fullpipe/scenes/scene13.cpp
index e2d7f88551..2df5d1ad9e 100644
--- a/engines/fullpipe/scenes/scene13.cpp
+++ b/engines/fullpipe/scenes/scene13.cpp
@@ -102,11 +102,30 @@ void sceneHandler13_openBridge() {
}
void sceneHandler13_testClose() {
- warning("STUB: sceneHandler13_testClose()");
+ int id = g_vars->scene13_handleL->_statics->_staticsId;
+
+ if (id == ST_HDLL_UP)
+ chainQueue(QU_SC13_CLOSEFAIL, 1);
+ else if (id == ST_HDLL_FIRECAN || id == ST_HDLL_HAMMER)
+ chainQueue(QU_SC13_CLOSESUCCESS, 1);
}
void sceneHandler13_testOpen() {
- warning("STUB: sceneHandler13_testOpen()");
+ switch (g_vars->scene13_handleR->_statics->_staticsId) {
+ case ST_HDLR_DOWN:
+ chainQueue(QU_SC13_OPENFAIL, 1);
+ break;
+
+ case ST_HDLR_DOWN_GUM:
+ chainQueue(QU_SC13_OPENSUCCESS, 1);
+ break;
+
+ case ST_HDLR_GUM:
+ g_vars->scene13_handleR->changeStatics2(ST_HDLR_DOWN_GUM);
+
+ chainQueue(QU_SC13_OPENSUCCESS, 1);
+ break;
+ }
}
void sceneHandler13_closeBridge() {