diff options
author | Matthew Hoops | 2011-01-18 14:26:26 +0000 |
---|---|---|
committer | Matthew Hoops | 2011-01-18 14:26:26 +0000 |
commit | 245b7337f8720db022acdab0bb15e5b99ad313ad (patch) | |
tree | f59ca75f3a73a4119a4698c5abc59d7e53f3654e /engines/mohawk | |
parent | b38b5d24849524ba10d1c44e39cdb1b694c33b17 (diff) | |
download | scummvm-rg350-245b7337f8720db022acdab0bb15e5b99ad313ad.tar.gz scummvm-rg350-245b7337f8720db022acdab0bb15e5b99ad313ad.tar.bz2 scummvm-rg350-245b7337f8720db022acdab0bb15e5b99ad313ad.zip |
MOHAWK: Implement the village part of the left viewer on gspit
svn-id: r55299
Diffstat (limited to 'engines/mohawk')
-rw-r--r-- | engines/mohawk/riven_external.cpp | 56 |
1 files changed, 41 insertions, 15 deletions
diff --git a/engines/mohawk/riven_external.cpp b/engines/mohawk/riven_external.cpp index 22f778a78e..91bb0b1d4b 100644 --- a/engines/mohawk/riven_external.cpp +++ b/engines/mohawk/riven_external.cpp @@ -1234,9 +1234,7 @@ void RivenExternal::xgwt900_scribe(uint16 argc, uint16 *argv) { *scribeVar = 2; } -void RivenExternal::xgplaywhark(uint16 argc, uint16 *argv) { - // TODO: Whark response to using the lights -} +static const uint16 s_viewerTimeIntervals[] = { 0, 816, 1617, 2416, 3216, 4016, 4816, 5616, 6416, 7216, 8016, 8816 }; void RivenExternal::xgrviewer(uint16 argc, uint16 *argv) { // This controls the viewer on the right side of the 'throne' on Garden Island @@ -1259,10 +1257,9 @@ void RivenExternal::xgrviewer(uint16 argc, uint16 *argv) { uint32 newPos = *curPos + hotspotPositions[_vm->_curHotspot - 1]; // Now play the movie - static const uint16 timeIntervals[] = { 0, 816, 1617, 2416, 3216, 4016, 4816, 5616, 6416, 7216, 8016, 8816 }; VideoHandle handle = _vm->_video->playMovie(1); assert(handle != NULL_VID_HANDLE); - _vm->_video->setVideoBounds(handle, Graphics::VideoTimestamp(timeIntervals[*curPos], 600), Graphics::VideoTimestamp(timeIntervals[newPos], 600)); + _vm->_video->setVideoBounds(handle, Graphics::VideoTimestamp(s_viewerTimeIntervals[*curPos], 600), Graphics::VideoTimestamp(s_viewerTimeIntervals[newPos], 600)); _vm->_video->waitUntilMovieEnds(handle); // Set the new position and let the card's scripts take over again @@ -1270,28 +1267,57 @@ void RivenExternal::xgrviewer(uint16 argc, uint16 *argv) { _vm->refreshCard(); } +void RivenExternal::xgplaywhark(uint16 argc, uint16 *argv) { + // TODO: Whark response to using the lights +} + void RivenExternal::xgwharksnd(uint16 argc, uint16 *argv) { - // TODO: Image viewer related + // TODO: Random background whark videos } -void RivenExternal::xglview_prisonoff(uint16 argc, uint16 *argv) { - // TODO: Image viewer related +void RivenExternal::xglviewer(uint16 argc, uint16 *argv) { + // This controls the viewer on the left side of the 'throne' on Garden Island + // (It shows the village from the middle of the lake) + + // Calculate how much we're moving + static const uint16 hotspotPositions[] = { 1, 5, 4, 2, 0, 0, 3 }; + uint32 *curPos = _vm->getVar("glviewpos"); + uint32 newPos = *curPos + hotspotPositions[_vm->_curHotspot - 1]; + + // Now play the movie + VideoHandle handle = _vm->_video->playMovie(1); + assert(handle != NULL_VID_HANDLE); + _vm->_video->setVideoBounds(handle, Graphics::VideoTimestamp(s_viewerTimeIntervals[*curPos], 600), Graphics::VideoTimestamp(s_viewerTimeIntervals[newPos], 600)); + _vm->_video->waitUntilMovieEnds(handle); + + // Set the new position to the variable + *curPos = newPos % 6; // Clip it to 0-5 + + // And update the screen with the new image + _vm->_gfx->drawPLST(*curPos + 2); + _vm->_gfx->updateScreen(); } -void RivenExternal::xglview_villageoff(uint16 argc, uint16 *argv) { - // TODO: Image viewer related +void RivenExternal::xglview_villageon(uint16 argc, uint16 *argv) { + // Turn on the left viewer to 'village mode' + *_vm->getVar("glview") = 2; + _vm->_gfx->drawPLST(*_vm->getVar("glviewpos") + 2); + _vm->_gfx->updateScreen(); } -void RivenExternal::xglviewer(uint16 argc, uint16 *argv) { - // TODO: Image viewer related +void RivenExternal::xglview_villageoff(uint16 argc, uint16 *argv) { + // Turn off the left viewer when in 'village mode' + *_vm->getVar("glview") = 0; + _vm->_gfx->drawPLST(1); + _vm->_gfx->updateScreen(); } void RivenExternal::xglview_prisonon(uint16 argc, uint16 *argv) { - // TODO: Image viewer related + // TODO: Activate random background Catherine videos } -void RivenExternal::xglview_villageon(uint16 argc, uint16 *argv) { - // TODO: Image viewer related +void RivenExternal::xglview_prisonoff(uint16 argc, uint16 *argv) { + // TODO: Deactivate random background Catherine videos } // ------------------------------------------------------------------------------------ |