78 lines
2.2 KiB
C#
78 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
[Schema("WSWAN")]
|
|
// ReSharper disable once UnusedMember.Global
|
|
public class WonderSwanSchema : IVirtualPadSchema
|
|
{
|
|
public IEnumerable<PadSchema> GetPadSchemas(IEmulator core)
|
|
{
|
|
yield return StandardController(1);
|
|
yield return RotatedController(2);
|
|
yield return ConsoleButtons();
|
|
}
|
|
|
|
private static PadSchema StandardController(int controller)
|
|
{
|
|
return new PadSchema
|
|
{
|
|
DisplayName = "Standard",
|
|
Size = new Size(174, 210),
|
|
Buttons = new[]
|
|
{
|
|
new ButtonSchema(23, 12, controller, "Y1"),
|
|
new ButtonSchema(9, 34, controller, "Y4"),
|
|
new ButtonSchema(38, 34, controller, "Y2"),
|
|
new ButtonSchema(23, 56, controller, "Y3"),
|
|
new ButtonSchema(23, 92, controller, "X1"),
|
|
new ButtonSchema(9, 114, controller, "X4"),
|
|
new ButtonSchema(38, 114, controller, "X2"),
|
|
new ButtonSchema(23, 136, controller, "X3"),
|
|
new ButtonSchema(80, 114, controller, "Start") { DisplayName = "S" },
|
|
new ButtonSchema(110, 114, controller, "B"),
|
|
new ButtonSchema(133, 103, controller, "A")
|
|
}
|
|
};
|
|
}
|
|
|
|
private static PadSchema RotatedController(int controller)
|
|
{
|
|
return new PadSchema
|
|
{
|
|
DisplayName = "Rotated",
|
|
Size = new Size(174, 210),
|
|
Buttons = new[]
|
|
{
|
|
new ButtonSchema(23, 12, controller, "A"),
|
|
new ButtonSchema(46, 22, controller, "B"),
|
|
new ButtonSchema(32, 58, controller, "Start") { DisplayName = "S" },
|
|
new ButtonSchema(23, 112, controller, "Y2"),
|
|
new ButtonSchema(9, 134, controller, "Y1"),
|
|
new ButtonSchema(38, 134, controller, "Y3"),
|
|
new ButtonSchema(23, 156, controller, "Y4"),
|
|
new ButtonSchema(103, 112, controller, "X2"),
|
|
new ButtonSchema(89, 134, controller, "X1"),
|
|
new ButtonSchema(118, 134, controller, "X3"),
|
|
new ButtonSchema(103, 156, controller, "X4")
|
|
}
|
|
};
|
|
}
|
|
|
|
private static PadSchema ConsoleButtons()
|
|
{
|
|
return new ConsoleSchema
|
|
{
|
|
Size = new Size(75, 50),
|
|
Buttons = new[]
|
|
{
|
|
new ButtonSchema(7, 15, "Power")
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|