mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-13 05:35:26 +00:00
73 lines
3.0 KiB
C#
73 lines
3.0 KiB
C#
namespace MPF.Modules.Redumper
|
|
{
|
|
/// <summary>
|
|
/// Top-level commands for Redumper
|
|
/// </summary>
|
|
public static class CommandStrings
|
|
{
|
|
public const string NONE = "";
|
|
public const string CD = "cd";
|
|
public const string DVD = "dvd"; // Synonym for CD
|
|
public const string BluRay = "bd"; // Synonym for CD
|
|
public const string SACD = "sacd"; // Synonym for CD
|
|
public const string Dump = "dump";
|
|
public const string Info = "info";
|
|
public const string Protection = "protection";
|
|
public const string Refine = "refine";
|
|
public const string Split = "split";
|
|
public const string Verify = "verify";
|
|
public const string DVDKey = "dvdkey";
|
|
public const string DVDIsoKey = "dvdisokey";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dumping flags for Redumper
|
|
/// </summary>
|
|
public static class FlagStrings
|
|
{
|
|
// General
|
|
public const string HelpLong = "--help";
|
|
public const string HelpShort = "-h";
|
|
public const string Verbose = "--verbose";
|
|
public const string Debug = "--debug";
|
|
public const string Drive = "--drive";
|
|
public const string Speed = "--speed";
|
|
public const string Retries = "--retries";
|
|
public const string ImagePath = "--image-path";
|
|
public const string ImageName = "--image-name";
|
|
public const string Overwrite = "--overwrite";
|
|
|
|
// Drive Configuration
|
|
public const string DriveType = "--drive-type";
|
|
public const string DriveReadOffset = "--drive-read-offset";
|
|
public const string DriveC2Shift = "--drive-c2-shift";
|
|
public const string DrivePregapStart = "--drive-pregap-start";
|
|
public const string DriveReadMethod = "--drive-read-method";
|
|
public const string DriveSectorOrder = "--drive-sector-order";
|
|
|
|
// Drive Specific
|
|
public const string PlextorLeadinSkip = "--plextor-leadin-skip";
|
|
public const string PlextorLeadinRetries = "--plextor-leadin-retries";
|
|
public const string AsusSkipLeadout = "--asus-skip-leadout";
|
|
|
|
// Offset
|
|
public const string ForceOffset = "--force-offset";
|
|
public const string AudioSilenceThreshold = "--audio-silence-threshold";
|
|
public const string CorrectOffsetShift = "--correct-offset-shift";
|
|
public const string OffsetShiftRelocate = "--offset-shift-relocate";
|
|
|
|
// Split
|
|
public const string ForceSplit = "--force-split";
|
|
public const string LeaveUnchanged = "--leave-unchanged";
|
|
public const string ForceQTOC = "--force-qtoc";
|
|
public const string SkipFill = "--skip-fill";
|
|
public const string ISO9660Trim = "--iso9660-trim";
|
|
|
|
// Miscellaneous
|
|
public const string LBAStart = "--lba-start";
|
|
public const string LBAEnd = "--lba-end";
|
|
public const string RefineSubchannel = "--refine-subchannel";
|
|
public const string Skip = "--skip";
|
|
public const string DumpReadSize = "--dump-read-size";
|
|
}
|
|
} |