mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
107 lines
4.1 KiB
C#
107 lines
4.1 KiB
C#
namespace MPF.ExecutionContexts.Redumper
|
|
{
|
|
/// <summary>
|
|
/// Dumping flags for Redumper
|
|
/// </summary>
|
|
public static class FlagStrings
|
|
{
|
|
#region General
|
|
|
|
public const string HelpLong = "--help";
|
|
public const string HelpShort = "-h";
|
|
public const string Version = "--version";
|
|
public const string Verbose = "--verbose";
|
|
public const string ListRecommendedDrives = "--list-recommended-drives";
|
|
public const string ListAllDrives = "--list-all-drives";
|
|
public const string AutoEject = "--auto-eject";
|
|
public const string Skeleton = "--skeleton";
|
|
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";
|
|
public const string DiscType = "--disc-type";
|
|
|
|
#endregion
|
|
|
|
#region 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";
|
|
|
|
#endregion
|
|
|
|
#region Drive Specific
|
|
|
|
public const string PlextorSkipLeadin = "--plextor-skip-leadin";
|
|
public const string PlextorLeadinRetries = "--plextor-leadin-retries";
|
|
public const string PlextorLeadinForceStore = "--plextor-leadin-force-store";
|
|
public const string KreonPartialSS = "--kreon-partial-ss";
|
|
public const string MediatekSkipLeadout = "--mediatek-skip-leadout";
|
|
public const string MediatekLeadoutRetries = "--mediatek-leadout-retries";
|
|
public const string DisableCDText = "--disable-cdtext";
|
|
|
|
#endregion
|
|
|
|
#region 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";
|
|
|
|
#endregion
|
|
|
|
#region 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 FilesystemTrim = "--filesystem-trim";
|
|
|
|
#endregion
|
|
|
|
#region Drive Test
|
|
|
|
public const string DriveTestSkipPlextorLeadin = "--drive-test-skip-plextor-leadin";
|
|
public const string DriveTestSkipCacheRead = "--drive-test-skip-cache-read";
|
|
|
|
#endregion
|
|
|
|
#region Miscellaneous
|
|
|
|
public const string Continue = "--continue";
|
|
public const string LBAStart = "--lba-start";
|
|
public const string LBAEnd = "--lba-end";
|
|
public const string LBAEndBySubcode = "--lba-end-by-subcode";
|
|
public const string RefineSubchannel = "--refine-subchannel";
|
|
public const string RefineSectorMode = "--refine-sector-mode";
|
|
public const string Skip = "--skip";
|
|
public const string DumpWriteOffset = "--dump-write-offset";
|
|
public const string DumpReadSize = "--dump-read-size";
|
|
public const string OverreadLeadout = "--overread-leadout";
|
|
public const string ForceUnscrambled = "--force-unscrambled";
|
|
public const string ForceRefine = "--force-refine";
|
|
public const string Firmware = "--firmware";
|
|
public const string ForceFlash = "--force-flash";
|
|
public const string SkipSubcodeDesync = "--skip-subcode-desync";
|
|
public const string CdrErrorThreshold = "--cdr-error-threshold";
|
|
public const string ScsiTimeout = "--scsi-timeout";
|
|
|
|
#endregion
|
|
|
|
#region Undocumented
|
|
|
|
public const string Debug = "--debug";
|
|
public const string LegacySubs = "--legacy-subs";
|
|
|
|
#endregion
|
|
}
|
|
}
|