mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Refactor write rom
This commit is contained in:
@@ -85,7 +85,7 @@ namespace SabreTools.Helper
|
|||||||
StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
|
StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
|
||||||
|
|
||||||
// Write out the header
|
// Write out the header
|
||||||
WriteHeader(sw, datdata);
|
WriteHeader(sw, datdata, logger);
|
||||||
|
|
||||||
// Write out each of the machines and roms
|
// Write out each of the machines and roms
|
||||||
int depth = 2, last = -1;
|
int depth = 2, last = -1;
|
||||||
@@ -198,6 +198,139 @@ namespace SabreTools.Helper
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Now, output the rom data
|
// Now, output the rom data
|
||||||
|
WriteRomData(sw, rom, lastgame, datdata, depth, logger);
|
||||||
|
|
||||||
|
// Set the new data to compare against
|
||||||
|
splitpath = newsplit;
|
||||||
|
lastgame = rom.Game;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
string footer = "";
|
||||||
|
switch (datdata.OutputFormat)
|
||||||
|
{
|
||||||
|
case OutputFormat.ClrMamePro:
|
||||||
|
footer = ")";
|
||||||
|
break;
|
||||||
|
case OutputFormat.SabreDat:
|
||||||
|
for (int i = depth - 1; i >= 2; i--)
|
||||||
|
{
|
||||||
|
// Print out the number of tabs and the end folder
|
||||||
|
for (int j = 0; j < i; j++)
|
||||||
|
{
|
||||||
|
footer += "\t";
|
||||||
|
}
|
||||||
|
footer += "</directory>\n";
|
||||||
|
}
|
||||||
|
footer += "\t</data>\n</datafile>";
|
||||||
|
break;
|
||||||
|
case OutputFormat.Xml:
|
||||||
|
footer = "\t</machine>\n</datafile>";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
sw.Write(footer);
|
||||||
|
logger.Log("File written!" + Environment.NewLine);
|
||||||
|
sw.Close();
|
||||||
|
fs.Close();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
logger.Error(ex.ToString());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool WriteHeader(StreamWriter sw, DatData datdata, Logger logger)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string header = "";
|
||||||
|
switch (datdata.OutputFormat)
|
||||||
|
{
|
||||||
|
case OutputFormat.ClrMamePro:
|
||||||
|
header = "clrmamepro (\n" +
|
||||||
|
"\tname \"" + HttpUtility.HtmlEncode(datdata.Name) + "\"\n" +
|
||||||
|
"\tdescription \"" + HttpUtility.HtmlEncode(datdata.Description) + "\"\n" +
|
||||||
|
"\tcategory \"" + HttpUtility.HtmlEncode(datdata.Category) + "\"\n" +
|
||||||
|
"\tversion \"" + HttpUtility.HtmlEncode(datdata.Version) + "\"\n" +
|
||||||
|
"\tdate \"" + HttpUtility.HtmlEncode(datdata.Date) + "\"\n" +
|
||||||
|
"\tauthor \"" + HttpUtility.HtmlEncode(datdata.Author) + "\"\n" +
|
||||||
|
"\tcomment \"" + HttpUtility.HtmlEncode(datdata.Comment) + "\"\n" +
|
||||||
|
(datdata.ForcePacking == ForcePacking.Unzip ? "\tforcezipping no\n" : "") +
|
||||||
|
")\n";
|
||||||
|
break;
|
||||||
|
case OutputFormat.RomCenter:
|
||||||
|
header = "[CREDITS]\n" +
|
||||||
|
"author=" + HttpUtility.HtmlEncode(datdata.Author) + "\n" +
|
||||||
|
"version=" + HttpUtility.HtmlEncode(datdata.Version) + "\n" +
|
||||||
|
"comment=" + HttpUtility.HtmlEncode(datdata.Comment) + "\n" +
|
||||||
|
"[DAT]\n" +
|
||||||
|
"version=2.50\n" +
|
||||||
|
"split=" + (datdata.ForceMerging == ForceMerging.Split ? "1" : "0") + "\n" +
|
||||||
|
"merge=" + (datdata.ForceMerging == ForceMerging.Full ? "1" : "0") + "\n" +
|
||||||
|
"[EMULATOR]\n" +
|
||||||
|
"refname=" + HttpUtility.HtmlEncode(datdata.Name) + "\n" +
|
||||||
|
"version=" + HttpUtility.HtmlEncode(datdata.Description) + "\n" +
|
||||||
|
"[GAMES]\n";
|
||||||
|
break;
|
||||||
|
case OutputFormat.SabreDat:
|
||||||
|
header = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
||||||
|
"<!DOCTYPE datafile PUBLIC \"-//Logiqx//DTD ROM Management Datafile//EN\" \"http://www.logiqx.com/Dats/datafile.dtd\">\n\n" +
|
||||||
|
"<datafile>\n" +
|
||||||
|
"\t<header>\n" +
|
||||||
|
"\t\t<name>" + HttpUtility.HtmlEncode(datdata.Name) + "</name>\n" +
|
||||||
|
"\t\t<description>" + HttpUtility.HtmlEncode(datdata.Description) + "</description>\n" +
|
||||||
|
"\t\t<category>" + HttpUtility.HtmlEncode(datdata.Category) + "</category>\n" +
|
||||||
|
"\t\t<version>" + HttpUtility.HtmlEncode(datdata.Version) + "</version>\n" +
|
||||||
|
"\t\t<date>" + HttpUtility.HtmlEncode(datdata.Date) + "</date>\n" +
|
||||||
|
"\t\t<author>" + HttpUtility.HtmlEncode(datdata.Author) + "</author>\n" +
|
||||||
|
"\t\t<comment>" + HttpUtility.HtmlEncode(datdata.Comment) + "</comment>\n" +
|
||||||
|
(!String.IsNullOrEmpty(datdata.Type) && datdata.ForcePacking != ForcePacking.Unzip ?
|
||||||
|
"\t\t<flags>\n" +
|
||||||
|
(!String.IsNullOrEmpty(datdata.Type) ? "\t\t\t<flag name=\"type\" value=\"" + datdata.Type + "\"/>\n" : "") +
|
||||||
|
(datdata.ForcePacking == ForcePacking.Unzip ? "\t\t\t<flag name=\"forcepacking\" value=\"unzip\"/>\n" : "") +
|
||||||
|
"\t\t</flags>\n" : "") +
|
||||||
|
"\t</header>\n" +
|
||||||
|
"\t<data>\n";
|
||||||
|
break;
|
||||||
|
case OutputFormat.Xml:
|
||||||
|
header = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
||||||
|
"<!DOCTYPE datafile PUBLIC \"-//Logiqx//DTD ROM Management Datafile//EN\" \"http://www.logiqx.com/Dats/datafile.dtd\">\n\n" +
|
||||||
|
"<datafile>\n" +
|
||||||
|
"\t<header>\n" +
|
||||||
|
"\t\t<name>" + HttpUtility.HtmlEncode(datdata.Name) + "</name>\n" +
|
||||||
|
"\t\t<description>" + HttpUtility.HtmlEncode(datdata.Description) + "</description>\n" +
|
||||||
|
"\t\t<category>" + HttpUtility.HtmlEncode(datdata.Category) + "</category>\n" +
|
||||||
|
"\t\t<version>" + HttpUtility.HtmlEncode(datdata.Version) + "</version>\n" +
|
||||||
|
"\t\t<date>" + HttpUtility.HtmlEncode(datdata.Date) + "</date>\n" +
|
||||||
|
"\t\t<author>" + HttpUtility.HtmlEncode(datdata.Author) + "</author>\n" +
|
||||||
|
"\t\t<comment>" + HttpUtility.HtmlEncode(datdata.Comment) + "</comment>\n" +
|
||||||
|
(!String.IsNullOrEmpty(datdata.Type) ? "\t\t<type>" + datdata.Type + "</type>\n" : "") +
|
||||||
|
(datdata.ForcePacking == ForcePacking.Unzip ? "\t\t<clrmamepro forcepacking=\"unzip\" />\n" : "") +
|
||||||
|
"\t</header>\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write the header out
|
||||||
|
sw.Write(header);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
logger.Error(ex.ToString());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool WriteRomData(StreamWriter sw, RomData rom, string lastgame, DatData datdata, int depth, Logger logger)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string state = "";
|
||||||
switch (datdata.OutputFormat)
|
switch (datdata.OutputFormat)
|
||||||
{
|
{
|
||||||
case OutputFormat.ClrMamePro:
|
case OutputFormat.ClrMamePro:
|
||||||
@@ -299,41 +432,8 @@ namespace SabreTools.Helper
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
splitpath = newsplit;
|
|
||||||
lastgame = rom.Game;
|
|
||||||
|
|
||||||
sw.Write(state);
|
sw.Write(state);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
string footer = "";
|
|
||||||
switch (datdata.OutputFormat)
|
|
||||||
{
|
|
||||||
case OutputFormat.ClrMamePro:
|
|
||||||
footer = ")";
|
|
||||||
break;
|
|
||||||
case OutputFormat.SabreDat:
|
|
||||||
for (int i = depth - 1; i >= 2; i--)
|
|
||||||
{
|
|
||||||
// Print out the number of tabs and the end folder
|
|
||||||
for (int j = 0; j < i; j++)
|
|
||||||
{
|
|
||||||
footer += "\t";
|
|
||||||
}
|
|
||||||
footer += "</directory>\n";
|
|
||||||
}
|
|
||||||
footer += "\t</data>\n</datafile>";
|
|
||||||
break;
|
|
||||||
case OutputFormat.Xml:
|
|
||||||
footer = "\t</machine>\n</datafile>";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
sw.Write(footer);
|
|
||||||
logger.Log("File written!" + Environment.NewLine);
|
|
||||||
sw.Close();
|
|
||||||
fs.Close();
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
logger.Error(ex.ToString());
|
logger.Error(ex.ToString());
|
||||||
@@ -342,80 +442,5 @@ namespace SabreTools.Helper
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool WriteHeader(StreamWriter sw, DatData datdata)
|
|
||||||
{
|
|
||||||
string header = "";
|
|
||||||
switch (datdata.OutputFormat)
|
|
||||||
{
|
|
||||||
case OutputFormat.ClrMamePro:
|
|
||||||
header = "clrmamepro (\n" +
|
|
||||||
"\tname \"" + HttpUtility.HtmlEncode(datdata.Name) + "\"\n" +
|
|
||||||
"\tdescription \"" + HttpUtility.HtmlEncode(datdata.Description) + "\"\n" +
|
|
||||||
"\tcategory \"" + HttpUtility.HtmlEncode(datdata.Category) + "\"\n" +
|
|
||||||
"\tversion \"" + HttpUtility.HtmlEncode(datdata.Version) + "\"\n" +
|
|
||||||
"\tdate \"" + HttpUtility.HtmlEncode(datdata.Date) + "\"\n" +
|
|
||||||
"\tauthor \"" + HttpUtility.HtmlEncode(datdata.Author) + "\"\n" +
|
|
||||||
"\tcomment \"" + HttpUtility.HtmlEncode(datdata.Comment) + "\"\n" +
|
|
||||||
(datdata.ForcePacking == ForcePacking.Unzip ? "\tforcezipping no\n" : "") +
|
|
||||||
")\n";
|
|
||||||
break;
|
|
||||||
case OutputFormat.RomCenter:
|
|
||||||
header = "[CREDITS]\n" +
|
|
||||||
"author=" + HttpUtility.HtmlEncode(datdata.Author) + "\n" +
|
|
||||||
"version=" + HttpUtility.HtmlEncode(datdata.Version) + "\n" +
|
|
||||||
"comment=" + HttpUtility.HtmlEncode(datdata.Comment) + "\n" +
|
|
||||||
"[DAT]\n" +
|
|
||||||
"version=2.50\n" +
|
|
||||||
"split=" + (datdata.ForceMerging == ForceMerging.Split ? "1" : "0") + "\n" +
|
|
||||||
"merge=" + (datdata.ForceMerging == ForceMerging.Full ? "1" : "0") + "\n" +
|
|
||||||
"[EMULATOR]\n" +
|
|
||||||
"refname=" + HttpUtility.HtmlEncode(datdata.Name) + "\n" +
|
|
||||||
"version=" + HttpUtility.HtmlEncode(datdata.Description) + "\n" +
|
|
||||||
"[GAMES]\n";
|
|
||||||
break;
|
|
||||||
case OutputFormat.SabreDat:
|
|
||||||
header = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
|
||||||
"<!DOCTYPE datafile PUBLIC \"-//Logiqx//DTD ROM Management Datafile//EN\" \"http://www.logiqx.com/Dats/datafile.dtd\">\n\n" +
|
|
||||||
"<datafile>\n" +
|
|
||||||
"\t<header>\n" +
|
|
||||||
"\t\t<name>" + HttpUtility.HtmlEncode(datdata.Name) + "</name>\n" +
|
|
||||||
"\t\t<description>" + HttpUtility.HtmlEncode(datdata.Description) + "</description>\n" +
|
|
||||||
"\t\t<category>" + HttpUtility.HtmlEncode(datdata.Category) + "</category>\n" +
|
|
||||||
"\t\t<version>" + HttpUtility.HtmlEncode(datdata.Version) + "</version>\n" +
|
|
||||||
"\t\t<date>" + HttpUtility.HtmlEncode(datdata.Date) + "</date>\n" +
|
|
||||||
"\t\t<author>" + HttpUtility.HtmlEncode(datdata.Author) + "</author>\n" +
|
|
||||||
"\t\t<comment>" + HttpUtility.HtmlEncode(datdata.Comment) + "</comment>\n" +
|
|
||||||
(!String.IsNullOrEmpty(datdata.Type) && datdata.ForcePacking != ForcePacking.Unzip ?
|
|
||||||
"\t\t<flags>\n" +
|
|
||||||
(!String.IsNullOrEmpty(datdata.Type) ? "\t\t\t<flag name=\"type\" value=\"" + datdata.Type + "\"/>\n" : "") +
|
|
||||||
(datdata.ForcePacking == ForcePacking.Unzip ? "\t\t\t<flag name=\"forcepacking\" value=\"unzip\"/>\n" : "") +
|
|
||||||
"\t\t</flags>\n" : "") +
|
|
||||||
"\t</header>\n" +
|
|
||||||
"\t<data>\n";
|
|
||||||
break;
|
|
||||||
case OutputFormat.Xml:
|
|
||||||
header = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
|
||||||
"<!DOCTYPE datafile PUBLIC \"-//Logiqx//DTD ROM Management Datafile//EN\" \"http://www.logiqx.com/Dats/datafile.dtd\">\n\n" +
|
|
||||||
"<datafile>\n" +
|
|
||||||
"\t<header>\n" +
|
|
||||||
"\t\t<name>" + HttpUtility.HtmlEncode(datdata.Name) + "</name>\n" +
|
|
||||||
"\t\t<description>" + HttpUtility.HtmlEncode(datdata.Description) + "</description>\n" +
|
|
||||||
"\t\t<category>" + HttpUtility.HtmlEncode(datdata.Category) + "</category>\n" +
|
|
||||||
"\t\t<version>" + HttpUtility.HtmlEncode(datdata.Version) + "</version>\n" +
|
|
||||||
"\t\t<date>" + HttpUtility.HtmlEncode(datdata.Date) + "</date>\n" +
|
|
||||||
"\t\t<author>" + HttpUtility.HtmlEncode(datdata.Author) + "</author>\n" +
|
|
||||||
"\t\t<comment>" + HttpUtility.HtmlEncode(datdata.Comment) + "</comment>\n" +
|
|
||||||
(!String.IsNullOrEmpty(datdata.Type) ? "\t\t<type>" + datdata.Type + "</type>\n" : "") +
|
|
||||||
(datdata.ForcePacking == ForcePacking.Unzip ? "\t\t<clrmamepro forcepacking=\"unzip\" />\n" : "") +
|
|
||||||
"\t</header>\n";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write the header out
|
|
||||||
sw.Write(header);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user