chore:extract position handling in both system

This commit is contained in:
Kazhnuz 2021-11-27 13:10:37 +01:00
parent 7cc0ac27f8
commit 9dd96e2a86

View file

@ -7,17 +7,13 @@ function Parent:new(world, type, x, y, z, w, h, d, isSolid)
end end
function Parent:draw() function Parent:draw()
local drawx, drawy, drawz = self.x, self.y, self.z
if (self.world.maptype == "shoot") then
drawx = drawx + math.floor(drawy/2)
end
self:drawStart() self:drawStart()
if (self.box ~= nil) then if (self.box ~= nil) then
self.box:draw(drawx, drawy, drawz) self.box:draw(math.floor(self.x), math.floor(self.y), math.floor(self.z))
else else
local x, y = math.floor(drawx), math.floor(drawy - drawz - self.d + (self.h/2)) local x, y, z = self:computeDrawingPosition()
if (math.floor(drawz) < -2) and (self.world.maptype == "shoot") then if (math.floor(z) < -2) and (self.world.maptype == "shoot") then
core.screen:setScissor(0, 0, 424, 58+drawy/2) core.screen:setScissor(0, 0, 424, 58+self.y/2)
self:drawSprite(x, y) self:drawSprite(x, y)
core.screen:resetScissor() core.screen:resetScissor()
else else
@ -27,6 +23,14 @@ function Parent:draw()
self:drawEnd() self:drawEnd()
end end
function Parent:computeDrawingPosition()
local drawx, drawy, drawz = self.x, self.y, self.z
if (self.world.maptype == "shoot") then
drawx = drawx + math.floor(drawy/2)
end
return math.floor(drawx), math.floor(drawy - drawz - self.d + (self.h/2)), math.floor(drawz)
end
function Parent:drawShadow(x, y) function Parent:drawShadow(x, y)
local x = x or 0 local x = x or 0
local y = y or 0 local y = y or 0