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:
adelikat 2014-04-22 21:27:08 +00:00
parent c5027b1df6
commit 603fd81066
3 changed files with 44 additions and 1 deletions

View File

@ -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;
}
}
}

View File

@ -139,7 +139,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes(
"cleartext",
"TODO"
"clears all text created by gui.text()"
)]
public static void ClearText()
{

29
output/Lua/MovieClock.lua Normal file
View File

@ -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