diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs index 5257c55777..3eca37aa5e 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs @@ -14,6 +14,19 @@ namespace BizHawk.Client.Common public override string Name { get { return "movie"; } } + [LuaMethodAttributes( + "insertframe", + "Inserts a log entry string into the specified index of the movie input log" + )] + public void InsertFrame(int index, string logEntry) + { + if (Global.MovieSession.Movie.IsActive) + { + // TODO: don't make this bk2 specific, and don't expose the log as the means to do this! + (Global.MovieSession.Movie as Bk2Movie).Log.Insert(index, logEntry); + } + } + [LuaMethodAttributes( "filename", "Returns the file name including path of the currently loaded movie" diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index 12bffc939e..bea497d902 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -42,6 +42,8 @@ namespace BizHawk.Client.Common } } + public List Log { get { return _log; } } + public string Name { get; private set; } public virtual string PreferredExtension { get { return Extension; } }