Fix `mainmemory` lib keeping reference to unloaded core's memdomain

This commit is contained in:
YoshiRulz 2023-01-03 23:46:02 +10:00
parent 5827cbd829
commit 699ef428bf
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 12 additions and 0 deletions

View File

@ -25,6 +25,12 @@ namespace BizHawk.Client.Common
private string MainMemName => _mainMemName ??= APIs.Memory.MainMemoryName;
public override void Restarted()
{
_mainMemDomain = null;
_mainMemName = null;
}
[LuaMethodExample("local stmaiget = mainmemory.getname( );")]
[LuaMethod("getname", "returns the name of the domain defined as main memory for the given core")]
public string GetName()

View File

@ -1,6 +1,8 @@
using System;
using System.Threading;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.Common
{
public abstract class LuaLibraryBase
@ -40,6 +42,9 @@ namespace BizHawk.Client.Common
}
}
/// <remarks>for implementors to reset any fields whose value depends on <see cref="APIs"/> or a <see cref="IEmulatorService">service</see></remarks>
public virtual void Restarted() {}
/// <exception cref="InvalidOperationException">attempted to have Lua running in two host threads at once</exception>
public static void SetCurrentThread(LuaFile luaFile)
{

View File

@ -171,6 +171,7 @@ namespace BizHawk.Client.EmuHawk
{
lib.APIs = _apiContainer;
ServiceInjector.UpdateServices(newServiceProvider, lib);
lib.Restarted();
}
}