virtual pads for picoDrive

This commit is contained in:
adelikat 2017-07-13 12:02:08 -05:00
parent 1990c4f8c2
commit 6d77f5a3c0
1 changed files with 19 additions and 1 deletions

View File

@ -3,6 +3,7 @@ using System.Drawing;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Consoles.Sega.gpgx;
using BizHawk.Emulation.Cores.Consoles.Sega.PicoDrive;
namespace BizHawk.Client.EmuHawk
{
@ -11,7 +12,24 @@ namespace BizHawk.Client.EmuHawk
{
public IEnumerable<PadSchema> GetPadSchemas(IEmulator core)
{
var devs = ((GPGX)core).GetDevices();
if (core is GPGX)
{
return GpgxPadSchemas((GPGX)core);
}
return PicoPadSchemas((PicoDrive)core);
}
private IEnumerable<PadSchema> PicoPadSchemas(PicoDrive core)
{
yield return SixButtonController(1);
yield return SixButtonController(2);
yield return ConsoleButtons();
}
private IEnumerable<PadSchema> GpgxPadSchemas(GPGX core)
{
var devs = (core).GetDevices();
int player = 1;
foreach (var dev in devs)
{