scummvm/scumm/verbs.cpp

317 lines
7.2 KiB
C++
Raw Normal View History

2001-10-09 14:30:12 +00:00
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
* Copyright (C) 2001/2002 The ScummVM project
2001-10-09 14:30:12 +00:00
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
2001-10-09 14:30:12 +00:00
*
*/
#include "stdafx.h"
#include "scumm.h"
#include "object.h"
#include "resource.h"
2002-11-29 15:13:49 +00:00
#include "verbs.h"
2001-10-09 14:30:12 +00:00
void Scumm::redrawVerbs()
{
2001-10-09 14:30:12 +00:00
int i;
for (i = 0; i < _maxVerbs; i++)
2001-10-09 14:30:12 +00:00
drawVerb(i, 0);
verbMouseOver(0);
_verbRedraw = false;
2001-10-09 14:30:12 +00:00
}
void Scumm::checkExecVerbs()
{
int i, over;
2001-10-09 14:30:12 +00:00
VerbSlot *vs;
if (_userPut <= 0 || _mouseButStat == 0)
2001-10-09 14:30:12 +00:00
return;
if (_mouseButStat < MBS_MAX_KEY) {
2001-10-09 14:30:12 +00:00
/* Check keypresses */
2001-10-16 10:01:48 +00:00
vs = &_verbs[1];
for (i = 1; i < _maxVerbs; i++, vs++) {
if (vs->verbid && vs->saveid == 0 && vs->curmode == 1) {
2001-10-09 14:30:12 +00:00
if (_mouseButStat == vs->key) {
runInputScript(1, vs->verbid, 1);
return;
}
}
}
runInputScript(4, _mouseButStat, 1);
} else if (_mouseButStat & MBS_MOUSE_MASK) {
byte code = _mouseButStat & MBS_LEFT_CLICK ? 1 : 2;
2002-07-07 20:25:23 +00:00
if (mouse.y >= virtscr[0].topline && mouse.y < virtscr[0].topline + virtscr[0].height) {
2001-10-09 14:30:12 +00:00
over = checkMouseOver(mouse.x, mouse.y);
if (over != 0) {
runInputScript(1, _verbs[over].verbid, code);
2001-10-09 14:30:12 +00:00
return;
}
runInputScript(2, 0, code);
} else {
over = checkMouseOver(mouse.x, mouse.y);
2002-07-07 20:25:23 +00:00
// FIXME For the future: Indy3 and under inv scrolling
/*
2002-07-07 20:25:23 +00:00
if (over >= 31 && over <= 36)
over += _inventoryOffset;
*/
runInputScript(1, over != 0 ? _verbs[over].verbid : 0, code);
2001-10-09 14:30:12 +00:00
}
}
}
void Scumm::verbMouseOver(int verb)
{
if (_verbMouseOver == verb)
2001-10-09 14:30:12 +00:00
return;
2002-11-29 18:27:35 +00:00
if (_verbs[_verbMouseOver].type != kImageVerbType) {
2001-10-09 14:30:12 +00:00
drawVerb(_verbMouseOver, 0);
_verbMouseOver = verb;
}
2002-11-29 18:27:35 +00:00
if (_verbs[verb].type != kImageVerbType && _verbs[verb].hicolor) {
drawVerb(verb, 1);
2001-10-09 14:30:12 +00:00
_verbMouseOver = verb;
}
}
int Scumm::checkMouseOver(int x, int y)
{
2001-10-09 14:30:12 +00:00
VerbSlot *vs;
int i = _maxVerbs - 1;
2001-10-09 14:30:12 +00:00
2001-10-16 10:01:48 +00:00
vs = &_verbs[i];
2001-10-09 14:30:12 +00:00
do {
2002-07-07 20:25:23 +00:00
if (vs->curmode != 1 || !vs->verbid || vs->saveid || y < vs->y || y >= vs->bottom)
continue;
2001-10-09 14:30:12 +00:00
if (vs->center) {
if (x < -(vs->right - vs->x - vs->x) || x >= vs->right)
continue;
} else {
2001-10-09 14:30:12 +00:00
if (x < vs->x || x >= vs->right)
continue;
}
2001-10-09 14:30:12 +00:00
return i;
} while (--vs, --i);
2001-10-09 14:30:12 +00:00
return 0;
}
2002-12-13 00:52:14 +00:00
void Scumm::drawVerb(int verb, int mode)
{
2001-10-09 14:30:12 +00:00
VerbSlot *vs;
byte tmp;
2002-12-13 00:52:14 +00:00
if (!verb)
2001-10-09 14:30:12 +00:00
return;
2002-12-13 00:52:14 +00:00
vs = &_verbs[verb];
2001-10-09 14:30:12 +00:00
if (!vs->saveid && vs->curmode && vs->verbid) {
2002-11-29 18:27:35 +00:00
if (vs->type == kImageVerbType) {
2002-12-13 00:52:14 +00:00
drawVerbBitmap(verb, vs->x, vs->y);
2001-10-09 14:30:12 +00:00
return;
}
2002-12-13 00:52:14 +00:00
restoreVerbBG(verb);
2001-10-09 14:30:12 +00:00
_string[4].charset = vs->charset_nr;
_string[4].xpos = vs->x;
_string[4].ypos = vs->y;
2002-10-27 09:41:33 +00:00
_string[4].right = _realWidth - 1;
_string[4].center = vs->center;
if (vs->curmode == 2)
_string[4].color = vs->dimcolor;
else if (mode && vs->hicolor)
_string[4].color = vs->hicolor;
else
_string[4].color = vs->color;
// FIXME For the future: Indy3 and under inv scrolling
/*
2002-12-13 00:52:14 +00:00
if (verb >= 31 && verb <= 36)
verb += _inventoryOffset;
2002-07-07 20:25:23 +00:00
*/
2002-12-13 00:52:14 +00:00
_messagePtr = getResourceAddress(rtVerb, verb);
if (!_messagePtr)
return;
2001-10-09 14:30:12 +00:00
assert(_messagePtr);
tmp = _charset._center;
_charset._center = 0;
2001-10-09 14:30:12 +00:00
drawString(4);
_charset._center = tmp;
vs->right = _charset._strRight;
vs->bottom = _charset._strBottom;
vs->oldleft = _charset._strLeft;
vs->oldright = _charset._strRight;
vs->oldtop = _charset._strTop;
vs->oldbottom = _charset._strBottom;
_charset._strLeft = _charset._strRight;
2001-10-09 14:30:12 +00:00
} else {
2002-12-13 00:52:14 +00:00
restoreVerbBG(verb);
2001-10-09 14:30:12 +00:00
}
}
void Scumm::restoreVerbBG(int verb)
{
2001-10-09 14:30:12 +00:00
VerbSlot *vs;
2001-10-16 10:01:48 +00:00
vs = &_verbs[verb];
2001-10-09 14:30:12 +00:00
if (vs->oldleft != -1) {
2002-11-29 15:13:49 +00:00
restoreBG(vs->oldleft, vs->oldtop, vs->oldright, vs->oldbottom, vs->bkcolor);
2001-10-09 14:30:12 +00:00
vs->oldleft = -1;
}
}
2002-12-13 00:52:14 +00:00
void Scumm::drawVerbBitmap(int verb, int x, int y)
{
2001-10-09 14:30:12 +00:00
VirtScreen *vs;
VerbSlot *vst;
byte twobufs, *imptr;
int ydiff, xstrip;
int imgw, imgh;
int i, tmp;
2001-10-26 17:34:50 +00:00
byte *obim;
ImageHeader *imhd;
2002-02-15 17:17:35 +00:00
uint32 size;
2001-10-09 14:30:12 +00:00
if ((vs = findVirtScreen(y)) == NULL)
2001-10-09 14:30:12 +00:00
return;
2001-10-26 17:34:50 +00:00
gdi.disableZBuffer();
2001-10-09 14:30:12 +00:00
twobufs = vs->alloctwobuffers;
vs->alloctwobuffers = 0;
xstrip = x >> 3;
2001-10-09 14:30:12 +00:00
ydiff = y - vs->topline;
2002-12-13 00:52:14 +00:00
obim = getResourceAddress(rtVerb, verb);
if (_features & GF_SMALL_HEADER) {
int obj;
obj = READ_LE_UINT16(obim + 6);
size = READ_LE_UINT32(obim);
imgw = (*(obim + size + 11));
imgh = (*(obim + size + 17)) >> 3;
imptr = (obim + 8);
} else {
imhd = (ImageHeader *)findResourceData(MKID('IMHD'), obim);
if (_features & GF_AFTER_V7) {
imgw = READ_LE_UINT16(&imhd->v7.width) >> 3;
imgh = READ_LE_UINT16(&imhd->v7.height) >> 3;
} else {
imgw = READ_LE_UINT16(&imhd->old.width) >> 3;
imgh = READ_LE_UINT16(&imhd->old.height) >> 3;
}
imptr = findResource(MKID('IM01'), obim);
if (!imptr)
2002-12-13 00:52:14 +00:00
error("No image for verb %d", verb);
}
for (i = 0; i < imgw; i++) {
2001-10-26 17:34:50 +00:00
tmp = xstrip + i;
if (tmp < gdi._numStrips)
gdi.drawBitmap(imptr, vs, tmp, ydiff, imgh << 3, i, 1, Gdi::dbAllowMaskOr);
2001-10-09 14:30:12 +00:00
}
2002-12-13 00:52:14 +00:00
vst = &_verbs[verb];
2002-05-15 10:25:00 +00:00
vst->right = vst->x + imgw * 8 - 1;
2002-07-07 20:25:23 +00:00
vst->bottom = vst->y + imgh * 8 - 1;
2001-10-09 14:30:12 +00:00
vst->oldleft = vst->x;
vst->oldright = vst->right;
vst->oldtop = vst->y;
vst->oldbottom = vst->bottom;
2001-10-26 17:34:50 +00:00
gdi.enableZBuffer();
2001-10-09 14:30:12 +00:00
vs->alloctwobuffers = twobufs;
}
int Scumm::getVerbSlot(int id, int mode)
{
2001-10-09 14:30:12 +00:00
int i;
for (i = 1; i < _maxVerbs; i++) {
2001-10-16 10:01:48 +00:00
if (_verbs[i].verbid == id && _verbs[i].saveid == mode) {
2001-10-09 14:30:12 +00:00
return i;
}
}
return 0;
}
void Scumm::killVerb(int slot)
{
2001-10-09 14:30:12 +00:00
VerbSlot *vs;
if (slot == 0)
2001-10-09 14:30:12 +00:00
return;
2001-10-16 10:01:48 +00:00
vs = &_verbs[slot];
2001-10-09 14:30:12 +00:00
vs->verbid = 0;
vs->curmode = 0;
nukeResource(rtVerb, slot);
2001-10-09 14:30:12 +00:00
if (vs->saveid == 0) {
2001-10-09 14:30:12 +00:00
drawVerb(slot, 0);
verbMouseOver(0);
}
vs->saveid = 0;
}
void Scumm::setVerbObject(uint room, uint object, uint verb)
{
byte *obimptr;
byte *obcdptr;
2002-02-15 17:17:35 +00:00
uint32 size, size2;
FindObjectInRoom foir;
int i;
2001-10-09 14:30:12 +00:00
if (whereIsObject(object) == WIO_FLOBJECT)
2001-10-09 14:30:12 +00:00
error("Can't grab verb image from flobject");
if (_features & GF_SMALL_HEADER) {
for (i = _numObjectsInRoom; i > 0; i--) {
if (_objs[i].obj_nr == object) {
findObjectInRoom(&foir, foImageHeader, object, room);
size = READ_LE_UINT32(foir.obim);
2002-02-15 17:17:35 +00:00
obcdptr = getResourceAddress(rtRoom, room) + getOBCDOffs(object);
size2 = READ_LE_UINT32(obcdptr);
createResource(rtVerb, verb, size + size2);
obimptr = getResourceAddress(rtRoom, room) - foir.roomptr + foir.obim;
2002-02-15 17:17:35 +00:00
obcdptr = getResourceAddress(rtRoom, room) + getOBCDOffs(object);
memcpy(getResourceAddress(rtVerb, verb), obimptr, size);
memcpy(getResourceAddress(rtVerb, verb) + size, obcdptr, size2);
}
}
} else {
findObjectInRoom(&foir, foImageHeader, object, room);
size = READ_BE_UINT32_UNALIGNED(foir.obim + 4);
createResource(rtVerb, verb, size);
obimptr = getResourceAddress(rtRoom, room) - foir.roomptr + foir.obim;
memcpy(getResourceAddress(rtVerb, verb), obimptr, size);
}
2001-10-09 14:30:12 +00:00
}