2019-05-22 22:57:34 -05:00
|
|
|
local GameScene = Scene:extend()
|
|
|
|
require 'load.save'
|
|
|
|
|
|
|
|
function GameScene:new(game_mode, ruleset)
|
2020-11-08 15:19:01 -06:00
|
|
|
self.retry_mode = game_mode
|
|
|
|
self.retry_ruleset = ruleset
|
2019-05-22 22:57:34 -05:00
|
|
|
self.game = game_mode()
|
|
|
|
self.ruleset = ruleset()
|
|
|
|
self.game:initialize(self.ruleset)
|
2020-11-08 15:19:01 -06:00
|
|
|
self.inputs = {
|
|
|
|
left=false,
|
|
|
|
right=false,
|
|
|
|
up=false,
|
|
|
|
down=false,
|
|
|
|
rotate_left=false,
|
|
|
|
rotate_left2=false,
|
|
|
|
rotate_right=false,
|
|
|
|
rotate_right2=false,
|
|
|
|
rotate_180=false,
|
|
|
|
hold=false,
|
|
|
|
}
|
2020-10-10 20:17:48 -05:00
|
|
|
DiscordRPC:update({
|
2020-11-06 19:49:44 -06:00
|
|
|
details = self.game.rpc_details,
|
|
|
|
state = self.game.name,
|
|
|
|
})
|
2019-05-22 22:57:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
function GameScene:update()
|
|
|
|
if love.window.hasFocus() then
|
2020-11-08 15:19:01 -06:00
|
|
|
local inputs = {}
|
|
|
|
for input, value in pairs(self.inputs) do
|
|
|
|
inputs[input] = value
|
|
|
|
end
|
2020-11-08 14:55:06 -06:00
|
|
|
self.game:update(inputs, self.ruleset)
|
2019-05-22 22:57:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
self.game.grid:update()
|
|
|
|
end
|
|
|
|
|
|
|
|
function GameScene:render()
|
|
|
|
love.graphics.setColor(1, 1, 1, 1)
|
|
|
|
love.graphics.draw(
|
|
|
|
backgrounds[self.game:getBackground()],
|
|
|
|
0, 0, 0,
|
|
|
|
0.5, 0.5
|
|
|
|
)
|
|
|
|
|
|
|
|
-- game frame
|
|
|
|
love.graphics.draw(misc_graphics["frame"], 48, 64)
|
|
|
|
love.graphics.setColor(0, 0, 0, 200)
|
|
|
|
love.graphics.rectangle("fill", 64, 80, 160, 320)
|
|
|
|
|
|
|
|
self.game:drawGrid()
|
|
|
|
self.game:drawPiece()
|
|
|
|
self.game:drawNextQueue(self.ruleset)
|
|
|
|
self.game:drawScoringInfo()
|
|
|
|
|
|
|
|
-- ready/go graphics
|
2020-10-27 06:17:00 -05:00
|
|
|
|
2019-05-22 22:57:34 -05:00
|
|
|
if self.game.ready_frames <= 100 and self.game.ready_frames > 52 then
|
|
|
|
love.graphics.draw(misc_graphics["ready"], 144 - 50, 240 - 14)
|
|
|
|
elseif self.game.ready_frames <= 50 and self.game.ready_frames > 2 then
|
|
|
|
love.graphics.draw(misc_graphics["go"], 144 - 27, 240 - 14)
|
|
|
|
end
|
|
|
|
|
|
|
|
self.game:drawCustom()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2020-11-08 14:55:06 -06:00
|
|
|
function GameScene:onInputPress(e)
|
2020-11-08 15:19:01 -06:00
|
|
|
if self.game.completed and (e.input == "menu_decide" or e.input == "menu_back") then
|
2019-05-22 22:57:34 -05:00
|
|
|
highscore_entry = self.game:getHighscoreData()
|
|
|
|
highscore_hash = self.game.hash .. "-" .. self.ruleset.hash
|
|
|
|
submitHighscore(highscore_hash, highscore_entry)
|
|
|
|
scene = ModeSelectScene()
|
2020-11-08 15:19:01 -06:00
|
|
|
elseif e.input == "retry" then
|
|
|
|
scene = GameScene(self.retry_mode, self.retry_ruleset)
|
|
|
|
elseif e.input == "menu_back" then
|
2020-11-06 19:49:44 -06:00
|
|
|
scene = ModeSelectScene()
|
2020-11-08 15:19:01 -06:00
|
|
|
elseif e.input and string.sub(e.input, 1, 5) ~= "menu_" then
|
|
|
|
self.inputs[e.input] = true
|
|
|
|
end
|
2020-11-08 14:55:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
function GameScene:onInputRelease(e)
|
2020-11-08 15:19:01 -06:00
|
|
|
if e.input and string.sub(e.input, 1, 5) ~= "menu_" then
|
|
|
|
self.inputs[e.input] = false
|
2019-05-22 22:57:34 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function submitHighscore(hash, data)
|
|
|
|
if not highscores[hash] then highscores[hash] = {} end
|
|
|
|
table.insert(highscores[hash], data)
|
|
|
|
saveHighscores()
|
|
|
|
end
|
|
|
|
|
|
|
|
return GameScene
|