From 1d4e7dd3fbcd97e30469c148562ff2cde4192974 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Thu, 16 Jun 2022 17:43:57 +0200 Subject: [PATCH] BSNESv115: Improve the payload controller, fix VirtualPad The payload controller now acts like a multitap with 4 extra buttons per controller (it is already implemented that way in the core), which also eases actual use of it - also fixes broken VirtualPad behavior - rename some variables for clarity --- .../movie/bk2/Bk2MnemonicLookup.cs | 7 ++- .../Nintendo/BSNES/BsnesControllers.cs | 51 +++++++++++++++---- .../vpads_schemata/SnesSchema.cs | 25 ++++++++- 3 files changed, 69 insertions(+), 14 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs index c2e0b93095..61a4921aa0 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs @@ -239,7 +239,12 @@ namespace BizHawk.Client.Common ["B28"] = 's', ["B29"] = 't', ["B30"] = 'u', - ["B31"] = 'v' + ["B31"] = 'v', + + ["Extra1"] = '1', + ["Extra2"] = '2', + ["Extra3"] = '3', + ["Extra4"] = '4' }, [VSystemID.Raw.TI83] = new() { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs index 03b8c203c1..258f44674c 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/BsnesControllers.cs @@ -90,7 +90,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES "0Up", "0Down", "0Left", "0Right", "0B", "0A", "0Y", "0X", "0L", "0R", "0Select", "0Start" }; - private static readonly Dictionary ButtonsOrder = new() + private static readonly Dictionary DisplayButtonOrder = new() { ["0Up"] = 0, ["0Down"] = 1, @@ -108,7 +108,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES private static readonly ControllerDefinition _definition = new("(SNES Controller fragment)") { - BoolButtons = Buttons.OrderBy(b => ButtonsOrder[b]).ToList() + BoolButtons = Buttons.OrderBy(b => DisplayButtonOrder[b]).ToList() }; public ControllerDefinition Definition => _definition; @@ -126,7 +126,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES { private static readonly ControllerDefinition _definition = new ControllerDefinition("(SNES Controller fragment)") { BoolButtons = { "0Mouse Left", "0Mouse Right" } } - .AddXYPair("0Mouse {0}", AxisPairOrientation.RightAndDown, (-127).RangeTo(127), 0); //TODO verify direction against hardware, R+D inferred from behaviour in Mario Paint + .AddXYPair("0Mouse {0}", AxisPairOrientation.RightAndDown, (-127).RangeTo(127), 0); public ControllerDefinition Definition => _definition; public bool LimitAnalogChangeSensitivity { get; init; } = true; @@ -166,7 +166,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES "Up", "Down", "Left", "Right", "B", "A", "Y", "X", "L", "R", "Select", "Start" }; - private static readonly Dictionary ButtonsOrder = new() + private static readonly Dictionary DisplayButtonOrder = new() { ["Up"] = 0, ["Down"] = 1, @@ -178,14 +178,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES ["B"] = 7, ["X"] = 8, ["A"] = 9, - ["R"] = 10, - ["L"] = 11 + ["L"] = 10, + ["R"] = 11 }; private static readonly ControllerDefinition _definition = new("(SNES Controller fragment)") { BoolButtons = Enumerable.Range(0, 4) - .SelectMany(i => Buttons.OrderBy(b => ButtonsOrder[b]) + .SelectMany(i => Buttons.OrderBy(b => DisplayButtonOrder[b]) .Select(b => i + b)) .ToList() }; @@ -201,23 +201,52 @@ namespace BizHawk.Emulation.Cores.Nintendo.BSNES } } + /// + /// "Virtual" controller that behaves like a multitap controller, but with 16 instead of 12 buttons per controller. + /// internal class BsnesPayloadController : IBsnesController { - private readonly int[] _buttonsOrder = {4, 5, 6, 7, 0, 8, 1, 9, 10, 11, 2, 3, 12, 13, 14, 15}; + private static readonly string[] Buttons = + { + "Up", "Down", "Left", "Right", "B", "A", "Y", "X", "L", "R", "Select", "Start", "Extra1", "Extra2", "Extra3", "Extra4" + }; + + private static readonly Dictionary DisplayButtonOrder = new() + { + ["B"] = 0, + ["Y"] = 1, + ["Select"] = 2, + ["Start"] = 3, + ["Up"] = 4, + ["Down"] = 5, + ["Left"] = 6, + ["Right"] = 7, + ["A"] = 8, + ["X"] = 9, + ["L"] = 10, + ["R"] = 11, + ["Extra1"] = 12, + ["Extra2"] = 13, + ["Extra3"] = 14, + ["Extra4"] = 15 + }; private static readonly ControllerDefinition _definition = new("(SNES Controller fragment)") { - BoolButtons = Enumerable.Range(0, 32).Select(i => $"0B{i}").ToList() + BoolButtons = Enumerable.Range(0, 4) + .SelectMany(i => Buttons.OrderBy(b => DisplayButtonOrder[b]) + .Select(b => i + b)) + .ToList() }; public ControllerDefinition Definition => _definition; public short GetState(IController controller, int index, int id) { - if (index >= 2 || id >= 16) + if (index >= 4 || id >= 16) return 0; - return (short) (controller.IsPressed(Definition.BoolButtons[index * 16 + _buttonsOrder[id]]) ? 1 : 0); + return (short) (controller.IsPressed(index + Buttons[id]) ? 1 : 0); } } diff --git a/src/BizHawk.Emulation.Cores/vpads_schemata/SnesSchema.cs b/src/BizHawk.Emulation.Cores/vpads_schemata/SnesSchema.cs index 2530031150..ed5ea658dc 100644 --- a/src/BizHawk.Emulation.Cores/vpads_schemata/SnesSchema.cs +++ b/src/BizHawk.Emulation.Cores/vpads_schemata/SnesSchema.cs @@ -122,7 +122,7 @@ namespace BizHawk.Emulation.Cores syncSettings.RightPort }; - int playerNum = 0; + int playerNum = 1; for (int i = 0; i < 2; i++, playerNum++) { switch (ports[i]) @@ -142,6 +142,7 @@ namespace BizHawk.Emulation.Cores { yield return StandardController(playerNum++); } + playerNum--; break; case BsnesApi.BSNES_INPUT_DEVICE.SuperScope: yield return SuperScope(playerNum); @@ -154,9 +155,14 @@ namespace BizHawk.Emulation.Cores { yield return Justifier(playerNum++); } + playerNum--; break; case BsnesApi.BSNES_INPUT_DEVICE.Payload: - yield return Payload(playerNum); + for (int j = 0; j < 4; j++) + { + yield return ExtendedStandardController(playerNum++); + } + playerNum--; break; } } @@ -206,6 +212,21 @@ namespace BizHawk.Emulation.Cores }; } + private static PadSchema ExtendedStandardController(int controller) + { + PadSchema standardController = StandardController(controller); + var newButtons = standardController.Buttons.ToList(); + newButtons.AddRange(new[] + { + new ButtonSchema(60, 65, controller, "Extra1", "1"), + new ButtonSchema(80, 65, controller, "Extra2", "2"), + new ButtonSchema(100, 65, controller, "Extra3", "3"), + new ButtonSchema(120, 65, controller, "Extra4", "4") + }); + standardController.Buttons = newButtons; + return standardController; + } + private static PadSchema Mouse(int controller) { var defAxes = new SnesMouseController().Definition.Axes;