diff --git a/game/engine/interface/ActorInventory.lua b/game/engine/interface/ActorInventory.lua index e17f15132854ad18588703befcc05c05854f3d07..392b08c4f33eaf75110302183f8cb40fe8aec59c 100644 --- a/game/engine/interface/ActorInventory.lua +++ b/game/engine/interface/ActorInventory.lua @@ -281,7 +281,7 @@ function _M:wearObject(o, replace, vocal) if vocal then game.logSeen(self, "%s wears: %s.", self.name:capitalize(), o:getName{do_color=true}) end -- Warning: assume there is now space self:addObject(self:getInven(o.offslot), o) - return false + return true elseif replace then local ro = self:removeObject(inven, 1, true) diff --git a/game/engine/interface/PlayerRun.lua b/game/engine/interface/PlayerRun.lua index c420623c2eebe0eeaf5a594e27a3597acf8fe56f..3f825ec4460f18ec7a0fa7e9673e6893245da530 100644 --- a/game/engine/interface/PlayerRun.lua +++ b/game/engine/interface/PlayerRun.lua @@ -83,6 +83,24 @@ function _M:runInit(dir) self:runStep() end +--- Initializes running to a specific position +-- This does not use the normal running algorithm but instead an A* +function _M:runTo(x, y) + local block_left, block_right = false, false + + self.running = { + to = {x=x, y=y}, + block_left = block_left, + block_right = block_right, + cnt = 1, + dialog = Dialog:simplePopup("Running...", "You are running, press any key to stop.", function() + self:runStop() + end), + } + + self:runStep() +end + --- Run a turn -- For a turn based game you want in you player's act() something like that:<br/> -- <pre> diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua index c0241131ec07279fa7e5b11f6a6bce015f7198c1..d8d8f217175fedac4dca80664dbf7cda03db0ba0 100644 --- a/game/modules/tome/class/Game.lua +++ b/game/modules/tome/class/Game.lua @@ -138,6 +138,7 @@ function _M:loaded() end function _M:onResolutionChange() + engine.Game.onResolutionChange(self) print("[RESOLUTION] changed to ", self.w, self.h) self:setupDisplayMode() self.flash:resize(0, 0, self.w, 20) @@ -659,9 +660,15 @@ function _M:setupMouse() if button == "right" then local tmx, tmy = self.level.map:getMouseTile(mx, my) -- DEBUG - if config.settings.tome.cheat then - game.player:move(tmx, tmy, true) - end +-- if config.settings.tome.cheat then +-- game.player:move(tmx, tmy, true) +-- else + local Astar = require"engine.Astar" + local a = Astar.new(self.level.map, self.player) + local path = a:CalcPath(a:CalcMoves(self.player.x, self.player.y, tmx, tmy)) + print("A* from", self.player.x, self.player.y, "to", tmx, tmy) + for i, c in ipairs(path) do print("A*", c.x, c.y) end +-- end -- Move map around elseif button == "left" and xrel and yrel then derivx = derivx + xrel diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua index 43dacbce26dc24043c21e36b3fe040159326d620..492ae6396ac81e92b8fe71483f8d958b3d1b936a 100644 --- a/game/modules/tome/class/Player.lua +++ b/game/modules/tome/class/Player.lua @@ -319,7 +319,7 @@ function _M:doWear(inven, item, o) local ro = self:wearObject(o, true, true) if ro then if type(ro) == "table" then self:addObject(inven, ro) end - elseif ro then + elseif not ro then self:addObject(inven, o) end self:sortInven()