Make `ServiceNotApplicableAttribute` constructor `params`
This commit is contained in:
parent
f056059e48
commit
dde61e309f
|
@ -5,7 +5,7 @@ using System.Threading;
|
|||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
[Core("NullHawk", "")]
|
||||
[ServiceNotApplicable(new[] {
|
||||
[ServiceNotApplicable(
|
||||
typeof(IVideoProvider),
|
||||
typeof(IBoardInfo),
|
||||
typeof(ICodeDataLogger),
|
||||
|
@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Common
|
|||
typeof(ISoundProvider),
|
||||
typeof(IStatable),
|
||||
typeof(ITraceable)
|
||||
})]
|
||||
)]
|
||||
public class NullEmulator : IEmulator
|
||||
{
|
||||
public NullEmulator()
|
||||
|
|
|
@ -23,7 +23,7 @@ namespace BizHawk.Emulation.Common
|
|||
{
|
||||
public IReadOnlyCollection<Type> NotApplicableTypes { get; }
|
||||
|
||||
public ServiceNotApplicableAttribute(Type[] types)
|
||||
public ServiceNotApplicableAttribute(params Type[] types)
|
||||
=> NotApplicableTypes = types;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ using BizHawk.Emulation.Cores.Calculators.TI83;
|
|||
namespace BizHawk.Emulation.Cores.Calculators.Emu83
|
||||
{
|
||||
[PortedCore(CoreNames.Emu83, "CasualPokePlayer", "d2e6e1d", "https://github.com/CasualPokePlayer/Emu83")]
|
||||
[ServiceNotApplicable(new[] { typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam), typeof(ISoundProvider) })]
|
||||
[ServiceNotApplicable(typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam), typeof(ISoundProvider))]
|
||||
public partial class Emu83 : TI83Common
|
||||
{
|
||||
private static readonly LibEmu83 LibEmu83;
|
||||
|
|
|
@ -6,7 +6,7 @@ using BizHawk.Emulation.Cores.Components.Z80A;
|
|||
namespace BizHawk.Emulation.Cores.Calculators.TI83
|
||||
{
|
||||
[Core(CoreNames.TI83Hawk, "zeromus")]
|
||||
[ServiceNotApplicable(new[] { typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam), typeof(ISoundProvider) })]
|
||||
[ServiceNotApplicable(typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam), typeof(ISoundProvider))]
|
||||
public partial class TI83 : TI83Common, IEmulator, IVideoProvider, IDebuggable, IInputPollable
|
||||
{
|
||||
[CoreConstructor(VSystemID.Raw.TI83)]
|
||||
|
|
|
@ -8,7 +8,7 @@ using Jellyfish.Virtu;
|
|||
namespace BizHawk.Emulation.Cores.Computers.AppleII
|
||||
{
|
||||
[PortedCore(CoreNames.Virtu, "fool")]
|
||||
[ServiceNotApplicable(new[] { typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam) })]
|
||||
[ServiceNotApplicable(typeof(IBoardInfo), typeof(IRegionable), typeof(ISaveRam))]
|
||||
public partial class AppleII : IEmulator, ISoundProvider, IVideoProvider, IStatable, IDriveLight
|
||||
{
|
||||
static AppleII()
|
||||
|
|
|
@ -5,7 +5,7 @@ using BizHawk.Emulation.Common;
|
|||
namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||
{
|
||||
[Core(CoreNames.Atari2600Hawk, "Micro500, Alyosha, adelikat, natt")]
|
||||
[ServiceNotApplicable(new[] { typeof(ISaveRam) })]
|
||||
[ServiceNotApplicable(typeof(ISaveRam))]
|
||||
public partial class Atari2600 : IEmulator, IDebuggable, IInputPollable, IBoardInfo, IRomInfo,
|
||||
IRegionable, ICreateGameDBEntries, ISettable<Atari2600.A2600Settings, Atari2600.A2600SyncSettings>
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ using BizHawk.Common.NumberExtensions;
|
|||
namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
|
||||
{
|
||||
[Core(CoreNames.A7800Hawk, "")]
|
||||
[ServiceNotApplicable(new[] { typeof(ISettable<,>) })]
|
||||
[ServiceNotApplicable(typeof(ISettable<,>))]
|
||||
public partial class A7800Hawk : IEmulator, ISaveRam, IDebuggable, IInputPollable,
|
||||
IRegionable, IBoardInfo, ISettable<object, A7800Hawk.A7800SyncSettings>
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella
|
|||
author: "The Stella Team",
|
||||
// portedVersion: "", //TODO
|
||||
portedUrl: "https://stella-emu.github.io")]
|
||||
[ServiceNotApplicable([ typeof(ISaveRam) ])]
|
||||
[ServiceNotApplicable(typeof(ISaveRam))]
|
||||
public partial class Stella : IRomInfo, IRegionable
|
||||
{
|
||||
[CoreConstructor(VSystemID.Raw.A26)]
|
||||
|
|
|
@ -9,7 +9,7 @@ using BizHawk.Emulation.Common;
|
|||
namespace BizHawk.Emulation.Cores.Atari.Lynx
|
||||
{
|
||||
[PortedCore(CoreNames.Handy, "K. Wilkins, Mednafen Team", "0.9.34.1", "https://mednafen.github.io/releases/")]
|
||||
[ServiceNotApplicable(new[] { typeof(IRegionable), typeof(ISettable<,>) })]
|
||||
[ServiceNotApplicable(typeof(IRegionable), typeof(ISettable<,>))]
|
||||
public partial class Lynx : IEmulator, IVideoProvider, ISoundProvider, ISaveRam, IStatable, IInputPollable
|
||||
{
|
||||
private static readonly LibLynx LibLynx;
|
||||
|
|
|
@ -4,7 +4,7 @@ using BizHawk.Emulation.Cores.Components.Z80A;
|
|||
namespace BizHawk.Emulation.Cores.ColecoVision
|
||||
{
|
||||
[Core(CoreNames.ColecoHawk, "Vecna")]
|
||||
[ServiceNotApplicable(new[] { typeof(ISaveRam) })]
|
||||
[ServiceNotApplicable(typeof(ISaveRam))]
|
||||
public sealed partial class ColecoVision : IEmulator, IDebuggable, IInputPollable, ISettable<ColecoVision.ColecoSettings, ColecoVision.ColecoSyncSettings>
|
||||
{
|
||||
[CoreConstructor(VSystemID.Raw.Coleco)]
|
||||
|
|
|
@ -4,7 +4,7 @@ using BizHawk.Emulation.Cores.Components.CP1610;
|
|||
namespace BizHawk.Emulation.Cores.Intellivision
|
||||
{
|
||||
[Core(CoreNames.IntelliHawk, "BrandonE, Alyosha")]
|
||||
[ServiceNotApplicable(new[] { typeof(IRegionable), typeof(ISaveRam) })]
|
||||
[ServiceNotApplicable(typeof(IRegionable), typeof(ISaveRam))]
|
||||
public sealed partial class Intellivision : IEmulator, IInputPollable, IDisassemblable,
|
||||
IBoardInfo, IDebuggable, ISettable<Intellivision.IntvSettings, Intellivision.IntvSyncSettings>
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@ using BizHawk.Emulation.Common;
|
|||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.N3DS
|
||||
{
|
||||
[PortedCore(CoreNames.Encore, "", "nightly-2104", "https://github.com/CasualPokePlayer/encore", singleInstance: true)]
|
||||
[ServiceNotApplicable([ typeof(IRegionable) ])]
|
||||
[ServiceNotApplicable(typeof(IRegionable))]
|
||||
public partial class Encore
|
||||
{
|
||||
private static DynamicLibraryImportResolver _resolver;
|
||||
|
|
|
@ -5,7 +5,7 @@ using BizHawk.Emulation.Common;
|
|||
namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||
{
|
||||
[PortedCore(CoreNames.Mgba, "endrift", "0.11", "https://mgba.io/")]
|
||||
[ServiceNotApplicable(new[] { typeof(IRegionable) })]
|
||||
[ServiceNotApplicable(typeof(IRegionable))]
|
||||
public partial class MGBAHawk
|
||||
{
|
||||
private static readonly LibmGBA LibmGBA;
|
||||
|
|
|
@ -18,7 +18,7 @@ using BizHawk.Emulation.Cores.Waterbox;
|
|||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
||||
{
|
||||
[PortedCore(CoreNames.MelonDS, "Arisotura", "0.9.5", "https://melonds.kuribo64.net/")]
|
||||
[ServiceNotApplicable(new[] { typeof(IRegionable) })]
|
||||
[ServiceNotApplicable(typeof(IRegionable))]
|
||||
public sealed partial class NDS : WaterboxCore
|
||||
{
|
||||
private readonly LibMelonDS _core;
|
||||
|
|
|
@ -6,7 +6,7 @@ using BizHawk.Emulation.Common;
|
|||
namespace BizHawk.Emulation.Cores.WonderSwan
|
||||
{
|
||||
[PortedCore(CoreNames.Cygne, "Dox, Mednafen Team", "1.24.3", "https://mednafen.github.io/releases/")]
|
||||
[ServiceNotApplicable(new[] { typeof(IRegionable) })]
|
||||
[ServiceNotApplicable(typeof(IRegionable))]
|
||||
public partial class WonderSwan : IEmulator, IVideoProvider, ISoundProvider,
|
||||
IInputPollable, IDebuggable
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue