lua - implement movie.startsfromsavestate() and movie.startsfromsaveram()

This commit is contained in:
adelikat 2015-08-01 18:16:40 -04:00
parent 383a462207
commit 8ec8032061
1 changed files with 18 additions and 0 deletions

View File

@ -14,6 +14,24 @@ namespace BizHawk.Client.Common
public override string Name { get { return "movie"; } }
[LuaMethodAttributes(
"startsfromsavestate",
"Returns whether or not the movie is a savestate-anchored movie"
)]
public bool StartsFromSavestate()
{
return Global.MovieSession.Movie.IsActive && Global.MovieSession.Movie.StartsFromSavestate;
}
[LuaMethodAttributes(
"startsfromsaveram",
"Returns whether or not the movie is a saveram-anchored movie"
)]
public bool StartsFromSaveram()
{
return Global.MovieSession.Movie.IsActive && Global.MovieSession.Movie.StartsFromSaveRam;
}
[LuaMethodAttributes(
"insertframe",
"Inserts a log entry string into the specified index of the movie input log"