Quotes are for my friends

This commit is contained in:
Matt Nadareski
2016-04-20 12:15:57 -07:00
parent 292007b06d
commit 3214a26fb1
2 changed files with 10 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ namespace SabreTools
Build.Start("DatToMiss");
string prefix = "", postfix = "", input = "";
bool tofile = false, help = false, usegame = true;
bool tofile = false, help = false, usegame = true, quotes = false;
foreach (string arg in args)
{
switch (arg)
@@ -52,6 +52,10 @@ namespace SabreTools
case "--roms":
usegame = false;
break;
case "-q":
case "--quotes":
quotes = true;
break;
default:
if ((arg.StartsWith("-pre=") || arg.StartsWith("--prefix=")) && prefix == "")
{
@@ -89,7 +93,7 @@ namespace SabreTools
name += Path.GetFileNameWithoutExtension(input) + "-miss.txt";
// Read in the roms from the DAT and then write them to the file
Output.WriteToText(name, Path.GetDirectoryName(input), RomManipulation.Parse(input, 0, 0, logger), logger, usegame, prefix, postfix);
Output.WriteToText(name, Path.GetDirectoryName(input), RomManipulation.Parse(input, 0, 0, logger), logger, usegame, prefix, postfix, quotes);
}
}
}

View File

@@ -136,8 +136,9 @@ namespace SabreTools.Helper
/// <param name="useGame">True if only games are written to text file (default), false for files only</param>
/// <param name="prefix">Arbitrary string to prefix each line</param>
/// <param name="postfix">Arbitrary string to postfix each line</param>
/// <param name="quotes">True if quotes should be put around the item, false otherwise (default)</param>
/// <returns>True if the file was written, false otherwise</returns>
public static bool WriteToText(string textfile, string outdir, List<RomData> roms, Logger logger, bool useGame = true, string prefix = "", string postfix = "")
public static bool WriteToText(string textfile, string outdir, List<RomData> roms, Logger logger, bool useGame = true, string prefix = "", string postfix = "", bool quotes = false)
{
// Normalize the output directory
if (outdir == "")
@@ -167,12 +168,12 @@ namespace SabreTools.Helper
{
if (useGame && rom.Game != lastgame)
{
sw.WriteLine(prefix + rom.Game + postfix);
sw.WriteLine(prefix + (quotes ? "\"" : "") + rom.Game + (quotes ? "\"" : "") + postfix);
lastgame = rom.Game;
}
else if (!useGame)
{
sw.WriteLine(prefix + rom.Name + postfix);
sw.WriteLine(prefix + (quotes ? "\"" : "") + rom.Name + (quotes ? "\"" : "")+ postfix);
}
}