tibia-client/modules/old/game/map.lua

58 lines
1.7 KiB
Lua
Raw Normal View History

2012-01-20 02:12:26 +01:00
function UIMap:onDragEnter(mousePos)
2012-01-20 03:33:11 +01:00
local tile = self:getTile(mousePos)
2012-01-20 02:12:26 +01:00
if not tile then return false end
2012-01-20 02:12:26 +01:00
local thing = tile:getTopMoveThing()
if not thing then return false end
2012-01-20 03:33:11 +01:00
2012-01-26 02:11:05 +01:00
self.parsed = false
2012-01-20 02:12:26 +01:00
self.currentDragThing = thing
Mouse.setTargetCursor()
2012-01-20 02:12:26 +01:00
return true
end
2012-02-07 03:06:48 +01:00
function UIMap:onDragLeave(droppedWidget, mousePos)
2012-01-26 02:11:05 +01:00
if not self.parsed then
self.currentDragThing = nil
end
Mouse.restoreCursor()
2012-01-20 02:12:26 +01:00
return true
end
function UIMap:onDrop(widget, mousePos)
if not widget or not widget.currentDragThing then return false end
local tile = self:getTile(mousePos)
if not tile then return false end
local count = widget.currentDragThing:getCount()
2012-02-07 03:06:48 +01:00
if widget.currentDragThing:isStackable() and count > 1 then
2012-01-26 02:11:05 +01:00
widget.parsed = true
local moveWindow = displayUI('/game/movewindow.otui')
local spinbox = moveWindow:getChildById('spinbox')
spinbox:setMaximum(count)
2012-01-26 02:11:05 +01:00
spinbox:setMinimum(1)
spinbox:setCurrentIndex(count)
2012-01-26 02:11:05 +01:00
local okButton = moveWindow:getChildById('buttonOk')
2012-02-08 23:58:27 +01:00
okButton.onClick = function()
g_game.move(widget.currentDragThing, tile:getPosition(), spinbox:getCurrentIndex())
okButton:getParent():destroy()
widget.currentDragThing = nil
end
2012-01-26 02:11:05 +01:00
moveWindow.onEnter = okButton.onClick
else
2012-02-08 22:23:15 +01:00
g_game.move(widget.currentDragThing, tile:getPosition(), 1)
2012-01-26 02:11:05 +01:00
end
2012-01-20 02:12:26 +01:00
return true
end
2012-01-09 21:54:37 +01:00
function UIMap:onMouseRelease(mousePosition, mouseButton)
local tile = self:getTile(mousePosition)
2012-02-08 22:23:15 +01:00
if tile and g_game.processMouseAction(mousePosition, mouseButton, nil, tile:getTopLookThing(), tile:getTopUseThing(), tile:getTopCreature(), tile:getTopMultiUseThing()) then return true end
2012-01-09 19:06:16 +01:00
return false
end
2012-01-20 02:12:26 +01:00