DS virtual pad

This commit is contained in:
adelikat 2020-03-21 14:29:39 -05:00
parent 5eac0eb713
commit 020db9bfe3
1 changed files with 156 additions and 0 deletions

View File

@ -0,0 +1,156 @@
using System.Collections.Generic;
using System.Drawing;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk.tools.VirtualPads.schema
{
[Schema("NDS")]
public class NdsSchema : IVirtualPadSchema
{
public IEnumerable<PadSchema> GetPadSchemas(IEmulator core)
{
yield return ControllerButtons();
yield return Console();
}
private static PadSchema Console()
{
return new PadSchema
{
IsConsole = true,
DefaultSize = new Size(50, 35),
Buttons = new []
{
new PadSchema.ButtonSchema
{
Name = "Lid",
DisplayName = "Lid",
Location = new Point(8, 8),
Type = PadSchema.PadInputType.Boolean
}
}
};
}
private static PadSchema ControllerButtons()
{
return new PadSchema
{
IsConsole = false,
DefaultSize = new Size(440, 260),
Buttons = new []
{
new PadSchema.ButtonSchema
{
Name = "Up",
DisplayName = "",
Icon = Properties.Resources.BlueUp,
Location = new Point(14, 79),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Down",
DisplayName = "",
Icon = Properties.Resources.BlueDown,
Location = new Point(14, 122),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Left",
DisplayName = "",
Icon = Properties.Resources.Back,
Location = new Point(2, 100),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Right",
DisplayName = "",
Icon = Properties.Resources.Forward,
Location = new Point(24, 100),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "L",
DisplayName = "L",
Location = new Point(2, 10),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "R",
DisplayName = "R",
Location = new Point(366, 10),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Start",
DisplayName = "Start",
Location = new Point(341, 179),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Select",
DisplayName = "Select",
Location = new Point(341, 201),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Y",
DisplayName = "Y",
Location = new Point(341, 100),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "B",
DisplayName = "B",
Location = new Point(365, 113),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "X",
DisplayName = "X",
Location = new Point(341, 76),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "A",
DisplayName = "A",
Location = new Point(366, 86),
Type = PadSchema.PadInputType.Boolean
},
// Screen
new PadSchema.ButtonSchema
{
Name = "TouchX",
Location = new Point(72, 35),
Type = PadSchema.PadInputType.TargetedPair,
TargetSize = new Size(256, 192),
SecondaryNames = new[]
{
"TouchY"
}
},
new PadSchema.ButtonSchema
{
Name = "Touch",
DisplayName = "Touch",
Location = new Point(72, 10),
Type = PadSchema.PadInputType.Boolean
}
}
};
}
}
}