From d0908053c2407637fd158fb16ac08ea65d844107 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 22 Mar 2020 14:39:12 -0500 Subject: [PATCH] ButtonSchema - simplify --- .../tools/VirtualPads/schema/ButtonSchema.cs | 34 +++++-------------- 1 file changed, 8 insertions(+), 26 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/ButtonSchema.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/ButtonSchema.cs index ec3820e6e3..b1bae16f76 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/ButtonSchema.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/ButtonSchema.cs @@ -16,8 +16,6 @@ namespace BizHawk.Client.EmuHawk public class ButtonSchema { - public ButtonSchema(int x, int y) => Location = new Point(x, y); - public ButtonSchema(int x, int y, string name) { Location = new Point(x, y); @@ -50,27 +48,23 @@ namespace BizHawk.Client.EmuHawk public ControllerDefinition.AxisRange? AxisRange { get; set; } public ControllerDefinition.AxisRange? SecondaryAxisRange { get; set; } - public static ButtonSchema Up(int x, int y, string name) => new ButtonSchema(x, y) + public static ButtonSchema Up(int x, int y, string name) => new ButtonSchema(x, y, name) { - Name = name, Icon = Properties.Resources.BlueUp }; - public static ButtonSchema Down(int x, int y, string name) => new ButtonSchema(x, y) + public static ButtonSchema Down(int x, int y, string name) => new ButtonSchema(x, y, name) { - Name = name, Icon = Properties.Resources.BlueDown }; - public static ButtonSchema Left(int x, int y, string name) => new ButtonSchema(x, y) + public static ButtonSchema Left(int x, int y, string name) => new ButtonSchema(x, y, name) { - Name = name, Icon = Properties.Resources.Back }; - public static ButtonSchema Right(int x, int y, string name) => new ButtonSchema(x, y) + public static ButtonSchema Right(int x, int y, string name) => new ButtonSchema(x, y, name) { - Name = name, Icon = Properties.Resources.Forward }; } @@ -86,16 +80,10 @@ namespace BizHawk.Client.EmuHawk public class TargetedPairSchema : ButtonSchema { - public TargetedPairSchema(int x, int y) - : base(x, y) + public TargetedPairSchema(int x, int y, string nameX) + : base(x, y, nameX) { Type = PadInputType.TargetedPair; - } - - public TargetedPairSchema(int x, int y, string nameX) - : this(x, y) - { - Name = nameX; SecondaryNames = new[] { nameX.Replace("X", "Y") @@ -105,16 +93,10 @@ namespace BizHawk.Client.EmuHawk public class AnalogSchema : ButtonSchema { - public AnalogSchema(int x, int y) - : base(x, y) + public AnalogSchema(int x, int y, string nameX) + : base(x, y, nameX) { Type = PadInputType.AnalogStick; - } - - public AnalogSchema(int x, int y, string nameX) - : this(x, y) - { - Name = nameX; SecondaryNames = new[] { nameX.Replace("X", "Y")