mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 10:26:40 +00:00
89 lines
3.0 KiB
C++
89 lines
3.0 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 2
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#include "bladerunner/bladerunner.h"
|
|
#include "bladerunner/savefile.h"
|
|
|
|
#include "common/config-manager.h"
|
|
#include "common/system.h"
|
|
#include "common/savefile.h"
|
|
#include "common/serializer.h"
|
|
|
|
#include "engines/advancedDetector.h"
|
|
|
|
class BladeRunnerMetaEngine : public AdvancedMetaEngine {
|
|
public:
|
|
const char *getName() const override;
|
|
|
|
Common::Error createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const override;
|
|
bool hasFeature(MetaEngineFeature f) const override;
|
|
|
|
SaveStateList listSaves(const char *target) const override;
|
|
int getMaximumSaveSlot() const override;
|
|
void removeSaveState(const char *target, int slot) const override;
|
|
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const override;
|
|
};
|
|
|
|
const char *BladeRunnerMetaEngine::getName() const {
|
|
return "bladerunner";
|
|
}
|
|
|
|
Common::Error BladeRunnerMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
|
*engine = new BladeRunner::BladeRunnerEngine(syst, desc);
|
|
return Common::kNoError;
|
|
}
|
|
|
|
bool BladeRunnerMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
return
|
|
f == kSupportsListSaves ||
|
|
f == kSupportsLoadingDuringStartup ||
|
|
f == kSupportsDeleteSave ||
|
|
f == kSavesSupportMetaInfo ||
|
|
f == kSavesSupportThumbnail ||
|
|
f == kSavesSupportCreationDate ||
|
|
f == kSavesSupportPlayTime ||
|
|
f == kSimpleSavesNames;
|
|
}
|
|
|
|
SaveStateList BladeRunnerMetaEngine::listSaves(const char *target) const {
|
|
return BladeRunner::SaveFileManager::list(target);
|
|
}
|
|
|
|
int BladeRunnerMetaEngine::getMaximumSaveSlot() const {
|
|
return 999;
|
|
}
|
|
|
|
void BladeRunnerMetaEngine::removeSaveState(const char *target, int slot) const {
|
|
BladeRunner::SaveFileManager::remove(target, slot);
|
|
}
|
|
|
|
SaveStateDescriptor BladeRunnerMetaEngine::querySaveMetaInfos(const char *target, int slot) const {
|
|
return BladeRunner::SaveFileManager::queryMetaInfos(target, slot);
|
|
}
|
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(BLADERUNNER)
|
|
REGISTER_PLUGIN_DYNAMIC(BLADERUNNER, PLUGIN_TYPE_ENGINE, BladeRunnerMetaEngine);
|
|
#else
|
|
REGISTER_PLUGIN_STATIC(BLADERUNNER, PLUGIN_TYPE_ENGINE, BladeRunnerMetaEngine);
|
|
#endif
|