diff options
author | Borja Lorente | 2016-08-07 14:08:29 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-14 19:01:01 +0200 |
commit | 0b36a77af42868edaab4434215bbae5d8c3a5e2f (patch) | |
tree | 3cc59a41fe002dddff012757a91437eb4cab1552 | |
parent | 5fade27a0cbac0ac8014bfff9a14d112baf3f7cd (diff) | |
download | scummvm-rg350-0b36a77af42868edaab4434215bbae5d8c3a5e2f.tar.gz scummvm-rg350-0b36a77af42868edaab4434215bbae5d8c3a5e2f.tar.bz2 scummvm-rg350-0b36a77af42868edaab4434215bbae5d8c3a5e2f.zip |
MACVENTURE: Refactor dragging code
-rw-r--r-- | engines/macventure/gui.cpp | 57 | ||||
-rw-r--r-- | engines/macventure/gui.h | 20 |
2 files changed, 38 insertions, 39 deletions
diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp index 4c69923672..17d31d824d 100644 --- a/engines/macventure/gui.cpp +++ b/engines/macventure/gui.cpp @@ -904,12 +904,14 @@ WindowReference Gui::findWindowAtPoint(Common::Point point) { return kNoWindow; } -Common::Point Gui::getWindowSurfacePos(WindowReference reference) { +Common::Point Gui::getGlobalScrolledSurfacePosition(WindowReference reference) { const WindowData &data = getWindowData(reference); BorderBounds border = borderBounds(data.type); Graphics::MacWindow *win = findWindow(reference); if (!win) return Common::Point(0, 0); - return Common::Point(win->getDimensions().left + border.leftOffset, win->getDimensions().top + border.topOffset); + return Common::Point( + win->getDimensions().left + border.leftOffset - data.scrollPos.x, + win->getDimensions().top + border.topOffset - data.scrollPos.y); } WindowData & Gui::findWindowData(WindowReference reference) { @@ -990,7 +992,7 @@ void Gui::checkSelect(const WindowData &data, Common::Point pos, const Common::R } } if (child != 0) { - selectDraggable(child, ref, pos, data.scrollPos); + selectDraggable(child, ref, pos); bringToFront(ref); } } @@ -1014,29 +1016,30 @@ bool Gui::isRectInsideObject(Common::Rect target, ObjID obj) { return _assets[obj]->isRectInside(intersection); } -void Gui::selectDraggable(ObjID child, WindowReference origin, Common::Point click, Common::Point scroll) { +void Gui::selectDraggable(ObjID child, WindowReference origin, Common::Point click) { if (_engine->isObjClickable(child) && _draggedObj.id == 0) { _draggedObj.hasMoved = false; _draggedObj.id = child; _draggedObj.startWin = origin; - _draggedObj.mouseOffset = (_engine->getObjPosition(child) + getWindowSurfacePos(origin)) - click - scroll; + Common::Point localizedClick = click - getGlobalScrolledSurfacePosition(origin); + _draggedObj.mouseOffset = _engine->getObjPosition(child) - localizedClick; _draggedObj.pos = click + _draggedObj.mouseOffset; _draggedObj.startPos = _draggedObj.pos; } } -void Gui::handleDragRelease(Common::Point pos, bool shiftPressed, bool isDoubleClick) { - +void Gui::handleDragRelease(bool shiftPressed, bool isDoubleClick) { if (_draggedObj.id != 0) { - WindowReference destinationWindow = findWindowAtPoint(pos); + WindowReference destinationWindow = findWindowAtPoint(_draggedObj.pos); if (destinationWindow == kNoWindow) return; if (_draggedObj.hasMoved) { - ObjID destObject = getWindowData(destinationWindow).objRef; - pos -= (_draggedObj.startPos - _draggedObj.mouseOffset); - pos = localize(pos, _draggedObj.startWin, destinationWindow); - debug("drop the object %d at obj %d, pos (%d, %d)", _draggedObj.id, destObject, pos.x, pos.y); + const WindowData &destinationWindowData = getWindowData(destinationWindow); + ObjID destObject = destinationWindowData.objRef; + Common::Point dropPosition = _draggedObj.pos - _draggedObj.startPos; + dropPosition = localizeTravelledDistance(dropPosition, _draggedObj.startWin, destinationWindow); + debug(3, "drop the object %d at obj %d, pos (%d, %d)", _draggedObj.id, destObject, dropPosition.x, dropPosition.y); - _engine->handleObjectDrop(_draggedObj.id, pos, destObject); + _engine->handleObjectDrop(_draggedObj.id, dropPosition, destObject); } _engine->handleObjectSelect(_draggedObj.id, destinationWindow, shiftPressed, isDoubleClick); _draggedObj.id = 0; @@ -1050,17 +1053,13 @@ Common::Rect Gui::calculateClickRect(Common::Point clickPos, Common::Rect window return Common::Rect(left - kCursorWidth, top - kCursorHeight, left + kCursorWidth, top + kCursorHeight); } -Common::Point Gui::localize(Common::Point point, WindowReference origin, WindowReference target) { - Graphics::MacWindow *oriWin = findWindow(origin); - Graphics::MacWindow *destWin = findWindow(target); +Common::Point Gui::localizeTravelledDistance(Common::Point point, WindowReference origin, WindowReference target) { if (origin != target) { // ori.local to global - point.x += oriWin->getDimensions().left; - point.y += oriWin->getDimensions().top; - if (destWin) { + point += getGlobalScrolledSurfacePosition(origin); + if (findWindow(target)) { // dest.globalToLocal - point.x -= destWin->getDimensions().left; - point.y -= destWin->getDimensions().top; + point -= getGlobalScrolledSurfacePosition(target); } } return point; @@ -1374,28 +1373,28 @@ bool Gui::processInventoryEvents(WindowClick click, Common::Event & event) { return true; } -void Gui::selectForDrag(Common::Point pos) { - WindowReference ref = findWindowAtPoint(pos); +void Gui::selectForDrag(Common::Point cursorPosition) { + WindowReference ref = findWindowAtPoint(cursorPosition); if (ref == kNoWindow) return; Graphics::MacWindow *win = findWindow(ref); WindowData &data = findWindowData((WindowReference) ref); - Common::Rect clickRect = calculateClickRect(pos + data.scrollPos, win->getDimensions()); - checkSelect(data, pos, clickRect, (WindowReference)ref); + Common::Rect clickRect = calculateClickRect(cursorPosition + data.scrollPos, win->getDimensions()); + checkSelect(data, cursorPosition, clickRect, (WindowReference)ref); } -void Gui::handleSingleClick(Common::Point pos) { +void Gui::handleSingleClick() { debug("Single Click"); // HACK THERE HAS TO BE A MORE ELEGANT WAY if (_dialog) return; - handleDragRelease(pos, false, false); + handleDragRelease(false, false); } -void Gui::handleDoubleClick(Common::Point pos) { +void Gui::handleDoubleClick() { debug("Double Click"); if (_dialog) return; - handleDragRelease(pos, false, true); + handleDragRelease(false, true); } void Gui::ensureAssetLoaded(ObjID obj) { diff --git a/engines/macventure/gui.h b/engines/macventure/gui.h index 8155fb50d1..c7fb1c74ac 100644 --- a/engines/macventure/gui.h +++ b/engines/macventure/gui.h @@ -130,9 +130,9 @@ public: const Graphics::Font& getCurrentFont(); // Clicks - void selectForDrag(Common::Point pos); - void handleSingleClick(Common::Point pos); - void handleDoubleClick(Common::Point pos); + void selectForDrag(Common::Point cursorPosition); + void handleSingleClick(); + void handleDoubleClick(); // Modifiers void bringToFront(WindowReference window); @@ -227,7 +227,7 @@ private: // Methods // Finders WindowReference findWindowAtPoint(Common::Point point); - Common::Point getWindowSurfacePos(WindowReference reference); + Common::Point getGlobalScrolledSurfacePosition(WindowReference reference); WindowData& findWindowData(WindowReference reference); Graphics::MacWindow *findWindow(WindowReference reference); @@ -235,10 +235,10 @@ private: // Methods void checkSelect(const WindowData &data, Common::Point pos, const Common::Rect &clickRect, WindowReference ref); bool canBeSelected(ObjID obj, const Common::Rect &clickRect, WindowReference ref); bool isRectInsideObject(Common::Rect target, ObjID obj); - void selectDraggable(ObjID child, WindowReference origin, Common::Point startPos, Common::Point scroll); - void handleDragRelease(Common::Point pos, bool shiftPressed, bool isDoubleClick); + void selectDraggable(ObjID child, WindowReference origin, Common::Point startPos); + void handleDragRelease(bool shiftPressed, bool isDoubleClick); Common::Rect calculateClickRect(Common::Point clickPos, Common::Rect windowBounds); - Common::Point localize(Common::Point point, WindowReference origin, WindowReference target); + Common::Point localizeTravelledDistance(Common::Point point, WindowReference origin, WindowReference target); void removeInventoryWindow(WindowReference ref); void ensureAssetLoaded(ObjID obj); @@ -334,7 +334,7 @@ private: g_system->getTimerManager()->installTimerProc(&cursorTimerHandler, 300000, this, "macVentureCursor"); break; case kCursorSCSink: - _gui->handleSingleClick(_pos); + _gui->handleSingleClick(); changeState(kTickCol); break; default: @@ -350,13 +350,13 @@ private: g_system->getTimerManager()->removeTimerProc(&cursorTimerHandler); break; case kCursorSCDrag: - _gui->handleSingleClick(_pos); + _gui->handleSingleClick(); break; case kCursorDCStart: g_system->getTimerManager()->removeTimerProc(&cursorTimerHandler); break; case kCursorDCDo: - _gui->handleDoubleClick(_pos); + _gui->handleDoubleClick(); break; default: break; |