aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/widget_inventory.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-07-18 17:41:10 -0400
committerPaul Gilbert2015-07-18 17:41:10 -0400
commit1844f8ca3d6258c8b02402eab877e9ae0a556005 (patch)
treeaa61d19097bb69931faa31092484a8089c8b5aec /engines/sherlock/tattoo/widget_inventory.cpp
parent3a4b478d983dd67db92b6d12a6042448f6eafc22 (diff)
downloadscummvm-rg350-1844f8ca3d6258c8b02402eab877e9ae0a556005.tar.gz
scummvm-rg350-1844f8ca3d6258c8b02402eab877e9ae0a556005.tar.bz2
scummvm-rg350-1844f8ca3d6258c8b02402eab877e9ae0a556005.zip
SHERLOCK: RT: Fix event handling for inventory Verbs menu
Diffstat (limited to 'engines/sherlock/tattoo/widget_inventory.cpp')
-rw-r--r--engines/sherlock/tattoo/widget_inventory.cpp54
1 files changed, 25 insertions, 29 deletions
diff --git a/engines/sherlock/tattoo/widget_inventory.cpp b/engines/sherlock/tattoo/widget_inventory.cpp
index f299cc1126..8607e875e9 100644
--- a/engines/sherlock/tattoo/widget_inventory.cpp
+++ b/engines/sherlock/tattoo/widget_inventory.cpp
@@ -382,8 +382,7 @@ void WidgetInventoryVerbs::handleEvents() {
if (_outsideMenu && !innerBounds.contains(mousePos)) {
banishWindow();
_owner->_invVerbMode = 0;
- }
- else if (innerBounds.contains(mousePos)) {
+ } else if (innerBounds.contains(mousePos)) {
_outsideMenu = false;
// Check if they are trying to solve the Foolscap puzzle, or looking at the completed puzzle
@@ -407,16 +406,14 @@ void WidgetInventoryVerbs::handleEvents() {
scene.doBgAnim();
vm.doHangManPuzzle();
- }
- else if (_invVerbSelect == 0) {
+ } else if (_invVerbSelect == 0) {
// They have released the mouse on the Look Verb command, so Look at the inventory item
ui._invLookFlag = true;
inv.freeInv();
ui._windowOpen = false;
ui._lookPos = mousePos;
ui.printObjectDesc(inv[_owner->_invSelect]._examine, true);
- }
- else {
+ } else {
// Clear the window
banishWindow();
_owner->_invVerbMode = 3;
@@ -430,32 +427,31 @@ void WidgetInventoryVerbs::handleEvents() {
ui._menuMode = scene._labTableScene ? LAB_MODE : STD_MODE;
events.clearEvents();
ui.checkAction(inv[_owner->_invSelect]._verb, 2000);
- }
- else {
+ } else {
_owner->_invVerb = _inventCommands[_invVerbSelect];
}
- }
- // If we are still in Inventory Mode, setup the graphic to float in front of the mouse cursor
- if (ui._menuMode == INV_MODE) {
- ImageFrame &imgFrame = (*inv._invShapes[_owner->_invSelect - inv._invIndex])[0];
- _owner->_invGraphicBounds = Common::Rect(imgFrame._width, imgFrame._height);
- _owner->_invGraphicBounds.moveTo(mousePos.x - _owner->_invGraphicBounds.width() / 2,
- mousePos.y - _owner->_invGraphicBounds.height() / 2);
-
- // Constrain it to the screen
- if (_owner->_invGraphicBounds.left < 0)
- _owner->_invGraphicBounds.moveTo(0, _owner->_invGraphicBounds.top);
- if (_owner->_invGraphicBounds.top < 0)
- _owner->_invGraphicBounds.moveTo(_owner->_invGraphicBounds.left, 0);
- if (_owner->_invGraphicBounds.right > SHERLOCK_SCREEN_WIDTH)
- _owner->_invGraphicBounds.moveTo(SHERLOCK_SCREEN_WIDTH - _owner->_invGraphicBounds.width(), _owner->_invGraphicBounds.top);
- if (_owner->_invGraphicBounds.bottom > SHERLOCK_SCREEN_HEIGHT)
- _owner->_invGraphicBounds.moveTo(_owner->_invGraphicBounds.left, SHERLOCK_SCREEN_HEIGHT - _owner->_invGraphicBounds.height());
-
- // Make a copy of the inventory image
- _owner->_invGraphic.create(imgFrame._width, imgFrame._height);
- _owner->_invGraphic.blitFrom(imgFrame, Common::Point(0, 0));
+ // If we are still in Inventory Mode, setup the graphic to float in front of the mouse cursor
+ if (ui._menuMode == INV_MODE) {
+ ImageFrame &imgFrame = (*inv._invShapes[_owner->_invSelect - inv._invIndex])[0];
+ _owner->_invGraphicBounds = Common::Rect(imgFrame._width, imgFrame._height);
+ _owner->_invGraphicBounds.moveTo(mousePos.x - _owner->_invGraphicBounds.width() / 2,
+ mousePos.y - _owner->_invGraphicBounds.height() / 2);
+
+ // Constrain it to the screen
+ if (_owner->_invGraphicBounds.left < 0)
+ _owner->_invGraphicBounds.moveTo(0, _owner->_invGraphicBounds.top);
+ if (_owner->_invGraphicBounds.top < 0)
+ _owner->_invGraphicBounds.moveTo(_owner->_invGraphicBounds.left, 0);
+ if (_owner->_invGraphicBounds.right > SHERLOCK_SCREEN_WIDTH)
+ _owner->_invGraphicBounds.moveTo(SHERLOCK_SCREEN_WIDTH - _owner->_invGraphicBounds.width(), _owner->_invGraphicBounds.top);
+ if (_owner->_invGraphicBounds.bottom > SHERLOCK_SCREEN_HEIGHT)
+ _owner->_invGraphicBounds.moveTo(_owner->_invGraphicBounds.left, SHERLOCK_SCREEN_HEIGHT - _owner->_invGraphicBounds.height());
+
+ // Make a copy of the inventory image
+ _owner->_invGraphic.create(imgFrame._width, imgFrame._height);
+ _owner->_invGraphic.blitFrom(imgFrame, Common::Point(0, 0));
+ }
}
}
}