Lua - implement movie.getheader()

This commit is contained in:
adelikat 2015-08-04 18:22:22 -04:00
parent 2373e5bcd5
commit f3d8388dfe
1 changed files with 18 additions and 0 deletions

View File

@ -218,5 +218,23 @@ namespace BizHawk.Client.Common
return 0.0;
}
[LuaMethodAttributes(
"getheader",
"If a movie is active, will return the movie header as a lua table"
)]
public LuaTable GetHeader()
{
var luaTable = Lua.NewTable();
if (Global.MovieSession.Movie.IsActive)
{
foreach (var kvp in Global.MovieSession.Movie.HeaderEntries)
{
luaTable[kvp.Key] = kvp.Value;
}
}
return luaTable;
}
}
}