From 3d8ed7483f98516c5ae234cb775e706204f95981 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 26 Jun 2020 09:00:33 +1000 Subject: [PATCH] Move axis types to own files --- src/BizHawk.Client.Common/Controller.cs | 2 +- .../movie/import/DsmImport.cs | 2 +- .../controls/VirtualPadAnalogStick.cs | 2 - .../controls/components/AnalogStickPanel.cs | 2 - .../tools/VirtualPads/schema/N64Schema.cs | 2 - .../tools/VirtualPads/schema/PSXSchema.cs | 2 - .../VirtualPads/schema/PadSchemaControl.cs | 2 - .../tools/VirtualPads/schema/PceSchema.cs | 2 - .../tools/VirtualPads/schema/PcfxSchema.cs | 2 - .../tools/VirtualPads/schema/SaturnSchema.cs | 2 - .../Axes/AxisConstraint.cs | 9 ++ .../Base Implementations/Axes/AxisDict.cs | 56 +++++++ .../Axes/AxisPairOrientation.cs | 12 ++ .../Base Implementations/Axes/AxisSpec.cs | 42 +++++ .../Axes/CircularAxisConstraint.cs | 31 ++++ .../Axes/NoOpAxisConstraint.cs | 11 ++ .../ControllerDefinition.cs | 146 +----------------- src/BizHawk.Emulation.Common/Extensions.cs | 2 - .../Atari/A7800Hawk/A7800HawkControllers.cs | 2 - .../Consoles/Belogic/Uzem.cs | 2 - .../Consoles/Coleco/ColecoControllers.cs | 2 - .../GCE/Vectrex/VectrexHawkControllers.cs | 2 - .../Controllers/IntellivisionControllers.cs | 2 - .../Nintendo/GBHawk/GBHawkControllers.cs | 2 - .../Consoles/Nintendo/N64/N64.ISettable.cs | 2 - .../Consoles/Nintendo/NDS/MelonDS.cs | 2 - .../Consoles/Nintendo/NES/NESControllers.cs | 2 - .../Nintendo/SNES/LibsnesControllerDeck.cs | 2 - .../Consoles/Nintendo/SNES9X/Snes9x.cs | 2 - .../Consoles/Sega/SMS/SMS.IEmulator.cs | 2 - .../Consoles/Sega/SMS/SMS.Input.cs | 2 - .../Sega/gpgx64/GPGXControlConverter.cs | 2 - .../Consoles/Sony/PSX/Octoshock.cs | 2 - .../Libretro/LibretroCore.cs | 2 - .../Waterbox/NymaCore.Controller.cs | 1 - .../Display/InputDisplayTests.cs | 2 - .../Client.Common/Movie/LogGeneratorTests.cs | 2 - 37 files changed, 164 insertions(+), 202 deletions(-) create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisConstraint.cs create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisDict.cs create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisPairOrientation.cs create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisSpec.cs create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/CircularAxisConstraint.cs create mode 100644 src/BizHawk.Emulation.Common/Base Implementations/Axes/NoOpAxisConstraint.cs diff --git a/src/BizHawk.Client.Common/Controller.cs b/src/BizHawk.Client.Common/Controller.cs index 476e4c083a..bb20b495d3 100644 --- a/src/BizHawk.Client.Common/Controller.cs +++ b/src/BizHawk.Client.Common/Controller.cs @@ -28,7 +28,7 @@ namespace BizHawk.Client.Common private readonly WorkingDictionary> _bindings = new WorkingDictionary>(); private readonly WorkingDictionary _buttons = new WorkingDictionary(); private readonly WorkingDictionary _axes = new WorkingDictionary(); - private readonly Dictionary _axisRanges = new WorkingDictionary(); + private readonly Dictionary _axisRanges = new WorkingDictionary(); private readonly Dictionary _axisBindings = new Dictionary(); /// don't do this diff --git a/src/BizHawk.Client.Common/movie/import/DsmImport.cs b/src/BizHawk.Client.Common/movie/import/DsmImport.cs index d27dabfd61..1662c0226a 100644 --- a/src/BizHawk.Client.Common/movie/import/DsmImport.cs +++ b/src/BizHawk.Client.Common/movie/import/DsmImport.cs @@ -90,7 +90,7 @@ namespace BizHawk.Client.Common "Right", "Left", "Down", "Up", "Start", "Select", "B", "A", "X", "Y", "L", "R", "LidOpen", "LidClose", "Touch" } - }.AddXYPair("Touch{0}", ControllerDefinition.AxisPairOrientation.RightAndUp, 0.RangeTo(255), 128, 0.RangeTo(191), 96) //TODO verify direction against hardware + }.AddXYPair("Touch{0}", AxisPairOrientation.RightAndUp, 0.RangeTo(255), 128, 0.RangeTo(191), 96) //TODO verify direction against hardware }; controller["LidOpen"] = false; diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/VirtualPadAnalogStick.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/VirtualPadAnalogStick.cs index 00556683b7..dfcbf5e54e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/VirtualPadAnalogStick.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/VirtualPadAnalogStick.cs @@ -7,8 +7,6 @@ using BizHawk.Emulation.Common; using BizHawk.Client.Common; using BizHawk.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { public partial class VirtualPadAnalogStick : UserControl, IVirtualPadControl diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/components/AnalogStickPanel.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/components/AnalogStickPanel.cs index b41a5fcff3..3a76bffd84 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/components/AnalogStickPanel.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/controls/components/AnalogStickPanel.cs @@ -6,8 +6,6 @@ using BizHawk.Common; using BizHawk.Common.NumberExtensions; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { public sealed class AnalogStickPanel : Panel diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/N64Schema.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/N64Schema.cs index fa6e5c8252..3ef9e98219 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/N64Schema.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/N64Schema.cs @@ -5,8 +5,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Nintendo.N64; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { [Schema("N64")] diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PSXSchema.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PSXSchema.cs index c110414f8e..928a4ad19b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PSXSchema.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PSXSchema.cs @@ -5,8 +5,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Sony.PSX; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { [Schema("PSX")] diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs index 3af1e7e4fc..bf39a30b4c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs @@ -7,8 +7,6 @@ using System.Windows.Forms; using BizHawk.Client.EmuHawk.Properties; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { public abstract class PadSchemaControl diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs index 3ebc74f143..94604e3c2e 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs @@ -8,8 +8,6 @@ using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.PCEngine; using BizHawk.Emulation.Cores.Waterbox; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { [Schema("PCECD")] diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PcfxSchema.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PcfxSchema.cs index 8fb26c6c40..04021841a3 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PcfxSchema.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PcfxSchema.cs @@ -7,8 +7,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { [Schema("PCFX")] diff --git a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/SaturnSchema.cs b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/SaturnSchema.cs index 5496a99b45..4b2eb441fc 100644 --- a/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/SaturnSchema.cs +++ b/src/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/SaturnSchema.cs @@ -6,8 +6,6 @@ using System.Windows.Forms; using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Client.EmuHawk { [Schema("SAT")] diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisConstraint.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisConstraint.cs new file mode 100644 index 0000000000..adeed4e5fc --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisConstraint.cs @@ -0,0 +1,9 @@ +namespace BizHawk.Emulation.Common +{ + public interface AxisConstraint + { + public string Class { get; } + + public string PairedAxis { get; } + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisDict.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisDict.cs new file mode 100644 index 0000000000..88d3577762 --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisDict.cs @@ -0,0 +1,56 @@ +using System.Collections; +using System.Collections.Generic; + +namespace BizHawk.Emulation.Common +{ + public sealed class AxisDict : IReadOnlyDictionary + { + private readonly IList _keys = new List(); + + private readonly IDictionary _specs = new Dictionary(); + + public int Count => _keys.Count; + + public bool HasContraints { get; private set; } + + public IEnumerable Keys => _keys; + + public IEnumerable Values => _specs.Values; + + public string this[int index] => _keys[index]; + + public AxisSpec this[string index] + { + get => _specs[index]; + set => _specs[index] = value; + } + + public void Add(string key, AxisSpec value) + { + _keys.Add(key); + _specs.Add(key, value); + if (value.Constraint != null) HasContraints = true; + } + + public void Add(KeyValuePair item) => Add(item.Key, item.Value); + + public void Clear() + { + _keys.Clear(); + _specs.Clear(); + HasContraints = false; + } + + public bool ContainsKey(string key) => _keys.Contains(key); + + public IEnumerator> GetEnumerator() => _specs.GetEnumerator(); + + IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); + + public int IndexOf(string key) => _keys.IndexOf(key); + + public AxisSpec SpecAtIndex(int index) => this[_keys[index]]; + + public bool TryGetValue(string key, out AxisSpec value) => _specs.TryGetValue(key, out value); + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisPairOrientation.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisPairOrientation.cs new file mode 100644 index 0000000000..89c5808fcc --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisPairOrientation.cs @@ -0,0 +1,12 @@ +namespace BizHawk.Emulation.Common +{ + /// represents the direction of (+, +) + /// docs of individual controllers are being collected in comments of https://github.com/TASVideos/BizHawk/issues/1200 + public enum AxisPairOrientation : byte + { + RightAndUp = 0, + RightAndDown = 1, + LeftAndUp = 2, + LeftAndDown = 3 + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisSpec.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisSpec.cs new file mode 100644 index 0000000000..79767e4c11 --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/AxisSpec.cs @@ -0,0 +1,42 @@ +using System; + +using BizHawk.Common; + +namespace BizHawk.Emulation.Common +{ + public readonly struct AxisSpec + { + /// + /// Gets the axis constraints that apply artificial constraints to float values + /// For instance, a N64 controller's analog range is actually larger than the amount allowed by the plastic that artificially constrains it to lower values + /// Axis constraints provide a way to technically allow the full range but have a user option to constrain down to typical values that a real control would have + /// + public readonly AxisConstraint Constraint; + + public Range FloatRange => ((float) Min).RangeTo(Max); + + public readonly bool IsReversed; + + public int Max => Range.EndInclusive; + + /// maximum decimal digits analog input can occupy with no-args ToString + /// does not include the extra char needed for a minus sign + public int MaxDigits => Math.Max(Math.Abs(Min).ToString().Length, Math.Abs(Max).ToString().Length); + + public readonly int Mid; + + public int Min => Range.Start; + + public string PairedAxis => Constraint?.PairedAxis; + + public readonly Range Range; + + public AxisSpec(Range range, int mid, bool isReversed = false, AxisConstraint constraint = null) + { + Constraint = constraint; + IsReversed = isReversed; + Mid = mid; + Range = range; + } + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/CircularAxisConstraint.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/CircularAxisConstraint.cs new file mode 100644 index 0000000000..6d9920093b --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/CircularAxisConstraint.cs @@ -0,0 +1,31 @@ +using System; + +namespace BizHawk.Emulation.Common +{ + public sealed class CircularAxisConstraint : AxisConstraint + { + public string Class { get; } + + private readonly float Magnitude; + + public string PairedAxis { get; } + + public CircularAxisConstraint(string @class, string pairedAxis, float magnitude) + { + Class = @class; + Magnitude = magnitude; + PairedAxis = pairedAxis; + } + + public (int X, int Y) ApplyTo(int rawX, int rawY) + { + var xVal = (double) rawX; + var yVal = (double) rawY; + var length = Math.Sqrt(xVal * xVal + yVal * yVal); + var ratio = Magnitude / length; + return ratio < 1.0 + ? ((int) (xVal * ratio), (int) (yVal * ratio)) + : ((int) xVal, (int) yVal); + } + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Axes/NoOpAxisConstraint.cs b/src/BizHawk.Emulation.Common/Base Implementations/Axes/NoOpAxisConstraint.cs new file mode 100644 index 0000000000..5c4b278aea --- /dev/null +++ b/src/BizHawk.Emulation.Common/Base Implementations/Axes/NoOpAxisConstraint.cs @@ -0,0 +1,11 @@ +namespace BizHawk.Emulation.Common +{ + public sealed class NoOpAxisConstraint : AxisConstraint + { + public string Class { get; } = null; + + public string PairedAxis { get; } + + public NoOpAxisConstraint(string pairedAxis) => PairedAxis = pairedAxis; + } +} diff --git a/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs b/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs index 29268c8f19..f7a37f7e85 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs @@ -1,11 +1,7 @@ -using System; -using System.Collections; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; -using BizHawk.Common; - namespace BizHawk.Emulation.Common { /// @@ -37,95 +33,8 @@ namespace BizHawk.Emulation.Common /// public List BoolButtons { get; set; } = new List(); - public sealed class AxisDict : IReadOnlyDictionary - { - private readonly IList _keys = new List(); - - private readonly IDictionary _specs = new Dictionary(); - - public int Count => _keys.Count; - - public bool HasContraints { get; private set; } - - public IEnumerable Keys => _keys; - - public IEnumerable Values => _specs.Values; - - public string this[int index] => _keys[index]; - - public AxisSpec this[string index] - { - get => _specs[index]; - set => _specs[index] = value; - } - - public void Add(string key, AxisSpec value) - { - _keys.Add(key); - _specs.Add(key, value); - if (value.Constraint != null) HasContraints = true; - } - - public void Add(KeyValuePair item) => Add(item.Key, item.Value); - - public void Clear() - { - _keys.Clear(); - _specs.Clear(); - HasContraints = false; - } - - public bool ContainsKey(string key) => _keys.Contains(key); - - public IEnumerator> GetEnumerator() => _specs.GetEnumerator(); - - IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); - - public int IndexOf(string key) => _keys.IndexOf(key); - - public AxisSpec SpecAtIndex(int index) => this[_keys[index]]; - - public bool TryGetValue(string key, out AxisSpec value) => _specs.TryGetValue(key, out value); - } - public readonly AxisDict Axes = new AxisDict(); - public readonly struct AxisSpec - { - /// - /// Gets the axis constraints that apply artificial constraints to float values - /// For instance, a N64 controller's analog range is actually larger than the amount allowed by the plastic that artificially constrains it to lower values - /// Axis constraints provide a way to technically allow the full range but have a user option to constrain down to typical values that a real control would have - /// - public readonly AxisConstraint Constraint; - - public Range FloatRange => ((float) Min).RangeTo(Max); - - public readonly bool IsReversed; - - public int Max => Range.EndInclusive; - - /// maximum decimal digits analog input can occupy with no-args ToString - /// does not include the extra char needed for a minus sign - public int MaxDigits => Math.Max(Math.Abs(Min).ToString().Length, Math.Abs(Max).ToString().Length); - - public readonly int Mid; - - public int Min => Range.Start; - - public string PairedAxis => Constraint?.PairedAxis; - - public readonly Range Range; - - public AxisSpec(Range range, int mid, bool isReversed = false, AxisConstraint constraint = null) - { - Constraint = constraint; - IsReversed = isReversed; - Mid = mid; - Range = range; - } - } - /// /// Gets the category labels. These labels provide a means of categorizing controls in various controller display and config screens /// @@ -149,59 +58,6 @@ namespace BizHawk.Emulation.Common } } - /// represents the direction of (+, +) - /// docs of individual controllers are being collected in comments of https://github.com/TASVideos/BizHawk/issues/1200 - public enum AxisPairOrientation : byte - { - RightAndUp = 0, - RightAndDown = 1, - LeftAndUp = 2, - LeftAndDown = 3 - } - - public interface AxisConstraint - { - public string Class { get; } - - public string PairedAxis { get; } - } - - public sealed class NoOpAxisConstraint : AxisConstraint - { - public string Class { get; } = null; - - public string PairedAxis { get; } - - public NoOpAxisConstraint(string pairedAxis) => PairedAxis = pairedAxis; - } - - public sealed class CircularAxisConstraint : AxisConstraint - { - public string Class { get; } - - private readonly float Magnitude; - - public string PairedAxis { get; } - - public CircularAxisConstraint(string @class, string pairedAxis, float magnitude) - { - Class = @class; - Magnitude = magnitude; - PairedAxis = pairedAxis; - } - - public (int X, int Y) ApplyTo(int rawX, int rawY) - { - var xVal = (double) rawX; - var yVal = (double) rawY; - var length = Math.Sqrt(xVal * xVal + yVal * yVal); - var ratio = Magnitude / length; - return ratio < 1.0 - ? ((int) (xVal * ratio), (int) (yVal * ratio)) - : ((int) xVal, (int) yVal); - } - } - /// /// Gets a list of controls put in a logical order such as by controller number, /// This is a default implementation that should work most of the time diff --git a/src/BizHawk.Emulation.Common/Extensions.cs b/src/BizHawk.Emulation.Common/Extensions.cs index 46990dde17..f02ca4832a 100644 --- a/src/BizHawk.Emulation.Common/Extensions.cs +++ b/src/BizHawk.Emulation.Common/Extensions.cs @@ -9,8 +9,6 @@ using BizHawk.Common; using BizHawk.Common.PathExtensions; using BizHawk.Common.StringExtensions; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Common { public static class EmulatorExtensions diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800HawkControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800HawkControllers.cs index 0c39c79189..3aac2bba65 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800HawkControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800HawkControllers.cs @@ -4,8 +4,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { /// diff --git a/src/BizHawk.Emulation.Cores/Consoles/Belogic/Uzem.cs b/src/BizHawk.Emulation.Cores/Consoles/Belogic/Uzem.cs index 90a6f1876b..9b0b77e156 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Belogic/Uzem.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Belogic/Uzem.cs @@ -4,8 +4,6 @@ using System; using BizHawk.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Consoles.Belogic { [Core("uzem", "David Etherton", true, true, "", "", false)] diff --git a/src/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoControllers.cs index 05db6f72e5..6fab94fce7 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoControllers.cs @@ -6,8 +6,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.ColecoVision { /// diff --git a/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawkControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawkControllers.cs index 4d23121778..e8f13b4942 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawkControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawkControllers.cs @@ -4,8 +4,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Consoles.Vectrex { /// diff --git a/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Controllers/IntellivisionControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Controllers/IntellivisionControllers.cs index b4fe3bc32d..d9ca9b955d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Controllers/IntellivisionControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Controllers/IntellivisionControllers.cs @@ -6,8 +6,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Intellivision { /// diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs index 063cda5548..dc843bd159 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs @@ -5,8 +5,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { /// diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ISettable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ISettable.cs index ac845def63..78b0685b5d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ISettable.cs @@ -1,8 +1,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Nintendo.N64 { public partial class N64 : ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs index 1f2b5bb8fb..c9a28abdd8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NDS/MelonDS.cs @@ -5,8 +5,6 @@ using System.IO; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS { [Core("MelonDS", "Arisotura", false, false, null, null, true)] diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs index 4b21812c5c..b88301ff3c 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs @@ -5,8 +5,6 @@ using BizHawk.Emulation.Common; using BizHawk.Common; using Newtonsoft.Json; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Nintendo.NES { /* diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs index 32741a3e9a..2e03fb39ca 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs @@ -6,8 +6,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Common.NumberExtensions; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Nintendo.SNES { public class LibsnesControllerDeck diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs index 669c92f9b7..a1884871d7 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs @@ -9,8 +9,6 @@ using System.Linq; using BizHawk.Emulation.Cores.Nintendo.SNES; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Nintendo.SNES9X { [Core(CoreNames.Snes9X, "", true, true, diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IEmulator.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IEmulator.cs index 4dbc89b7c8..230d8d9912 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IEmulator.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.IEmulator.cs @@ -1,8 +1,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Sega.MasterSystem { public partial class SMS : IEmulator diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs index 7fc49c900c..6712e57230 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs @@ -4,8 +4,6 @@ using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Sega.MasterSystem { public partial class SMS diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs index cd6db45264..2176857edb 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGXControlConverter.cs @@ -4,8 +4,6 @@ using System.Collections.Generic; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx { public class GPGXControlConverter diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index e081be042c..76ae3ba85e 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -24,8 +24,6 @@ using BizHawk.Emulation.Common; using BizHawk.Common; using BizHawk.Emulation.DiscSystem; -using static BizHawk.Emulation.Common.ControllerDefinition; - #pragma warning disable 649 //adelikat: Disable dumb warnings until this file is complete namespace BizHawk.Emulation.Cores.Sony.PSX diff --git a/src/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs b/src/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs index 6beee8f08a..7073b36cd4 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs @@ -11,8 +11,6 @@ using System.Runtime.InteropServices; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Emulation.Cores.Libretro { [Core("Libretro", "zeromus", isPorted: false, isReleased: false)] diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs index c1a75277f1..8831ede4ea 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs @@ -7,7 +7,6 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using NymaTypes; -using static BizHawk.Emulation.Common.ControllerDefinition; using static BizHawk.Emulation.Cores.Waterbox.LibNymaCore; namespace BizHawk.Emulation.Cores.Waterbox diff --git a/src/BizHawk.Tests/Client.Common/Display/InputDisplayTests.cs b/src/BizHawk.Tests/Client.Common/Display/InputDisplayTests.cs index a20d66851e..c6e5ddf4c0 100644 --- a/src/BizHawk.Tests/Client.Common/Display/InputDisplayTests.cs +++ b/src/BizHawk.Tests/Client.Common/Display/InputDisplayTests.cs @@ -4,8 +4,6 @@ using BizHawk.Client.Common; using BizHawk.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Tests.Client.Common.Display { [TestClass] diff --git a/src/BizHawk.Tests/Client.Common/Movie/LogGeneratorTests.cs b/src/BizHawk.Tests/Client.Common/Movie/LogGeneratorTests.cs index 9a031f1991..d7b433d650 100644 --- a/src/BizHawk.Tests/Client.Common/Movie/LogGeneratorTests.cs +++ b/src/BizHawk.Tests/Client.Common/Movie/LogGeneratorTests.cs @@ -3,8 +3,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using BizHawk.Client.Common; using BizHawk.Emulation.Common; -using static BizHawk.Emulation.Common.ControllerDefinition; - namespace BizHawk.Common.Tests.Client.Common.Movie { [TestClass]