Partially migrate EmuHawkLuaLibrary to ApiHawk delegation

This commit is contained in:
YoshiRulz 2019-12-15 04:40:01 +10:00
parent f8dc18c1bd
commit e6cb74d314
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 12 additions and 55 deletions

View File

@ -15,7 +15,7 @@ using System.Diagnostics;
namespace BizHawk.Client.EmuHawk namespace BizHawk.Client.EmuHawk
{ {
[Description("A library for manipulating the EmuHawk client UI")] [Description("A library for manipulating the EmuHawk client UI")]
public sealed class EmuHawkLuaLibrary : LuaLibraryBase public sealed class EmuHawkLuaLibrary : DelegatingLuaLibraryEmu
{ {
[RequiredService] [RequiredService]
private IEmulator Emulator { get; set; } private IEmulator Emulator { get; set; }
@ -225,31 +225,19 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodExample("client.opencheats( );")] [LuaMethodExample("client.opencheats( );")]
[LuaMethod("opencheats", "opens the Cheats dialog")] [LuaMethod("opencheats", "opens the Cheats dialog")]
public static void OpenCheats() public void OpenCheats() => APIs.Tool.OpenCheats();
{
GlobalWin.Tools.Load<Cheats>();
}
[LuaMethodExample("client.openhexeditor( );")] [LuaMethodExample("client.openhexeditor( );")]
[LuaMethod("openhexeditor", "opens the Hex Editor dialog")] [LuaMethod("openhexeditor", "opens the Hex Editor dialog")]
public static void OpenHexEditor() public void OpenHexEditor() => APIs.Tool.OpenHexEditor();
{
GlobalWin.Tools.Load<HexEditor>();
}
[LuaMethodExample("client.openramwatch( );")] [LuaMethodExample("client.openramwatch( );")]
[LuaMethod("openramwatch", "opens the RAM Watch dialog")] [LuaMethod("openramwatch", "opens the RAM Watch dialog")]
public static void OpenRamWatch() public void OpenRamWatch() => APIs.Tool.OpenRamWatch();
{
GlobalWin.Tools.LoadRamWatch(loadDialog: true);
}
[LuaMethodExample("client.openramsearch( );")] [LuaMethodExample("client.openramsearch( );")]
[LuaMethod("openramsearch", "opens the RAM Search dialog")] [LuaMethod("openramsearch", "opens the RAM Search dialog")]
public static void OpenRamSearch() public void OpenRamSearch() => APIs.Tool.OpenRamSearch();
{
GlobalWin.Tools.Load<RamSearch>();
}
[LuaMethodExample("client.openrom( \"C:\\\" );")] [LuaMethodExample("client.openrom( \"C:\\\" );")]
[LuaMethod("openrom", "opens the Open ROM dialog")] [LuaMethod("openrom", "opens the Open ROM dialog")]
@ -261,24 +249,15 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodExample("client.opentasstudio( );")] [LuaMethodExample("client.opentasstudio( );")]
[LuaMethod("opentasstudio", "opens the TAStudio dialog")] [LuaMethod("opentasstudio", "opens the TAStudio dialog")]
public static void OpenTasStudio() public void OpenTasStudio() => APIs.Tool.OpenTasStudio();
{
GlobalWin.Tools.Load<TAStudio>();
}
[LuaMethodExample("client.opentoolbox( );")] [LuaMethodExample("client.opentoolbox( );")]
[LuaMethod("opentoolbox", "opens the Toolbox Dialog")] [LuaMethod("opentoolbox", "opens the Toolbox Dialog")]
public static void OpenToolBox() public void OpenToolBox() => APIs.Tool.OpenToolBox();
{
GlobalWin.Tools.Load<ToolBox>();
}
[LuaMethodExample("client.opentracelogger( );")] [LuaMethodExample("client.opentracelogger( );")]
[LuaMethod("opentracelogger", "opens the tracelogger if it is available for the given core")] [LuaMethod("opentracelogger", "opens the tracelogger if it is available for the given core")]
public static void OpenTraceLogger() public void OpenTraceLogger() => APIs.Tool.OpenTraceLogger();
{
GlobalWin.Tools.Load<TraceLogger>();
}
[LuaMethodExample("client.pause( );")] [LuaMethodExample("client.pause( );")]
[LuaMethod("pause", "Pauses the emulator")] [LuaMethod("pause", "Pauses the emulator")]
@ -465,38 +444,16 @@ namespace BizHawk.Client.EmuHawk
[LuaMethod("gettool", "Returns an object that represents a tool of the given name (not case sensitive). If the tool is not open, it will be loaded if available. Use gettools to get a list of names")] [LuaMethod("gettool", "Returns an object that represents a tool of the given name (not case sensitive). If the tool is not open, it will be loaded if available. Use gettools to get a list of names")]
public LuaTable GetTool(string name) public LuaTable GetTool(string name)
{ {
var toolType = ReflectionUtil.GetTypeByName(name) var selectedTool = APIs.Tool.GetTool(name);
.FirstOrDefault(x => typeof(IToolForm).IsAssignableFrom(x) && !x.IsInterface); return selectedTool == null ? null : LuaHelper.ToLuaTable(Lua, selectedTool);
if (toolType != null)
{
GlobalWin.Tools.Load(toolType);
}
var selectedTool = GlobalWin.Tools.AvailableTools
.FirstOrDefault(tool => tool.GetType().Name.ToLower() == name.ToLower());
if (selectedTool != null)
{
return LuaHelper.ToLuaTable(Lua, selectedTool);
}
return null;
} }
[LuaMethodExample("local nlclicre = client.createinstance( \"objectname\" );")] [LuaMethodExample("local nlclicre = client.createinstance( \"objectname\" );")]
[LuaMethod("createinstance", "returns a default instance of the given type of object if it exists (not case sensitive). Note: This will only work on objects which have a parameterless constructor. If no suitable type is found, or the type does not have a parameterless constructor, then nil is returned")] [LuaMethod("createinstance", "returns a default instance of the given type of object if it exists (not case sensitive). Note: This will only work on objects which have a parameterless constructor. If no suitable type is found, or the type does not have a parameterless constructor, then nil is returned")]
public LuaTable CreateInstance(string name) public LuaTable CreateInstance(string name)
{ {
var possibleTypes = ReflectionUtil.GetTypeByName(name); var instance = APIs.Tool.GetTool(name);
return instance == null ? null : LuaHelper.ToLuaTable(Lua, instance);
if (possibleTypes.Any())
{
var instance = Activator.CreateInstance(possibleTypes.First());
return LuaHelper.ToLuaTable(Lua, instance);
}
return null;
} }
[LuaMethodExample("client.displaymessages( true );")] [LuaMethodExample("client.displaymessages( true );")]