Merge pull request #73 from aur9ra/feat-show-invis-in-replay-option

show invis in replay
pull/75/head
Ishaan Bhardwaj 2023-07-15 01:59:07 -04:00 committed by GitHub
commit a972c31d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -37,6 +37,7 @@ function ReplayScene:new(replay, game_mode, ruleset)
self.replay = deepcopy(replay)
self.replay_index = 1
self.replay_speed = 1
self.show_invisible = false
DiscordRPC:update({
details = "Viewing a replay",
state = self.game.name,
@ -92,6 +93,12 @@ function ReplayScene:render()
else
love.graphics.printf("?? PAUSES (--:--.--)", 0, pauses_y_coordinate, 635, "right")
end
if self.show_invisible then
self.game.grid:draw()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.setFont(font_3x5_3)
love.graphics.printf("SHOW INVIS", 64, 60, 160, "center")
end
end
function ReplayScene:onInputPress(e)
@ -124,6 +131,8 @@ function ReplayScene:onInputPress(e)
if self.replay_speed > 99 then
self.replay_speed = 99
end
elseif e.input == "hold" then
self.show_invisible = not self.show_invisible
end
end