diff --git a/game/engine/HotkeysDisplay.lua b/game/engine/HotkeysDisplay.lua index 4b19dc348674aab79bac2008dd6c91cd370e1732..cc36df24c23b801813c4cccd160cc485ff33c9ae 100644 --- a/game/engine/HotkeysDisplay.lua +++ b/game/engine/HotkeysDisplay.lua @@ -115,11 +115,11 @@ end --- Call when a mouse event arrives in this zone -- This is optional, only if you need mouse support -function _M:onMouse(button, mx, my) +function _M:onMouse(button, mx, my, click) mx, my = mx - self.display_x, my - self.display_y for i, zone in pairs(self.clics) do if mx >= zone[1] and mx < zone[1] + zone[3] and my >= zone[2] and my < zone[2] + zone[4] then - if button == "left" then + if button == "left" and click then self.actor:activateHotkey(i) else self.actor.changed = true diff --git a/game/engine/Mouse.lua b/game/engine/Mouse.lua index 8ae18f1cbdd98ef7739d9e826950f9a26372ca03..330b2491c2d130505fc7a459564f4215eb5a16cb 100644 --- a/game/engine/Mouse.lua +++ b/game/engine/Mouse.lua @@ -25,6 +25,7 @@ module(..., package.seeall, class.make) function _M:init() self.areas = {} + self.status = {} end --- Called when a mouse is pressed @@ -33,6 +34,7 @@ end -- @param y coordinate of the click -- @param isup true if the key was released, false if pressed function _M:receiveMouse(button, x, y, isup) + self.status[button] = not isup if not isup then return end for i, m in ipairs(self.areas) do diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index 558cf5e8e9f56b0e928a91c943ff3b19b79a7527..45e8a097a9b76f9fe8613ae085cb74e42462211a 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -30,6 +30,7 @@ local Target = require "engine.Target" local Level = require "engine.Level" local Birther = require "engine.Birther" local Astar = require "engine.Astar" +local DirectPath = require "engine.DirectPath" local Store = require "mod.class.Store" local Trap = require "mod.class.Trap" @@ -699,7 +700,7 @@ function _M:setupMouse() local path = a:calc(self.player.x, self.player.y, tmx, tmy, true) -- No Astar path ? jsut be dumb and try direct line if not path then - local d= DirectPath.new(self.level.map, self.player) + local d = DirectPath.new(self.level.map, self.player) path = d:calc(self.player.x, self.player.y, tmx, tmy, true) end self.test_x = tmx @@ -718,7 +719,7 @@ function _M:setupMouse() end, {button=true}) -- Use hotkeys with mouse self.mouse:registerZone(self.hotkeys_display.display_x, self.hotkeys_display.display_y, self.w, self.h, function(button, mx, my, xrel, yrel) - self.hotkeys_display:onMouse(button, mx, my) + self.hotkeys_display:onMouse(button, mx, my, not xrel) end) self.mouse:setCurrent() end