mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Diff, determination, enum cleanup
This commit is contained in:
@@ -223,50 +223,6 @@ namespace SabreTools.Library.Data
|
||||
All = Int32.MaxValue,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determines how the DAT will be split on output
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum SplittingMode
|
||||
{
|
||||
None = 0x00,
|
||||
|
||||
Extension = 1 << 0,
|
||||
Hash = 1 << 2,
|
||||
Level = 1 << 3,
|
||||
Type = 1 << 4,
|
||||
Size = 1 << 5,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determines special update modes
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum UpdateMode
|
||||
{
|
||||
None = 0x00,
|
||||
|
||||
// Standard diffs
|
||||
DiffDupesOnly = 1 << 0,
|
||||
DiffNoDupesOnly = 1 << 1,
|
||||
DiffIndividualsOnly = 1 << 2,
|
||||
|
||||
// Cascaded diffs
|
||||
DiffCascade = 1 << 3,
|
||||
DiffReverseCascade = 1 << 4,
|
||||
|
||||
// Base diffs
|
||||
DiffAgainst = 1 << 5,
|
||||
|
||||
// Special update modes
|
||||
Merge = 1 << 6,
|
||||
BaseReplace = 1 << 7,
|
||||
ReverseBaseReplace = 1 << 8,
|
||||
|
||||
// Combinations
|
||||
AllDiffs = DiffDupesOnly | DiffNoDupesOnly | DiffIndividualsOnly,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region DatItem related
|
||||
|
||||
Reference in New Issue
Block a user