mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-11 11:11:20 +00:00

That way all the saves created using the ResidualVM menu can be loaded using the in-game menu.
471 lines
12 KiB
C++
471 lines
12 KiB
C++
/* ResidualVM - A 3D game interpreter
|
|
*
|
|
* ResidualVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the AUTHORS
|
|
* 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 "engines/advancedDetector.h"
|
|
#include "engines/stark/savemetadata.h"
|
|
#include "engines/stark/stark.h"
|
|
#include "engines/stark/services/stateprovider.h"
|
|
|
|
#include "common/savefile.h"
|
|
#include "common/system.h"
|
|
#include "common/translation.h"
|
|
|
|
namespace Stark {
|
|
|
|
static const PlainGameDescriptor starkGames[] = {
|
|
{"stark", "Stark Game"},
|
|
{"tlj", "The Longest Journey"},
|
|
{nullptr, nullptr}
|
|
};
|
|
|
|
static const ADGameDescription gameDescriptions[] = {
|
|
// The Longest Journey
|
|
// English DVD
|
|
{
|
|
"tlj", "DVD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "5b5a1f1dd2297d9ce0d3d12216d5d2c5", 485},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::EN_ANY,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// GOG edition
|
|
{
|
|
"tlj", "GOG", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "5b5a1f1dd2297d9ce0d3d12216d5d2c5", 485},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::EN_ANY,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// English Old Demo
|
|
{
|
|
"tlj", "Old Demo", {
|
|
{"x.xarc", 0, "97abc1bb9239dee4c208e533f3c97e1c", 98},
|
|
{"chapters.ini", 0, "5b5a1f1dd2297d9ce0d3d12216d5d2c5", 485},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::EN_ANY,
|
|
Common::kPlatformWindows,
|
|
ADGF_DEMO | ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// English v1.61 Demo
|
|
{
|
|
"tlj", "v1.61 Demo", {
|
|
{"x.xarc", 0, "61093bcd499b386ed5c0345c52f48909", 98},
|
|
{"chapters.ini", 0, "5b5a1f1dd2297d9ce0d3d12216d5d2c5", 485},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::EN_ANY,
|
|
Common::kPlatformWindows,
|
|
ADGF_DEMO | ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// French Demo
|
|
{
|
|
"tlj", "Demo", {
|
|
{"x.xarc", 0, "97abc1bb9239dee4c208e533f3c97e1c", 98},
|
|
{"chapters.ini", 0, "e54f6370dca06496069790840409cf95", 506},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::FR_FRA,
|
|
Common::kPlatformWindows,
|
|
ADGF_DEMO | ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Norwegian Demo
|
|
{
|
|
"tlj", "Demo", {
|
|
{"x.xarc", 0, "97abc1bb9239dee4c208e533f3c97e1c", 98},
|
|
{"chapters.ini", 0, "f358f604abd1aa1476ed05d6d271ac70", 473},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::NB_NOR,
|
|
Common::kPlatformWindows,
|
|
ADGF_DEMO | ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Norwegian 4 CD version - supplied by L0ngcat
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "f358f604abd1aa1476ed05d6d271ac70", 473},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::NB_NOR,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Norwegian DLC-edition (DVD?)
|
|
{
|
|
"tlj", "DVD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "f358f604abd1aa1476ed05d6d271ac70", 473},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::NB_NOR,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// German DVD version supplied by Vorph on the forums
|
|
{
|
|
"tlj", "DVD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "e4611d143a87b263d8d7a54edc7e7cd7", 515},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::DE_DEU,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// German 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "e4611d143a87b263d8d7a54edc7e7cd7", 515},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::DE_DEU,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Italian DVD version
|
|
{
|
|
"tlj", "DVD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "9a81ea4e6f5b84511dd4e56d04a64e2e", 498},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::IT_ITA,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Italian 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "9a81ea4e6f5b84511dd4e56d04a64e2e", 498},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::IT_ITA,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Dutch 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "c8dadd9a3b41640734d6213e89cd5635", 508},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::NL_NLD,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Spanish 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "3640df6d536b186bff228337284d9631", 525},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::ES_ESP,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// French 2CD
|
|
{
|
|
"tlj", "2 CD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "e54f6370dca06496069790840409cf95", 506},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::FR_FRA,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// French 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "e54f6370dca06496069790840409cf95", 506},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::FR_FRA,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Swedish Demo
|
|
{
|
|
"tlj", "Demo", {
|
|
{"x.xarc", 0, "97abc1bb9239dee4c208e533f3c97e1c", 98},
|
|
{"chapters.ini", 0, "f6a2007300209492b7b90b4c0467832d", 462},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::SE_SWE,
|
|
Common::kPlatformWindows,
|
|
ADGF_DEMO | ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Swedish 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "f6a2007300209492b7b90b4c0467832d", 462},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::SE_SWE,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Swedish DVD Nordic Special Edition - supplied by L0ngcat
|
|
{
|
|
"tlj", "DVD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "f6a2007300209492b7b90b4c0467832d", 462},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::SE_SWE,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Polish 4CD
|
|
{
|
|
"tlj", "4 CD", {
|
|
{"x.xarc", 0, "a0559457126caadab0cadac02d35f26f", 3032},
|
|
{"chapters.ini", 0, "6abc5c38e6e31face4b675355b117620", 499},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::PL_POL,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
// The Longest Journey
|
|
// Russian 2CD by 1C
|
|
{
|
|
"tlj", "2 CD", {
|
|
{"x.xarc", 0, "de8327850d7bba90b690b141eaa23f61", 3032},
|
|
{"chapters.ini", 0, "740b97b94e97ed11f064f5fa125ebee1", 486},
|
|
{nullptr, 0, nullptr, 0}
|
|
},
|
|
Common::RU_RUS,
|
|
Common::kPlatformWindows,
|
|
ADGF_UNSTABLE,
|
|
GUIO_NONE
|
|
},
|
|
|
|
AD_TABLE_END_MARKER
|
|
};
|
|
|
|
#define GAMEOPTION_ASSETS_MOD GUIO_GAMEOPTIONS1
|
|
#define GAMEOPTION_LINEAR_FILTERING GUIO_GAMEOPTIONS2
|
|
|
|
static const ADExtraGuiOptionsMap optionsList[] = {
|
|
{
|
|
GAMEOPTION_ASSETS_MOD,
|
|
{
|
|
_s("Load modded assets"),
|
|
_s("Enable loading of external replacement assets."),
|
|
"enable_assets_mod",
|
|
true
|
|
}
|
|
},
|
|
{
|
|
GAMEOPTION_LINEAR_FILTERING,
|
|
{
|
|
_s("Enable linear filtering of the backgrounds images"),
|
|
_s("When linear filtering is enabled the background graphics are smoother in full screen mode, at the cost of some details."),
|
|
"use_linear_filtering",
|
|
true
|
|
}
|
|
},
|
|
|
|
AD_EXTRA_GUI_OPTIONS_TERMINATOR
|
|
};
|
|
|
|
class StarkMetaEngine : public AdvancedMetaEngine {
|
|
public:
|
|
StarkMetaEngine() : AdvancedMetaEngine(gameDescriptions, sizeof(ADGameDescription), starkGames, optionsList) {
|
|
_singleId = "stark";
|
|
_guiOptions = GUIO3(GUIO_NOMIDI, GAMEOPTION_ASSETS_MOD, GAMEOPTION_LINEAR_FILTERING);
|
|
}
|
|
|
|
const char *getName() const override {
|
|
return "Stark Engine";
|
|
}
|
|
|
|
const char *getOriginalCopyright() const override {
|
|
return "(C) Funcom";
|
|
}
|
|
|
|
bool hasFeature(MetaEngineFeature f) const override {
|
|
return
|
|
(f == kSupportsListSaves) ||
|
|
(f == kSupportsLoadingDuringStartup) ||
|
|
(f == kSupportsDeleteSave) ||
|
|
(f == kSavesSupportThumbnail) ||
|
|
(f == kSavesSupportMetaInfo) ||
|
|
(f == kSavesSupportPlayTime) ||
|
|
(f == kSavesSupportCreationDate);
|
|
}
|
|
|
|
int getMaximumSaveSlot() const override {
|
|
return 999;
|
|
}
|
|
|
|
SaveStateList listSaves(const char *target) const override {
|
|
Common::StringArray filenames = StarkEngine::listSaveNames(target);
|
|
|
|
SaveStateList saveList;
|
|
for (Common::StringArray::const_iterator filename = filenames.begin(); filename != filenames.end(); ++filename) {
|
|
int slot = StarkEngine::getSaveNameSlot(target, *filename);
|
|
|
|
// Read the description from the save
|
|
Common::String description;
|
|
Common::InSaveFile *save = g_system->getSavefileManager()->openForLoading(*filename);
|
|
if (save) {
|
|
StateReadStream stream(save);
|
|
description = stream.readString();
|
|
}
|
|
|
|
saveList.push_back(SaveStateDescriptor(slot, description));
|
|
}
|
|
|
|
Common::sort(saveList.begin(), saveList.end(), SaveStateDescriptorSlotComparator());
|
|
return saveList;
|
|
}
|
|
|
|
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const override {
|
|
SaveStateDescriptor descriptor;
|
|
if (slot == 0) {
|
|
descriptor.setWriteProtectedFlag(true);
|
|
descriptor.setDeletableFlag(false);
|
|
}
|
|
|
|
Common::String filename = StarkEngine::formatSaveName(target, slot);
|
|
Common::InSaveFile *save = g_system->getSavefileManager()->openForLoading(filename);
|
|
if (!save) {
|
|
return descriptor;
|
|
}
|
|
|
|
SaveMetadata metadata;
|
|
Common::ErrorCode readError = metadata.read(save, filename);
|
|
if (readError != Common::kNoError) {
|
|
delete save;
|
|
return descriptor;
|
|
}
|
|
|
|
descriptor.setDescription(metadata.description);
|
|
|
|
if (metadata.version >= 9) {
|
|
Graphics::Surface *thumb = metadata.readGameScreenThumbnail(save);
|
|
descriptor.setThumbnail(thumb);
|
|
descriptor.setPlayTime(metadata.totalPlayTime);
|
|
descriptor.setSaveDate(metadata.saveYear, metadata.saveMonth, metadata.saveDay);
|
|
descriptor.setSaveTime(metadata.saveHour, metadata.saveMinute);
|
|
}
|
|
|
|
delete save;
|
|
|
|
return descriptor;
|
|
}
|
|
|
|
void removeSaveState(const char *target, int slot) const override {
|
|
Common::String filename = StarkEngine::formatSaveName(target, slot);
|
|
g_system->getSavefileManager()->removeSavefile(filename);
|
|
}
|
|
|
|
bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const override {
|
|
if (desc)
|
|
*engine = new StarkEngine(syst, desc);
|
|
|
|
return desc != nullptr;
|
|
}
|
|
};
|
|
|
|
} // End of namespace Stark
|
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(STARK)
|
|
REGISTER_PLUGIN_DYNAMIC(STARK, PLUGIN_TYPE_ENGINE, Stark::StarkMetaEngine);
|
|
#else
|
|
REGISTER_PLUGIN_STATIC(STARK, PLUGIN_TYPE_ENGINE, Stark::StarkMetaEngine);
|
|
#endif
|