[DatTools] Add reverse cascade

Add reverse cascaded diffing. Essentially this just reverses the list of input files so that the last file is treated as the first and so on. Has not been tested.
This commit is contained in:
Matt Nadareski
2016-08-11 11:03:32 -07:00
parent 304af7d3b1
commit e4deb679a3
4 changed files with 21 additions and 8 deletions

View File

@@ -111,7 +111,7 @@ namespace SabreTools
/// /* Merging and Diffing info */
/// <param name="merge">True if input files should be merged into a single file, false otherwise</param>
/// <param name="diff">True if the input files should be diffed with each other, false otherwise</param>
/// <param name="cascade">True if the diffed files should be cascade diffed, false otherwise</param>
/// <param name="cascade">True if the diffed files should be cascade diffed, false if diffed files should be reverse cascaded, null otherwise</param>
/// <param name="inplace">True if the cascade-diffed files should overwrite their inputs, false otherwise</param>
/// <param name="skip">True if the first cascaded diff file should be skipped on output, false otherwise</param>
/// <param name="bare">True if the date should not be appended to the default name, false otherwise [OBSOLETE]</param>
@@ -174,7 +174,7 @@ namespace SabreTools
/* Merging and Diffing info */
bool merge,
bool diff,
bool cascade,
bool? cascade,
bool inplace,
bool skip,
bool bare,