From 1fe2a12b671c3efe6affc52b9f455bc3a00a2057 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 18 Apr 2021 08:05:53 -0700 Subject: [PATCH] [MovieClock.lua] use cycle based time for Gambatte/SubGBHawk (#2708) * use cycle based time for Gambatte/SubGBHawk * non-functional cleanup --- Assets/Lua/MovieClock.lua | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/Assets/Lua/MovieClock.lua b/Assets/Lua/MovieClock.lua index d1054381ca..411af29920 100644 --- a/Assets/Lua/MovieClock.lua +++ b/Assets/Lua/MovieClock.lua @@ -1,12 +1,22 @@ while true do if (movie.isloaded()) then - fps = movie.getfps(); - frames = emu.framecount(); - tseconds = (frames / fps) + if movie.getheader()["Core"] == "Gambatte" then + clockrate = 2 ^ 21; + cycles = emu.totalexecutedcycles(); + tseconds = (cycles / clockrate); + elseif movie.getheader()["Core"] == "SubGBHawk" then + clockrate = 2 ^ 22; + cycles = emu.totalexecutedcycles(); + tseconds = (cycles / clockrate); + else + fps = movie.getfps(); + frames = emu.framecount(); + tseconds = (frames / fps); + end secondsraw = tseconds % 60; shift = 10 ^ 2; seconds = math.floor((secondsraw * shift) + 0.5) / shift; - secondsstr = string.format("%.2f", seconds) + secondsstr = string.format("%.2f", seconds); if (seconds < 10) then secondsstr = "0" .. secondsstr; end @@ -26,4 +36,4 @@ while true do gui.text(0, 0, time, nil, 1); end emu.frameadvance(); -end \ No newline at end of file +end