diff options
author | Eugene Sandulenko | 2014-03-25 00:25:47 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-03-25 00:28:52 +0200 |
commit | 202804d8d389bbfef9eac3d5f0991e543d67d912 (patch) | |
tree | 8228cf46c8ca01fba9573d88c7f0ad9940d60753 /engines/fullpipe | |
parent | 78e58492682c6665c850b6ff427f41cc2fb6b665 (diff) | |
download | scummvm-rg350-202804d8d389bbfef9eac3d5f0991e543d67d912.tar.gz scummvm-rg350-202804d8d389bbfef9eac3d5f0991e543d67d912.tar.bz2 scummvm-rg350-202804d8d389bbfef9eac3d5f0991e543d67d912.zip |
FULLPIPE: Implement scene29_updateCursor()
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/constants.h | 1 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene29.cpp | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/engines/fullpipe/constants.h b/engines/fullpipe/constants.h index 7924b334ca..5e18723cd8 100644 --- a/engines/fullpipe/constants.h +++ b/engines/fullpipe/constants.h @@ -1302,6 +1302,7 @@ namespace Fullpipe { #define MV_PTR_MOVEFAST 2102 #define MV_SHG_HITASS 2151 #define MV_SHR_HITASS 2152 +#define PIC_SC29_LTRUBA 2081 #define SND_29_028 4758 #define SND_29_029 4759 #define ST_ASS_NORM 2122 diff --git a/engines/fullpipe/scenes/scene29.cpp b/engines/fullpipe/scenes/scene29.cpp index 27d45c2eea..ee6a15971c 100644 --- a/engines/fullpipe/scenes/scene29.cpp +++ b/engines/fullpipe/scenes/scene29.cpp @@ -410,4 +410,23 @@ int sceneHandler29(ExCommand *cmd) { return 0; } +int scene29_updateCursor() { + g_fp->updateCursorCommon(); + + if (g_vars->scene29_var10) { + if (g_fp->_cursorId != PIC_CSR_DEFAULT_INV && g_fp->_cursorId != PIC_CSR_ITN_INV) + g_fp->_cursorId = -1; + } else if (g_vars->scene29_var09) { + if (g_fp->_cursorId != PIC_CSR_DEFAULT_INV && g_fp->_cursorId != PIC_CSR_ITN_INV) + g_fp->_cursorId = PIC_CSR_DEFAULT; + } else if (g_fp->_objectIdAtCursor == ANI_PORTER) { + if (g_fp->_cursorId == PIC_CSR_DEFAULT) + g_fp->_cursorId = PIC_CSR_ITN; + } else { + if (g_fp->_objectIdAtCursor == PIC_SC29_LTRUBA && g_fp->_cursorId == PIC_CSR_ITN) + g_fp->_cursorId = PIC_CSR_GOL; + } + return g_fp->_cursorId; +} + } // End of namespace Fullpipe |