actualportdata api

This commit is contained in:
nattthebear 2020-06-14 11:47:02 -04:00
parent aa3369a080
commit 278317685c
1 changed files with 25 additions and 0 deletions

View File

@ -32,6 +32,7 @@ namespace BizHawk.Emulation.Cores.Waterbox
/// </summary>
public string[] Devices { get; }
public ControllerDefinition Definition { get; }
public List<PortResult> ActualPortData { get; set; } = new List<PortResult>();
public ControllerAdapter(
List<NPortInfoT> allPorts,
IDictionary<int, string> config,
@ -75,6 +76,12 @@ namespace BizHawk.Emulation.Cores.Waterbox
throw new InvalidOperationException($"Fail: unknown controller device {portInfo.DefaultDeviceShortName}");
}
ActualPortData.Add(new PortResult
{
Port = portInfo,
Device = device
});
var deviceInfo = device;
var category = portInfo.FullName + " - " + deviceInfo.FullName;
@ -305,5 +312,23 @@ namespace BizHawk.Emulation.Cores.Waterbox
{
return new HashSet<string>();
}
public class PortResult
{
/// <summary>
/// The port, together with all of its potential contents
/// </summary>
public NPortInfoT Port { get; set; }
/// <summary>
/// What was actually plugged into the port
/// </summary>
public NDeviceInfoT Device { get; set; }
}
/// <summary>
/// In a fully initialized core, holds information about what was actually plugged in. Please do not mutate it.
/// </summary>
/// <value></value>
public List<PortResult> ActualPortData => _controllerAdapter.ActualPortData;
}
}