From 60614ffa7be52c6cb40f030fd227bce0a30194ed Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 13 Jun 2020 16:39:21 -0400 Subject: [PATCH] PCE: Hide controllers 2-5 if multitap is disabled They have no power in that situation --- .../Consoles/NEC/PCE/TurboNyma.cs | 15 ++++++++++++ .../Waterbox/NymaCore.Controller.cs | 23 ++++++++++++++++--- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs index 1becd89ed8..8ed4b71043 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs @@ -69,6 +69,21 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE ["RUN"] = "Run" }; + protected override HashSet ComputeHiddenPorts() + { + if (SettingsQuery("pce.input.multitap") == "1") + { + return new HashSet(); + } + else + { + return new HashSet + { + "port2", "port3", "port4", "port5" + }; + } + } + // pce always has two layers, sgx always has 4, and mednafen knows this public bool IsSgx => SettingsInfo.LayerNames.Count == 4; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs index 2197ecca14..056f4169bb 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs @@ -15,7 +15,8 @@ namespace BizHawk.Emulation.Cores.Waterbox private void InitControls(List allPorts, bool hasCds) { - _controllerAdapter = new ControllerAdapter(allPorts, _syncSettingsActual.PortDevices, ButtonNameOverrides, hasCds); + _controllerAdapter = new ControllerAdapter( + allPorts, _syncSettingsActual.PortDevices, ButtonNameOverrides, hasCds, ComputeHiddenPorts()); _nyma.SetInputDevices(_controllerAdapter.Devices); ControllerDefinition = _controllerAdapter.Definition; } @@ -37,7 +38,12 @@ namespace BizHawk.Emulation.Cores.Waterbox /// public string[] Devices { get; } public ControllerDefinition Definition { get; } - public ControllerAdapter(List allPorts, IDictionary config, IDictionary overrides, bool hasCds) + public ControllerAdapter( + List allPorts, + IDictionary config, + IDictionary overrides, + bool hasCds, + HashSet hiddenPorts) { var ret = new ControllerDefinition { @@ -62,6 +68,9 @@ namespace BizHawk.Emulation.Cores.Waterbox var deviceName = config.ContainsKey(port) ? config[port] : portInfo.DefaultDeviceShortName; finalDevices.Add(deviceName); + if (hiddenPorts.Contains(portInfo.ShortName)) + continue; + var devices = portInfo.Devices; var device = devices.FirstOrDefault(a => a.ShortName == deviceName); @@ -264,6 +273,14 @@ namespace BizHawk.Emulation.Cores.Waterbox } } - protected virtual IDictionary ButtonNameOverrides { get; }= new Dictionary(); + protected virtual IDictionary ButtonNameOverrides { get; } = new Dictionary(); + /// + /// On some cores, some controller ports are not relevant when certain settings are off (like multitap). + /// Override this if your core has such an issue + /// + protected virtual HashSet ComputeHiddenPorts() + { + return new HashSet(); + } } }