sonic-radiance/sonic-radiance.love/scenes/overworld/actors/player/init.lua

124 lines
2.9 KiB
Lua
Raw Normal View History

2021-04-10 14:43:30 +02:00
local Parent = require "scenes.overworld.actors.parent"
local Player = Parent:extend()
local TweenManager = require "game.modules.tweenmanager"
local Team = require "scenes.overworld.actors.player.team"
local Interactions = require "scenes.overworld.actors.player.interactions"
local Actions = require "scenes.overworld.actors.player.actions"
local Charset = require "scenes.overworld.actors.player.charset"
local Map = require "scenes.overworld.actors.player.map"
Player:implement(Team)
Player:implement(Interactions)
Player:implement(Actions)
Player:implement(Charset)
Player:implement(Map)
local FRICTION = 480 * 3
local GRAV = 10
2021-04-18 10:09:17 +02:00
local DEFAULT_GROUND_LEVEL = 0
local DEFAULT_GROUND_HEIGHT = 0
local RESPAWN_LIMIT = -32
function Player:new(world, x, y, id)
Player.super.new(self, world, "player", x, y, 16, 16, true)
2021-04-18 10:09:17 +02:00
self.groundLevel = DEFAULT_GROUND_LEVEL
self.groundHeight = DEFAULT_GROUND_HEIGHT
self.z = self.groundLevel
self.grav = GRAV
self.tweens = TweenManager(self)
2021-04-10 14:28:20 +02:00
self.onGround = true
self.xfrc, self.yfrc = FRICTION, FRICTION
self:initTeam()
self:initInteractions()
self:initActions()
self:initPlayerCharset()
self:initMap()
end
function Player:updateStart(dt)
self.tweens:update(dt)
2021-04-18 10:53:35 +02:00
self:updateTerrain()
self:act()
2021-03-23 21:59:33 +01:00
self.world:getTileTypeAtPoint(self.x, self.y)
2021-04-10 14:28:20 +02:00
self:updateInteraction()
2021-04-10 14:28:20 +02:00
self:updateCurrentCharset()
self:updateCurrentMap()
end
-- PHYSICS FUNCTIONS
-- Some functions to hook up the physic system
function Player:goUpward(zsp)
self.zsp = zsp
self.grav = GRAV
self.onGround = false
2021-03-20 17:23:14 +01:00
end
2021-04-10 14:28:20 +02:00
function Player:applyGravity(dt)
local grav = self.grav * -1
self.zsp = self.zsp + (grav * dt)
if utils.math.sign(self.zsp) == utils.math.sign(grav) then
self:checkGround()
2021-04-10 14:28:20 +02:00
end
end
function Player:checkGround()
2021-04-18 10:09:17 +02:00
if (self.z + self.zsp <= self.groundLevel) then
2021-04-10 14:28:20 +02:00
self.onGround = true
2021-04-18 10:09:17 +02:00
self.z = self.groundLevel
2021-04-10 14:28:20 +02:00
self.zsp = 0
self:endJump()
if (self.z <= RESPAWN_LIMIT) then
self.x = self.lastPos.x
self.y = self.lastPos.y
end
2021-04-10 14:28:20 +02:00
end
end
function Player:autoMove(dt)
Player.super.autoMove(self, dt)
self.z = self.z + self.zsp
end
-- RESPONSES
-- Reponse to timer and collisions
2021-03-20 17:23:14 +01:00
function Player:collisionResponse(col)
2021-03-21 16:32:29 +01:00
local hitbox = col.other
local other = col.other.owner
if (not other.isDestroyed) then
if (hitbox.type == "gizmo") then
self:collideWithGizmo(other)
elseif (hitbox.type == "btnInput" and other.needButton) then
self:talkToGizmo(other)
2021-03-20 17:23:14 +01:00
end
end
end
function Player:timerResponse(response)
if (response == "changeCharacter") then
self:endCharacterSwitchAnimation()
2021-04-10 18:28:52 +02:00
elseif (response == "endFly") then
self:endFly()
elseif (response == "endPunch") then
self:endPunch()
2020-08-01 18:54:12 +02:00
end
end
function Player:drawHUD(id)
2020-08-20 15:39:02 +02:00
self:drawEmblems(self.scene:getEmblemsPosition(), 24)
end
2021-04-10 19:32:41 +02:00
function Player:draw()
Player.super.draw(self)
self:drawActionEffect()
end
return Player