mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00

Remove game types from all of the detection entries. Game types can be deduced from the game ID, so keeping them both in game entries is duplicate and superfluous information. As an added bonus, several fallback game IDs have been fixed to match their correct values
115 lines
3.3 KiB
C++
115 lines
3.3 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
* This file is dual-licensed.
|
|
* In addition to the GPLv3 license mentioned above, this code is also
|
|
* licensed under LGPL 2.1. See LICENSES/COPYING.LGPL file for the
|
|
* full text of the license.
|
|
*
|
|
*/
|
|
|
|
#include "engines/advancedDetector.h"
|
|
#include "engines/obsolete.h"
|
|
|
|
#include "gob/gameidtotype.h"
|
|
#include "gob/gob.h"
|
|
#include "gob/obsolete.h"
|
|
|
|
// For struct GOBGameDescription.
|
|
#include "gob/detection/detection.h"
|
|
|
|
class GobMetaEngine : public AdvancedMetaEngine {
|
|
public:
|
|
const char *getName() const override {
|
|
return "gob";
|
|
}
|
|
|
|
bool hasFeature(MetaEngineFeature f) const override;
|
|
|
|
Common::Error createInstance(OSystem *syst, Engine **engine) override {
|
|
Engines::upgradeTargetIfNecessary(obsoleteGameIDsTable);
|
|
return AdvancedMetaEngine::createInstance(syst, engine);
|
|
}
|
|
|
|
Common::Error createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const override;
|
|
};
|
|
|
|
bool GobMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
return false;
|
|
}
|
|
|
|
bool Gob::GobEngine::hasFeature(EngineFeature f) const {
|
|
return
|
|
(f == kSupportsReturnToLauncher);
|
|
}
|
|
|
|
Common::Error GobMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
|
const Gob::GOBGameDescription *gd = (const Gob::GOBGameDescription *)desc;
|
|
*engine = new Gob::GobEngine(syst);
|
|
((Gob::GobEngine *)*engine)->initGame(gd);
|
|
return Common::kNoError;
|
|
}
|
|
|
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(GOB)
|
|
REGISTER_PLUGIN_DYNAMIC(GOB, PLUGIN_TYPE_ENGINE, GobMetaEngine);
|
|
#else
|
|
REGISTER_PLUGIN_STATIC(GOB, PLUGIN_TYPE_ENGINE, GobMetaEngine);
|
|
#endif
|
|
|
|
namespace Gob {
|
|
|
|
GameType GobEngine::getGameType(const char *gameId) const {
|
|
const GameIdToType *gameInfo = gameIdToType;
|
|
|
|
while (gameInfo->gameId != nullptr) {
|
|
if (!strcmp(gameId, gameInfo->gameId))
|
|
return gameInfo->gameType;
|
|
gameInfo++;
|
|
}
|
|
|
|
error("Unknown game ID: %s", gameId);
|
|
}
|
|
|
|
void GobEngine::initGame(const GOBGameDescription *gd) {
|
|
if (gd->startTotBase == nullptr)
|
|
_startTot = "intro.tot";
|
|
else
|
|
_startTot = gd->startTotBase;
|
|
|
|
if (gd->startStkBase == nullptr)
|
|
_startStk = "intro.stk";
|
|
else
|
|
_startStk = gd->startStkBase;
|
|
|
|
_demoIndex = gd->demoIndex;
|
|
|
|
_gameType = getGameType(gd->desc.gameId);
|
|
_features = gd->features;
|
|
_language = gd->desc.language;
|
|
_platform = gd->desc.platform;
|
|
|
|
_enableAdibou2FreeBananasWorkaround = gd->desc.flags & GF_ENABLE_ADIBOU2_FREE_BANANAS_WORKAROUND;
|
|
_enableAdibou2FlowersInfiniteLoopWorkaround = gd->desc.flags & GF_ENABLE_ADIBOU2_FLOWERS_INFINITE_LOOP_WORKAROUND;
|
|
}
|
|
|
|
} // End of namespace Gob
|
|
|