diff options
author | Walter van Niftrik | 2019-07-20 00:20:44 +0200 |
---|---|---|
committer | Walter van Niftrik | 2019-07-20 00:20:44 +0200 |
commit | 2bb5ef5aeb8decd36d33004b60d9c12de930ca0b (patch) | |
tree | a0eac8397f370bc839434c115eefd8de99bb36ef /engines | |
parent | 85efc49e0e0b7e18ae7b3dab8172a4b200b8b690 (diff) | |
download | scummvm-rg350-2bb5ef5aeb8decd36d33004b60d9c12de930ca0b.tar.gz scummvm-rg350-2bb5ef5aeb8decd36d33004b60d9c12de930ca0b.tar.bz2 scummvm-rg350-2bb5ef5aeb8decd36d33004b60d9c12de930ca0b.zip |
ADL: Fix double listing in detector
Diffstat (limited to 'engines')
-rw-r--r-- | engines/adl/detection.cpp | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp index ed3c114193..52807cab09 100644 --- a/engines/adl/detection.cpp +++ b/engines/adl/detection.cpp @@ -532,13 +532,15 @@ bool AdlMetaEngine::addFileProps(const FileMap &allFiles, Common::String fname, // Based on AdvancedMetaEngine::detectGame ADDetectedGames AdlMetaEngine::detectGame(const Common::FSNode &parent, const FileMap &allFiles, Common::Language language, Common::Platform platform, const Common::String &extra) const { - // We run the file-based detector first and then add to the returned list + // We run the file-based detector first, if it finds a match we do not search for disk images ADDetectedGames matched = AdvancedMetaEngine::detectGame(parent, allFiles, language, platform, extra); + if (!matched.empty()) + return matched; + debug(3, "Starting disk image detection in dir '%s'", parent.getPath().c_str()); FilePropertiesMap filesProps; - bool gotAnyMatchesWithAllFiles = false; for (uint g = 0; gameDiskDescriptions[g].desc.gameId != 0; ++g) { ADDetectedGame game(&gameDiskDescriptions[g].desc); @@ -604,17 +606,20 @@ ADDetectedGames AdlMetaEngine::detectGame(const Common::FSNode &parent, const Fi debug(3, "Matched file: %s", fileName.c_str()); } - if (allFilesPresent && !game.hasUnknownFiles) { - debug(2, "Found game: %s (%s/%s) (%d)", game.desc->gameId, getPlatformDescription(game.desc->platform), getLanguageDescription(game.desc->language), g); - gotAnyMatchesWithAllFiles = true; - matched.push_back(game); - } else { - if (allFilesPresent && !gotAnyMatchesWithAllFiles) { - if (matched.empty() || strcmp(matched.back().desc->gameId, game.desc->gameId) != 0) + // This assumes that the detection table groups together games that have the same gameId and platform + if (allFilesPresent) { + if (!game.hasUnknownFiles) { + debug(2, "Found game: %s (%s/%s) (%d)", game.desc->gameId, getPlatformDescription(game.desc->platform), getLanguageDescription(game.desc->language), g); + // If we just added an unknown variant for this game and platform, remove it + if (!matched.empty() && strcmp(matched.back().desc->gameId, game.desc->gameId) == 0 && matched.back().desc->platform == game.desc->platform) + matched.pop_back(); + matched.push_back(game); + } else { + debug(5, "Skipping game: %s (%s/%s) (%d)", game.desc->gameId, getPlatformDescription(game.desc->platform), getLanguageDescription(game.desc->language), g); + // If we already added a known or unknown variant for this game and platform, don't add another + if (matched.empty() || strcmp(matched.back().desc->gameId, game.desc->gameId) != 0 || matched.back().desc->platform != game.desc->platform) matched.push_back(game); } - - debug(5, "Skipping game: %s (%s/%s) (%d)", game.desc->gameId, getPlatformDescription(game.desc->platform), getLanguageDescription(game.desc->language), g); } } |