mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
911 lines
41 KiB
C#
911 lines
41 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Xml;
|
|
|
|
using SabreTools.Library.Data;
|
|
using SabreTools.Library.DatItems;
|
|
using SabreTools.Library.IO;
|
|
using SabreTools.Library.Tools;
|
|
|
|
namespace SabreTools.Library.DatFiles
|
|
{
|
|
/// <summary>
|
|
/// Represents parsing and writing of a MAME XML DAT
|
|
/// </summary>
|
|
internal class Listxml : DatFile
|
|
{
|
|
/// <summary>
|
|
/// Constructor designed for casting a base DatFile
|
|
/// </summary>
|
|
/// <param name="datFile">Parent DatFile to copy from</param>
|
|
public Listxml(DatFile datFile)
|
|
: base(datFile)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse a MAME XML DAT and return all found games and roms within
|
|
/// </summary>
|
|
/// <param name="filename">Name of the file to be parsed</param>
|
|
/// <param name="indexId">Index ID for the DAT</param>
|
|
/// <param name="keep">True if full pathnames are to be kept, false otherwise (default)</param>
|
|
/// <remarks>
|
|
/// </remarks>
|
|
protected override void ParseFile(
|
|
// Standard Dat parsing
|
|
string filename,
|
|
int indexId,
|
|
|
|
// Miscellaneous
|
|
bool keep)
|
|
{
|
|
// Prepare all internal variables
|
|
XmlReader xtr = filename.GetXmlTextReader();
|
|
|
|
// If we got a null reader, just return
|
|
if (xtr == null)
|
|
return;
|
|
|
|
// Otherwise, read the file to the end
|
|
try
|
|
{
|
|
xtr.MoveToContent();
|
|
while (!xtr.EOF)
|
|
{
|
|
// We only want elements
|
|
if (xtr.NodeType != XmlNodeType.Element)
|
|
{
|
|
xtr.Read();
|
|
continue;
|
|
}
|
|
|
|
switch (xtr.Name)
|
|
{
|
|
case "mame":
|
|
Header.Name = (string.IsNullOrWhiteSpace(Header.Name) ? xtr.GetAttribute("build") : Header.Name);
|
|
Header.Description = (string.IsNullOrWhiteSpace(Header.Description) ? Header.Name : Header.Description);
|
|
// string mame_debug = xtr.GetAttribute("debug"); // (yes|no) "no"
|
|
// string mame_mameconfig = xtr.GetAttribute("mameconfig"); CDATA
|
|
xtr.Read();
|
|
break;
|
|
|
|
// Handle M1 DATs since they're 99% the same as a SL DAT
|
|
case "m1":
|
|
Header.Name = (string.IsNullOrWhiteSpace(Header.Name) ? "M1" : Header.Name);
|
|
Header.Description = (string.IsNullOrWhiteSpace(Header.Description) ? "M1" : Header.Description);
|
|
Header.Version = (string.IsNullOrWhiteSpace(Header.Version) ? xtr.GetAttribute("version") ?? string.Empty : Header.Version);
|
|
xtr.Read();
|
|
break;
|
|
|
|
// We want to process the entire subtree of the machine
|
|
case "game": // Some older DATs still use "game"
|
|
case "machine":
|
|
ReadMachine(xtr.ReadSubtree(), filename, indexId);
|
|
|
|
// Skip the machine now that we've processed it
|
|
xtr.Skip();
|
|
break;
|
|
|
|
default:
|
|
xtr.Read();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Warning($"Exception found while parsing '{filename}': {ex}");
|
|
|
|
// For XML errors, just skip the affected node
|
|
xtr?.Read();
|
|
}
|
|
|
|
xtr.Dispose();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Read machine information
|
|
/// </summary>
|
|
/// <param name="reader">XmlReader representing a machine block</param>
|
|
/// <param name="filename">Name of the file to be parsed</param>
|
|
/// <param name="indexId">Index ID for the DAT</param>
|
|
private void ReadMachine(
|
|
XmlReader reader,
|
|
|
|
// Standard Dat parsing
|
|
string filename,
|
|
int indexId)
|
|
{
|
|
// If we have an empty machine, skip it
|
|
if (reader == null)
|
|
return;
|
|
|
|
// Otherwise, add what is possible
|
|
reader.MoveToContent();
|
|
|
|
string key = string.Empty;
|
|
string temptype = reader.Name;
|
|
bool containsItems = false;
|
|
|
|
// Create a new machine
|
|
MachineType machineType = MachineType.NULL;
|
|
if (reader.GetAttribute("isbios").AsYesNo() == true)
|
|
machineType |= MachineType.Bios;
|
|
|
|
if (reader.GetAttribute("isdevice").AsYesNo() == true)
|
|
machineType |= MachineType.Device;
|
|
|
|
if (reader.GetAttribute("ismechanical").AsYesNo() == true)
|
|
machineType |= MachineType.Mechanical;
|
|
|
|
Machine machine = new Machine
|
|
{
|
|
Name = reader.GetAttribute("name"),
|
|
Description = reader.GetAttribute("name"),
|
|
SourceFile = reader.GetAttribute("sourcefile"),
|
|
Runnable = reader.GetAttribute("runnable").AsYesNo(),
|
|
|
|
Comment = string.Empty,
|
|
|
|
CloneOf = reader.GetAttribute("cloneof") ?? string.Empty,
|
|
RomOf = reader.GetAttribute("romof") ?? string.Empty,
|
|
SampleOf = reader.GetAttribute("sampleof") ?? string.Empty,
|
|
Devices = new List<string>(),
|
|
SlotOptions = new List<string>(),
|
|
|
|
MachineType = (machineType == MachineType.NULL ? MachineType.None : machineType),
|
|
};
|
|
|
|
while (!reader.EOF)
|
|
{
|
|
// We only want elements
|
|
if (reader.NodeType != XmlNodeType.Element)
|
|
{
|
|
reader.Read();
|
|
continue;
|
|
}
|
|
|
|
// Get the roms from the machine
|
|
switch (reader.Name)
|
|
{
|
|
case "description":
|
|
machine.Description = reader.ReadElementContentAsString();
|
|
break;
|
|
|
|
case "year":
|
|
machine.Year = reader.ReadElementContentAsString();
|
|
break;
|
|
|
|
case "manufacturer":
|
|
machine.Manufacturer = reader.ReadElementContentAsString();
|
|
break;
|
|
|
|
case "biosset":
|
|
containsItems = true;
|
|
|
|
DatItem biosset = new BiosSet
|
|
{
|
|
Name = reader.GetAttribute("name"),
|
|
Description = reader.GetAttribute("description"),
|
|
Default = reader.GetAttribute("default").AsYesNo(),
|
|
|
|
IndexId = indexId,
|
|
IndexSource = filename,
|
|
};
|
|
|
|
biosset.CopyMachineInformation(machine);
|
|
|
|
// Now process and add the rom
|
|
key = ParseAddHelper(biosset);
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "rom":
|
|
containsItems = true;
|
|
|
|
DatItem rom = new Rom
|
|
{
|
|
Name = reader.GetAttribute("name"),
|
|
Bios = reader.GetAttribute("bios"),
|
|
Size = Sanitizer.CleanSize(reader.GetAttribute("size")),
|
|
CRC = reader.GetAttribute("crc"),
|
|
MD5 = reader.GetAttribute("md5"),
|
|
#if NET_FRAMEWORK
|
|
RIPEMD160 = reader.GetAttribute("ripemd160"),
|
|
#endif
|
|
SHA1 = reader.GetAttribute("sha1"),
|
|
SHA256 = reader.GetAttribute("sha256"),
|
|
SHA384 = reader.GetAttribute("sha384"),
|
|
SHA512 = reader.GetAttribute("sha512"),
|
|
MergeTag = reader.GetAttribute("merge"),
|
|
Region = reader.GetAttribute("region"),
|
|
Offset = reader.GetAttribute("offset"),
|
|
ItemStatus = reader.GetAttribute("status").AsItemStatus(),
|
|
Optional = reader.GetAttribute("optional").AsYesNo(),
|
|
|
|
IndexId = indexId,
|
|
IndexSource = filename,
|
|
};
|
|
|
|
rom.CopyMachineInformation(machine);
|
|
|
|
// Now process and add the rom
|
|
key = ParseAddHelper(rom);
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "disk":
|
|
containsItems = true;
|
|
|
|
DatItem disk = new Disk
|
|
{
|
|
Name = reader.GetAttribute("name"),
|
|
MD5 = reader.GetAttribute("md5"),
|
|
#if NET_FRAMEWORK
|
|
RIPEMD160 = reader.GetAttribute("ripemd160"),
|
|
#endif
|
|
SHA1 = reader.GetAttribute("sha1"),
|
|
SHA256 = reader.GetAttribute("sha256"),
|
|
SHA384 = reader.GetAttribute("sha384"),
|
|
SHA512 = reader.GetAttribute("sha512"),
|
|
MergeTag = reader.GetAttribute("merge"),
|
|
Region = reader.GetAttribute("region"),
|
|
Index = reader.GetAttribute("index"),
|
|
Writable = reader.GetAttribute("writable").AsYesNo(),
|
|
ItemStatus = reader.GetAttribute("status").AsItemStatus(),
|
|
Optional = reader.GetAttribute("optional").AsYesNo(),
|
|
|
|
IndexId = indexId,
|
|
IndexSource = filename,
|
|
};
|
|
|
|
disk.CopyMachineInformation(machine);
|
|
|
|
// Now process and add the rom
|
|
key = ParseAddHelper(disk);
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "device_ref":
|
|
string device_ref_name = reader.GetAttribute("name");
|
|
if (!machine.Devices.Contains(device_ref_name))
|
|
machine.Devices.Add(device_ref_name);
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "sample":
|
|
containsItems = true;
|
|
|
|
DatItem samplerom = new Sample
|
|
{
|
|
Name = reader.GetAttribute("name"),
|
|
|
|
IndexId = indexId,
|
|
IndexSource = filename,
|
|
};
|
|
|
|
samplerom.CopyMachineInformation(machine);
|
|
|
|
// Now process and add the rom
|
|
key = ParseAddHelper(samplerom);
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "chip":
|
|
// string chip_name = reader.GetAttribute("name");
|
|
// string chip_tag = reader.GetAttribute("tag");
|
|
// string chip_type = reader.GetAttribute("type"); // (cpu|audio)
|
|
// string chip_clock = reader.GetAttribute("clock");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "display":
|
|
// string display_tag = reader.GetAttribute("tag");
|
|
// string display_type = reader.GetAttribute("type"); // (raster|vector|lcd|svg|unknown)
|
|
// string display_rotate = reader.GetAttribute("rotate"); // (0|90|180|270)
|
|
// bool? display_flipx = Utilities.GetYesNo(reader.GetAttribute("flipx"));
|
|
// string display_width = reader.GetAttribute("width");
|
|
// string display_height = reader.GetAttribute("height");
|
|
// string display_refresh = reader.GetAttribute("refresh");
|
|
// string display_pixclock = reader.GetAttribute("pixclock");
|
|
// string display_htotal = reader.GetAttribute("htotal");
|
|
// string display_hbend = reader.GetAttribute("hbend");
|
|
// string display_hbstart = reader.GetAttribute("hbstart");
|
|
// string display_vtotal = reader.GetAttribute("vtotal");
|
|
// string display_vbend = reader.GetAttribute("vbend");
|
|
// string display_vbstart = reader.GetAttribute("vbstart");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "sound":
|
|
// string sound_channels = reader.GetAttribute("channels");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "condition":
|
|
// string condition_tag = reader.GetAttribute("tag");
|
|
// string condition_mask = reader.GetAttribute("mask");
|
|
// string condition_relation = reader.GetAttribute("relation"); // (eq|ne|gt|le|lt|ge)
|
|
// string condition_value = reader.GetAttribute("value");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "input":
|
|
// bool? input_service = Utilities.GetYesNo(reader.GetAttribute("service"));
|
|
// bool? input_tilt = Utilities.GetYesNo(reader.GetAttribute("tilt"));
|
|
// string input_players = reader.GetAttribute("players");
|
|
// string input_coins = reader.GetAttribute("coins");
|
|
|
|
// // While the subtree contains <control> elements...
|
|
// string control_type = reader.GetAttribute("type");
|
|
// string control_player = reader.GetAttribute("player");
|
|
// string control_buttons = reader.GetAttribute("buttons");
|
|
// string control_regbuttons = reader.GetAttribute("regbuttons");
|
|
// string control_minimum = reader.GetAttribute("minimum");
|
|
// string control_maximum = reader.GetAttribute("maximum");
|
|
// string control_sensitivity = reader.GetAttribute("sensitivity");
|
|
// string control_keydelta = reader.GetAttribute("keydelta");
|
|
// bool? control_reverse = Utilities.GetYesNo(reader.GetAttribute("reverse"));
|
|
// string control_ways = reader.GetAttribute("ways");
|
|
// string control_ways2 = reader.GetAttribute("ways2");
|
|
// string control_ways3 = reader.GetAttribute("ways3");
|
|
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "dipswitch":
|
|
// string dipswitch_name = reader.GetAttribute("name");
|
|
// string dipswitch_tag = reader.GetAttribute("tag");
|
|
// string dipswitch_mask = reader.GetAttribute("mask");
|
|
|
|
// // While the subtree contains <diplocation> elements...
|
|
// string diplocation_name = reader.GetAttribute("name");
|
|
// string diplocation_number = reader.GetAttribute("number");
|
|
// bool? diplocation_inverted = Utilities.GetYesNo(reader.GetAttribute("inverted"));
|
|
|
|
// // While the subtree contains <dipvalue> elements...
|
|
// string dipvalue_name = reader.GetAttribute("name");
|
|
// string dipvalue_value = reader.GetAttribute("value");
|
|
// bool? dipvalue_default = Utilities.GetYesNo(reader.GetAttribute("default"));
|
|
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "configuration":
|
|
// string configuration_name = reader.GetAttribute("name");
|
|
// string configuration_tag = reader.GetAttribute("tag");
|
|
// string configuration_mask = reader.GetAttribute("mask");
|
|
|
|
// // While the subtree contains <conflocation> elements...
|
|
// string conflocation_name = reader.GetAttribute("name");
|
|
// string conflocation_number = reader.GetAttribute("number");
|
|
// bool? conflocation_inverted = Utilities.GetYesNo(reader.GetAttribute("inverted"));
|
|
|
|
// // While the subtree contains <confsetting> elements...
|
|
// string confsetting_name = reader.GetAttribute("name");
|
|
// string confsetting_value = reader.GetAttribute("value");
|
|
// bool? confsetting_default = Utilities.GetYesNo(reader.GetAttribute("default"));
|
|
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "port":
|
|
// string port_tag = reader.GetAttribute("tag");
|
|
|
|
// // While the subtree contains <analog> elements...
|
|
// string analog_mask = reader.GetAttribute("mask");
|
|
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "adjuster":
|
|
// string adjuster_name = reader.GetAttribute("name");
|
|
// bool? adjuster_default = Utilities.GetYesNo(reader.GetAttribute("default"));
|
|
|
|
// // For the one possible <condition> element...
|
|
// string condition_tag = reader.GetAttribute("tag");
|
|
// string condition_mask = reader.GetAttribute("mask");
|
|
// string condition_relation = reader.GetAttribute("relation"); // (eq|ne|gt|le|lt|ge)
|
|
// string condition_value = reader.GetAttribute("value");
|
|
|
|
reader.Skip();
|
|
break;
|
|
case "driver":
|
|
// string driver_status = reader.GetAttribute("status"); // (good|imperfect|preliminary)
|
|
// string driver_emulation = reader.GetAttribute("emulation"); // (good|imperfect|preliminary)
|
|
// string driver_cocktail = reader.GetAttribute("cocktail"); // (good|imperfect|preliminary)
|
|
// string driver_savestate = reader.GetAttribute("savestate"); // (supported|unsupported)
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "feature":
|
|
// string feature_type = reader.GetAttribute("type"); // (protection|palette|graphics|sound|controls|keyboard|mouse|microphone|camera|disk|printer|lan|wan|timing)
|
|
// string feature_status = reader.GetAttribute("status"); // (unemulated|imperfect)
|
|
// string feature_overall = reader.GetAttribute("overall"); // (unemulated|imperfect)
|
|
|
|
reader.Read();
|
|
break;
|
|
case "device":
|
|
// string device_type = reader.GetAttribute("type");
|
|
// string device_tag = reader.GetAttribute("tag");
|
|
// string device_fixed_image = reader.GetAttribute("fixed_image");
|
|
// string device_mandatory = reader.GetAttribute("mandatory");
|
|
// string device_interface = reader.GetAttribute("interface");
|
|
|
|
// // For the one possible <instance> element...
|
|
// string instance_name = reader.GetAttribute("name");
|
|
// string instance_briefname = reader.GetAttribute("briefname");
|
|
|
|
// // While the subtree contains <extension> elements...
|
|
// string extension_name = reader.GetAttribute("name");
|
|
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "slot":
|
|
// string slot_name = reader.GetAttribute("name");
|
|
ReadSlot(reader.ReadSubtree(), machine);
|
|
|
|
// Skip the slot now that we've processed it
|
|
reader.Skip();
|
|
break;
|
|
|
|
case "softwarelist":
|
|
// string softwarelist_name = reader.GetAttribute("name");
|
|
// string softwarelist_status = reader.GetAttribute("status"); // (original|compatible)
|
|
// string softwarelist_filter = reader.GetAttribute("filter");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
case "ramoption":
|
|
// string ramoption_default = reader.GetAttribute("default");
|
|
|
|
reader.Read();
|
|
break;
|
|
|
|
default:
|
|
reader.Read();
|
|
break;
|
|
}
|
|
}
|
|
|
|
// If no items were found for this machine, add a Blank placeholder
|
|
if (!containsItems)
|
|
{
|
|
Blank blank = new Blank()
|
|
{
|
|
IndexId = indexId,
|
|
IndexSource = filename,
|
|
};
|
|
blank.CopyMachineInformation(machine);
|
|
|
|
// Now process and add the rom
|
|
ParseAddHelper(blank);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Read slot information
|
|
/// </summary>
|
|
/// <param name="reader">XmlReader representing a machine block</param>
|
|
/// <param name="machine">Machine information to pass to contained items</param>
|
|
private void ReadSlot(XmlReader reader, Machine machine)
|
|
{
|
|
// If we have an empty machine, skip it
|
|
if (reader == null)
|
|
return;
|
|
|
|
// Otherwise, add what is possible
|
|
reader.MoveToContent();
|
|
|
|
while (!reader.EOF)
|
|
{
|
|
// We only want elements
|
|
if (reader.NodeType != XmlNodeType.Element)
|
|
{
|
|
reader.Read();
|
|
continue;
|
|
}
|
|
|
|
// Get the roms from the machine
|
|
switch (reader.Name)
|
|
{
|
|
case "slotoption":
|
|
// string slotoption_name = reader.GetAttribute("name");
|
|
string devname = reader.GetAttribute("devname");
|
|
if (!machine.SlotOptions.Contains(devname))
|
|
{
|
|
machine.SlotOptions.Add(devname);
|
|
}
|
|
// bool? slotoption_default = Utilities.GetYesNo(reader.GetAttribute("default"));
|
|
reader.Read();
|
|
break;
|
|
|
|
default:
|
|
reader.Read();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create and open an output file for writing direct from a dictionary
|
|
/// </summary>
|
|
/// <param name="outfile">Name of the file to write to</param>
|
|
/// <param name="ignoreblanks">True if blank roms should be skipped on output, false otherwise (default)</param>
|
|
/// <returns>True if the DAT was written correctly, false otherwise</returns>
|
|
public override bool WriteToFile(string outfile, bool ignoreblanks = false)
|
|
{
|
|
try
|
|
{
|
|
Globals.Logger.User($"Opening file for writing: {outfile}");
|
|
FileStream fs = FileExtensions.TryCreate(outfile);
|
|
|
|
// If we get back null for some reason, just log and return
|
|
if (fs == null)
|
|
{
|
|
Globals.Logger.Warning($"File '{outfile}' could not be created for writing! Please check to see if the file is writable");
|
|
return false;
|
|
}
|
|
|
|
XmlTextWriter xtw = new XmlTextWriter(fs, new UTF8Encoding(false))
|
|
{
|
|
Formatting = Formatting.Indented,
|
|
IndentChar = '\t',
|
|
Indentation = 1
|
|
};
|
|
|
|
// Write out the header
|
|
WriteHeader(xtw);
|
|
|
|
// Write out each of the machines and roms
|
|
string lastgame = null;
|
|
|
|
// Use a sorted list of games to output
|
|
foreach (string key in Items.SortedKeys)
|
|
{
|
|
List<DatItem> roms = Items[key];
|
|
|
|
// Resolve the names in the block
|
|
roms = DatItem.ResolveNames(roms);
|
|
|
|
for (int index = 0; index < roms.Count; index++)
|
|
{
|
|
DatItem rom = roms[index];
|
|
|
|
// There are apparently times when a null rom can skip by, skip them
|
|
if (rom.Name == null || rom.MachineName == null)
|
|
{
|
|
Globals.Logger.Warning("Null rom found!");
|
|
continue;
|
|
}
|
|
|
|
// If we have a different game and we're not at the start of the list, output the end of last item
|
|
if (lastgame != null && lastgame.ToLowerInvariant() != rom.MachineName.ToLowerInvariant())
|
|
WriteEndGame(xtw);
|
|
|
|
// If we have a new game, output the beginning of the new item
|
|
if (lastgame == null || lastgame.ToLowerInvariant() != rom.MachineName.ToLowerInvariant())
|
|
WriteStartGame(xtw, rom);
|
|
|
|
// If we have a "null" game (created by DATFromDir or something similar), log it to file
|
|
if (rom.ItemType == ItemType.Rom
|
|
&& ((Rom)rom).Size == -1
|
|
&& ((Rom)rom).CRC == "null")
|
|
{
|
|
Globals.Logger.Verbose($"Empty folder found: {rom.MachineName}");
|
|
|
|
lastgame = rom.MachineName;
|
|
continue;
|
|
}
|
|
|
|
// Now, output the rom data
|
|
WriteDatItem(xtw, rom, ignoreblanks);
|
|
|
|
// Set the new data to compare against
|
|
lastgame = rom.MachineName;
|
|
}
|
|
}
|
|
|
|
// Write the file footer out
|
|
WriteFooter(xtw);
|
|
|
|
Globals.Logger.Verbose("File written!" + Environment.NewLine);
|
|
xtw.Dispose();
|
|
fs.Dispose();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write out DAT header using the supplied StreamWriter
|
|
/// </summary>
|
|
/// <param name="xtw">XmlTextWriter to output to</param>
|
|
/// <returns>True if the data was written, false on error</returns>
|
|
private bool WriteHeader(XmlTextWriter xtw)
|
|
{
|
|
try
|
|
{
|
|
xtw.WriteStartDocument();
|
|
|
|
xtw.WriteStartElement("mame");
|
|
xtw.WriteAttributeString("build", Header.Name);
|
|
//xtw.WriteAttributeString("debug", Debug);
|
|
//xtw.WriteAttributeString("mameconfig", MameConfig);
|
|
|
|
xtw.Flush();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write out Game start using the supplied StreamWriter
|
|
/// </summary>
|
|
/// <param name="xtw">XmlTextWriter to output to</param>
|
|
/// <param name="datItem">DatItem object to be output</param>
|
|
/// <returns>True if the data was written, false on error</returns>
|
|
private bool WriteStartGame(XmlTextWriter xtw, DatItem datItem)
|
|
{
|
|
try
|
|
{
|
|
// No game should start with a path separator
|
|
datItem.MachineName = datItem.MachineName.TrimStart(Path.DirectorySeparatorChar);
|
|
|
|
// Build the state based on excluded fields
|
|
xtw.WriteStartElement("machine");
|
|
xtw.WriteAttributeString("name", datItem.GetField(Field.MachineName, Header.ExcludeFields));
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SourceFile, Header.ExcludeFields)))
|
|
xtw.WriteElementString("sourcefile", datItem.SourceFile);
|
|
|
|
if (!Header.ExcludeFields.Contains(Field.MachineType))
|
|
{
|
|
if (datItem.MachineType.HasFlag(MachineType.Bios))
|
|
xtw.WriteAttributeString("isbios", "yes");
|
|
if (datItem.MachineType.HasFlag(MachineType.Device))
|
|
xtw.WriteAttributeString("isdevice", "yes");
|
|
if (datItem.MachineType.HasFlag(MachineType.Mechanical))
|
|
xtw.WriteAttributeString("ismechanical", "yes");
|
|
}
|
|
|
|
if (!Header.ExcludeFields.Contains(Field.Runnable))
|
|
{
|
|
if (datItem.Runnable == true)
|
|
xtw.WriteAttributeString("runnable", "yes");
|
|
else if (datItem.Runnable == false)
|
|
xtw.WriteAttributeString("runnable", "no");
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.CloneOf, Header.ExcludeFields)) && !string.Equals(datItem.MachineName, datItem.CloneOf, StringComparison.OrdinalIgnoreCase))
|
|
xtw.WriteAttributeString("cloneof", datItem.CloneOf);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.RomOf, Header.ExcludeFields)) && !string.Equals(datItem.MachineName, datItem.RomOf, StringComparison.OrdinalIgnoreCase))
|
|
xtw.WriteAttributeString("romof", datItem.RomOf);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SampleOf, Header.ExcludeFields)) && !string.Equals(datItem.MachineName, datItem.SampleOf, StringComparison.OrdinalIgnoreCase))
|
|
xtw.WriteAttributeString("sampleof", datItem.SampleOf);
|
|
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Description, Header.ExcludeFields)))
|
|
xtw.WriteElementString("description", datItem.MachineDescription);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Year, Header.ExcludeFields)))
|
|
xtw.WriteElementString("year", datItem.Year);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Publisher, Header.ExcludeFields)))
|
|
xtw.WriteElementString("publisher", datItem.Publisher);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Category, Header.ExcludeFields)))
|
|
xtw.WriteElementString("category", datItem.Category);
|
|
|
|
if (!Header.ExcludeFields.Contains(Field.Infos) && datItem.Infos != null && datItem.Infos.Count > 0)
|
|
{
|
|
foreach (KeyValuePair<string, string> kvp in datItem.Infos)
|
|
{
|
|
xtw.WriteStartElement("info");
|
|
xtw.WriteAttributeString("name", kvp.Key);
|
|
xtw.WriteAttributeString("value", kvp.Value);
|
|
xtw.WriteEndElement();
|
|
}
|
|
}
|
|
|
|
xtw.Flush();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write out Game start using the supplied StreamWriter
|
|
/// </summary>
|
|
/// <param name="xtw">XmlTextWriter to output to</param>
|
|
/// <returns>True if the data was written, false on error</returns>
|
|
private bool WriteEndGame(XmlTextWriter xtw)
|
|
{
|
|
try
|
|
{
|
|
// End machine
|
|
xtw.WriteEndElement();
|
|
|
|
xtw.Flush();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write out DatItem using the supplied StreamWriter
|
|
/// </summary>
|
|
/// <param name="xtw">XmlTextWriter to output to</param>
|
|
/// <param name="datItem">DatItem object to be output</param>
|
|
/// <param name="ignoreblanks">True if blank roms should be skipped on output, false otherwise (default)</param>
|
|
/// <returns>True if the data was written, false on error</returns>
|
|
private bool WriteDatItem(XmlTextWriter xtw, DatItem datItem, bool ignoreblanks = false)
|
|
{
|
|
// If we are in ignore blanks mode AND we have a blank (0-size) rom, skip
|
|
if (ignoreblanks && (datItem.ItemType == ItemType.Rom && ((datItem as Rom).Size == 0 || (datItem as Rom).Size == -1)))
|
|
return true;
|
|
|
|
try
|
|
{
|
|
// Pre-process the item name
|
|
ProcessItemName(datItem, true);
|
|
|
|
// Build the state based on excluded fields
|
|
switch (datItem.ItemType)
|
|
{
|
|
case ItemType.BiosSet:
|
|
var biosSet = datItem as BiosSet;
|
|
xtw.WriteStartElement("biosset");
|
|
xtw.WriteAttributeString("name", biosSet.GetField(Field.Name, Header.ExcludeFields));
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.BiosDescription, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("description", biosSet.Description);
|
|
if (!Header.ExcludeFields.Contains(Field.Default) && biosSet.Default != null)
|
|
xtw.WriteAttributeString("default", biosSet.Default.ToString().ToLowerInvariant());
|
|
xtw.WriteEndElement();
|
|
break;
|
|
|
|
case ItemType.Disk:
|
|
var disk = datItem as Disk;
|
|
xtw.WriteStartElement("disk");
|
|
xtw.WriteAttributeString("name", disk.GetField(Field.Name, Header.ExcludeFields));
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.MD5, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("md5", disk.MD5.ToLowerInvariant());
|
|
#if NET_FRAMEWORK
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.RIPEMD160, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("ripemd160", disk.RIPEMD160.ToLowerInvariant());
|
|
#endif
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA1, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha1", disk.SHA1.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA256, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha256", disk.SHA256.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA384, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha384", disk.SHA384.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA512, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha512", disk.SHA512.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Merge, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("merge", disk.MergeTag);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Region, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("region", disk.Region);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Index, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("index", disk.Index);
|
|
if (!Header.ExcludeFields.Contains(Field.Writable) && disk.Writable != null)
|
|
xtw.WriteAttributeString("writable", disk.Writable == true ? "yes" : "no");
|
|
if (!Header.ExcludeFields.Contains(Field.Status) && disk.ItemStatus != ItemStatus.None)
|
|
xtw.WriteAttributeString("status", disk.ItemStatus.ToString());
|
|
if (!Header.ExcludeFields.Contains(Field.Optional) && disk.Optional != null)
|
|
xtw.WriteAttributeString("optional", disk.Optional == true ? "yes" : "no");
|
|
xtw.WriteEndElement();
|
|
break;
|
|
|
|
case ItemType.Rom:
|
|
var rom = datItem as Rom;
|
|
xtw.WriteStartElement("rom");
|
|
xtw.WriteAttributeString("name", rom.GetField(Field.Name, Header.ExcludeFields));
|
|
if (!Header.ExcludeFields.Contains(Field.Size) && rom.Size != -1)
|
|
xtw.WriteAttributeString("size", rom.Size.ToString());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.CRC, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("crc", rom.CRC.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.MD5, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("md5", rom.MD5.ToLowerInvariant());
|
|
#if NET_FRAMEWORK
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.RIPEMD160, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("ripemd160", rom.RIPEMD160.ToLowerInvariant());
|
|
#endif
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA1, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha1", rom.SHA1.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA256, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha256", rom.SHA256.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA384, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha384", rom.SHA384.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.SHA512, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("sha512", rom.SHA512.ToLowerInvariant());
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Bios, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("bios", rom.Bios);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Merge, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("merge", rom.MergeTag);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Region, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("region", rom.Region);
|
|
if (!string.IsNullOrWhiteSpace(datItem.GetField(Field.Offset, Header.ExcludeFields)))
|
|
xtw.WriteAttributeString("offset", rom.Offset);
|
|
if (!Header.ExcludeFields.Contains(Field.Status) && rom.ItemStatus != ItemStatus.None)
|
|
xtw.WriteAttributeString("status", rom.ItemStatus.ToString().ToLowerInvariant());
|
|
if (!Header.ExcludeFields.Contains(Field.Optional) && rom.Optional != null)
|
|
xtw.WriteAttributeString("optional", rom.Optional == true ? "yes" : "no");
|
|
xtw.WriteEndElement();
|
|
break;
|
|
|
|
case ItemType.Sample:
|
|
xtw.WriteStartElement("sample");
|
|
xtw.WriteAttributeString("name", datItem.GetField(Field.Name, Header.ExcludeFields));
|
|
xtw.WriteEndElement();
|
|
break;
|
|
}
|
|
|
|
xtw.Flush();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Write out DAT footer using the supplied StreamWriter
|
|
/// </summary>
|
|
/// <param name="xtw">XmlTextWriter to output to</param>
|
|
/// <returns>True if the data was written, false on error</returns>
|
|
private bool WriteFooter(XmlTextWriter xtw)
|
|
{
|
|
try
|
|
{
|
|
// End machine
|
|
xtw.WriteEndElement();
|
|
|
|
// End mame
|
|
xtw.WriteEndElement();
|
|
|
|
xtw.Flush();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Globals.Logger.Error(ex.ToString());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|