Skip to content

Commit

Permalink
FULLPIPE: Implement sceneHandler09_hangerStartCycle()
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Feb 16, 2014
1 parent 0657b7a commit 3d1ac3c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions engines/fullpipe/constants.h
Expand Up @@ -606,6 +606,7 @@ namespace Fullpipe {
#define QU_TTA9_GOL 4937
#define SND_9_006 3650
#define SND_9_018 4200
#define SND_9_019 4201
#define ST_GLT_SIT 926
#define ST_GRT9_GRIT 2722
#define ST_GRT9_NORM 2721
Expand Down
20 changes: 19 additions & 1 deletion engines/fullpipe/scenes/scene09.cpp
Expand Up @@ -321,7 +321,25 @@ void sceneHandler09_checkHangerCollide() {
}

void sceneHandler09_hangerStartCycle() {
warning("STUB: sceneHandler09_hangerStartCycle()");
StaticANIObject *ani = g_vars->scene09_hangers[g_vars->scene09_var10]->ani;

if (ani->_movement) {
ani->startAnim(MV_VSN_CYCLE2, 0, -1);
g_vars->scene09_hangers[g_vars->scene09_var10]->field_8 = 0;
g_vars->scene09_hangers[g_vars->scene09_var10]->phase = g_vars->scene09_var11 + (g_fp->_mouseScreenPos.y - g_vars->scene09_var19) / 2;

if (g_vars->scene09_var12 != -1000 && g_vars->scene09_hangers[g_vars->scene09_var10]->phase != g_vars->scene09_var12) {
ExCommand *ex = new ExCommand(0, 35, SND_9_019, 0, 0, 0, 1, 0, 0, 0);

ex->_field_14 = 1;
ex->_excFlags |= 2;
ex->postMessage();

g_vars->scene09_var12 = -1000;
}
} else {
g_vars->scene09_var10 = -1;
}
}

int sceneHandler09(ExCommand *cmd) {
Expand Down

0 comments on commit 3d1ac3c

Please sign in to comment.