77 lines
1.8 KiB
C#
77 lines
1.8 KiB
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
using BizHawk.Common;
|
|||
|
using BizHawk.Common.ReflectionExtensions;
|
|||
|
using BizHawk.Emulation.Common;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
|||
|
{
|
|||
|
public class GBHawkControllerDeck
|
|||
|
{
|
|||
|
public GBHawkControllerDeck(string controller1Name)
|
|||
|
{
|
|||
|
if (!ValidControllerTypes.ContainsKey(controller1Name))
|
|||
|
{
|
|||
|
throw new InvalidOperationException("Invalid controller type: " + controller1Name);
|
|||
|
}
|
|||
|
|
|||
|
Port1 = (IPort)Activator.CreateInstance(ValidControllerTypes[controller1Name], 1);
|
|||
|
|
|||
|
Definition = new ControllerDefinition
|
|||
|
{
|
|||
|
Name = Port1.Definition.Name,
|
|||
|
BoolButtons = Port1.Definition.BoolButtons
|
|||
|
.Concat(new[]
|
|||
|
{
|
|||
|
"Power",
|
|||
|
"Reset",
|
|||
|
})
|
|||
|
.ToList()
|
|||
|
};
|
|||
|
|
|||
|
Definition.FloatControls.AddRange(Port1.Definition.FloatControls);
|
|||
|
|
|||
|
Definition.FloatRanges.AddRange(Port1.Definition.FloatRanges);
|
|||
|
}
|
|||
|
|
|||
|
public byte ReadPort1(IController c)
|
|||
|
{
|
|||
|
return Port1.Read(c);
|
|||
|
}
|
|||
|
|
|||
|
public ControllerDefinition Definition { get; }
|
|||
|
|
|||
|
public void SyncState(Serializer ser)
|
|||
|
{
|
|||
|
ser.BeginSection("Port1");
|
|||
|
Port1.SyncState(ser);
|
|||
|
ser.EndSection();
|
|||
|
}
|
|||
|
|
|||
|
private readonly IPort Port1;
|
|||
|
|
|||
|
private static Dictionary<string, Type> _controllerTypes;
|
|||
|
|
|||
|
public static Dictionary<string, Type> ValidControllerTypes
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
if (_controllerTypes == null)
|
|||
|
{
|
|||
|
_controllerTypes = typeof(GBHawkControllerDeck).Assembly
|
|||
|
.GetTypes()
|
|||
|
.Where(t => typeof(IPort).IsAssignableFrom(t))
|
|||
|
.Where(t => !t.IsAbstract && !t.IsInterface)
|
|||
|
.ToDictionary(tkey => tkey.DisplayName());
|
|||
|
}
|
|||
|
|
|||
|
return _controllerTypes;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static string DefaultControllerName => typeof(StandardControls).DisplayName();
|
|||
|
}
|
|||
|
}
|