From 56e3416de2957d3bfc78b9866c75dc62fdfd2132 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 12 Jul 2015 20:23:27 -0500 Subject: [PATCH] improve rom status report for PSX, and generate one for the M3U scenario --- BizHawk.Client.Common/RomLoader.cs | 33 +++++++++++++++++-- .../DiscIdentifier.cs | 10 +++++- 2 files changed, 39 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 2d004f8984..25293b4e39 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -251,6 +251,7 @@ namespace BizHawk.Client.Common m3u.Rebase(Path.GetDirectoryName(path)); List discs = new List(); List discNames = new List(); + StringWriter sw = new StringWriter(); foreach (var e in m3u.Entries) { Disc disc = null; @@ -259,11 +260,37 @@ namespace BizHawk.Client.Common disc = Disc.LoadAutomagic(discPath); if(disc == null) throw new InvalidOperationException("Can't load one of the files specified in the M3U"); - discNames.Add(Path.GetFileNameWithoutExtension(discPath)); + var discName = Path.GetFileNameWithoutExtension(discPath); + discNames.Add(discName); discs.Add(disc); + + var discType = new DiscIdentifier(disc).DetectDiscType(); + sw.WriteLine("{0}", Path.GetFileName(discPath)); + if (discType == DiscType.SonyPSX) + { + string discHash = new DiscHasher(disc).Calculate_PSX_BizIDHash().ToString("X8"); + game = Database.CheckDatabase(discHash); + if (game.IsRomStatusBad()) + sw.WriteLine("Disc could not be identified as known-good. Look for a better rip."); + else + { + sw.WriteLine("Disc was identified (99.99% confidently) as known good."); + sw.WriteLine("Nonetheless it could be an unrecognized romhack or patched version."); + sw.WriteLine("According to redump.org, the ideal hash for entire disc is: CRC32:{0:X8}", game.GetStringValue("dh")); + sw.WriteLine("The file you loaded hasn't been hashed entirely (it would take too long)"); + sw.WriteLine("Compare it with the full hash calculated by the PSX menu's disc hasher tool"); + } + } + else + { + sw.WriteLine("Not a PSX disc"); + } + sw.WriteLine("-------------------------"); } + nextEmulator = new Octoshock(nextComm, discs, discNames, null, GetCoreSettings(), GetCoreSyncSettings()); nextEmulator.CoreComm.RomStatusDetails = "PSX etc."; + nextEmulator.CoreComm.RomStatusDetails = sw.ToString(); game = new GameInfo { Name = Path.GetFileNameWithoutExtension(file.Name) }; game.System = "PSX"; } @@ -346,9 +373,9 @@ namespace BizHawk.Client.Common StringWriter sw = new StringWriter(); sw.WriteLine("Disc was identified (99.99% confidently) as known good."); sw.WriteLine("Nonetheless it could be an unrecognized romhack or patched version."); - sw.WriteLine("Ideal hash for entire disc is: CRC32:{0:X8}", game.GetStringValue("dh")); + sw.WriteLine("According to redump.org, the ideal hash for entire disc is: CRC32:{0:X8}", game.GetStringValue("dh")); sw.WriteLine("The file you loaded hasn't been hashed entirely (it would take too long)"); - sw.WriteLine("Check it in the PSX menu (eventually) and compare to this or check each .bin file individually against redump.org"); + sw.WriteLine("Compare it with the full hash calculated by the PSX menu's disc hasher tool"); nextEmulator.CoreComm.RomStatusDetails = sw.ToString(); } break; diff --git a/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs b/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs index f21c5b57c2..dad81a20cb 100644 --- a/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs +++ b/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs @@ -8,7 +8,12 @@ namespace BizHawk.Emulation.DiscSystem public enum DiscType { /// - /// Nothing is known about this disc type + /// Disc contains audio in track 1. Nothing more can readily be determined + /// + AudioDisc, + + /// + /// Nothing is known about this data disc type /// UnknownFormat, @@ -61,6 +66,9 @@ namespace BizHawk.Emulation.DiscSystem /// public DiscType DetectDiscType() { + //check track 0. if it's an audio track, further data-track testing is useless + if (dsr.ReadLBA_Mode(0) == 0) return DiscType.AudioDisc; + //sega doesnt put anything identifying in the cdfs volume info. but its consistent about putting its own header here in sector 0 if (DetectSegaSaturn()) return DiscType.SegaSaturn;