aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-21 23:54:39 +0000
committerMax Horn2003-05-21 23:54:39 +0000
commitb12d741ac118eabbdbe7e38383933e0337fc002a (patch)
treede59aafa6c5d73ce1ef77178530c083d80f7ff41 /scumm/verbs.cpp
parentb958c0a0024e449ed897e22d37b670ddfb1f61da (diff)
downloadscummvm-rg350-b12d741ac118eabbdbe7e38383933e0337fc002a.tar.gz
scummvm-rg350-b12d741ac118eabbdbe7e38383933e0337fc002a.tar.bz2
scummvm-rg350-b12d741ac118eabbdbe7e38383933e0337fc002a.zip
cleaned up V2 input code
svn-id: r7811
Diffstat (limited to 'scumm/verbs.cpp')
-rw-r--r--scumm/verbs.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 5de65a9e3a..cb9885f252 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -39,8 +39,7 @@ void Scumm::checkV2Inventory(int x, int y) {
object = findInventory(_scummVars[VAR_EGO], object+1);
if (object > 0) {
- _scummVars[35] = object;
- runScript(4, 0, 0, 0);
+ runInputScript(3, object, 0);
}
}
@@ -80,14 +79,14 @@ void Scumm::redrawV2Inventory() {
if (curInventoryCount > 0) { // Draw Up Arrow
_string[1].xpos = 145;
_string[1].ypos = virtscr[2].topline + 32;
- _messagePtr = (const byte *)"U";
+ _messagePtr = (const byte *)"\1\2";
drawString(1);
}
if (items == 4) { // Draw Down Arrow
_string[1].xpos = 145;
_string[1].ypos = virtscr[2].topline + 47;
- _messagePtr = (const byte *)"D";
+ _messagePtr = (const byte *)"\3\4";
drawString(1);
}
}
@@ -124,14 +123,17 @@ void Scumm::checkExecVerbs() {
}
runInputScript(4, _mouseButStat, 1);
} else if (_mouseButStat & MBS_MOUSE_MASK) {
+ VirtScreen *zone = findVirtScreen(_mouse.y);
byte code = _mouseButStat & MBS_LEFT_CLICK ? 1 : 2;
- if (_mouse.y >= virtscr[0].topline && _mouse.y < virtscr[0].topline + virtscr[0].height) {
+ if (zone->number == 0) {
over = checkMouseOver(_mouse.x, _mouse.y);
if (over != 0) {
runInputScript(1, _verbs[over].verbid, code);
return;
}
runInputScript(2, 0, code);
+ } else if (_features & GF_AFTER_V2 && zone->number == 2 && _mouse.y > zone->topline + 32) {
+ checkV2Inventory(_mouse.x, _mouse.y);
} else {
over = checkMouseOver(_mouse.x, _mouse.y);
@@ -179,9 +181,6 @@ int Scumm::checkMouseOver(int x, int y) {
return i;
} while (--vs, --i);
- if (_features & GF_AFTER_V2)
- checkV2Inventory(x, y);
-
return 0;
}