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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
/* 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 "parallaction/input.h"
#include "parallaction/parallaction.h"
#include "common/textconsole.h"
namespace Parallaction {
/*
#define INVENTORYITEM_PITCH 32
#define INVENTORYITEM_WIDTH 24
#define INVENTORYITEM_HEIGHT 24
#define INVENTORY_MAX_ITEMS 30
#define INVENTORY_ITEMS_PER_LINE 5
#define INVENTORY_LINES 6
#define INVENTORY_WIDTH (INVENTORY_ITEMS_PER_LINE*INVENTORYITEM_WIDTH)
#define INVENTORY_HEIGHT (INVENTORY_LINES*INVENTORYITEM_HEIGHT)
*/
InventoryItem _verbs_NS[] = {
{ 1, kZoneDoor },
{ 3, kZoneExamine },
{ 2, kZoneGet },
{ 4, kZoneSpeak },
{ 0, 0 }
};
InventoryItem _verbs_BR[] = {
{ 1, kZoneBox },
{ 2, kZoneGet },
{ 3, kZoneExamine },
{ 4, kZoneSpeak },
{ 0, 0 }
};
InventoryProperties _invProps_NS = {
32, // INVENTORYITEM_PITCH
24, // INVENTORYITEM_WIDTH
24, // INVENTORYITEM_HEIGHT
30, // INVENTORY_MAX_ITEMS
5, // INVENTORY_ITEMS_PER_LINE
6, // INVENTORY_LINES
5 * 24, // INVENTORY_WIDTH =(INVENTORY_ITEMS_PER_LINE*INVENTORYITEM_WIDTH)
6 * 24 // INVENTORY_HEIGHT = (INVENTORY_LINES*INVENTORYITEM_HEIGHT)
};
InventoryProperties _invProps_BR = {
51, // INVENTORYITEM_PITCH
51, // INVENTORYITEM_WIDTH
51, // INVENTORYITEM_HEIGHT
48, // INVENTORY_MAX_ITEMS
6, // INVENTORY_ITEMS_PER_LINE
8, // INVENTORY_LINES
6 * 51, // INVENTORY_WIDTH =(INVENTORY_ITEMS_PER_LINE*INVENTORYITEM_WIDTH)
8 * 51 // INVENTORY_HEIGHT = (INVENTORY_LINES*INVENTORYITEM_HEIGHT)
};
int16 Parallaction::getHoverInventoryItem(int16 x, int16 y) {
return _inventoryRenderer->hitTest(Common::Point(x,y));
}
void Parallaction::highlightInventoryItem(ItemPosition pos) {
static ItemPosition lastHighlightedPos = -1;
if (lastHighlightedPos != -1) {
_inventoryRenderer->highlightItem(lastHighlightedPos, 12);
}
if (pos != -1) {
_inventoryRenderer->highlightItem(pos, 19);
}
lastHighlightedPos = pos;
}
int Parallaction::addInventoryItem(ItemName item) {
return _inventory->addItem(item);
}
int Parallaction::addInventoryItem(ItemName item, uint32 value) {
return _inventory->addItem(item, value);
}
void Parallaction::dropItem(uint16 v) {
_inventory->removeItem(v);
}
bool Parallaction::isItemInInventory(int32 v) {
return (_inventory->findItem(v) != -1);
}
const InventoryItem* Parallaction::getInventoryItem(int16 pos) {
return _inventory->getItem(pos);
}
int16 Parallaction::getInventoryItemIndex(int16 pos) {
return _inventory->getItemName(pos);
}
void Parallaction::cleanInventory(bool keepVerbs) {
_inventory->clear(keepVerbs);
}
void Parallaction::openInventory() {
_inventoryRenderer->showInventory();
}
void Parallaction::closeInventory() {
_inventoryRenderer->hideInventory();
}
InventoryRenderer::InventoryRenderer(Parallaction *vm, InventoryProperties *props, Inventory *inv) : _vm(vm), _props(props), _inv(inv) {
_surf.create(_props->_width, _props->_height, Graphics::PixelFormat::createFormatCLUT8());
}
InventoryRenderer::~InventoryRenderer() {
_surf.free();
}
void InventoryRenderer::showInventory() {
if (!_inv)
error("InventoryRenderer not bound to inventory");
uint16 lines = getNumLines();
Common::Point p;
_vm->_input->getCursorPos(p);
_pos.x = CLIP((int)(p.x - (_props->_width / 2)), 0, (int)(_vm->_screenWidth - _props->_width));
_pos.y = CLIP((int)(p.y - 2 - (lines * _props->_itemHeight)), 0, (int)(_vm->_screenHeight - lines * _props->_itemHeight));
refresh();
}
void InventoryRenderer::hideInventory() {
if (!_inv)
error("InventoryRenderer not bound to inventory");
}
void InventoryRenderer::getRect(Common::Rect& r) const {
r.setWidth(_props->_width);
r.setHeight(_props->_itemHeight * getNumLines());
r.moveTo(_pos);
}
ItemPosition InventoryRenderer::hitTest(const Common::Point &p) const {
Common::Rect r;
getRect(r);
if (!r.contains(p))
return -1;
return ((p.x - _pos.x) / _props->_itemWidth) + (_props->_itemsPerLine * ((p.y - _pos.y) / _props->_itemHeight));
}
void InventoryRenderer::drawItem(ItemPosition pos, ItemName name) {
Common::Rect r;
getItemRect(pos, r);
byte* d = (byte *)_surf.getBasePtr(r.left, r.top);
drawItem(name, d, _surf.pitch);
}
void InventoryRenderer::drawItem(ItemName name, byte *buffer, uint pitch) {
byte* s = _vm->_objects->getData(name);
byte* d = buffer;
for (uint i = 0; i < _props->_itemHeight; i++) {
memcpy(d, s, _props->_itemWidth);
s += _props->_itemPitch;
d += pitch;
}
}
int16 InventoryRenderer::getNumLines() const {
int16 num = _inv->getNumItems();
return (num / _props->_itemsPerLine) + ((num % _props->_itemsPerLine) > 0 ? 1 : 0);
}
void InventoryRenderer::refresh() {
for (uint16 i = 0; i < _props->_maxItems; i++) {
ItemName name = _inv->getItemName(i);
drawItem(i, name);
}
}
void InventoryRenderer::highlightItem(ItemPosition pos, byte color) {
if (pos == -1)
return;
Common::Rect r;
getItemRect(pos, r);
if (color != 12)
color = 19;
_surf.frameRect(r, color);
}
void InventoryRenderer::getItemRect(ItemPosition pos, Common::Rect &r) {
r.setHeight(_props->_itemHeight);
r.setWidth(_props->_itemWidth);
uint16 line = pos / _props->_itemsPerLine;
uint16 col = pos % _props->_itemsPerLine;
r.moveTo(col * _props->_itemWidth, line * _props->_itemHeight);
}
Inventory::Inventory(int maxItems, InventoryItem *verbs) : _numItems(0), _maxItems(maxItems) {
_items = (InventoryItem *)calloc(_maxItems, sizeof(InventoryItem));
int i = 0;
for ( ; verbs[i]._id; i++) {
addItem(verbs[i]._id, verbs[i]._index);
}
_numVerbs = i;
}
Inventory::~Inventory() {
free(_items);
}
ItemPosition Inventory::addItem(ItemName name, uint32 value) {
debugC(1, kDebugInventory, "addItem(%i, %i)", name, value);
if (_numItems == _maxItems) {
debugC(3, kDebugInventory, "addItem: inventory is full");
return -1;
}
// NOTE: items whose name == 0 aren't really inventory items,
// but the engine expects the inventory to accept them as valid.
// This nasty trick has been discovered because of regression
// after r29060.
if (name == 0)
return 0;
_items[_numItems]._id = value;
_items[_numItems]._index = name;
_numItems++;
debugC(3, kDebugInventory, "addItem: done");
return _numItems;
}
ItemPosition Inventory::addItem(ItemName name) {
return addItem(name, MAKE_INVENTORY_ID(name));
}
ItemPosition Inventory::findItem(ItemName name) const {
for (ItemPosition slot = 0; slot < _numItems; slot++) {
if (name == _items[slot]._index)
return slot;
}
return -1;
}
void Inventory::removeItem(ItemName name) {
debugC(1, kDebugInventory, "removeItem(%i)", name);
ItemPosition pos = findItem(name);
if (pos == -1) {
debugC(3, kDebugInventory, "removeItem: can't find item, nothing to remove");
return;
}
_numItems--;
if (_numItems != pos) {
memmove(&_items[pos], &_items[pos+1], (_numItems - pos) * sizeof(InventoryItem));
}
_items[_numItems]._id = 0;
_items[_numItems]._index = 0;
debugC(3, kDebugInventory, "removeItem: item removed");
}
void Inventory::clear(bool keepVerbs) {
debugC(1, kDebugInventory, "clearInventory()");
uint first = (keepVerbs ? _numVerbs : 0);
for (uint16 slot = first; slot < _numItems; slot++) {
_items[slot]._id = 0;
_items[slot]._index = 0;
}
_numItems = first;
}
ItemName Inventory::getItemName(ItemPosition pos) const {
return (pos >= 0 && pos < _maxItems) ? _items[pos]._index : 0;
}
const InventoryItem* Inventory::getItem(ItemPosition pos) const {
return &_items[pos];
}
void Parallaction_ns::initInventory() {
_inventory = new Inventory(_invProps_NS._maxItems, _verbs_NS);
assert(_inventory);
_inventoryRenderer = new InventoryRenderer(this, &_invProps_NS, _inventory);
assert(_inventoryRenderer);
}
void Parallaction_br::initInventory() {
_inventory = new Inventory(_invProps_BR._maxItems, _verbs_BR);
assert(_inventory);
_inventoryRenderer = new InventoryRenderer(this, &_invProps_BR, _inventory);
assert(_inventoryRenderer);
_charInventories[0] = new Inventory(_invProps_BR._maxItems, _verbs_BR);
_charInventories[1] = new Inventory(_invProps_BR._maxItems, _verbs_BR);
_charInventories[2] = new Inventory(_invProps_BR._maxItems, _verbs_BR);
}
void Parallaction_ns::destroyInventory() {
delete _inventoryRenderer;
delete _inventory;
_inventory = 0;
_inventoryRenderer = 0;
}
void Parallaction_br::destroyInventory() {
delete _inventoryRenderer;
delete _inventory;
_inventory = 0;
_inventoryRenderer = 0;
delete _charInventories[0];
delete _charInventories[1];
delete _charInventories[2];
_charInventories[0] = 0;
_charInventories[1] = 0;
_charInventories[2] = 0;
}
} // namespace Parallaction
|