From 559c8efcf18ee57ed3570ef4c1acd7b6a1d952bc Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 24 Aug 2021 10:26:48 +1000 Subject: [PATCH] Fix inconsistent treatment of systems' rom file extensions --- src/BizHawk.Client.Common/RomLoader.cs | 49 +++++++++++++++++++------- 1 file changed, 37 insertions(+), 12 deletions(-) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index e2b6c3c81c..1d350bf969 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -761,13 +761,17 @@ namespace BizHawk.Client.Common /// roms ONLY; when an archive is loaded with a single file whose extension is one of these, the user prompt is skipped private static class RomFileExtensions { + public static readonly IReadOnlyCollection A26 = new[] { "a26" }; + public static readonly IReadOnlyCollection A78 = new[] { "a78" }; - public static readonly IReadOnlyCollection C64 = new[] { "crt" }; + public static readonly IReadOnlyCollection AppleII = new[] { "dsk", "do", "po" }; + + public static readonly IReadOnlyCollection C64 = new[] { "prg", "d64", "g64", "crt", "tap" }; public static readonly IReadOnlyCollection Coleco = new[] { "col" }; - public static readonly IReadOnlyCollection GB = new[] { "gb", "gbc" }; + public static readonly IReadOnlyCollection GB = new[] { "gb", "gbc", "sgb" }; public static readonly IReadOnlyCollection GBA = new[] { "gba" }; @@ -775,10 +779,16 @@ namespace BizHawk.Client.Common public static readonly IReadOnlyCollection INTV = new[] { "int", "bin", "rom" }; + public static readonly IReadOnlyCollection Lynx = new[] { "lnx" }; + public static readonly IReadOnlyCollection N64 = new[] { "z64", "v64", "n64" }; + public static readonly IReadOnlyCollection NDS = new[] { "nds" }; + public static readonly IReadOnlyCollection NES = new[] { "nes", "fds", "unf" }; + public static readonly IReadOnlyCollection NGP = new[] { "ngp", "ngc" }; + public static readonly IReadOnlyCollection O2 = new[] { "o2" }; public static readonly IReadOnlyCollection PCE = new[] { "pce", "sgx" }; @@ -789,27 +799,41 @@ namespace BizHawk.Client.Common public static readonly IReadOnlyCollection TI83 = new[] { "rom" }; + public static readonly IReadOnlyCollection UZE = new[] { "uze" }; + + public static readonly IReadOnlyCollection VB = new[] { "vb" }; + public static readonly IReadOnlyCollection VEC = new[] { "vec" }; public static readonly IReadOnlyCollection WSWAN = new[] { "ws", "wsc" }; + public static readonly IReadOnlyCollection ZXSpectrum = new[] { "tzx", "tap", "dsk", "pzx" }; + public static readonly IReadOnlyCollection AutoloadFromArchive = new string[0] + .Concat(A26) .Concat(A78) + .Concat(AppleII) .Concat(C64) .Concat(Coleco) .Concat(GB) .Concat(GBA) .Concat(GEN) .Concat(INTV) + .Concat(Lynx) .Concat(N64) + .Concat(NDS) .Concat(NES) + .Concat(NGP) .Concat(O2) .Concat(PCE) .Concat(SMS) .Concat(SNES) .Concat(TI83) + .Concat(UZE) + .Concat(VB) .Concat(VEC) .Concat(WSWAN) + .Concat(ZXSpectrum) .Select(static s => $".{s}") // this is what's expected at call-site .ToArray(); } @@ -824,14 +848,14 @@ namespace BizHawk.Client.Common new FilesystemFilter("PSX Executables (experimental)", new string[0], devBuildExtraExts: new[] { "exe" }), new FilesystemFilter("PSF Playstation Sound File", new[] { "psf", "minipsf" }), new FilesystemFilter("Nintendo 64", RomFileExtensions.N64), - new FilesystemFilter("Gameboy", RomFileExtensions.GB.Concat(new[] { "sgb" }).ToList(), addArchiveExts: true), + new FilesystemFilter("Gameboy", RomFileExtensions.GB, addArchiveExts: true), new FilesystemFilter("Gameboy Advance", RomFileExtensions.GBA, addArchiveExts: true), - new FilesystemFilter("Nintendo DS", new[] { "nds" }), + new FilesystemFilter("Nintendo DS", RomFileExtensions.NDS), new FilesystemFilter("Master System", RomFileExtensions.SMS, addArchiveExts: true), new FilesystemFilter("PC Engine", RomFileExtensions.PCE.Concat(new[] { "cue", "ccd", "mds" }).ToList(), addArchiveExts: true), - new FilesystemFilter("Atari 2600", new[] { "a26" }, devBuildExtraExts: new[] { "bin" }, addArchiveExts: true), + new FilesystemFilter("Atari 2600", RomFileExtensions.A26, devBuildExtraExts: new[] { "bin" }, addArchiveExts: true), new FilesystemFilter("Atari 7800", RomFileExtensions.A78, devBuildExtraExts: new[] { "bin" }, addArchiveExts: true), - new FilesystemFilter("Atari Lynx", new[] { "lnx" }, addArchiveExts: true), + new FilesystemFilter("Atari Lynx", RomFileExtensions.Lynx, addArchiveExts: true), new FilesystemFilter("ColecoVision", RomFileExtensions.Coleco, addArchiveExts: true), new FilesystemFilter("IntelliVision", RomFileExtensions.INTV, addArchiveExts: true), new FilesystemFilter("TI-83", RomFileExtensions.TI83, addArchiveExts: true), @@ -839,14 +863,15 @@ namespace BizHawk.Client.Common new FilesystemFilter("Genesis", RomFileExtensions.GEN.Concat(new[] { "bin", "cue", "ccd" }).ToList(), addArchiveExts: true), new FilesystemFilter("SID Commodore 64 Music File", new string[0], devBuildExtraExts: new[] { "sid" }, devBuildAddArchiveExts: true), new FilesystemFilter("WonderSwan", RomFileExtensions.WSWAN, addArchiveExts: true), - new FilesystemFilter("Apple II", new[] { "dsk", "do", "po" }, addArchiveExts: true), - new FilesystemFilter("Virtual Boy", new[] { "vb" }, addArchiveExts: true), - new FilesystemFilter("Neo Geo Pocket", new[] { "ngp", "ngc" }, addArchiveExts: true), - new FilesystemFilter("Commodore 64", new[] { "prg", "d64", "g64" }.Concat(RomFileExtensions.C64).Concat(new[] { "tap" }).ToList(), addArchiveExts: true), + new FilesystemFilter("Apple II", RomFileExtensions.AppleII, addArchiveExts: true), + new FilesystemFilter("Virtual Boy", RomFileExtensions.VB, addArchiveExts: true), + new FilesystemFilter("Neo Geo Pocket", RomFileExtensions.NGP, addArchiveExts: true), + new FilesystemFilter("Commodore 64", RomFileExtensions.C64, addArchiveExts: true), new FilesystemFilter("Amstrad CPC", new string[0], devBuildExtraExts: new[] { "cdt", "dsk" }, devBuildAddArchiveExts: true), - new FilesystemFilter("Sinclair ZX Spectrum", new[] { "tzx", "tap", "dsk", "pzx", "csw", "wav" }, addArchiveExts: true), + new FilesystemFilter("Sinclair ZX Spectrum", RomFileExtensions.ZXSpectrum.Concat(new[] { "csw", "wav" }).ToList(), addArchiveExts: true), new FilesystemFilter("Odyssey 2", RomFileExtensions.O2), - new FilesystemFilter("Uzebox", new[] { "uze" }), + new FilesystemFilter("Uzebox", RomFileExtensions.UZE), + new FilesystemFilter("Vectrex", RomFileExtensions.VEC), FilesystemFilter.EmuHawkSaveStates );