Skip to content

Commit

Permalink
FULLPIPE: Implement sceneHandler09_winArcade()
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Feb 13, 2014
1 parent 3bda176 commit 14590b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions engines/fullpipe/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,12 @@ namespace Fullpipe {
#define MSG_SC9_SHOWBALL 936
#define MSG_SC9_STARTTIOTIA 4942
#define MSG_SC9_TOLADDER 4206
#define MV_GLT_FLYAWAY 931
#define MV_MAN9_SHOOT 922
#define MV_VSN_CYCLE2 2987
#define PIC_SC9_LADDER_R 2700
#define SND_9_018 4200
#define ST_GLT_SIT 926
#define ST_GRT9_GRIT 2722
#define ST_GRT9_NORM 2721
#define ST_VSN_NORMAL 906
Expand Down
10 changes: 9 additions & 1 deletion engines/fullpipe/scenes/scene09.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,15 @@ int scene09_updateCursor() {
}

void sceneHandler09_winArcade() {
warning("STUB: sceneHandler09_winArcade()");
if (g_vars->scene09_glotatel->_flags & 4) {
g_vars->scene09_glotatel->changeStatics2(ST_GLT_SIT);
g_vars->scene09_glotatel->startAnim(MV_GLT_FLYAWAY, 0, -1);

g_fp->setObjectState(sO_Jug, g_fp->getObjectEnumState(sO_Jug, sO_Unblocked));
g_fp->setObjectState(sO_RightStairs_9, g_fp->getObjectEnumState(sO_RightStairs_9, sO_IsOpened));

g_vars->scene09_var08 = 0;
}
}

void sceneHandler09_startAuntie() {
Expand Down

0 comments on commit 14590b4

Please sign in to comment.