[#405] Set Environment.CurrentDirectory when executing Lua events within a WinForm.
Since events are not executed within the LuaConsole.ResumeScripts method, those did not have Environment.CurrentDirectory available for the executing script. The fix is simple: when a lua script instantiates a LuaWinForm (through forms.newform), we store the current Environment.CurrentDirectory in the LuaWinForm object. When a button or checkbox is triggered, it calls WinForm.DoLuaEvent which will set up the Environment.CurrentDirectory for the duration of the callback and then set it back to the initial Environment.CurrentDirectory.
This commit is contained in:
parent
0341d24bc8
commit
de98e0ed66
|
@ -9,6 +9,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
public List<LuaEvent> ControlEvents = new List<LuaEvent>();
|
||||
|
||||
private string CurrentDirectory = Environment.CurrentDirectory;
|
||||
|
||||
public LuaWinform()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
@ -28,6 +30,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public void DoLuaEvent(IntPtr handle)
|
||||
{
|
||||
string oldCurrentDirectory = Environment.CurrentDirectory;
|
||||
Environment.CurrentDirectory = CurrentDirectory;
|
||||
foreach (LuaEvent l_event in ControlEvents)
|
||||
{
|
||||
if (l_event.Control == handle)
|
||||
|
@ -35,6 +39,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
l_event.Event.Call();
|
||||
}
|
||||
}
|
||||
Environment.CurrentDirectory = oldCurrentDirectory;
|
||||
}
|
||||
|
||||
public class LuaEvent
|
||||
|
|
Loading…
Reference in New Issue