Add an IServiceProvider interface and make it a property of IEmulator, the purpose of this provider is to provide IEmulatorServices upon request. Make BasicServiceProvider and have all cores use it for now. BasicServiceProvider will return the core itself if the core itself is the requested type. He will also be able to return nested types (code not finished). Wired this up to the HasSavestates extension method (a method that has minimal value now) as a proof of concept.
This commit is contained in:
parent
ef1ef251b6
commit
d8a204572d
|
@ -0,0 +1,75 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
public class BasicServiceProvider : IEmulatorServiceProvider
|
||||
{
|
||||
private Dictionary<Type, IEmulatorService> Services = new Dictionary<Type, IEmulatorService>();
|
||||
|
||||
public BasicServiceProvider(IEmulator core)
|
||||
{
|
||||
var services = Assembly
|
||||
.GetAssembly(typeof(IEmulator))
|
||||
.GetTypes()
|
||||
.Where(t => t.IsInterface)
|
||||
.Where(t => typeof(IEmulatorService).IsAssignableFrom(t))
|
||||
.Where(t => t != typeof(IEmulatorService))
|
||||
.ToList();
|
||||
|
||||
var coreType = core.GetType();
|
||||
|
||||
foreach (var service in services)
|
||||
{
|
||||
if (service.IsAssignableFrom(coreType))
|
||||
{
|
||||
Services.Add(service, core);
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var service in core.GetType().GetNestedTypes(BindingFlags.Public)
|
||||
.Where(t => typeof(IEmulatorService).IsAssignableFrom(t))
|
||||
.Where(t => t.IsClass))
|
||||
{
|
||||
if (service.IsAssignableFrom(coreType))
|
||||
{
|
||||
// TODO: get the instance from the core
|
||||
//Services.Add(service, core);
|
||||
}
|
||||
}
|
||||
|
||||
int zzz = 0;
|
||||
}
|
||||
|
||||
public IEmulatorService GetService<T>()
|
||||
where T : IEmulatorService
|
||||
{
|
||||
IEmulatorService service;
|
||||
if (Services.TryGetValue(typeof(T), out service))
|
||||
{
|
||||
return (T)service;
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public bool HasService<T>()
|
||||
where T : IEmulatorService
|
||||
{
|
||||
IEmulatorService service;
|
||||
if (Services.TryGetValue(typeof(T), out service))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -8,6 +8,19 @@ namespace BizHawk.Emulation.Common
|
|||
[CoreAttributes("NullHawk", "")]
|
||||
public class NullEmulator : IEmulator, IVideoProvider, ISyncSoundProvider, ISoundProvider
|
||||
{
|
||||
public NullEmulator(CoreComm comm)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
|
||||
var d = DateTime.Now;
|
||||
xmas = d.Month == 12 && d.Day >= 17 && d.Day <= 27;
|
||||
if (xmas)
|
||||
pleg = new Pleg();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public string SystemId { get { return "NULL"; } }
|
||||
public static readonly ControllerDefinition NullController = new ControllerDefinition { Name = "Null Controller" };
|
||||
|
||||
|
@ -23,19 +36,9 @@ namespace BizHawk.Emulation.Common
|
|||
public bool StartAsyncSound() { return true; }
|
||||
public void EndAsyncSound() { }
|
||||
|
||||
public NullEmulator(CoreComm comm)
|
||||
{
|
||||
CoreComm = comm;
|
||||
|
||||
var d = DateTime.Now;
|
||||
xmas = d.Month == 12 && d.Day >= 17 && d.Day <= 27;
|
||||
if (xmas)
|
||||
pleg = new Pleg();
|
||||
}
|
||||
public void ResetCounters()
|
||||
{
|
||||
Frame = 0;
|
||||
// no lag frames on this stub core
|
||||
}
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound)
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
<Compile Include="..\VersionInfo.cs">
|
||||
<Link>VersionInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="Base Implementations\BasicServiceProvider.cs" />
|
||||
<Compile Include="Base Implementations\ControllerDefinition.cs" />
|
||||
<Compile Include="Base Implementations\InputCallbackSystem.cs" />
|
||||
<Compile Include="Base Implementations\NullController.cs" />
|
||||
|
@ -72,6 +73,7 @@
|
|||
<Compile Include="Interfaces\IInputPollable.cs" />
|
||||
<Compile Include="Interfaces\IMemoryDomains.cs" />
|
||||
<Compile Include="Interfaces\ISaveRam.cs" />
|
||||
<Compile Include="Interfaces\IEmulatorServiceProvider.cs" />
|
||||
<Compile Include="Interfaces\ISettable.cs" />
|
||||
<Compile Include="Interfaces\ISoundProvider.cs" />
|
||||
<Compile Include="Interfaces\IStatable.cs" />
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions
|
|||
|
||||
public static bool HasSavestates(this IEmulator core)
|
||||
{
|
||||
return core is IStatable;
|
||||
return core != null && core.ServiceProvider.HasService<IStatable>();
|
||||
}
|
||||
|
||||
public static bool CanPollInput(this IEmulator core)
|
||||
|
|
|
@ -6,6 +6,14 @@ namespace BizHawk.Emulation.Common
|
|||
{
|
||||
public interface IEmulator : IEmulatorService, IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Retrieves an IEmulatorService from the core,
|
||||
/// if the core does not have the type specified, it will return null
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <returns></returns>
|
||||
IEmulatorServiceProvider ServiceProvider { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Video provider to the client
|
||||
/// </summary>
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
public interface IEmulatorServiceProvider
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns whether or not T is available
|
||||
/// </summary>
|
||||
bool HasService<T>() where T : IEmulatorService;
|
||||
|
||||
/// <summary>
|
||||
/// Returns an instance of T if T is available
|
||||
/// Else returns null
|
||||
/// </summary>
|
||||
IEmulatorService GetService<T>() where T : IEmulatorService;
|
||||
}
|
||||
}
|
|
@ -52,6 +52,7 @@ namespace BizHawk.Emulation.Cores.Calculators
|
|||
[CoreConstructor("TI83")]
|
||||
public TI83(CoreComm comm, GameInfo game, byte[] rom, object Settings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
InputCallbacks = new InputCallbackSystem();
|
||||
PutSettings((TI83Settings)Settings ?? new TI83Settings());
|
||||
|
||||
|
@ -77,6 +78,8 @@ namespace BizHawk.Emulation.Cores.Calculators
|
|||
SetupMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
//-------
|
||||
|
||||
public byte ReadMemory(ushort addr)
|
||||
|
|
|
@ -77,6 +77,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
// framework
|
||||
public C64(CoreComm comm, GameInfo game, byte[] rom, string romextension)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
inputFileInfo = new InputFileInfo();
|
||||
inputFileInfo.Data = rom;
|
||||
inputFileInfo.Extension = romextension;
|
||||
|
@ -88,6 +89,8 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
HardReset();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
if (board.sid != null)
|
||||
|
|
|
@ -24,6 +24,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
[CoreConstructor("A26")]
|
||||
public Atari2600(CoreComm comm, GameInfo game, byte[] rom, object settings, object syncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
InputCallbacks = new InputCallbackSystem();
|
||||
Ram = new byte[128];
|
||||
CoreComm = comm;
|
||||
|
@ -44,6 +45,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
SetupMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public string SystemId { get { return "A26"; } }
|
||||
|
||||
public string BoardName { get { return _mapper.GetType().Name; } }
|
||||
|
|
|
@ -31,6 +31,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800
|
|||
TIATables.PALPalette[i] |= unchecked((int)0xff000000);
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public byte[] rom;
|
||||
public byte[] hsbios;
|
||||
public byte[] bios;
|
||||
|
@ -122,6 +124,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800
|
|||
|
||||
public Atari7800(CoreComm comm, GameInfo game, byte[] rom, string GameDBfn)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
InputCallbacks = new InputCallbackSystem();
|
||||
CoreComm = comm;
|
||||
byte[] highscoreBIOS = comm.CoreFileProvider.GetFirmware("A78", "Bios_HSC", false, "Some functions may not work without the high score BIOS.");
|
||||
|
|
|
@ -20,6 +20,7 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx
|
|||
[CoreConstructor("Lynx")]
|
||||
public Lynx(byte[] file, GameInfo game, CoreComm comm)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
|
||||
byte[] bios = CoreComm.CoreFileProvider.GetFirmware("Lynx", "Boot", true, "Boot rom is required");
|
||||
|
@ -122,6 +123,8 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound = true)
|
||||
{
|
||||
Frame++;
|
||||
|
|
|
@ -35,6 +35,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision
|
|||
[CoreConstructor("Coleco")]
|
||||
public ColecoVision(CoreComm comm, GameInfo game, byte[] rom, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
this.SyncSettings = (ColecoSyncSettings)SyncSettings ?? new ColecoSyncSettings();
|
||||
bool skipbios = this.SyncSettings.SkipBiosIntro;
|
||||
|
@ -60,6 +61,8 @@ namespace BizHawk.Emulation.Cores.ColecoVision
|
|||
SetupMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
||||
public IInputCallbackSystem InputCallbacks { get { return _inputCallbacks; } }
|
||||
|
||||
|
|
|
@ -58,6 +58,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
|||
[CoreConstructor("INTV")]
|
||||
public Intellivision(CoreComm comm, GameInfo game, byte[] rom)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
|
||||
Rom = rom;
|
||||
|
@ -91,6 +92,8 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
|||
LoadGraphicsRom(CoreComm.CoreFileProvider.GetFirmwarePath("INTV", "GROM", true, "Graphics ROM is required."));
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound)
|
||||
{
|
||||
Frame++;
|
||||
|
|
|
@ -47,6 +47,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
[CoreConstructor("GBA")]
|
||||
public GBA(CoreComm comm, byte[] file)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
comm.VsyncNum = 262144;
|
||||
comm.VsyncDen = 4389;
|
||||
|
@ -69,6 +70,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
SetUpMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound = true)
|
||||
{
|
||||
Frame++;
|
||||
|
|
|
@ -22,6 +22,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
[CoreConstructor("GBA")]
|
||||
public VBANext(byte[] file, CoreComm comm, GameInfo game, bool deterministic, object syncsettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
byte[] biosfile = CoreComm.CoreFileProvider.GetFirmware("GBA", "Bios", true, "GBA bios file is mandatory.");
|
||||
if (file.Length > 32 * 1024 * 1024)
|
||||
|
@ -90,6 +91,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound = true)
|
||||
{
|
||||
Frame++;
|
||||
|
|
|
@ -138,6 +138,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
[CoreConstructor("GB", "GBC")]
|
||||
public Gameboy(CoreComm comm, GameInfo game, byte[] file, object Settings, object SyncSettings, bool deterministic)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
|
||||
comm.VsyncNum = 262144;
|
||||
|
@ -216,6 +217,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
#region controller
|
||||
|
||||
public static readonly ControllerDefinition GbController = new ControllerDefinition
|
||||
|
|
|
@ -44,6 +44,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
|
||||
public GambatteLink(CoreComm comm, GameInfo leftinfo, byte[] leftrom, GameInfo rightinfo, byte[] rightrom, object Settings, object SyncSettings, bool deterministic)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
GambatteLinkSettings _Settings = (GambatteLinkSettings)Settings ?? new GambatteLinkSettings();
|
||||
GambatteLinkSyncSettings _SyncSettings = (GambatteLinkSyncSettings)SyncSettings ?? new GambatteLinkSyncSettings();
|
||||
|
||||
|
@ -82,6 +83,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
SetMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
private InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
||||
public IInputCallbackSystem InputCallbacks { get { return _inputCallbacks; } }
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
[CoreConstructor("N64")]
|
||||
public N64(CoreComm comm, GameInfo game, byte[] file, object settings, object syncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
|
||||
int SaveType = 0;
|
||||
if (game.OptionValue("SaveType") == "EEPROM_16K")
|
||||
{
|
||||
|
@ -137,6 +139,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
SetControllerButtons();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public bool UsingExpansionSlot
|
||||
{
|
||||
get { return !_disableExpansionSlot; }
|
||||
|
|
|
@ -26,6 +26,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
[CoreConstructor("NES")]
|
||||
public NES(CoreComm comm, GameInfo game, byte[] rom, object Settings, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
byte[] fdsbios = comm.CoreFileProvider.GetFirmware("NES", "Bios_FDS", false);
|
||||
if (fdsbios != null && fdsbios.Length == 40976)
|
||||
{
|
||||
|
@ -50,6 +51,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
PutSettings((NESSettings)Settings ?? new NESSettings());
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
private NES()
|
||||
{
|
||||
BootGodDB.Initialize();
|
||||
|
|
|
@ -66,6 +66,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
|||
{
|
||||
using (FP.Save())
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
|
||||
Context = LibQuickNES.qn_new();
|
||||
|
@ -102,6 +103,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
#region Controller
|
||||
|
||||
public ControllerDefinition ControllerDefinition { get; private set; }
|
||||
|
|
|
@ -34,6 +34,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
|
|||
{
|
||||
public LibsnesCore(GameInfo game, byte[] romData, bool deterministicEmulation, byte[] xmlData, CoreComm comm, object Settings, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
_game = game;
|
||||
CoreComm = comm;
|
||||
byte[] sgbRomData = null;
|
||||
|
@ -165,6 +166,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
private GameInfo _game;
|
||||
|
||||
public string CurrentProfile
|
||||
|
|
|
@ -33,9 +33,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES9X
|
|||
if (!LibSnes9x.debug_init(rom, rom.Length))
|
||||
throw new Exception();
|
||||
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void FrameAdvance(bool render, bool rendersound = true)
|
||||
{
|
||||
Frame++;
|
||||
|
|
|
@ -68,6 +68,7 @@ namespace BizHawk.Emulation.Cores.PCEngine
|
|||
[CoreConstructor("PCE", "SGX")]
|
||||
public PCEngine(CoreComm comm, GameInfo game, byte[] rom, object Settings, object syncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
CoreComm.CpuTraceAvailable = true;
|
||||
|
||||
|
@ -88,6 +89,8 @@ namespace BizHawk.Emulation.Cores.PCEngine
|
|||
SetControllerButtons();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public string BoardName { get { return null; } }
|
||||
|
||||
public PCEngine(CoreComm comm, GameInfo game, Disc disc, object Settings, object syncSettings)
|
||||
|
|
|
@ -88,6 +88,7 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis
|
|||
|
||||
public Genesis(CoreComm comm, GameInfo game, byte[] rom)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
MainCPU = new MC68000();
|
||||
SoundCPU = new Z80A();
|
||||
|
@ -147,6 +148,8 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis
|
|||
InitializeCartHardware(game);
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
void InitializeCartHardware(GameInfo game)
|
||||
{
|
||||
LogCartInfo();
|
||||
|
|
|
@ -96,6 +96,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
|
|||
[CoreConstructor("SMS", "SG", "GG")]
|
||||
public SMS(CoreComm comm, GameInfo game, byte[] rom, object settings, object syncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
Settings = (SMSSettings)settings ?? new SMSSettings();
|
||||
SyncSettings = (SMSSyncSettings)syncSettings ?? new SMSSyncSettings();
|
||||
CoreComm = comm;
|
||||
|
@ -210,6 +211,8 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
|
|||
SetupMemoryDomains();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
string DetermineRegion(string gameRegion)
|
||||
{
|
||||
if (gameRegion == null)
|
||||
|
|
|
@ -56,6 +56,7 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn
|
|||
|
||||
public Yabause(CoreComm CoreComm, DiscSystem.Disc CD, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
byte[] bios = CoreComm.CoreFileProvider.GetFirmware("SAT", "J", true, "Saturn BIOS is required.");
|
||||
CoreComm.RomStatusDetails = string.Format("Disk partial hash:{0}", CD.GetHash());
|
||||
this.CoreComm = CoreComm;
|
||||
|
@ -81,6 +82,8 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn
|
|||
DeactivateGL();
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
static object glContext;
|
||||
|
||||
void ActivateGL()
|
||||
|
|
|
@ -60,6 +60,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
|
||||
public GPGX(CoreComm comm, byte[] rom, DiscSystem.Disc CD, object Settings, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
|
||||
// this can influence some things internally
|
||||
string romextension = "GEN";
|
||||
|
||||
|
@ -176,6 +178,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// core callback for file loading
|
||||
/// </summary>
|
||||
|
|
|
@ -67,6 +67,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSP
|
|||
|
||||
public PSP(CoreComm comm, string isopath)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
if (attachedcore != null)
|
||||
{
|
||||
attachedcore.Dispose();
|
||||
|
@ -90,6 +91,8 @@ namespace BizHawk.Emulation.Cores.Sony.PSP
|
|||
attachedcore = this;
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
if (!disposed)
|
||||
|
|
|
@ -61,12 +61,15 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
|
|||
|
||||
public Octoshock(CoreComm comm)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
var domains = new List<MemoryDomain>();
|
||||
CoreComm = comm;
|
||||
VirtualWidth = BufferWidth = 256;
|
||||
BufferHeight = 192;
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
void Attach()
|
||||
{
|
||||
//attach this core as the current
|
||||
|
|
|
@ -89,6 +89,7 @@ namespace BizHawk.Emulation.Cores.WonderSwan
|
|||
[CoreConstructor("WSWAN")]
|
||||
public WonderSwan(CoreComm comm, byte[] file, bool deterministic, object Settings, object SyncSettings)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
CoreComm = comm;
|
||||
_Settings = (Settings)Settings ?? new Settings();
|
||||
_SyncSettings = (SyncSettings)SyncSettings ?? new SyncSettings();
|
||||
|
@ -129,6 +130,8 @@ namespace BizHawk.Emulation.Cores.WonderSwan
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
if (Core != IntPtr.Zero)
|
||||
|
|
|
@ -133,6 +133,8 @@ namespace BizHawk.Emulation.Cores
|
|||
|
||||
public LibRetroEmulator(CoreComm nextComm, string modulename)
|
||||
{
|
||||
ServiceProvider = new BasicServiceProvider(this);
|
||||
|
||||
retro_environment_cb = new LibRetro.retro_environment_t(retro_environment);
|
||||
retro_video_refresh_cb = new LibRetro.retro_video_refresh_t(retro_video_refresh);
|
||||
retro_audio_sample_cb = new LibRetro.retro_audio_sample_t(retro_audio_sample);
|
||||
|
@ -168,6 +170,8 @@ namespace BizHawk.Emulation.Cores
|
|||
}
|
||||
}
|
||||
|
||||
public IEmulatorServiceProvider ServiceProvider { get; private set; }
|
||||
|
||||
public bool Load(byte[] data)
|
||||
{
|
||||
LibRetro.retro_game_info gi = new LibRetro.retro_game_info();
|
||||
|
|
Loading…
Reference in New Issue