sonic-radiance/sonic-radiance.love/scenes/battlesystem/choregraphy/init.lua

58 lines
1.6 KiB
Lua
Raw Normal View History

local ChoregraphySystem = Object:extend()
local QteMixin = require "scenes.battlesystem.choregraphy.mixins.qtes"
local StepsMixin = require "scenes.battlesystem.choregraphy.mixins.steps"
local TagsMixin = require "scenes.battlesystem.choregraphy.mixins.tags"
local CountersMixin = require "scenes.battlesystem.choregraphy.mixins.counters"
local WrappersMixin = require "scenes.battlesystem.choregraphy.mixins.wrappers"
local SubChoregraphiesMixin = require "scenes.battlesystem.choregraphy.mixins.subchoregraphies"
2021-08-08 13:11:36 +02:00
local TweenManager = require "birb.classes.time"
2021-08-08 09:49:43 +02:00
ChoregraphySystem:implement(QteMixin)
ChoregraphySystem:implement(StepsMixin)
ChoregraphySystem:implement(TagsMixin)
ChoregraphySystem:implement(CountersMixin)
ChoregraphySystem:implement(WrappersMixin)
2021-08-08 13:11:36 +02:00
ChoregraphySystem:implement(SubChoregraphiesMixin)
2021-08-08 13:11:36 +02:00
function ChoregraphySystem:new(action, choregraphy, subChoregraphy)
2021-08-08 09:49:43 +02:00
self:initWrappers(action)
2021-05-09 15:08:36 +02:00
2021-08-08 09:49:43 +02:00
self:initSteps(choregraphy)
self:initQte()
self:initTagActions()
self:initCounters()
2021-08-08 13:11:36 +02:00
self:initSubchoregraphies(subChoregraphy)
self.tweens = TweenManager(self)
2020-07-31 20:06:35 +02:00
2021-08-08 09:49:43 +02:00
self.actor:resetFrameSignal()
end
function ChoregraphySystem:update(dt)
2021-08-08 09:49:43 +02:00
self:updateQte(dt)
self:updateSteps(dt)
2021-08-08 13:11:36 +02:00
self.tweens:update(dt)
self:updateSubChoregraphies(dt)
end
function ChoregraphySystem:timerResponse(signal)
if (signal == "startNextTarget") then
self:startNextTarget()
end
end
function ChoregraphySystem:endChoregraphy()
2020-07-25 10:25:00 +02:00
self.actor:choregraphyEnded()
self.action:choregraphyEnded()
self.fighter.turnSystem:applyDeath()
end
2021-04-25 12:19:46 +02:00
function ChoregraphySystem:draw()
2021-08-08 09:49:43 +02:00
self:drawQte()
2021-08-08 13:11:36 +02:00
self:drawSubChoregraphies()
2021-04-25 12:19:46 +02:00
end
return ChoregraphySystem