mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
154 lines
5.4 KiB
C#
154 lines
5.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SabreTools.Core;
|
|
using SabreTools.DatItems;
|
|
using SabreTools.DatItems.Formats;
|
|
|
|
namespace SabreTools.DatFiles.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents parsing and writing of an Everdrive SMDB file
|
|
/// </summary>
|
|
internal partial class EverdriveSMDB : DatFile
|
|
{
|
|
/// <inheritdoc/>
|
|
protected override ItemType[] GetSupportedTypes()
|
|
{
|
|
return
|
|
[
|
|
ItemType.Rom
|
|
];
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override List<string>? GetMissingRequiredFields(DatItem datItem)
|
|
{
|
|
var missingFields = new List<string>();
|
|
|
|
// Check item name
|
|
if (string.IsNullOrEmpty(datItem.GetName()))
|
|
missingFields.Add(Models.Metadata.Rom.NameKey);
|
|
|
|
switch (datItem)
|
|
{
|
|
case Rom rom:
|
|
if (string.IsNullOrEmpty(rom.GetFieldValue<string?>(Models.Metadata.Rom.SHA256Key)))
|
|
missingFields.Add(Models.Metadata.Rom.SHA256Key);
|
|
if (string.IsNullOrEmpty(rom.GetFieldValue<string?>(Models.Metadata.Rom.SHA1Key)))
|
|
missingFields.Add(Models.Metadata.Rom.SHA1Key);
|
|
if (string.IsNullOrEmpty(rom.GetFieldValue<string?>(Models.Metadata.Rom.MD5Key)))
|
|
missingFields.Add(Models.Metadata.Rom.MD5Key);
|
|
if (string.IsNullOrEmpty(rom.GetFieldValue<string?>(Models.Metadata.Rom.CRCKey)))
|
|
missingFields.Add(Models.Metadata.Rom.CRCKey);
|
|
break;
|
|
}
|
|
|
|
return missingFields;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override bool WriteToFile(string outfile, bool ignoreblanks = false, bool throwOnError = false)
|
|
{
|
|
try
|
|
{
|
|
logger.User($"Writing to '{outfile}'...");
|
|
|
|
var metadataFile = CreateMetadataFile(ignoreblanks);
|
|
if (!(new Serialization.Files.EverdriveSMDB().Serialize(metadataFile, outfile)))
|
|
{
|
|
logger.Warning($"File '{outfile}' could not be written! See the log for more details.");
|
|
return false;
|
|
}
|
|
}
|
|
catch (Exception ex) when (!throwOnError)
|
|
{
|
|
logger.Error(ex);
|
|
return false;
|
|
}
|
|
|
|
logger.User($"'{outfile}' written!{Environment.NewLine}");
|
|
return true;
|
|
}
|
|
|
|
#region Converters
|
|
|
|
/// <summary>
|
|
/// Create a MetadataFile from the current internal information
|
|
/// <summary>
|
|
/// <param name="ignoreblanks">True if blank roms should be skipped on output, false otherwise</param>
|
|
private Models.EverdriveSMDB.MetadataFile CreateMetadataFile(bool ignoreblanks)
|
|
{
|
|
var metadataFile = new Models.EverdriveSMDB.MetadataFile
|
|
{
|
|
Row = CreateRows(ignoreblanks)
|
|
};
|
|
return metadataFile;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an array of Row from the current internal information
|
|
/// <summary>
|
|
/// <param name="ignoreblanks">True if blank roms should be skipped on output, false otherwise</param>
|
|
private Models.EverdriveSMDB.Row[]? CreateRows(bool ignoreblanks)
|
|
{
|
|
// If we don't have items, we can't do anything
|
|
if (this.Items == null || !this.Items.Any())
|
|
return null;
|
|
|
|
// Create a list of hold the rows
|
|
var rows = new List<Models.EverdriveSMDB.Row>();
|
|
|
|
// Loop through the sorted items and create games for them
|
|
foreach (string key in Items.SortedKeys)
|
|
{
|
|
var items = Items.FilteredItems(key);
|
|
if (items == null || !items.Any())
|
|
continue;
|
|
|
|
// Loop through and convert the items to respective lists
|
|
for (int index = 0; index < items.Count; index++)
|
|
{
|
|
// Get the item
|
|
var item = items[index];
|
|
|
|
// Check for a "null" item
|
|
item = ProcessNullifiedItem(item);
|
|
|
|
// Skip if we're ignoring the item
|
|
if (ShouldIgnore(item, ignoreblanks))
|
|
continue;
|
|
|
|
switch (item)
|
|
{
|
|
case Rom rom:
|
|
rows.Add(CreateRow(rom));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return [.. rows];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Row from the current Rom DatItem
|
|
/// <summary>
|
|
private static Models.EverdriveSMDB.Row CreateRow(Rom rom)
|
|
{
|
|
var row = new Models.EverdriveSMDB.Row
|
|
{
|
|
SHA256 = rom.GetFieldValue<string?>(Models.Metadata.Rom.SHA256Key),
|
|
Name = $"{rom.Machine.GetFieldValue<string?>(Models.Metadata.Machine.NameKey) ?? string.Empty}/{rom.GetName()}",
|
|
SHA1 = rom.GetFieldValue<string?>(Models.Metadata.Rom.SHA1Key),
|
|
MD5 = rom.GetFieldValue<string?>(Models.Metadata.Rom.MD5Key),
|
|
CRC32 = rom.GetFieldValue<string?>(Models.Metadata.Rom.CRCKey),
|
|
Size = rom.GetFieldValue<long?>(Models.Metadata.Rom.SizeKey)?.ToString(),
|
|
};
|
|
return row;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|