2014-04-25 01:19:57 +00:00
|
|
|
|
using System;
|
2014-11-24 00:38:29 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
2014-11-30 14:52:52 +00:00
|
|
|
|
using BizHawk.Common.ReflectionExtensions;
|
2014-04-25 01:19:57 +00:00
|
|
|
|
|
2014-05-31 14:29:27 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common.IEmulatorExtensions
|
2014-04-25 01:19:57 +00:00
|
|
|
|
{
|
|
|
|
|
public static class Extensions
|
|
|
|
|
{
|
|
|
|
|
public static CoreAttributes Attributes(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return (CoreAttributes)Attribute.GetCustomAttribute(core.GetType(), typeof(CoreAttributes));
|
|
|
|
|
}
|
2014-09-01 18:43:41 +00:00
|
|
|
|
|
2014-12-15 22:25:06 +00:00
|
|
|
|
// todo: most of the special cases involving the NullEmulator should probably go away
|
2014-12-05 00:15:28 +00:00
|
|
|
|
public static bool IsNull(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return core == null || core is NullEmulator;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 16:17:16 +00:00
|
|
|
|
public static bool HasVideoProvider(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IVideoProvider>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IVideoProvider AsVideoProvider(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return core.ServiceProvider.GetService<IVideoProvider>();
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 17:14:42 +00:00
|
|
|
|
public static bool HasSoundProvider(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<ISoundProvider>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static ISoundProvider AsSoundProvider(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return core.ServiceProvider.GetService<ISoundProvider>();
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-01 18:43:41 +00:00
|
|
|
|
public static bool HasMemoryDomains(this IEmulator core)
|
|
|
|
|
{
|
2014-12-05 00:52:16 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IMemoryDomains>();
|
2014-09-01 18:43:41 +00:00
|
|
|
|
}
|
2014-11-24 00:38:29 +00:00
|
|
|
|
|
2014-12-05 00:32:29 +00:00
|
|
|
|
public static IMemoryDomains AsMemoryDomains(this IEmulator core)
|
2014-12-05 00:17:34 +00:00
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IMemoryDomains>();
|
2014-12-05 00:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 15:22:08 +00:00
|
|
|
|
public static bool HasSaveRam(this IEmulator core)
|
|
|
|
|
{
|
2014-12-05 00:52:16 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<ISaveRam>();
|
2014-11-30 15:22:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 00:32:29 +00:00
|
|
|
|
public static ISaveRam AsSaveRam(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<ISaveRam>();
|
2014-12-05 00:32:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 16:42:58 +00:00
|
|
|
|
public static bool HasSavestates(this IEmulator core)
|
|
|
|
|
{
|
2014-12-05 00:52:16 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IStatable>();
|
2014-11-30 16:42:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 00:32:29 +00:00
|
|
|
|
public static IStatable AsStatable(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IStatable>();
|
2014-12-05 00:32:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 20:29:30 +00:00
|
|
|
|
public static bool CanPollInput(this IEmulator core)
|
|
|
|
|
{
|
2014-12-05 00:52:16 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IInputPollable>();
|
2014-11-30 14:18:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 00:32:29 +00:00
|
|
|
|
public static IInputPollable AsInputPollable(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IInputPollable>();
|
2014-12-05 00:32:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-12 23:02:03 +00:00
|
|
|
|
public static bool InputCallbacksAvailable(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: this is a pretty ugly way to handle this
|
2016-02-29 00:03:01 +00:00
|
|
|
|
var pollable = core.ServiceProvider.GetService<IInputPollable>();
|
2015-10-12 23:02:03 +00:00
|
|
|
|
if (pollable != null)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var callbacks = pollable.InputCallbacks;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (NotImplementedException)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-12 01:49:54 +00:00
|
|
|
|
public static bool HasDriveLight(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IDriveLight>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IDriveLight AsDriveLight(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IDriveLight>();
|
2014-12-12 01:49:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 01:56:45 +00:00
|
|
|
|
public static bool CanDebug(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IDebuggable>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IDebuggable AsDebuggable(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IDebuggable>();
|
2014-12-05 01:56:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 00:05:40 +00:00
|
|
|
|
public static bool CpuTraceAvailable(this IEmulator core)
|
|
|
|
|
{
|
2014-12-05 01:56:45 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-23 01:58:12 +00:00
|
|
|
|
return core.ServiceProvider.HasService<ITraceable>();
|
|
|
|
|
}
|
2014-12-05 00:05:40 +00:00
|
|
|
|
|
2014-12-23 01:58:12 +00:00
|
|
|
|
public static ITraceable AsTracer(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<ITraceable>();
|
2014-12-05 00:05:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 01:56:45 +00:00
|
|
|
|
public static bool MemoryCallbacksAvailable(this IEmulator core)
|
2014-12-05 00:05:40 +00:00
|
|
|
|
{
|
2014-12-05 00:52:16 +00:00
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-05 01:56:45 +00:00
|
|
|
|
// TODO: this is a pretty ugly way to handle this
|
|
|
|
|
var debuggable = (IDebuggable)core.ServiceProvider.GetService<IDebuggable>();
|
|
|
|
|
if (debuggable != null)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2015-01-25 22:14:58 +00:00
|
|
|
|
var callbacks = debuggable.MemoryCallbacks;
|
2014-12-05 01:56:45 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (NotImplementedException)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-12-05 00:05:40 +00:00
|
|
|
|
|
2014-12-05 01:56:45 +00:00
|
|
|
|
return false;
|
2014-12-05 00:05:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-25 22:14:58 +00:00
|
|
|
|
public static bool MemoryCallbacksAvailable(this IDebuggable core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var callbacks = core.MemoryCallbacks;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (NotImplementedException)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-13 20:52:52 +00:00
|
|
|
|
public static bool CanDisassemble(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IDisassemblable>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IDisassemblable AsDissassembler(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IDisassemblable>();
|
2014-12-13 20:52:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-25 14:37:37 +00:00
|
|
|
|
public static bool CanPoke(this MemoryDomain d)
|
|
|
|
|
{
|
2016-04-13 23:50:06 +00:00
|
|
|
|
if (!d.Writable)
|
2015-01-25 14:37:37 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
d.PokeByte(0, d.PeekByte(0));
|
|
|
|
|
}
|
|
|
|
|
catch (NotImplementedException)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 00:12:09 +00:00
|
|
|
|
public static bool HasRegions(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<IRegionable>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static IRegionable AsRegionable(this IEmulator core)
|
|
|
|
|
{
|
2016-02-29 00:03:01 +00:00
|
|
|
|
return core.ServiceProvider.GetService<IRegionable>();
|
2015-08-06 00:12:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-28 00:49:13 +00:00
|
|
|
|
public static bool CanCDLog(this IEmulator core)
|
2015-10-27 23:03:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<ICodeDataLogger>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static ICodeDataLogger AsCodeDataLogger(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return core.ServiceProvider.GetService<ICodeDataLogger>();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 18:52:17 +00:00
|
|
|
|
public static ILinkable AsLinkable(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return core.ServiceProvider.GetService<ILinkable>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool UsesLinkCable(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
if (core == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return core.ServiceProvider.HasService<ILinkable>();
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-24 00:38:29 +00:00
|
|
|
|
// TODO: a better place for these
|
|
|
|
|
public static bool IsImplemented(this MethodInfo info)
|
|
|
|
|
{
|
2014-11-30 14:52:52 +00:00
|
|
|
|
// If a method is marked as Not implemented, it is not implemented no matter what the body is
|
2014-12-04 00:38:42 +00:00
|
|
|
|
if (info.GetCustomAttributes(false).Any(a => a is FeatureNotImplemented))
|
2014-11-30 14:52:52 +00:00
|
|
|
|
{
|
2014-12-04 00:38:42 +00:00
|
|
|
|
return false;
|
2014-11-30 14:52:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If a method is not marked but all it does is throw an exception, consider it not implemented
|
|
|
|
|
return !info.ThrowsError();
|
2014-11-24 00:38:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsImplemented(this PropertyInfo info)
|
|
|
|
|
{
|
2014-12-04 00:38:42 +00:00
|
|
|
|
return !info.GetCustomAttributes(false).Any(a => a is FeatureNotImplemented);
|
2014-11-24 00:38:29 +00:00
|
|
|
|
}
|
2014-04-25 01:19:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|