Include more information in notes and add extra fields ot DatData

This commit is contained in:
Matt Nadareski
2016-05-16 11:59:33 -07:00
parent 564e44f71d
commit a5682454b1
2 changed files with 11 additions and 1 deletions

View File

@@ -12,6 +12,12 @@ namespace SabreTools.Helper
/// The following features have been requested: /// The following features have been requested:
/// - Implement converting from/to DOSCenter format /// - Implement converting from/to DOSCenter format
/// - Implement converting to RomCenter format /// - Implement converting to RomCenter format
///
/// Internal notes:
/// - Can the XMLToDATFORMAT functions be replaced by Output.WriteToDatFromDict?
/// - ParseDict should then return a DatData with the current DAT information as well as the parsed roms
/// - This in turn would make converting a lot easier since all we have to do is know how to read from every
/// DAT type and write in every DAT type without needing a middle ground
/// </summary> /// </summary>
public class Converters public class Converters
{ {

View File

@@ -1,4 +1,6 @@
namespace SabreTools.Helper using System.Collections.Generic;
namespace SabreTools.Helper
{ {
/// <summary> /// <summary>
/// Intermediate struct for holding and processing rom data /// Intermediate struct for holding and processing rom data
@@ -41,5 +43,7 @@
public ForceNodump ForceNodump; public ForceNodump ForceNodump;
public ForcePacking ForcePacking; public ForcePacking ForcePacking;
public OutputFormat OutputFormat; public OutputFormat OutputFormat;
public bool MergeRoms;
public Dictionary<string, List<RomData>> Roms;
} }
} }