From 3a490cfc8d2439ed4df3eefc1be0be7b0f71c0b9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 30 Dec 2020 14:02:51 -0800 Subject: [PATCH] Add note about DIC-only dumps --- MPF.Library/DiscImageCreator/Parameters.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/MPF.Library/DiscImageCreator/Parameters.cs b/MPF.Library/DiscImageCreator/Parameters.cs index 0059ca49..2ea20405 100644 --- a/MPF.Library/DiscImageCreator/Parameters.cs +++ b/MPF.Library/DiscImageCreator/Parameters.cs @@ -1693,6 +1693,28 @@ namespace MPF.DiscImageCreator || (system == KnownSystem.DVDAudio) || (system == KnownSystem.SuperAudioCD); + /* + If there are no external programs, such as error checking, etc., DIC outputs + a slightly different set of files. This reduced set needs to be documented in + order for special use cases, such as self-built versions of DIC or removed + helper programs, can be detected to the best of our ability. Below is the list + of files that are generated in that case: + + .bin + .c2 + .ccd + .cue + .img + .scm + .sub + _cmd.txt (formerly) + _img.cue + + This list needs to be translated into the minimum viable set of information + such that things like error checking can be passed back as a flag, or some + similar method. + */ + string missingFiles = string.Empty; switch (type) {