2019-06-22 19:27:31 +02:00
|
|
|
-- hitbox2D.lua :: a basic 2D hitbox object. It's used by the actors to check
|
|
|
|
-- collisions and to handle different type of responses.
|
|
|
|
|
|
|
|
--[[
|
|
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
]]
|
|
|
|
|
|
|
|
local Hitbox2D = Object:extend()
|
|
|
|
|
|
|
|
-- INIT FUNCTIONS
|
|
|
|
-- Initialise the actor and its base functions
|
|
|
|
|
|
|
|
function Hitbox2D:new(owner, type, ox, oy, w, h, isSolid)
|
|
|
|
self.owner = owner
|
|
|
|
self.world = owner.world
|
|
|
|
|
|
|
|
self.type = type
|
|
|
|
self.ox = ox
|
|
|
|
self.oy = oy
|
|
|
|
self.x, self.y = self:getPosition()
|
|
|
|
self.w = w
|
|
|
|
self.h = h
|
|
|
|
self.isSolid = isSolid
|
|
|
|
|
2019-06-27 21:15:57 +02:00
|
|
|
self.isMainHitBox = false
|
|
|
|
|
2019-06-22 19:27:31 +02:00
|
|
|
self:setDebugColor(0,0,0)
|
2019-06-27 20:46:21 +02:00
|
|
|
self:register()
|
2019-06-22 19:27:31 +02:00
|
|
|
end
|
|
|
|
|
2019-06-27 21:15:57 +02:00
|
|
|
function Hitbox2D:advertiseAsMainHitbox()
|
|
|
|
self.isMainHitBox = true
|
|
|
|
end
|
|
|
|
|
2019-06-22 19:27:31 +02:00
|
|
|
function Hitbox2D:modify(ox, oy, w, h)
|
|
|
|
self.ox = ox
|
|
|
|
self.oy = oy
|
|
|
|
self.x, self.y = self:getPosition()
|
|
|
|
self.w = w
|
|
|
|
self.h = h
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:setDebugColor(r,g,b)
|
|
|
|
self.debug = {}
|
|
|
|
self.debug.r = r
|
|
|
|
self.debug.g = g
|
|
|
|
self.debug.b = b
|
|
|
|
end
|
|
|
|
|
2019-06-27 20:46:21 +02:00
|
|
|
function Hitbox2D:register()
|
|
|
|
self.world:registerBody(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:destroy()
|
|
|
|
self.world:removeBody(self)
|
|
|
|
end
|
|
|
|
|
2019-06-22 19:27:31 +02:00
|
|
|
-- COORDINATE FUNCTIONS
|
|
|
|
-- Handle Hitbox position
|
|
|
|
|
|
|
|
function Hitbox2D:updatePosition()
|
|
|
|
self.x, self.y = self:getPosition()
|
|
|
|
self.world:updateBody(self)
|
|
|
|
return self.x, self.y
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:getPosition()
|
|
|
|
return self.ox + self.owner.x, self.oy + self.owner.y
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:getOwnerPosition()
|
|
|
|
return self.x - self.ox, self.y - self.oy
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:getNewOwnerPosition(x, y)
|
|
|
|
return x - self.ox, y - self.oy
|
|
|
|
end
|
|
|
|
|
|
|
|
function Hitbox2D:getCenter()
|
|
|
|
return self.x + (self.w/2), self.y + (self.h/2)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- COLLISION FUNCTIONS
|
|
|
|
-- Handle Hitbox position
|
|
|
|
|
|
|
|
function Hitbox2D:checkCollision(dx, dy, filter)
|
|
|
|
self:updatePosition()
|
|
|
|
|
|
|
|
local dx, dy = self.ox + dx, self.oy + dy
|
|
|
|
local x, y, cols, colNumber = self.world:checkCollision(self, dx, dy, filter)
|
|
|
|
local newx, newy = self:getNewOwnerPosition(x, y)
|
|
|
|
|
|
|
|
return newx, newy, cols, colNumber
|
|
|
|
end
|
|
|
|
|
|
|
|
-- DRAW FUNCTIONS
|
|
|
|
-- Just some debug function to draw hitbox
|
|
|
|
|
|
|
|
function Hitbox2D:draw()
|
|
|
|
local x, y = self:getPosition()
|
|
|
|
love.graphics.setColor(self.debug.r, self.debug.g, self.debug.b, 1)
|
|
|
|
utils.graphics.box(x, y, self.w, self.h)
|
2019-06-23 15:44:46 +02:00
|
|
|
utils.graphics.resetColor()
|
2019-06-22 19:27:31 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return Hitbox2D
|