diff --git a/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs b/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs index 400084c089..4c08eec0f0 100644 --- a/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs @@ -74,7 +74,7 @@ namespace BizHawk.Client.EmuHawk Input.Instance.ClearEvents(); } - private delegate Control PanelCreator(Dictionary settings, List buttons, Size size); + private delegate Control PanelCreator(Dictionary settings, List buttons, Size size); private Control CreateNormalPanel(Dictionary settings, List buttons, Size size) { @@ -90,11 +90,19 @@ namespace BizHawk.Client.EmuHawk private static readonly Regex ButtonMatchesPlayer = new Regex("^P(\\d+)\\s"); - private void LoadToPanel(Control dest, string controllerName, IReadOnlyCollection controllerButtons, Dictionary categoryLabels, IDictionary> settingsBlock, T defaultValue, PanelCreator createPanel) + private void LoadToPanel( + Control dest, + string controllerName, + IReadOnlyCollection controllerButtons, + Dictionary categoryLabels, + IDictionary> settingsBlock, + TBindValue defaultValue, + PanelCreator createPanel + ) { if (!settingsBlock.TryGetValue(controllerName, out var settings)) { - settings = new Dictionary(); + settings = new Dictionary(); settingsBlock[controllerName] = settings; } @@ -123,7 +131,7 @@ namespace BizHawk.Client.EmuHawk foreach (var button in controllerButtons) { Match m; - string categoryLabel; // = "Console"; // anything that wants not console can set it in the categorylabels + string categoryLabel; if (categoryLabels.ContainsKey(button)) { categoryLabel = categoryLabels[button]; @@ -191,9 +199,33 @@ namespace BizHawk.Client.EmuHawk IDictionary> autofire, IDictionary> analog) { - LoadToPanel(NormalControlsTab, _emulator.ControllerDefinition.Name, _emulator.ControllerDefinition.BoolButtons, _emulator.ControllerDefinition.CategoryLabels, normal, "", CreateNormalPanel); - LoadToPanel(AutofireControlsTab, _emulator.ControllerDefinition.Name, _emulator.ControllerDefinition.BoolButtons, _emulator.ControllerDefinition.CategoryLabels, autofire, "", CreateNormalPanel); - LoadToPanel(AnalogControlsTab, _emulator.ControllerDefinition.Name, _emulator.ControllerDefinition.Axes.Keys.ToList(), _emulator.ControllerDefinition.CategoryLabels, analog, new AnalogBind("", 1.0f, 0.1f), CreateAnalogPanel); + LoadToPanel( + NormalControlsTab, + _emulator.ControllerDefinition.Name, + _emulator.ControllerDefinition.BoolButtons, + _emulator.ControllerDefinition.CategoryLabels, + normal, + "", + CreateNormalPanel + ); + LoadToPanel( + AutofireControlsTab, + _emulator.ControllerDefinition.Name, + _emulator.ControllerDefinition.BoolButtons, + _emulator.ControllerDefinition.CategoryLabels, + autofire, + "", + CreateNormalPanel + ); + LoadToPanel( + AnalogControlsTab, + _emulator.ControllerDefinition.Name, + _emulator.ControllerDefinition.Axes.Keys.ToList(), + _emulator.ControllerDefinition.CategoryLabels, + analog, + new AnalogBind("", 1.0f, 0.1f), + CreateAnalogPanel + ); if (AnalogControlsTab.Controls.Count == 0) {