From 7f4d29d0ffb0210f8fc84ec663f6157be0c79572 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Thu, 1 Oct 2020 08:17:30 -0400 Subject: [PATCH] Revert "resume m3u support by turning the m3u to an xml game and then loading that. fixes #2378" This reverts commit 8da552581979f59003999ce75c1dc00139d28134. --- src/BizHawk.Client.Common/RomLoader.cs | 67 ++----------------- src/BizHawk.Emulation.DiscSystem/Disc.cs | 37 ---------- .../DiscExtensions.cs | 35 +++++++++- 3 files changed, 38 insertions(+), 101 deletions(-) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index d22b179176..5d0286b184 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -3,11 +3,9 @@ using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; -using System.Xml.Linq; using BizHawk.Common; using BizHawk.Common.StringExtensions; -using BizHawk.Common.PathExtensions; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores; using BizHawk.Emulation.Cores.Libretro; @@ -239,7 +237,7 @@ namespace BizHawk.Client.Common private bool LoadDisc(string path, CoreComm nextComm, HawkFile file, string ext, out IEmulator nextEmulator, out GameInfo game) { - var disc = Disc.CreateAnyType(path, str => DoLoadErrorCallback(str, "???", LoadErrorType.DiscError)); + var disc = DiscExtensions.CreateAnyType(path, str => DoLoadErrorCallback(str, "???", LoadErrorType.DiscError)); if (disc == null) { game = null; @@ -328,64 +326,9 @@ namespace BizHawk.Client.Common return true; } - private void LoadM3U(string path, CoreComm nextComm, HawkFile file, out IEmulator nextEmulator, out RomGame rom, out GameInfo game) + private void LoadM3U(string path, CoreComm nextComm, HawkFile file, out IEmulator nextEmulator, out GameInfo game) { - using var sr = new StreamReader(path); - var m3u = M3U_File.Read(sr); - if (m3u.Entries.Count == 0) throw new InvalidOperationException("Can't load an empty M3U"); - - - m3u.Rebase(Path.GetDirectoryName(path)); - - // load discs for all the m3u - - //we need to try to determine a system type for the m3u. - //to do this we will load discs one by one until we find one that we recognize - string sysid = null; - foreach (var e in m3u.Entries) - { - var disc = Disc.Create(null, e.Path, str => { }); - if (disc == null) continue; - - var discType = new DiscIdentifier(disc).DetectDiscType(); - - //we know how to handle any of these - if (discType == DiscType.SonyPSX) - { - sysid = "PSX"; - break; - } - } - - if (sysid == "") - throw new InvalidOperationException("Could not auto-detect which system to use for this M3U"); - - //produce an BizHawk-XMLGame payload - string friendlyName = Path.GetFileNameWithoutExtension(path); - var xml = new XElement("BizHawk-XMLGame", - new XAttribute("System", sysid), - new XAttribute("Name", friendlyName), - new XElement("LoadAssets", - m3u.Entries.Select(e => new XElement( - "Asset", - new XAttribute("FileName", e.Path) - )) - ) - ); - - //dump it to disk as a temp file and then load it - var tmppath = TempFileManager.GetTempFilename("m3u-" + friendlyName, ".xml", false); - File.WriteAllText(tmppath, xml.ToString()); - var hf = new HawkFile(tmppath); - try - { - LoadXML(tmppath, nextComm, hf, out nextEmulator, out rom, out game); - } - finally - { - hf.Dispose(); - File.Delete(tmppath); - } + throw new NotImplementedException("M3U not supported!"); } private IEmulator MakeCoreFromCoreInventory(CoreInventoryParameters cip) @@ -559,7 +502,7 @@ namespace BizHawk.Client.Common .Where(p => Disc.IsValidExtension(Path.GetExtension(p))) .Select(path => new { - d = Disc.CreateAnyType(path, str => DoLoadErrorCallback(str, system, LoadErrorType.DiscError)), + d = DiscExtensions.CreateAnyType(path, str => DoLoadErrorCallback(str, system, LoadErrorType.DiscError)), p = path, }) .Where(a => a.d != null) @@ -696,7 +639,7 @@ namespace BizHawk.Client.Common switch (ext) { case ".m3u": - LoadM3U(path, nextComm, file, out nextEmulator, out rom, out game); + LoadM3U(path, nextComm, file, out nextEmulator, out game); break; case ".xml": if (!LoadXML(path, nextComm, file, out nextEmulator, out rom, out game)) diff --git a/src/BizHawk.Emulation.DiscSystem/Disc.cs b/src/BizHawk.Emulation.DiscSystem/Disc.cs index 4ee5aefafd..2d0642b80a 100644 --- a/src/BizHawk.Emulation.DiscSystem/Disc.cs +++ b/src/BizHawk.Emulation.DiscSystem/Disc.cs @@ -18,43 +18,6 @@ namespace BizHawk.Emulation.DiscSystem { public sealed partial class Disc : IDisposable { - public static Disc CreateAnyType(string path, Action errorCallback) - { - return Create(null, path, errorCallback); - } - - public static Disc Create(DiscType? type, string path, Action errorCallback) - { - //--- load the disc in a context which will let us abort if it's going to take too long - var discMountJob = new DiscMountJob { IN_FromPath = path, IN_SlowLoadAbortThreshold = 8 }; - discMountJob.Run(); - var disc = discMountJob.OUT_Disc ?? throw new InvalidOperationException($"Can't find the file specified: {path}"); - - if (discMountJob.OUT_SlowLoadAborted) - { - errorCallback("This disc would take too long to load. Run it through DiscoHawk first, or find a new rip because this one is probably junk"); - return null; - } - - if (discMountJob.OUT_ErrorLevel) - { - throw new InvalidOperationException($"\r\n{discMountJob.OUT_Log}"); - } - - if (type != null) - { - var discType = new DiscIdentifier(disc).DetectDiscType(); - - if (type.HasValue && discType != type) - { - errorCallback($"Not a {type} disc"); - return null; - } - } - - return disc; - } - /// /// Automagically loads a disc, without any fine-tuned control at all /// diff --git a/src/BizHawk.Emulation.DiscSystem/DiscExtensions.cs b/src/BizHawk.Emulation.DiscSystem/DiscExtensions.cs index d97f858819..492db30baa 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscExtensions.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscExtensions.cs @@ -4,11 +4,42 @@ namespace BizHawk.Emulation.DiscSystem { public static class DiscExtensions { + public static Disc CreateAnyType(string path, Action errorCallback) + { + return CreateImpl(null, path, errorCallback); + } public static Disc Create(this DiscType type, string path, Action errorCallback) { - return Disc.Create(type, path, errorCallback); + return CreateImpl(type, path, errorCallback); } - + private static Disc CreateImpl(DiscType? type, string path, Action errorCallback) + { + //--- load the disc in a context which will let us abort if it's going to take too long + var discMountJob = new DiscMountJob { IN_FromPath = path, IN_SlowLoadAbortThreshold = 8 }; + discMountJob.Run(); + var disc = discMountJob.OUT_Disc ?? throw new InvalidOperationException($"Can't find the file specified: {path}"); + + if (discMountJob.OUT_SlowLoadAborted) + { + errorCallback("This disc would take too long to load. Run it through DiscoHawk first, or find a new rip because this one is probably junk"); + return null; + } + + if (discMountJob.OUT_ErrorLevel) + { + throw new InvalidOperationException($"\r\n{discMountJob.OUT_Log}"); + } + + var discType = new DiscIdentifier(disc).DetectDiscType(); + + if (type.HasValue && discType != type) + { + errorCallback($"Not a {type} disc"); + return null; + } + + return disc; + } } }