FULLPIPE: Implement sceneHandler_sub07()

This commit is contained in:
Eugene Sandulenko
2013-12-31 23:53:32 +02:00
parent d7dac60f15
commit 5391fa723a
2 changed files with 25 additions and 4 deletions
+1
View File
@@ -596,6 +596,7 @@ namespace Fullpipe {
#define MSG_SC14_SHOWBALLLAST 3246
#define MSG_SC14_SHOWBALLMAN 1254
#define MSG_SC14_STARTARCADE 3252
#define MV_BAL14_FALL 1258
#define MV_BAL14_SPIN 1247
#define MV_BAL14_TOGMA 3214
#define MV_MAN14_DECLINE 1239
+24 -4
View File
@@ -408,14 +408,34 @@ bool sceneHandler14_sub04(ExCommand *cmd) {
return false;
}
void sceneHandler14_sub07() {
warning("STUB: sceneHandler14_sub07()");
}
void sceneHandler14_sub08() {
warning("STUB: sceneHandler14_sub08()");
}
void sceneHandler14_sub07() {
g_vars->scene14_var10->stopAnim_maybe();
g_vars->scene14_var10->_priority = 27;
MessageQueue *mq = new MessageQueue(g_fp->_globalMessageQueueList->compact());
ExCommand *ex = new ExCommand(ANI_BALL14, 1, MV_BAL14_FALL, 0, 0, 0, 1, 0, 0, 0);
ex->_keyCode = g_vars->scene14_var10->_okeyCode;
ex->_excFlags |= 2;
ex->_field_24 = 1;
mq->addExCommandToEnd(ex);
ex = new ExCommand(ANI_BALL14, 6, 0, 0, 0, 0, 1, 0, 0, 0);
ex->_keyCode = g_vars->scene14_var10->_okeyCode;
ex->_excFlags |= 3;
mq->addExCommandToEnd(ex);
mq->chain(0);
g_vars->scene14_var11.push_back(g_vars->scene14_var10);
g_vars->scene14_var10 = 0;
sceneHandler14_sub08();
}
void sceneHandler14_sub09() {
warning("STUB: sceneHandler14_sub09()");
}