1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "mohawk/riven_inventory.h"
#include "mohawk/resource.h"
#include "mohawk/riven.h"
#include "mohawk/riven_card.h"
#include "mohawk/riven_graphics.h"
#include "mohawk/riven_stack.h"
namespace Mohawk {
RivenInventory::RivenInventory(MohawkEngine_Riven *vm) :
_vm(vm),
_inventoryDrawn(false),
_forceVisible(false),
_forceHidden(false) {
_atrusJournalRect1 = Common::Rect(295, 402, 313, 426);
_atrusJournalRect2 = Common::Rect(259, 402, 278, 426);
_cathJournalRect2 = Common::Rect(328, 408, 348, 419);
_atrusJournalRect3 = Common::Rect(222, 402, 240, 426);
_cathJournalRect3 = Common::Rect(291, 408, 311, 419);
_trapBookRect3 = Common::Rect(363, 396, 386, 432);
_demoExitRect = Common::Rect(291, 408, 317, 419);
}
RivenInventory::~RivenInventory() {
}
void RivenInventory::draw() {
// Clear the inventory area
clearArea();
// Draw the demo's exit button
if (_vm->getFeatures() & GF_DEMO) {
// extras.mhk tBMP 101 contains "EXIT" instead of Atrus' journal in the demo!
// The demo's extras.mhk contains all the other inventory/marble/credits image
// but has hacked tBMP 101 with "EXIT". *sigh*
_vm->_gfx->drawExtrasImageToScreen(101, _demoExitRect);
} else {
// There are three books and three vars. We have three different
// combinations. At the start you have just Atrus' journal. Later,
// you get Catherine's journal and the trap book. Near the end,
// you lose the trap book and have just the two journals.
bool hasCathBook = _vm->_vars["rrebel"] == 5 || _vm->_vars["rrebel"] == 6;
bool hasTrapBook = _vm->_vars["atrapbook"] == 1;
if (!hasCathBook) {
_vm->_gfx->drawExtrasImageToScreen(101, _atrusJournalRect1);
} else if (!hasTrapBook) {
_vm->_gfx->drawExtrasImageToScreen(101, _atrusJournalRect2);
_vm->_gfx->drawExtrasImageToScreen(102, _cathJournalRect2);
} else {
_vm->_gfx->drawExtrasImageToScreen(101, _atrusJournalRect3);
_vm->_gfx->drawExtrasImageToScreen(102, _cathJournalRect3);
_vm->_gfx->drawExtrasImageToScreen(100, _trapBookRect3);
}
}
}
void RivenInventory::clearArea() {
// Clear the inventory area
static const Common::Rect inventoryRect = Common::Rect(0, 392, 608, 436);
// Lock the screen
Graphics::Surface *screen = _vm->_system->lockScreen();
// Fill the inventory area with black
screen->fillRect(inventoryRect, screen->format.RGBToColor(0, 0, 0));
_vm->_system->unlockScreen();
}
void RivenInventory::checkClick(const Common::Point &mousePos) {
if (!isVisible()) {
return; // Don't even bother.
}
// In the demo, check if we've clicked the exit button
if (_vm->getFeatures() & GF_DEMO) {
if (_demoExitRect.contains(mousePos)) {
if (_vm->getStack()->getId() == kStackAspit && _vm->getCard()->getId() == 1) {
// From the main menu, go to the "quit" screen
_vm->changeToCard(12);
} else if (_vm->getStack()->getId() == kStackAspit && _vm->getCard()->getId() == 12) {
// From the "quit" screen, just quit
_vm->setGameEnded();
} else {
// Otherwise, return to the main menu
if (_vm->getStack()->getId() != kStackAspit)
_vm->changeToStack(kStackAspit);
_vm->changeToCard(1);
}
}
return;
}
// No inventory shown on aspit
if (_vm->getStack()->getId() == kStackAspit)
return;
// Set the return stack/card id's.
_vm->_vars["returnstackid"] = _vm->getStack()->getId();
_vm->_vars["returncardid"] = _vm->getStack()->getCardGlobalId(_vm->getCard()->getId());
// See RivenGraphics::show() for an explanation
// of the variables' meanings.
bool hasCathBook = _vm->_vars["rrebel"] == 5 || _vm->_vars["rrebel"] == 6;
bool hasTrapBook = _vm->_vars["atrapbook"] == 1;
// Go to the book if a hotspot contains the mouse
if (!hasCathBook) {
if (_atrusJournalRect1.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(5);
}
} else if (!hasTrapBook) {
if (_atrusJournalRect2.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(5);
} else if (_cathJournalRect2.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(6);
}
} else {
if (_atrusJournalRect3.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(5);
} else if (_cathJournalRect3.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(6);
} else if (_trapBookRect3.contains(mousePos)) {
_vm->changeToStack(kStackAspit);
_vm->changeToCard(7);
}
}
}
void RivenInventory::backFromItemScript() const {
RivenScriptPtr stopSoundScript = _vm->_scriptMan->createScriptFromData(1, kRivenCommandStopSound, 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
RivenCommand *back = new RivenStackChangeCommand(_vm, backStackId, backCardId, true);
RivenScriptPtr backScript = _vm->_scriptMan->createScriptWithCommand(back);
_vm->_scriptMan->runScript(backScript, true);
}
bool RivenInventory::isVisible() const {
if (_forceVisible) {
return true;
}
if (_forceHidden) {
return false;
}
if (_vm->getFeatures() & GF_DEMO) {
// The inventory is always visible in the demo
return true;
}
// We don't want to show the inventory on setup screens or in other journals.
if (_vm->getStack()->getId() == kStackAspit)
return false;
// We don't want to show the inventory while scripts are running
if (_vm->_scriptMan->runningQueuedScripts())
return false;
Common::Point mouse = _vm->getStack()->getMousePosition();
return mouse.y >= 392;
}
void RivenInventory::onFrame() {
bool visible = isVisible();
if (visible && !_inventoryDrawn) {
draw();
_inventoryDrawn = true;
} else if (!visible && _inventoryDrawn) {
clearArea();
_inventoryDrawn = false;
}
}
void RivenInventory::forceVisible(bool visible) {
_forceVisible = visible;
}
void RivenInventory::forceHidden(bool hidden) {
_forceHidden = hidden;
}
} // End of namespace Mohawk
|