From e226ff102b28a66db10410297a0613597a4f9ca6 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 13 Apr 2020 17:04:20 +1000 Subject: [PATCH] Replace dynamic type with Object in API Using the dynamic type here is no better than object because the values are primitive types -- more likely to be cast/typechecked than used as a receiver param for a method call. --- BizHawk.Client.Common/Api/Classes/JoypadApi.cs | 4 ++-- BizHawk.Client.Common/Api/Classes/MovieApi.cs | 2 +- BizHawk.Client.Common/Api/Classes/SqlApi.cs | 4 ++-- BizHawk.Client.Common/Api/Interfaces/IInput.cs | 2 +- .../Api/Interfaces/IInputMovie.cs | 3 ++- BizHawk.Client.Common/Api/Interfaces/IJoypad.cs | 4 ++-- BizHawk.Client.Common/Api/Interfaces/ISql.cs | 2 +- BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs | 7 +------ BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs | 7 +------ BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs | 9 ++------- BizHawk.Client.EmuHawk/Api/ClientApi.cs | 2 +- BizHawk.Client.EmuHawk/Api/Libraries/InputApi.cs | 4 ++-- .../tools/Lua/Libraries/EmuLuaLibrary.Input.cs | 14 ++------------ BizHawk.Emulation.Common/Extensions.cs | 4 ++-- 14 files changed, 22 insertions(+), 46 deletions(-) diff --git a/BizHawk.Client.Common/Api/Classes/JoypadApi.cs b/BizHawk.Client.Common/Api/Classes/JoypadApi.cs index 3644ed48a6..dca0c224a3 100644 --- a/BizHawk.Client.Common/Api/Classes/JoypadApi.cs +++ b/BizHawk.Client.Common/Api/Classes/JoypadApi.cs @@ -16,12 +16,12 @@ namespace BizHawk.Client.Common private readonly Action LogCallback; - public IDictionary Get(int? controller = null) + public IDictionary Get(int? controller = null) { return Global.InputManager.AutofireStickyXorAdapter.ToDictionary(controller); } - public IDictionary GetImmediate(int? controller = null) + public IDictionary GetImmediate(int? controller = null) { return Global.InputManager.ActiveController.ToDictionary(controller); } diff --git a/BizHawk.Client.Common/Api/Classes/MovieApi.cs b/BizHawk.Client.Common/Api/Classes/MovieApi.cs index 5eac23d1b6..c1369b1257 100644 --- a/BizHawk.Client.Common/Api/Classes/MovieApi.cs +++ b/BizHawk.Client.Common/Api/Classes/MovieApi.cs @@ -21,7 +21,7 @@ namespace BizHawk.Client.Common public bool StartsFromSaveram() => Global.MovieSession.Movie.IsActive() && Global.MovieSession.Movie.StartsFromSaveRam; - public IDictionary GetInput(int frame, int? controller = null) + public IDictionary GetInput(int frame, int? controller = null) { if (Global.MovieSession.Movie.NotActive()) { diff --git a/BizHawk.Client.Common/Api/Classes/SqlApi.cs b/BizHawk.Client.Common/Api/Classes/SqlApi.cs index 129aeb314f..043a6c09fc 100644 --- a/BizHawk.Client.Common/Api/Classes/SqlApi.cs +++ b/BizHawk.Client.Common/Api/Classes/SqlApi.cs @@ -63,11 +63,11 @@ namespace BizHawk.Client.Common return result; } - public dynamic ReadCommand(string query = null) + public object ReadCommand(string query = null) { if (string.IsNullOrWhiteSpace(query)) return "query is empty"; if (_dbConnection == null) return "Database not open."; - dynamic result; + object result; try { _dbConnection.Open(); diff --git a/BizHawk.Client.Common/Api/Interfaces/IInput.cs b/BizHawk.Client.Common/Api/Interfaces/IInput.cs index 22440ef771..f89cfe455f 100644 --- a/BizHawk.Client.Common/Api/Interfaces/IInput.cs +++ b/BizHawk.Client.Common/Api/Interfaces/IInput.cs @@ -5,6 +5,6 @@ namespace BizHawk.Client.Common public interface IInput : IExternalApi { Dictionary Get(); - Dictionary GetMouse(); + Dictionary GetMouse(); } } diff --git a/BizHawk.Client.Common/Api/Interfaces/IInputMovie.cs b/BizHawk.Client.Common/Api/Interfaces/IInputMovie.cs index 446a21040f..a54bbd24f7 100644 --- a/BizHawk.Client.Common/Api/Interfaces/IInputMovie.cs +++ b/BizHawk.Client.Common/Api/Interfaces/IInputMovie.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; + namespace BizHawk.Client.Common { public interface IInputMovie : IExternalApi @@ -6,7 +7,7 @@ namespace BizHawk.Client.Common bool StartsFromSavestate(); bool StartsFromSaveram(); string Filename(); - IDictionary GetInput(int frame, int? controller = null); + IDictionary GetInput(int frame, int? controller = null); string GetInputAsMnemonic(int frame); bool GetReadOnly(); ulong GetRerecordCount(); diff --git a/BizHawk.Client.Common/Api/Interfaces/IJoypad.cs b/BizHawk.Client.Common/Api/Interfaces/IJoypad.cs index 182645c467..d5bcd781f1 100644 --- a/BizHawk.Client.Common/Api/Interfaces/IJoypad.cs +++ b/BizHawk.Client.Common/Api/Interfaces/IJoypad.cs @@ -4,8 +4,8 @@ namespace BizHawk.Client.Common { public interface IJoypad : IExternalApi { - IDictionary Get(int? controller = null); - IDictionary GetImmediate(int? controller = null); + IDictionary Get(int? controller = null); + IDictionary GetImmediate(int? controller = null); void SetFromMnemonicStr(string inputLogEntry); void Set(Dictionary buttons, int? controller = null); void Set(string button, bool? state = null, int? controller = null); diff --git a/BizHawk.Client.Common/Api/Interfaces/ISql.cs b/BizHawk.Client.Common/Api/Interfaces/ISql.cs index c9c49429eb..a93de46500 100644 --- a/BizHawk.Client.Common/Api/Interfaces/ISql.cs +++ b/BizHawk.Client.Common/Api/Interfaces/ISql.cs @@ -5,6 +5,6 @@ string CreateDatabase(string name); string OpenDatabase(string name); string WriteCommand(string query = ""); - dynamic ReadCommand(string query = ""); + object ReadCommand(string query = ""); } } diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs index 12990100f4..e0fb340519 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs @@ -29,12 +29,7 @@ namespace BizHawk.Client.Common [LuaMethodExample("local nljoyget = joypad.getimmediate( );")] [LuaMethod("getimmediate", "returns a lua table of any controller buttons currently pressed by the user")] - public LuaTable GetImmediate(int? controller = null) - { - return APIs.Joypad - .GetImmediate(controller) - .ToLuaTable(Lua); - } + public LuaTable GetImmediate(int? controller = null) => APIs.Joypad.GetImmediate(controller).ToLuaTable(Lua); [LuaMethodExample("joypad.setfrommnemonicstr( \"| 0, 0, 0, 100,...R..B....|\" );")] [LuaMethod("setfrommnemonicstr", "sets the given buttons to their provided values for the current frame, string will be interpretted the same way an entry from a movie input log would be")] diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs index 1cc3fc0197..3d0d1767c0 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs @@ -29,12 +29,7 @@ namespace BizHawk.Client.Common [LuaMethodExample("local nlmovget = movie.getinput( 500 );")] [LuaMethod("getinput", "Returns a table of buttons pressed on a given frame of the loaded movie")] - public LuaTable GetInput(int frame, int? controller = null) - { - return APIs.Movie - .GetInput(frame, controller) - .ToLuaTable(Lua); - } + public LuaTable GetInput(int frame, int? controller = null) => APIs.Movie.GetInput(frame, controller).ToLuaTable(Lua); [LuaMethodExample("local stmovget = movie.getinputasmnemonic( 500 );")] [LuaMethod("getinputasmnemonic", "Returns the input of a given frame of the loaded movie in a raw inputlog string")] diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs index 0e1b95f5ec..3f1ca10839 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.SQL.cs @@ -34,15 +34,10 @@ namespace BizHawk.Client.Common [LuaMethodExample("local obSQLrea = SQL.readcommand( \"SELECT * FROM eg_tab WHERE eg_tab_id = 1;\" );")] [LuaMethod("readcommand", "Run a SQLite read command which includes Select. Returns all rows into a LuaTable." + "Ex: select * from rewards")] - public dynamic ReadCommand(string query = "") + public object ReadCommand(string query = "") { var result = APIs.Sql.ReadCommand(query); - if (result is Dictionary dict) - { - return dict.ToLuaTable(Lua); - } - - return result; + return result is Dictionary dict ? dict.ToLuaTable(Lua) : result; } } } diff --git a/BizHawk.Client.EmuHawk/Api/ClientApi.cs b/BizHawk.Client.EmuHawk/Api/ClientApi.cs index 8658e79657..b0e789f61a 100644 --- a/BizHawk.Client.EmuHawk/Api/ClientApi.cs +++ b/BizHawk.Client.EmuHawk/Api/ClientApi.cs @@ -86,7 +86,7 @@ namespace BizHawk.Client.EmuHawk #region Helpers - private static void InvokeMainFormMethod(string name, dynamic[] paramList = null) + private static void InvokeMainFormMethod(string name, object[] paramList = null) { List typeList = new List(); MethodInfo method; diff --git a/BizHawk.Client.EmuHawk/Api/Libraries/InputApi.cs b/BizHawk.Client.EmuHawk/Api/Libraries/InputApi.cs index 3af7d35317..77e2a2f8c2 100644 --- a/BizHawk.Client.EmuHawk/Api/Libraries/InputApi.cs +++ b/BizHawk.Client.EmuHawk/Api/Libraries/InputApi.cs @@ -15,9 +15,9 @@ namespace BizHawk.Client.EmuHawk return buttons; } - public Dictionary GetMouse() + public Dictionary GetMouse() { - var buttons = new Dictionary(); + var buttons = new Dictionary(); // TODO - need to specify whether in "emu" or "native" coordinate space. var p = GlobalWin.DisplayManager.UntransformPoint(Control.MousePosition); buttons["X"] = p.X; diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Input.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Input.cs index 0b2780dbc7..cf096e1145 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Input.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Input.cs @@ -18,20 +18,10 @@ namespace BizHawk.Client.EmuHawk [LuaMethodExample("local nlinpget = input.get( );")] [LuaMethod("get", "Returns a lua table of all the buttons the user is currently pressing on their keyboard and gamepads\nAll buttons that are pressed have their key values set to true; all others remain nil.")] - public LuaTable Get() - { - return APIs.Input - .Get() - .ToLuaTable(Lua); - } + public LuaTable Get() => APIs.Input.Get().ToLuaTable(Lua); [LuaMethodExample("local nlinpget = input.getmouse( );")] [LuaMethod("getmouse", "Returns a lua table of the mouse X/Y coordinates and button states. Table keys are X, Y, Left, Middle, Right, XButton1, XButton2, Wheel.")] - public LuaTable GetMouse() - { - return APIs.Input - .GetMouse() - .ToLuaTable(Lua); - } + public LuaTable GetMouse() => APIs.Input.GetMouse().ToLuaTable(Lua); } } diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index 6f809ce173..60f41bf7eb 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -355,9 +355,9 @@ namespace BizHawk.Emulation.Common return buttons; } - public static IDictionary ToDictionary(this IController controller, int? controllerNum = null) + public static IDictionary ToDictionary(this IController controller, int? controllerNum = null) { - var buttons = new Dictionary(); + var buttons = new Dictionary(); foreach (var button in controller.Definition.BoolButtons) {