From 553319ec958af95600dda7f37564358b0085452d Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 9 Apr 2021 12:22:58 +1000 Subject: [PATCH] Clean up "display name" stupidity * removed CoreAttribute.DisplayName (using IEmulator.SystemId instead) * fixed ToolManager checking for "(Experimental) " prefix on names of unreleased cores in ToolAttribute.UnsupportedCores * corrected display name of UZE sysID to "Uzebox" (was "uzem") * disabled auto-generated accelerators (&A -> Alt+A) on "current system" menu in MainForm menubar because they could conflict with hardcoded ones --- .../Extensions/CoreExtensions.cs | 56 ++---------------- src/BizHawk.Client.EmuHawk/MainForm.Events.cs | 3 +- src/BizHawk.Client.EmuHawk/MainForm.cs | 10 +++- .../tools/ToolManager.cs | 6 +- src/BizHawk.Emulation.Common/CoreAttribute.cs | 4 +- src/BizHawk.Emulation.Common/Extensions.cs | 57 +++++++++++++++---- .../Arcades/MAME/MAME.cs | 3 +- .../Computers/MSX/MSX.cs | 7 +-- .../Consoles/Atari/2600/Atari2600.cs | 7 +-- .../Consoles/GCE/Vectrex/VectrexHawk.cs | 7 +-- .../Consoles/Magnavox/Odyssey2/O2Hawk.cs | 7 +-- .../Consoles/NEC/PCE/HyperNyma.cs | 2 +- .../Consoles/NEC/PCE/TurboNyma.cs | 2 +- .../Consoles/NEC/PCFX/Tst.cs | 9 ++- .../Consoles/Nintendo/GBA/MGBAHawk.cs | 2 +- .../Nintendo/GBHawkLink/GBHawkLink.cs | 7 +-- .../Nintendo/GBHawkLink3x/GBHawkLink3x.cs | 7 +-- .../Nintendo/GBHawkLink4x/GBHawkLink4x.cs | 7 +-- .../Consoles/Nintendo/VB/VirtualBoyee.cs | 9 ++- .../Consoles/PC Engine/PCEngine.cs | 7 +-- .../Consoles/SNK/NeoGeoPort.cs | 9 ++- .../Consoles/Sega/GGHawkLink/GGHawkLink.cs | 7 +-- .../Consoles/Sega/Saturn/Saturnus.cs | 9 ++- .../Consoles/Sega/gpgx64/GPGX.cs | 3 +- .../Consoles/WonderSwan/WonderSwan.cs | 2 +- 25 files changed, 105 insertions(+), 144 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs b/src/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs index fd015e2ac5..fad2084877 100644 --- a/src/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs +++ b/src/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs @@ -38,61 +38,13 @@ namespace BizHawk.Client.EmuHawk.CoreExtensions }; } - public static string DisplayName(this IEmulator core) + public static string GetSystemDisplayName(this IEmulator emulator) => emulator switch { - var attributes = core.Attributes(); - - var str = (!attributes.Released ? "(Experimental) " : "") + - attributes.CoreName; - - return str; - } - - public static string GetSystemDisplayName(this IEmulator emulator) => emulator.SystemId switch - { - "NULL" => string.Empty, - "NES" => "NES", - "INTV" => "Intellivision", - "GG" => "Game Gear", - "SG" => "SG-1000", - "SMS" => "Sega Master System", - "PCECD" => "TurboGrafx - 16(CD)", - "PCE" => "TurboGrafx-16", - "SGX" => "SuperGrafx", - "GEN" => "Genesis", - "TI83" => "TI - 83", - "SNES" => "SNES", + NullEmulator => string.Empty, #if false - "GB" when emulator is IGameboyCommon gb && gb.IsCGBMode() => "Gameboy Color", + IGameboyCommon gb when gb.IsCGBMode() => EmulatorExtensions.SystemIDToDisplayName("GBC"), #endif - "GB" => "GB", - "A26" => "Atari 2600", - "A78" => "Atari 7800", - "C64" => "Commodore 64", - "Coleco" => "ColecoVision", - "GBA" => "Gameboy Advance", - "NDS" => "NDS", - "N64" => "Nintendo 64", - "SAT" => "Saturn", - "DGB" => "Game Boy Link", - "GB3x" => "Game Boy Link 3x", - "GB4x" => "Game Boy Link 4x", - "WSWAN" => "WonderSwan", - "Lynx" => "Lynx", - "PSX" => "PlayStation", - "AppleII" => "Apple II", - "Libretro" => "Libretro", - "VB" => "Virtual Boy", - "VEC" => "Vectrex", - "NGP" => "Neo-Geo Pocket", - "ZXSpectrum" => "ZX Spectrum", - "AmstradCPC" => "Amstrad CPC", - "ChannelF" => "Channel F", - "O2" => "Odyssey2", - "MAME" => "MAME", - "UZE" => "uzem", - "PCFX" => "PCFX", - _ => string.Empty + _ => EmulatorExtensions.SystemIDToDisplayName(emulator.SystemId) }; } } diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index 1c3993f780..04c3ef0efa 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -1790,7 +1790,8 @@ namespace BizHawk.Client.EmuHawk private void GenericCoreSettingsMenuItem_Click(object sender, EventArgs e) { - GenericCoreConfig.DoDialog(this, $"{Emulator.DisplayName()} Settings"); + var coreName = ((CoreAttribute) Attribute.GetCustomAttribute(Emulator.GetType(), typeof(CoreAttribute))).CoreName; + GenericCoreConfig.DoDialog(this, $"{coreName} Settings"); } private void AppleIISettingsMenuItem_Click(object sender, EventArgs e) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 81e613c8ab..ab0de0b5be 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -2006,7 +2006,11 @@ namespace BizHawk.Client.EmuHawk private void DisplayDefaultCoreMenu() { GenericCoreSubMenu.Visible = true; - GenericCoreSubMenu.Text = "&" + EmulatorExtensions.DisplayName(Emulator); +#if true + GenericCoreSubMenu.Text = Emulator.GetSystemDisplayName(); +#else //TODO accelerator; I commented out this naive approach which doesn't work --yoshi + GenericCoreSubMenu.Text = $"&{Emulator.GetSystemDisplayName()}"; +#endif GenericCoreSubMenu.DropDownItems.Clear(); var settingsMenuItem = new ToolStripMenuItem { Text = "&Settings" }; @@ -2793,7 +2797,8 @@ namespace BizHawk.Client.EmuHawk private void UpdateCoreStatusBarButton() { - var coreDispName = CoreExtensions.CoreExtensions.DisplayName(Emulator); + var attributes = Emulator.Attributes(); + var coreDispName = attributes.Released ? attributes.CoreName : $"(Experimental) {attributes.CoreName}"; LoadedCoreNameMenuItem.Text = $"Loaded core: {coreDispName} ({Emulator.SystemId})"; if (Emulator.IsNull()) { @@ -2802,7 +2807,6 @@ namespace BizHawk.Client.EmuHawk } CoreNameStatusBarButton.Visible = true; - var attributes = Emulator.Attributes(); CoreNameStatusBarButton.Text = coreDispName; CoreNameStatusBarButton.Image = Emulator.Icon(); diff --git a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs index cce1f7ed92..c902949599 100644 --- a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs +++ b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs @@ -740,10 +740,8 @@ namespace BizHawk.Client.EmuHawk return true; // no ToolAttribute on given type -> assumed all supported } - var displayName = CoreExtensions.CoreExtensions.DisplayName(_emulator); - var systemId = _emulator.SystemId; - return !attr.UnsupportedCores.Contains(displayName) // not unsupported - && (!attr.SupportedSystems.Any() || attr.SupportedSystems.Contains(systemId)); // supported (no supported list -> assumed all supported) + return !attr.UnsupportedCores.Contains(_emulator.Attributes().CoreName) // not unsupported + && (!attr.SupportedSystems.Any() || attr.SupportedSystems.Contains(_emulator.SystemId)); // supported (no supported list -> assumed all supported) } public bool IsAvailable() => IsAvailable(typeof(T)); diff --git a/src/BizHawk.Emulation.Common/CoreAttribute.cs b/src/BizHawk.Emulation.Common/CoreAttribute.cs index 2159567819..626721938e 100644 --- a/src/BizHawk.Emulation.Common/CoreAttribute.cs +++ b/src/BizHawk.Emulation.Common/CoreAttribute.cs @@ -5,7 +5,7 @@ namespace BizHawk.Emulation.Common [AttributeUsage(AttributeTargets.Class)] public sealed class CoreAttribute : Attribute { - public CoreAttribute(string name, string author, bool isPorted, bool isReleased, string portedVersion = null, string portedUrl = null, bool singleInstance = false, string displayName = null) + public CoreAttribute(string name, string author, bool isPorted, bool isReleased, string portedVersion = null, string portedUrl = null, bool singleInstance = false) { CoreName = name; Author = author; @@ -14,11 +14,9 @@ namespace BizHawk.Emulation.Common PortedVersion = portedVersion ?? string.Empty; PortedUrl = portedUrl ?? string.Empty; SingleInstance = singleInstance; - DisplayName = displayName; } public string CoreName { get; } - public string DisplayName { get; } public string Author { get; } public bool Ported { get; } public bool Released { get; } diff --git a/src/BizHawk.Emulation.Common/Extensions.cs b/src/BizHawk.Emulation.Common/Extensions.cs index 51df723bbc..e3f1d4942e 100644 --- a/src/BizHawk.Emulation.Common/Extensions.cs +++ b/src/BizHawk.Emulation.Common/Extensions.cs @@ -13,22 +13,54 @@ namespace BizHawk.Emulation.Common { public static class EmulatorExtensions { + public static readonly IReadOnlyDictionary SystemIDDisplayNames = new Dictionary + { + ["A26"] = "Atari 2600", + ["A78"] = "Atari 7800", + ["AmstradCPC"] = "Amstrad CPC", + ["AppleII"] = "Apple II", + ["C64"] = "Commodore 64", + ["ChannelF"] = "Channel F", + ["Coleco"] = "ColecoVision", + ["DGB"] = "Game Boy Link", + ["GB"] = "GB", + ["GB3x"] = "Game Boy Link 3x", + ["GB4x"] = "Game Boy Link 4x", + ["GBA"] = "Gameboy Advance", + ["GBC"] = "Gameboy Color", + ["GEN"] = "Genesis", + ["GG"] = "Game Gear", + ["INTV"] = "Intellivision", + ["Libretro"] = "Libretro", + ["Lynx"] = "Lynx", + ["MAME"] = "MAME", + ["N64"] = "Nintendo 64", + ["NDS"] = "NDS", + ["NES"] = "NES", + ["NGP"] = "Neo-Geo Pocket", + ["O2"] = "Odyssey2", + ["PCE"] = "TurboGrafx-16", + ["PCECD"] = "TurboGrafx - 16(CD)", + ["PCFX"] = "PCFX", + ["PSX"] = "PlayStation", + ["SAT"] = "Saturn", + ["SG"] = "SG-1000", + ["SGX"] = "SuperGrafx", + ["SMS"] = "Sega Master System", + ["SNES"] = "SNES", + ["TI83"] = "TI - 83", + ["UZE"] = "Uzebox", + ["VB"] = "Virtual Boy", + ["VEC"] = "Vectrex", + ["WSWAN"] = "WonderSwan", + ["ZXSpectrum"] = "ZX Spectrum", + }; + public static CoreAttribute Attributes(this IEmulator core) { return (CoreAttribute)Attribute.GetCustomAttribute(core.GetType(), typeof(CoreAttribute)); } - public static string DisplayName(this IEmulator core) - { - var attr = (CoreAttribute)Attribute.GetCustomAttribute(core.GetType(), typeof(CoreAttribute)); - if (attr == null) - { - return core.GetType().Name; - } - - return attr.DisplayName ?? attr.CoreName; - } - // todo: most of the special cases involving the NullEmulator should probably go away public static bool IsNull(this IEmulator core) { @@ -459,5 +491,8 @@ namespace BizHawk.Emulation.Common /// TODO inline (only change is wrapping strings in ctor, these IDs should probably be consts in each core's class) public static byte[] GetFirmwareWithGameInfo(this ICoreFileProvider cfp, string sysId, string firmwareId, bool required, out GameInfo gi, string msg = null) => cfp.GetFirmwareWithGameInfo(new(system: sysId, firmware: firmwareId), required: required, out gi, msg: msg); + + public static string SystemIDToDisplayName(string sysID) + => SystemIDDisplayNames.TryGetValue(sysID, out var dispName) ? dispName : string.Empty; } } diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs index 98379ab631..54780d962a 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs @@ -90,8 +90,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME isReleased: false, portedVersion: "0.230", portedUrl: "https://github.com/mamedev/mame.git", - singleInstance: false, - displayName: "Arcade")] + singleInstance: false)] public partial class MAME : IEmulator, IVideoProvider, ISoundProvider, ISettable, IStatable, IInputPollable { public MAME(string dir, string file, MAME.SyncSettings syncSettings, out string gamename) diff --git a/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs b/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs index c8cce13a6b..7af887e84d 100644 --- a/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs +++ b/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs @@ -4,12 +4,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Computers.MSX { - [Core( - "MSXHawk", - "", - isPorted: false, - isReleased: false, - displayName: "MSX")] + [Core("MSXHawk", "", isPorted: false, isReleased: false)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class MSX : IEmulator, IVideoProvider, ISoundProvider, ISaveRam, IInputPollable, IRegionable, ISettable { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index 8d176109e5..0487ca769e 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -6,12 +6,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Atari.Atari2600 { - [Core( - "Atari2600Hawk", - "Micro500, Alyosha, adelikat, natt", - isPorted: false, - isReleased: true, - displayName: "Atari 2600")] + [Core("Atari2600Hawk", "Micro500, Alyosha, adelikat, natt", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight), typeof(ISaveRam) })] public partial class Atari2600 : IEmulator, IDebuggable, IInputPollable, IBoardInfo, IRomInfo, IRegionable, ICreateGameDBEntries, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawk.cs index e3564a7583..7b6904568b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/VectrexHawk.cs @@ -6,12 +6,7 @@ using BizHawk.Emulation.Cores.Components.MC6809; namespace BizHawk.Emulation.Cores.Consoles.Vectrex { - [Core( - "VectrexHawk", - "", - isPorted: false, - isReleased: true, - displayName: "Vectrex")] + [Core("VectrexHawk", "", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class VectrexHawk : IEmulator, ISaveRam, IDebuggable, IInputPollable, IRegionable, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/O2Hawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/O2Hawk.cs index c432d1cff3..854dfbc0ff 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/O2Hawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/O2Hawk.cs @@ -6,12 +6,7 @@ using BizHawk.Emulation.Cores.Components.I8048; namespace BizHawk.Emulation.Cores.Consoles.O2Hawk { - [Core( - "O2Hawk", - "", - isPorted: false, - isReleased: true, - displayName: "Odyssey 2")] + [Core("O2Hawk", "", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class O2Hawk : IEmulator, ISaveRam, IDebuggable, IInputPollable, IRegionable, ISettable, IBoardInfo { diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs index df5233ac29..d2a1148da3 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/HyperNyma.cs @@ -9,7 +9,7 @@ using BizHawk.Emulation.Cores.Waterbox; namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE { - [Core(CoreNames.HyperNyma, "Mednafen Team", true, true, "1.26.1", "https://mednafen.github.io/releases/", false, "PCE")] + [Core(CoreNames.HyperNyma, "Mednafen Team", true, true, "1.26.1", "https://mednafen.github.io/releases/", false)] public class HyperNyma : NymaCore, IRegionable, IPceGpuView { private readonly LibHyperNyma _hyperNyma; diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs index a8eb83ebfb..f636794c35 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TurboNyma.cs @@ -11,7 +11,7 @@ using BizHawk.Emulation.DiscSystem; namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE { - [Core(CoreNames.TurboNyma, "Mednafen Team", true, true, "1.26.1", "https://mednafen.github.io/releases/", false, "PCE")] + [Core(CoreNames.TurboNyma, "Mednafen Team", true, true, "1.26.1", "https://mednafen.github.io/releases/", false)] public class TurboNyma : NymaCore, IRegionable, IPceGpuView { private readonly LibTurboNyma _turboNyma; diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs index c65b81d385..18bc95d981 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCFX/Tst.cs @@ -5,8 +5,13 @@ using System.Collections.Generic; namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX { - [Core("T. S. T.", "Mednafen Team", true, true, "1.26.1", - "https://mednafen.github.io/releases/", false, "PC-FX")] + [Core("T. S. T.", + author: "Mednafen Team", + isPorted: true, + isReleased: true, + portedVersion: "1.26.1", + portedUrl: "https://mednafen.github.io/releases/", + singleInstance: false)] public class Tst : NymaCore { [CoreConstructor("PCFX")] diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs index 3a914d1422..cc47ff72a0 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -6,7 +6,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBA { - [Core(CoreNames.Mgba, "endrift", true, true, "0.8", "https://mgba.io/", false, "GBA")] + [Core(CoreNames.Mgba, "endrift", true, true, "0.8", "https://mgba.io/", false)] [ServiceNotApplicable(new[] { typeof(IDriveLight), typeof(IRegionable) })] public partial class MGBAHawk : IEmulator, IVideoProvider, ISoundProvider, IGBAGPUViewable, ISaveRam, IStatable, IInputPollable, ISettable, diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs index 8d711f2f78..8a298ed9ae 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs @@ -3,12 +3,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink { - [Core( - "GBHawkLink", - "", - isPorted: false, - isReleased: true, - displayName: "Gameboy")] + [Core("GBHawkLink", "", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class GBHawkLink : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ILinkable, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.cs index 1239a7b493..6869296360 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.cs @@ -3,12 +3,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x { - [Core( - "GBHawkLink3x", - "", - isPorted: false, - isReleased: true, - displayName: "Gameboy")] + [Core("GBHawkLink3x", "", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class GBHawkLink3x : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink4x/GBHawkLink4x.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink4x/GBHawkLink4x.cs index 2412e5f5f3..db83d705ac 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink4x/GBHawkLink4x.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink4x/GBHawkLink4x.cs @@ -3,12 +3,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink4x { - [Core( - "GBHawkLink4x", - "", - isPorted: false, - isReleased: true, - displayName: "Gameboy")] + [Core("GBHawkLink4x", "", isPorted: false, isReleased: true)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class GBHawkLink4x : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs index 25f5c6ff33..cde605a033 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs @@ -10,8 +10,13 @@ using System.Linq; namespace BizHawk.Emulation.Cores.Consoles.Nintendo.VB { - [Core("Virtual Boyee", "Mednafen Team", true, true, "0.9.44.1", - "https://mednafen.github.io/releases/", false, "VirtualBoy")] + [Core("Virtual Boyee", + author: "Mednafen Team", + isPorted: true, + isReleased: true, + portedVersion: "0.9.44.1", + portedUrl: "https://mednafen.github.io/releases/", + singleInstance: false)] public class VirtualBoyee : WaterboxCore, ISettable { private readonly LibVirtualBoyee _boyee; diff --git a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index ad3f1393fd..51a47270be 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -11,12 +11,7 @@ namespace BizHawk.Emulation.Cores.PCEngine { public enum NecSystemType { TurboGrafx, TurboCD, SuperGrafx } - [Core( - CoreNames.PceHawk, - "Vecna", - isPorted: false, - isReleased: true, - displayName: "PCE")] + [Core(CoreNames.PceHawk, "Vecna", isPorted: false, isReleased: true)] public sealed partial class PCEngine : IEmulator, ISaveRam, IInputPollable, IVideoLogicalOffsets, IRomInfo, IDebuggable, ISettable, IDriveLight, ICodeDataLogger, IPceGpuView diff --git a/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs b/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs index a9ee23091d..4cf6ec7b8a 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs @@ -5,8 +5,13 @@ using System.Collections.Generic; namespace BizHawk.Emulation.Cores.Consoles.SNK { - [Core("NeoPop", "Thomas Klausner, Mednafen Team", true, true, "1.26.1", - "https://mednafen.github.io/releases/", false, "NeoPop")] + [Core("NeoPop", + author: "Thomas Klausner, Mednafen Team", + isPorted: true, + isReleased: true, + portedVersion: "1.26.1", + portedUrl: "https://mednafen.github.io/releases/", + singleInstance: false)] public class NeoGeoPort : NymaCore, ISaveRam // NGP provides its own saveram interface { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs index ea61e409cf..acba5db322 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs @@ -4,12 +4,7 @@ using BizHawk.Emulation.Cores.Sega.MasterSystem; namespace BizHawk.Emulation.Cores.Sega.GGHawkLink { - [Core( - "GGHawkLink", - "", - isPorted: false, - isReleased: false, - displayName: "Game Gear")] + [Core("GGHawkLink", "", isPorted: false, isReleased: false)] [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class GGHawkLink : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ILinkable, ISettable diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs index 9ef6195e08..081c016ae6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs @@ -5,8 +5,13 @@ using System.Collections.Generic; namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn { - [Core("Saturnus", "Mednafen Team", true, true, "1.26.1", - "https://mednafen.github.io/releases/", false, "Saturn")] + [Core("Saturnus", + author: "Mednafen Team", + isPorted: true, + isReleased: true, + portedVersion: "1.26.1", + portedUrl: "https://mednafen.github.io/releases/", + singleInstance: false)] public class Saturnus : NymaCore, IRegionable { [CoreConstructor("SAT")] diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs index c6d41c1408..798fc8aeab 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs @@ -17,8 +17,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx isReleased: true, portedVersion: "r874", portedUrl: "https://code.google.com/p/genplus-gx/", - singleInstance: false, - displayName: "Genesis")] + singleInstance: false)] public partial class GPGX : IEmulator, IVideoProvider, ISaveRam, IStatable, IRegionable, IInputPollable, IDebuggable, IDriveLight, ICodeDataLogger, IDisassemblable { diff --git a/src/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs b/src/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs index 2cd33c8c67..87ea56f9c5 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs @@ -6,7 +6,7 @@ using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.WonderSwan { - [Core("Cygne/Mednafen", "Dox, Mednafen Team", true, true, "1.24.3", "https://mednafen.github.io/releases/", false, "WonderSwan")] + [Core("Cygne/Mednafen", "Dox, Mednafen Team", true, true, "1.24.3", "https://mednafen.github.io/releases/", false)] [ServiceNotApplicable(new[] { typeof(IDriveLight), typeof(IRegionable) })] public partial class WonderSwan : IEmulator, IVideoProvider, ISoundProvider, IInputPollable, IDebuggable