tibia-client/modules/game_interface/widgets/uigamemap.lua

117 lines
2.9 KiB
Lua
Raw Normal View History

UIGameMap = extends(UIMap)
function UIGameMap.create()
local gameMap = UIGameMap.internalCreate()
gameMap:setKeepAspectRatio(true)
gameMap:setVisibleDimension({width = 15, height = 11})
gameMap:setDrawLights(true)
return gameMap
end
function UIGameMap: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-20 02:12:26 +01:00
self.currentDragThing = thing
2013-01-25 14:17:51 +01:00
2013-01-25 14:47:51 +01:00
g_mouse.pushCursor('target')
self.allowNextRelease = false
2012-01-20 02:12:26 +01:00
return true
end
function UIGameMap:onDragLeave(droppedWidget, mousePos)
self.currentDragThing = nil
2012-08-13 01:27:41 +02:00
self.hoveredWho = nil
2013-01-25 14:47:51 +01:00
g_mouse.popCursor('target')
2012-01-20 02:12:26 +01:00
return true
end
function UIGameMap:onDrop(widget, mousePos)
2012-08-17 23:36:53 +02:00
if not self:canAcceptDrop(widget, mousePos) then return false end
local tile = self:getTile(mousePos)
if not tile then return false end
local thing = widget.currentDragThing
local toPos = tile:getPosition()
local thingPos = thing:getPosition()
if thingPos.x == toPos.x and thingPos.y == toPos.y and thingPos.z == toPos.z then return false end
if thing:isItem() and thing:getCount() > 1 then
modules.game_interface.moveStackableItem(thing, toPos)
2012-01-26 02:11:05 +01:00
else
g_game.move(thing, toPos, 1)
2012-01-26 02:11:05 +01:00
end
2012-01-20 02:12:26 +01:00
return true
end
function UIGameMap:onMousePress()
2013-01-25 21:51:14 +01:00
if not self:isDragging() then
self.allowNextRelease = true
end
end
function UIGameMap:onMouseRelease(mousePosition, mouseButton)
if not self.allowNextRelease then
return true
end
2012-08-21 03:03:30 +02:00
local autoWalkPos = self:getPosition(mousePosition)
2012-08-21 13:09:48 +02:00
-- happens when clicking outside of map boundaries
if not autoWalkPos then return false end
2012-08-21 03:03:30 +02:00
local lookThing
local useThing
local creatureThing
local multiUseThing
local tile = self:getTile(mousePosition)
2012-08-21 03:03:30 +02:00
if tile then
lookThing = tile:getTopLookThing()
useThing = tile:getTopUseThing()
creatureThing = tile:getTopCreature()
if tile:isWalkable() then
local localPlayerPos = g_game.getLocalPlayer():getPosition()
if autoWalkPos.z ~= localPlayerPos.z then
local dz = autoWalkPos.z - localPlayerPos.z
autoWalkPos.x = autoWalkPos.x + dz
autoWalkPos.y = autoWalkPos.y + dz
autoWalkPos.z = localPlayerPos.z
end
else
autoWalkPos = nil
end
2012-08-21 03:03:30 +02:00
end
local ret = modules.game_interface.processMouseAction(mousePosition, mouseButton, autoWalkPos, lookThing, useThing, creatureThing)
if ret then
self.allowNextRelease = false
end
return ret
2012-01-09 19:06:16 +01:00
end
2012-08-17 23:36:53 +02:00
function UIGameMap:canAcceptDrop(widget, mousePos)
if not widget or not widget.currentDragThing then return false end
local children = rootWidget:recursiveGetChildrenByPos(mousePos)
for i=1,#children do
local child = children[i]
if child == self then
return true
elseif not child:isPhantom() then
return false
end
end
error('Widget ' .. self:getId() .. ' not in drop list.')
return false
end