From d3efbb6d3b92f5eda9f29a513b15fff85f45507d Mon Sep 17 00:00:00 2001 From: masterofpuppets152001 Date: Tue, 14 May 2013 02:08:05 +0000 Subject: [PATCH] Lua: Added forms_openfile(filename, path, filter) to LuaImplementation.cs, usage ex: forms.openfile(nil,"C:") or forms.openfile(nil,nil,"Movie Files(*.SMV;*.BKM;*.FMV) etc... --- BizHawk.MultiClient/LuaImplementation.cs | 26 +++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/LuaImplementation.cs b/BizHawk.MultiClient/LuaImplementation.cs index b0430b912e..f7e2bd45d0 100644 --- a/BizHawk.MultiClient/LuaImplementation.cs +++ b/BizHawk.MultiClient/LuaImplementation.cs @@ -544,7 +544,8 @@ namespace BizHawk.MultiClient "clearclicks", "gettext", "setproperty", - "getproperty" + "getproperty", + "openfile" }; public static string[] BitwiseFunctions = new[] @@ -2748,6 +2749,29 @@ namespace BizHawk.MultiClient return ""; } + // filterext format ex: "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*" + public string forms_openfile(string FileName = null, string InitialDirectory = null, string Filter = "All files (*.*)|*.*") + { + OpenFileDialog openFileDialog1 = new OpenFileDialog(); + if (InitialDirectory != null) + { + openFileDialog1.InitialDirectory = InitialDirectory; + } + if (FileName != null) + { + openFileDialog1.FileName = FileName; + } + if (Filter != null) + { + openFileDialog1.AddExtension = true; + openFileDialog1.Filter = Filter; + } + if (openFileDialog1.ShowDialog() == DialogResult.OK) + return openFileDialog1.FileName; + else + return ""; + } + public LuaTable input_getmouse() { LuaTable buttons = _lua.NewTable();