Lua - implement movie.fps() and add MovieTimer.lua script that shows the clock time for a given movie (updates while recording)
This commit is contained in:
parent
c5027b1df6
commit
603fd81066
|
@ -137,5 +137,19 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
Global.MovieSession.Movie.Stop();
|
||||
}
|
||||
|
||||
[LuaMethodAttributes(
|
||||
"getfps",
|
||||
"If a movie is loaded, gets the frames per second used by the movie to determine the movie length time"
|
||||
)]
|
||||
public static double GetFps()
|
||||
{
|
||||
if (Global.MovieSession.Movie.IsActive)
|
||||
{
|
||||
return Global.MovieSession.Movie.Fps;
|
||||
}
|
||||
|
||||
return 0.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -139,7 +139,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
[LuaMethodAttributes(
|
||||
"cleartext",
|
||||
"TODO"
|
||||
"clears all text created by gui.text()"
|
||||
)]
|
||||
public static void ClearText()
|
||||
{
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
while true do
|
||||
if (movie.isloaded()) then
|
||||
fps = movie.getfps();
|
||||
frames = movie.length();
|
||||
tseconds = (frames / fps)
|
||||
secondsraw = tseconds % 60;
|
||||
shift = 10 ^ 2;
|
||||
seconds = math.floor((secondsraw * shift) + 0.5) / shift;
|
||||
secondsstr = string.format("%.2f", seconds)
|
||||
if (seconds < 10) then
|
||||
secondsstr = "0" .. secondsstr;
|
||||
end
|
||||
|
||||
minutes = (math.floor(tseconds / 60)) % 60;
|
||||
minutesstr = minutes;
|
||||
if (minutes < 10) then
|
||||
minutesstr = "0" .. minutesstr;
|
||||
end
|
||||
|
||||
hours = (math.floor(tseconds / 60 / 60)) % 24;
|
||||
|
||||
time = minutesstr .. ":" .. secondsstr;
|
||||
if (hours > 0) then
|
||||
time = "0" .. hours .. ":" .. time;
|
||||
end
|
||||
gui.text(0, 0, time, null, null, 1);
|
||||
end
|
||||
emu.frameadvance();
|
||||
end
|
Loading…
Reference in New Issue