From 383a4622074e29f2f6b4e344d923937e98d1f109 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 1 Aug 2015 15:46:43 -0400 Subject: [PATCH] lua - implement movie.InsertFrame(int index, string logEntry), for now, will only work on .bk2 movies (.bkm and .tasproj will crash) --- BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs | 13 +++++++++++++ BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 2 ++ 2 files changed, 15 insertions(+) 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; } }