C64 - implement IBoardInfo

This commit is contained in:
adelikat 2017-05-12 15:36:15 -05:00
parent 91fb593ea1
commit 1222b4d5b5
2 changed files with 29 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
"SaxxonPike",
isPorted: false,
isReleased: false)]
public sealed partial class C64 : IEmulator, IRegionable
public sealed partial class C64 : IEmulator, IRegionable, IBoardInfo
{
public C64(CoreComm comm, IEnumerable<byte[]> roms, object settings, object syncSettings)
{
@ -54,6 +54,31 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
ser.Register<IDriveLight>(this);
}
// IBoardInfo
[SaveState.DoNotSave]
public string BoardName
{
get
{
if (_board.CartPort.IsConnected)
{
return _board.CartPort.CartridgeType;
}
if (_board.TapeDrive != null)
{
return "Tape Drive";
}
if (_board.DiskDrive != null)
{
return "Disk Drive"; // TODO: drive types?
}
return "";
}
}
// IRegionable
[SaveState.DoNotSave]
public DisplayType Region { get; private set; }

View File

@ -17,6 +17,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge
Disconnect();
}
[SaveState.DoNotSave]
internal string CartridgeType => _cartridgeDevice.GetType().Name;
// ------------------------------------------
public int PeekHiExp(int addr)