ssc/sbdump/settings.cs

53 lines
1.8 KiB
C#

using System;
using System.IO;
namespace arookas {
class CommandLineSettings
{
string mInput, mOutput;
bool mOutputHeader, mOutputText, mOutputData, mOutputSym, mOutputVars, mDecomp;
public string Input { get { return mInput; } }
public string Output { get { return mOutput; } }
public bool OutputHeader { get { return mOutputHeader; } }
public bool OutputText { get { return mOutputText; } }
public bool OutputData { get { return mOutputData; } }
public bool OutputSym { get { return mOutputSym; } }
public bool OutputVars { get { return mOutputVars; } }
public bool OutputSun { get { return mDecomp; } }
public CommandLineSettings(aCommandLine cmd) {
if (cmd == null) {
throw new ArgumentNullException("cmd");
}
mDecomp = false;
foreach (var param in cmd) {
switch (param.Name) {
case "-in": mInput = param[0]; continue;
case "-out": mOutput = param[0]; continue;
case "-H": mOutputHeader = true; continue;
case "-h": mOutputHeader = false; continue;
case "-T": mOutputText = true; continue;
case "-t": mOutputText = false; continue;
case "-D": mOutputData = true; continue;
case "-d": mOutputData = false; continue;
case "-S": mOutputSym = true; continue;
case "-s": mOutputSym = false; continue;
case "-V": mOutputVars = true; continue;
case "-v": mOutputVars = false; continue;
case "-sun": mDecomp = true; continue;
}
}
///Debug///
mInput = "C:\\Users\\August\\Downloads\\Sunshine ROM hacking\\ssc\\Decompile\\talkevent.sb";
mDecomp = true;
///Debug///
if (mInput == null) {
throw new Exception("Missing input file setting.");
}
if (mOutput == null) {
mOutput = Path.ChangeExtension(mInput, ".txt");
}
}
}
}