MOHAWK: Change the back from book commands to use scripts

This commit is contained in:
Bastien Bouclet 2016-11-05 08:36:03 +01:00 committed by Eugene Sandulenko
parent e7146c9bf7
commit c04edb8f54
3 changed files with 18 additions and 8 deletions
engines/mohawk

@ -473,7 +473,7 @@ void MohawkEngine_Riven::checkInventoryClick() {
// Set the return stack/card id's.
_vars["returnstackid"] = _stack->getId();
_vars["returncardid"] = _card->getId();
_vars["returncardid"] = _stack->getCardGlobalId(_card->getId());
// See RivenGraphics::showInventory() for an explanation
// of the variables' meanings.

@ -95,9 +95,20 @@ void ASpit::xaatrusopenbook(uint16 argc, uint16 *argv) {
}
void ASpit::xaatrusbookback(uint16 argc, uint16 *argv) {
inventoryBackFromItemScript();
}
void ASpit::inventoryBackFromItemScript() const {
RivenScriptPtr stopSoundScript = _vm->_scriptMan->createScriptFromData(1, 12, 1, 1);
_vm->_scriptMan->runScript(stopSoundScript, false);
uint16 backStackId = _vm->_vars["returnstackid"];
uint32 backCardId = _vm->_vars["returncardid"];
// Return to where we were before entering the book
_vm->changeToStack(_vm->_vars["returnstackid"]);
_vm->changeToCard(_vm->_vars["returncardid"]);
RivenCommand *back = new RivenStackChangeCommand(_vm, backStackId, backCardId, true);
RivenScriptPtr backScript = _vm->_scriptMan->createScriptWithCommand(back);
_vm->_scriptMan->runScript(backScript, false);
}
void ASpit::xaatrusbookprevpage(uint16 argc, uint16 *argv) {
@ -187,9 +198,7 @@ void ASpit::xacathopenbook(uint16 argc, uint16 *argv) {
}
void ASpit::xacathbookback(uint16 argc, uint16 *argv) {
// Return to where we were before entering the book
_vm->changeToStack(_vm->_vars["returnstackid"]);
_vm->changeToCard(_vm->_vars["returncardid"]);
inventoryBackFromItemScript();
}
void ASpit::xacathbookprevpage(uint16 argc, uint16 *argv) {
@ -229,8 +238,7 @@ void ASpit::xacathbooknextpage(uint16 argc, uint16 *argv) {
void ASpit::xtrapbookback(uint16 argc, uint16 *argv) {
// Return to where we were before entering the book
_vm->_vars["atrap"] = 0;
_vm->changeToStack(_vm->_vars["returnstackid"]);
_vm->changeToCard(_vm->_vars["returncardid"]);
inventoryBackFromItemScript();
}
void ASpit::xatrapbookclose(uint16 argc, uint16 *argv) {

@ -67,6 +67,8 @@ public:
void xaenablemenuintro(uint16 argc, uint16 *argv);
void xademoquit(uint16 argc, uint16 *argv);
void xaexittomain(uint16 argc, uint16 *argv);
void inventoryBackFromItemScript() const;
};
} // End of namespace RivenStacks