mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-17 05:45:16 +00:00
202 lines
7.7 KiB
C#
202 lines
7.7 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text.RegularExpressions;
|
|
using MPF.Core.Converters;
|
|
using MPF.Core.Data;
|
|
using SabreTools.Hashing;
|
|
using SabreTools.Models.Logiqx;
|
|
using SabreTools.RedumpLib;
|
|
using SabreTools.RedumpLib.Data;
|
|
|
|
namespace MPF.Core.Processors
|
|
{
|
|
/// <summary>
|
|
/// Represents processing PlayStation 3 Custom Firmware outputs
|
|
/// </summary>
|
|
public sealed class PS3CFW : BaseProcessor
|
|
{
|
|
/// <inheritdoc/>
|
|
public PS3CFW(RedumpSystem? system, MediaType? type) : base(system, type) { }
|
|
|
|
#region BaseProcessor Implementations
|
|
|
|
/// <inheritdoc/>
|
|
public override (bool, List<string>) CheckAllOutputFilesExist(string basePath, bool preCheck)
|
|
{
|
|
var missingFiles = new List<string>();
|
|
|
|
if (Type != MediaType.BluRay || System != RedumpSystem.SonyPlayStation3)
|
|
{
|
|
missingFiles.Add("Media and system combination not supported for PS3 CFW");
|
|
}
|
|
else
|
|
{
|
|
string? getKeyBasePath = GetCFWBasePath(basePath);
|
|
if (!File.Exists($"{getKeyBasePath}.getkey.log"))
|
|
missingFiles.Add($"{getKeyBasePath}.getkey.log");
|
|
if (!File.Exists($"{getKeyBasePath}.disc.pic"))
|
|
missingFiles.Add($"{getKeyBasePath}.disc.pic");
|
|
}
|
|
|
|
return (missingFiles.Count == 0, missingFiles);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override void GenerateSubmissionInfo(SubmissionInfo info, Options options, string basePath, Drive? drive, bool includeArtifacts)
|
|
{
|
|
// Ensure that required sections exist
|
|
info = Builder.EnsureAllSections(info);
|
|
|
|
info.DumpingInfo!.DumpingProgram = EnumConverter.LongName(InternalProgram.PS3CFW);
|
|
|
|
// Get the Datafile information
|
|
Datafile? datafile = GeneratePS3CFWDatafile(basePath + ".iso");
|
|
|
|
// Fill in the hash data
|
|
info.TracksAndWriteOffsets!.ClrMameProData = InfoTool.GenerateDatfile(datafile);
|
|
|
|
// Get the individual hash data, as per internal
|
|
if (InfoTool.GetISOHashValues(datafile, out long size, out var crc32, out var md5, out var sha1))
|
|
{
|
|
info.SizeAndChecksums!.Size = size;
|
|
info.SizeAndChecksums.CRC32 = crc32;
|
|
info.SizeAndChecksums.MD5 = md5;
|
|
info.SizeAndChecksums.SHA1 = sha1;
|
|
}
|
|
|
|
// Get the PVD from the ISO
|
|
if (GetPVD(basePath + ".iso", out string? pvd))
|
|
info.Extras!.PVD = pvd;
|
|
|
|
// Try get the serial, version, and firmware version if a drive is provided
|
|
if (drive != null)
|
|
{
|
|
info.VersionAndEditions!.Version = InfoTool.GetPlayStation3Version(drive?.Name) ?? string.Empty;
|
|
info.CommonDiscInfo!.CommentsSpecialFields![SiteCode.InternalSerialName] = InfoTool.GetPlayStation3Serial(drive?.Name) ?? string.Empty;
|
|
string? firmwareVersion = InfoTool.GetPlayStation3FirmwareVersion(drive?.Name);
|
|
if (firmwareVersion != null)
|
|
info.CommonDiscInfo!.ContentsSpecialFields![SiteCode.Patches] = $"PS3 Firmware {firmwareVersion}";
|
|
}
|
|
|
|
// Try to determine the name of the GetKey file(s)
|
|
string? getKeyBasePath = GetCFWBasePath(basePath);
|
|
|
|
// If GenerateSubmissionInfo is run, .getkey.log existence should already be checked
|
|
if (!File.Exists(getKeyBasePath + ".getkey.log"))
|
|
return;
|
|
|
|
// Get dumping date from GetKey log date
|
|
info.DumpingInfo.DumpingDate = InfoTool.GetFileModifiedDate(getKeyBasePath + ".getkey.log")?.ToString("yyyy-MM-dd HH:mm:ss");
|
|
|
|
// TODO: Put info about abnormal PIC info beyond 132 bytes in comments?
|
|
if (File.Exists(getKeyBasePath + ".disc.pic"))
|
|
info.Extras!.PIC = GetPIC(getKeyBasePath + ".disc.pic", 264);
|
|
|
|
// Parse Disc Key, Disc ID, and PIC from the .getkey.log file
|
|
if (Utilities.Tools.ParseGetKeyLog(getKeyBasePath + ".getkey.log", out string? key, out string? id, out string? pic))
|
|
{
|
|
if (key != null)
|
|
info.Extras!.DiscKey = key.ToUpperInvariant();
|
|
if (id != null)
|
|
info.Extras!.DiscID = id.ToUpperInvariant().Substring(0, 24) + "XXXXXXXX";
|
|
if (string.IsNullOrEmpty(info.Extras!.PIC) && !string.IsNullOrEmpty(pic))
|
|
{
|
|
pic = Regex.Replace(pic, ".{32}", "$0\n");
|
|
info.Extras.PIC = pic;
|
|
}
|
|
}
|
|
|
|
// Fill in any artifacts that exist, Base64-encoded, if we need to
|
|
if (includeArtifacts)
|
|
{
|
|
info.Artifacts ??= [];
|
|
|
|
if (File.Exists(getKeyBasePath + ".disc.pic"))
|
|
info.Artifacts["discpic"] = GetBase64(GetFullFile(getKeyBasePath + ".disc.pic", binary: true)) ?? string.Empty;
|
|
if (File.Exists(getKeyBasePath + ".getkey.log"))
|
|
info.Artifacts["getkeylog"] = GetBase64(GetFullFile(getKeyBasePath + ".getkey.log")) ?? string.Empty;
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override List<string> GetLogFilePaths(string basePath)
|
|
{
|
|
var logFiles = new List<string>();
|
|
string? getKeyBasePath = GetCFWBasePath(basePath);
|
|
|
|
if (System != RedumpSystem.SonyPlayStation3)
|
|
return logFiles;
|
|
|
|
switch (Type)
|
|
{
|
|
case MediaType.BluRay:
|
|
if (File.Exists($"{getKeyBasePath}.getkey.log"))
|
|
logFiles.Add($"{getKeyBasePath}.getkey.log");
|
|
if (File.Exists($"{getKeyBasePath}.disc.pic"))
|
|
logFiles.Add($"{getKeyBasePath}.disc.pic");
|
|
|
|
break;
|
|
}
|
|
|
|
return logFiles;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Information Extraction Methods
|
|
|
|
/// <summary>
|
|
/// Get a formatted datfile from the PS3 CFW output, if possible
|
|
/// </summary>
|
|
/// <param name="iso">Path to ISO file</param>
|
|
/// <returns></returns>
|
|
private static Datafile? GeneratePS3CFWDatafile(string iso)
|
|
{
|
|
// If the ISO file doesn't exist, we can't get info from it
|
|
if (!File.Exists(iso))
|
|
return null;
|
|
|
|
try
|
|
{
|
|
if (HashTool.GetStandardHashes(iso, out long size, out string? crc, out string? md5, out string? sha1))
|
|
{
|
|
return new Datafile
|
|
{
|
|
Game = [new Game { Rom = [new Rom { Name = Path.GetFileName(iso), Size = size.ToString(), CRC = crc, MD5 = md5, SHA1 = sha1 }] }]
|
|
};
|
|
}
|
|
return null;
|
|
}
|
|
catch
|
|
{
|
|
// We don't care what the exception is right now
|
|
return null;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Helper Functions
|
|
|
|
/// <summary>
|
|
/// Estimate the base filename of the .getkey.log file associated with the dump
|
|
/// </summary>
|
|
/// <param name="iso">Path to ISO file</param>
|
|
/// <returns>Base filename, null if not found</returns>
|
|
private string? GetCFWBasePath(string iso)
|
|
{
|
|
string? dir = Path.GetDirectoryName(iso);
|
|
dir ??= ".";
|
|
|
|
string[] files = Directory.GetFiles(dir, "*.getkey.log");
|
|
|
|
if (files.Length != 1)
|
|
return null;
|
|
|
|
return files[0].Substring(0, files[0].Length - 11);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|