From fa5c614641c28c626b799bd3651b97a2626224ae Mon Sep 17 00:00:00 2001 From: hegyak Date: Thu, 20 Nov 2014 17:45:44 +0000 Subject: [PATCH] Added schema/LynxSchema.cs --- .../BizHawk.Client.EmuHawk.csproj | 1 + .../tools/VirtualPads/schema/LynxSchema.cs | 94 +++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 BizHawk.Client.EmuHawk/tools/VirtualPads/schema/LynxSchema.cs diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index 31341dfe04..7ffbd71489 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -964,6 +964,7 @@ + diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/LynxSchema.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/LynxSchema.cs new file mode 100644 index 0000000000..475a293277 --- /dev/null +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/LynxSchema.cs @@ -0,0 +1,94 @@ +using System.Collections.Generic; +using System.Drawing; + +namespace BizHawk.Client.EmuHawk +{ + [SchemaAttributes("LYNX")] + public class LYNXSchema : IVirtualPadSchema + { + public IEnumerable GetPadSchemas() + { + yield return StandardController(); + //yield return ConsoleButtons(); + } + + public static PadSchema StandardController() + { + return new PadSchema + { + IsConsole = false, + DefaultSize = new Size(194, 90), + Buttons = new[] + { + new PadSchema.ButtonScema + { + Name = "Up", + DisplayName = "", + Icon = Properties.Resources.BlueUp, + Location = new Point(14, 12), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Down", + DisplayName = "", + Icon = Properties.Resources.BlueDown, + Location = new Point(14, 56), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Left", + DisplayName = "", + Icon = Properties.Resources.Back, + Location = new Point(2, 34), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Right", + DisplayName = "", + Icon = Properties.Resources.Forward, + Location = new Point(24, 34), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "B", + DisplayName = "B", + Location = new Point(130, 62), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "A", + DisplayName = "A", + Location = new Point(154, 62), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Option 1", + DisplayName = "1", + Location = new Point(100, 12), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Option 2", + DisplayName = "2", + Location = new Point(100, 62), + Type = PadSchema.PadInputType.Boolean + }, + new PadSchema.ButtonScema + { + Name = "Pause", + DisplayName = "Pause", + Location = new Point(100, 37), + Type = PadSchema.PadInputType.Boolean + } + } + }; + } + } +}