2019-08-14 16:26:23 +02:00
|
|
|
local Parent = Object:extend() -- On créer la classe des entitées, c'est la classe de base
|
|
|
|
|
|
|
|
local maputils = require "scenes.battlesystem.utils"
|
|
|
|
|
2019-08-16 23:04:30 +02:00
|
|
|
local TweenManager = require "game.modules.tweenmanager"
|
|
|
|
|
2019-08-14 20:11:35 +02:00
|
|
|
-- INIT FUNCTION
|
|
|
|
-- Initilize the actor
|
|
|
|
|
2019-08-14 16:26:23 +02:00
|
|
|
function Parent:new(world, x, y, z)
|
|
|
|
self.depth = 0
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
self.z = z or 0
|
|
|
|
self.direction = 1
|
|
|
|
--self.id = self.world.creationID
|
|
|
|
|
|
|
|
self.world = world
|
|
|
|
self.assets = self.world.assets
|
|
|
|
self.scene = self.world.scene
|
|
|
|
self.map = self.world.map
|
|
|
|
|
|
|
|
self.maputils = maputils
|
|
|
|
|
|
|
|
self.isHero = false
|
|
|
|
self.isActor = false
|
|
|
|
self.isEnnemy = false
|
2019-08-15 15:06:13 +02:00
|
|
|
self.isDestroyed = false
|
2019-08-14 16:26:23 +02:00
|
|
|
|
2019-08-16 23:04:30 +02:00
|
|
|
self.tweens = TweenManager(self)
|
2019-08-18 19:02:14 +02:00
|
|
|
|
2019-08-16 23:04:30 +02:00
|
|
|
self:setSprite()
|
2019-08-14 16:26:23 +02:00
|
|
|
self:register()
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:register()
|
|
|
|
self.world:registerActor(self)
|
|
|
|
end
|
|
|
|
|
2019-08-15 15:06:13 +02:00
|
|
|
function Parent:destroy()
|
|
|
|
self.world:destroyActor(self)
|
2019-08-15 19:00:01 +02:00
|
|
|
self.isDestroyed = true
|
2019-08-15 15:06:13 +02:00
|
|
|
end
|
|
|
|
|
2019-08-14 20:11:35 +02:00
|
|
|
function Parent:update(dt)
|
2019-08-14 20:24:32 +02:00
|
|
|
self:updateSprite(dt)
|
2019-08-16 23:04:30 +02:00
|
|
|
self.tweens:update(dt)
|
2019-08-14 20:11:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- SPRITE FUNCTIONS
|
|
|
|
-- Handle the character sprite
|
|
|
|
|
2019-08-14 20:24:32 +02:00
|
|
|
function Parent:setSprite(spritename, ox, oy, active)
|
2019-08-14 16:26:23 +02:00
|
|
|
self.sprite = {}
|
2019-08-14 20:24:32 +02:00
|
|
|
self.sprite.name = spritename or nil
|
2019-08-14 16:26:23 +02:00
|
|
|
self.sprite.ox = ox or 0
|
|
|
|
self.sprite.oy = oy or 0
|
2019-08-14 20:24:32 +02:00
|
|
|
self.sprite.sx = 1
|
|
|
|
self.sprite.sy = 1
|
|
|
|
self.sprite.exist = (spritename ~= nil)
|
|
|
|
self.sprite.clone = nil
|
2019-08-14 16:26:23 +02:00
|
|
|
self.sprite.active = active or false
|
|
|
|
end
|
|
|
|
|
2019-08-14 20:24:32 +02:00
|
|
|
function Parent:cloneSprite()
|
|
|
|
if self.sprite.name ~= nil then
|
|
|
|
self.sprite.clone = self.assets.sprites[self.sprite.name]:clone()
|
|
|
|
self.sprite.clone:setCallback(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:changeAnimation(animation, restart)
|
|
|
|
if (self.sprite.clone == nil) then
|
|
|
|
self.assets.sprites[self.sprite.name]:changeAnimation(animation, restart)
|
|
|
|
else
|
|
|
|
self.sprite.clone:changeAnimation(animation, restart)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:animationEnded(animation)
|
|
|
|
-- Empty placeholder function
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:setCustomSpeed(customSpeed)
|
|
|
|
if (self.sprite.clone == nil) then
|
|
|
|
self.assets.sprites[self.sprite.name]:setCustomSpeed(customSpeed)
|
|
|
|
else
|
|
|
|
self.sprite.clone:setCustomSpeed(customSpeed)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:updateSprite(dt)
|
|
|
|
if (self.sprite.clone ~= nil) then
|
|
|
|
self.sprite.clone:update(dt)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:setSpriteScallingX(sx)
|
|
|
|
local sx = sx or 1
|
|
|
|
|
|
|
|
self.sprite.sx = sx
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:setSpriteScallingY(sy)
|
|
|
|
local sy = sy or 1
|
|
|
|
|
|
|
|
self.sprite.sy = sy
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:getCurrentAnimation()
|
|
|
|
if (self.sprite.clone == nil) then
|
|
|
|
return self.assets.sprites[self.sprite.name]:getCurrentAnimation()
|
|
|
|
else
|
|
|
|
return self.sprite.clone:getCurrentAnimation()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Parent:getSpriteScalling()
|
|
|
|
return self.sprite.sx, self.sprite.sy
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:getFrame()
|
|
|
|
if (self.sprite.name ~= nil) then
|
|
|
|
if (self.sprite.clone ~= nil) then
|
|
|
|
return self.sprite.clone:getFrame()
|
|
|
|
else
|
|
|
|
return self.assets.sprites[self.sprite.name]:getFrame()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:getRelativeFrame()
|
|
|
|
if (self.sprite.name ~= nil) then
|
|
|
|
if (self.sprite.clone ~= nil) then
|
|
|
|
return self.sprite.clone:getRelativeFrame()
|
|
|
|
else
|
|
|
|
return self.assets.sprites[self.sprite.name]:getRelativeFrame()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:getAnimationDuration()
|
|
|
|
if (self.sprite.name ~= nil) then
|
|
|
|
if (self.sprite.clone ~= nil) then
|
|
|
|
return self.sprite.clone:getAnimationDuration()
|
|
|
|
else
|
|
|
|
return self.assets.sprites[self.sprite.name]:getAnimationDuration()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-14 16:26:23 +02:00
|
|
|
function Parent:drawSprite(tx, ty)
|
|
|
|
utils.graphics.resetColor()
|
|
|
|
|
|
|
|
local x, y = self.maputils.gridToPixel(self.x, self.y, true)
|
|
|
|
|
|
|
|
local tx = tx or 0
|
|
|
|
local ty = ty or 0
|
|
|
|
|
|
|
|
if (self.sprite.active) then
|
2019-08-14 20:24:32 +02:00
|
|
|
|
|
|
|
if (self.sprite.clone ~= nil) then
|
|
|
|
self.sprite.clone:draw(x + tx, y + ty, 0, self.direction, 1, self.sprite.ox, self.sprite.oy)
|
|
|
|
else
|
|
|
|
self.assets.sprites[self.sprite.name]:drawAnimation(x + tx, y + ty, 0, self.direction, 1, self.sprite.ox, self.sprite.oy)
|
|
|
|
end
|
2019-08-14 16:26:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-14 20:11:35 +02:00
|
|
|
-- DRAW FUNCTIONS
|
|
|
|
-- Handle draw functions
|
2019-08-14 16:26:23 +02:00
|
|
|
|
|
|
|
function Parent:draw()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:drawShadow()
|
|
|
|
local x, y = self.maputils.gridToPixel(self.x, self.y, true)
|
|
|
|
self.assets.images["actorsShadow"]:draw(x, y, 0, 1, 1, 12, 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parent:drawHUD()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return Parent
|