2019-12-28 12:15:43 +01:00
|
|
|
local cwd = (...):gsub('%.player$', '') .. "."
|
|
|
|
local Parent = require(cwd .. "parent")
|
|
|
|
local Player = Parent:extend()
|
|
|
|
|
2019-12-28 13:54:57 +01:00
|
|
|
local Frame = require("game.modules.gui.frame")
|
|
|
|
|
2019-12-28 12:15:43 +01:00
|
|
|
function Player:new(world, x, y, z, id)
|
|
|
|
Player.super.new(self, world, "player", x, y, 0, 16, 12, 24, true)
|
|
|
|
self:setGravity(480*2)
|
|
|
|
|
|
|
|
self:setSprite("sonic", 8, 10)
|
|
|
|
self:cloneSprite()
|
|
|
|
|
2019-12-28 13:54:57 +01:00
|
|
|
self.frame = Frame()
|
2019-12-28 12:15:43 +01:00
|
|
|
|
|
|
|
self.action = "normal"
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:updateStart(dt)
|
|
|
|
self.xfrc, self.yfrc = 480*3, 480*3
|
|
|
|
|
|
|
|
if self.keys["up"].isDown then
|
|
|
|
self.ysp = -160
|
|
|
|
end
|
|
|
|
if self.keys["down"].isDown then
|
|
|
|
self.ysp = 160
|
|
|
|
end
|
|
|
|
if self.keys["left"].isDown then
|
|
|
|
self.xsp = -160
|
|
|
|
end
|
|
|
|
if self.keys["right"].isDown then
|
|
|
|
self.xsp = 160
|
|
|
|
end
|
|
|
|
|
2019-12-28 21:06:41 +01:00
|
|
|
if self.keys["A"].isPressed and (self.onGround) then
|
2019-12-28 12:15:43 +01:00
|
|
|
self.zsp = 280*1.33
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.keys["B"].isPressed and (self.onGround) then
|
|
|
|
-- Nothing for the moment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:animationEnded(name)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:updateEnd(dt)
|
|
|
|
self:setAnimation()
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:setAnimation()
|
|
|
|
local gsp = utils.math.pointDistance(0, 0, self.xsp, self.ysp)
|
|
|
|
self:setCustomSpeed(math.abs(gsp) / 12)
|
|
|
|
self:setDirection(self.xsp)
|
|
|
|
if (self.action == "punching") then
|
|
|
|
--the animation system is already active
|
|
|
|
else
|
|
|
|
if (self.onGround) then
|
|
|
|
if (math.abs(self.xsp) > 0) or (math.abs(self.ysp) > 0) then
|
|
|
|
self:changeAnimation("walk", false)
|
|
|
|
else
|
|
|
|
self:changeAnimation("idle", false)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if (self.zsp) > 0 then
|
|
|
|
self:changeAnimation("jump", false)
|
|
|
|
else
|
|
|
|
self:changeAnimation("fall", false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:setDirection(direction)
|
|
|
|
direction = direction or 0
|
|
|
|
if direction ~= 0 then
|
|
|
|
direction = utils.math.sign(direction)
|
|
|
|
self.direction = direction
|
|
|
|
self:setSpriteScallingX(direction)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:getViewCenter()
|
|
|
|
local x, y = Player.super.getViewCenter(self)
|
2019-12-28 14:17:58 +01:00
|
|
|
return self.world:getViewCenter(x, y)
|
2019-12-28 12:15:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:draw()
|
|
|
|
Player.super.draw(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:drawHUD(id)
|
2019-12-28 13:54:57 +01:00
|
|
|
self.frame:draw()
|
2019-12-28 12:15:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return Player
|