From 6571f7028307c3486cadda31dd875f126baca974 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 1 Apr 2020 12:46:56 +1000 Subject: [PATCH] Rename new Lua function by convention, fix ClientApi.TransformPoint I doubt this ever worked. The Lua one wasn't delegated, it directly accessed GlobalWin, so it didn't have this bug. --- BizHawk.Client.ApiHawk/Classes/ClientApi.cs | 12 ++++++------ .../tools/Lua/Libraries/EmuLuaLibrary.Client.cs | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs index f300c45c07..ddcf880a57 100644 --- a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs @@ -666,12 +666,12 @@ namespace BizHawk.Client.ApiHawk public static Point TransformPoint(Point point) { - Type t = ClientAssembly.GetType("BizHawk.Client.EmuHawk.GlobalWin"); - FieldInfo f = t.GetField("DisplayManager"); - object displayManager = f.GetValue(null); - MethodInfo m = t.GetMethod("TransFormPoint"); - point = (System.Drawing.Point)m.Invoke(displayManager, new object[] { point }); - return point; + var globalWinType = ClientAssembly.GetType("BizHawk.Client.EmuHawk.GlobalWin"); + var dispManType = ClientAssembly.GetType("BizHawk.Client.EmuHawk.DisplayManager"); + var dispManInstance = globalWinType.GetField("DisplayManager").GetValue(null); + var transformed = dispManType.GetMethod("TransformPoint")?.Invoke(dispManInstance, new object[] { point }); + if (transformed is Point p) return p; + throw new Exception(); } [Obsolete] diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs index d6f4dec6f5..3fb5e97f24 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs @@ -362,8 +362,8 @@ namespace BizHawk.Client.EmuHawk MainForm.TogglePause(); } - [LuaMethodExample("local newPoint = client.transformPoint( 32, 100 );")] - [LuaMethod("transformPoint", "Transforms a point in emulator space to a point in client space")] + [LuaMethodExample("local newY = client.transform_point( 32, 100 ).y;")] + [LuaMethod("transform_point", "Transforms a point (x, y) in emulator space to a point in client space")] public LuaTable TransformPoint(int x, int y) { var transformed = ClientApi.TransformPoint(new Point(x, y)); var table = Lua.NewTable();