2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2007-04-27 12:58:35 +00:00
|
|
|
*
|
2007-05-30 21:56:52 +00:00
|
|
|
* 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.
|
2007-04-27 12:58:35 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
#include "base/plugins.h"
|
2009-08-15 11:50:59 +00:00
|
|
|
#include "common/savefile.h"
|
2011-04-24 11:34:27 +03:00
|
|
|
#include "common/system.h"
|
2009-01-29 22:13:01 +00:00
|
|
|
#include "engines/advancedDetector.h"
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
#include "cruise/cruise.h"
|
2009-04-18 10:16:08 +00:00
|
|
|
#include "cruise/saveload.h"
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
namespace Cruise {
|
2007-04-27 22:33:45 +00:00
|
|
|
|
2007-04-27 12:58:35 +00:00
|
|
|
struct CRUISEGameDescription {
|
2009-01-29 22:13:01 +00:00
|
|
|
ADGameDescription desc;
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
int gameType;
|
|
|
|
uint32 features;
|
|
|
|
};
|
|
|
|
|
2009-08-24 09:07:21 +00:00
|
|
|
const char *CruiseEngine::getGameId() const {
|
|
|
|
return _gameDescription->desc.gameid;
|
|
|
|
}
|
|
|
|
|
2009-01-16 02:43:41 +00:00
|
|
|
int CruiseEngine::getGameType() const {
|
|
|
|
return _gameDescription->gameType;
|
|
|
|
}
|
|
|
|
uint32 CruiseEngine::getFeatures() const {
|
|
|
|
return _gameDescription->features;
|
|
|
|
}
|
|
|
|
Common::Language CruiseEngine::getLanguage() const {
|
|
|
|
return _gameDescription->desc.language;
|
|
|
|
}
|
|
|
|
Common::Platform CruiseEngine::getPlatform() const {
|
|
|
|
return _gameDescription->desc.platform;
|
|
|
|
}
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PlainGameDescriptor cruiseGames[] = {
|
|
|
|
{"cruise", "Cinematique evo.2 engine game"},
|
2009-06-01 20:55:31 +00:00
|
|
|
{"cruise", "Cruise for a Corpse"},
|
2007-04-27 12:58:35 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Cruise {
|
|
|
|
|
2009-06-06 17:56:41 +00:00
|
|
|
using Common::GUIO_NONE;
|
|
|
|
|
2007-04-27 12:58:35 +00:00
|
|
|
static const CRUISEGameDescription gameDescriptions[] = {
|
2009-08-16 12:03:48 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
2011-04-14 14:12:27 +02:00
|
|
|
"16 colors",
|
2009-08-16 12:03:48 +00:00
|
|
|
AD_ENTRY1("D1", "cd29a4cd9162076e9a18495fe56a48f3"),
|
|
|
|
Common::EN_GRB,
|
|
|
|
Common::kPlatformPC,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2007-04-27 12:58:35 +00:00
|
|
|
{
|
2009-01-16 02:43:41 +00:00
|
|
|
{
|
2007-04-27 12:58:35 +00:00
|
|
|
"cruise",
|
2007-11-11 01:04:40 +00:00
|
|
|
"16 colors",
|
2007-04-27 12:58:35 +00:00
|
|
|
AD_ENTRY1("D1", "41a7a4d426dbd048eb369cfee4bb2717"),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2007-04-27 12:58:35 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
2009-01-16 02:43:41 +00:00
|
|
|
},
|
2009-01-02 09:53:11 +00:00
|
|
|
{
|
2009-01-16 02:43:41 +00:00
|
|
|
{
|
2009-01-02 09:53:11 +00:00
|
|
|
"cruise",
|
|
|
|
"256 colors",
|
|
|
|
AD_ENTRY1("D1", "a90d2b9ead6b4d812cd14268672cf178"),
|
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-01-02 09:53:11 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2007-11-11 01:04:40 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
"256 colors",
|
|
|
|
AD_ENTRY1("D1", "e258865807ea31b2d523340e6f0a606b"),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2007-11-11 01:04:40 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2009-05-05 16:58:54 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
"16 colors",
|
|
|
|
AD_ENTRY1("D1", "287d2ec1799e2f881dee23c70be96e81"),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-05-05 16:58:54 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2007-04-27 14:43:09 +00:00
|
|
|
{
|
2009-01-02 09:53:11 +00:00
|
|
|
{
|
2007-04-27 14:43:09 +00:00
|
|
|
"cruise",
|
2007-04-28 22:31:55 +00:00
|
|
|
"256 colors",
|
2009-01-02 09:53:11 +00:00
|
|
|
AD_ENTRY1("D1", "f2a26522d49983c4ae32bcccbb801b02"),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-01-02 09:53:11 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2009-09-14 12:24:23 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1("D1", "70f42a21cc257b01d58667853335f4f1"),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformAmiga,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2010-03-04 17:21:59 +00:00
|
|
|
{ // Amiga English US GOLD edition.
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1("D1", "de084e9d2c6e4b2cc14803bf849eda3e"),
|
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformAmiga,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2010-02-13 13:21:29 +00:00
|
|
|
{ // AtariST English KixxXL edition.
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1("D1", "be78614d5fa34bdb68bb03a2a6130280"),
|
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformAtariST,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2009-01-02 09:53:11 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
"256 colors",
|
|
|
|
AD_ENTRY1("D1", "e19a4ab2e24a69087e4ea994a5506231"),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-01-02 09:53:11 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"cruise",
|
|
|
|
"256 colors",
|
|
|
|
AD_ENTRY1("D1", "9a302ada55600d96061fda1d63a6ccda"),
|
|
|
|
Common::ES_ESP,
|
2007-04-27 14:43:09 +00:00
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2007-04-27 14:43:09 +00:00
|
|
|
},
|
|
|
|
GType_CRUISE,
|
|
|
|
0,
|
|
|
|
},
|
2007-04-27 22:33:45 +00:00
|
|
|
{AD_TABLE_END_MARKER, 0, 0}
|
2007-04-27 12:58:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
static const ADParams detectionParams = {
|
2007-04-27 12:58:35 +00:00
|
|
|
// Pointer to ADGameDescription or its superset structure
|
|
|
|
(const byte *)Cruise::gameDescriptions,
|
|
|
|
// Size of that superset structure
|
|
|
|
sizeof(Cruise::CRUISEGameDescription),
|
|
|
|
// Number of bytes to compute MD5 sum for
|
|
|
|
5000,
|
|
|
|
// List of all engine targets
|
|
|
|
cruiseGames,
|
|
|
|
// Structure for autoupgrading obsolete targets
|
2009-05-17 05:14:55 +00:00
|
|
|
0,
|
2007-04-27 12:58:35 +00:00
|
|
|
// Name of single gameid (optional)
|
|
|
|
"cruise",
|
|
|
|
// List of files for file-based fallback detection (optional)
|
|
|
|
0,
|
|
|
|
// Flags
|
2009-06-06 17:56:41 +00:00
|
|
|
0,
|
|
|
|
// Additional GUI options (for every game}
|
2010-06-14 14:50:23 +00:00
|
|
|
Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI,
|
|
|
|
// Maximum directory depth
|
2010-06-15 10:59:23 +00:00
|
|
|
1,
|
|
|
|
// List of directory globs
|
|
|
|
0
|
2007-04-27 12:58:35 +00:00
|
|
|
};
|
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
class CruiseMetaEngine : public AdvancedMetaEngine {
|
2009-01-16 05:04:49 +00:00
|
|
|
public:
|
2009-01-29 22:13:01 +00:00
|
|
|
CruiseMetaEngine() : AdvancedMetaEngine(detectionParams) {}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
virtual const char *getName() const {
|
|
|
|
return "Cinematique evo 2 engine";
|
|
|
|
}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2009-03-05 12:04:58 +00:00
|
|
|
virtual const char *getOriginalCopyright() const {
|
2009-01-16 05:04:49 +00:00
|
|
|
return "Cruise for a Corpse (C) Delphine Software";
|
|
|
|
}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2009-04-18 10:16:08 +00:00
|
|
|
virtual bool hasFeature(MetaEngineFeature f) const;
|
2010-03-22 20:28:08 +00:00
|
|
|
virtual int getMaximumSaveSlot() const { return 99; }
|
2009-04-18 10:16:08 +00:00
|
|
|
virtual SaveStateList listSaves(const char *target) const;
|
|
|
|
virtual void removeSaveState(const char *target, int slot) const;
|
|
|
|
virtual SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const;
|
2009-01-29 22:13:01 +00:00
|
|
|
virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const;
|
2008-02-02 02:35:13 +00:00
|
|
|
};
|
|
|
|
|
2009-04-18 10:16:08 +00:00
|
|
|
bool CruiseMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
|
|
return
|
|
|
|
(f == kSupportsListSaves) ||
|
|
|
|
(f == kSupportsDeleteSave) ||
|
|
|
|
(f == kSavesSupportMetaInfo) ||
|
2009-06-10 12:16:30 +00:00
|
|
|
(f == kSavesSupportThumbnail) ||
|
|
|
|
(f == kSupportsLoadingDuringStartup);
|
2009-04-18 10:16:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateList CruiseMetaEngine::listSaves(const char *target) const {
|
|
|
|
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
|
2010-03-18 15:54:40 +00:00
|
|
|
Common::StringArray filenames;
|
2009-04-18 10:16:08 +00:00
|
|
|
Common::String pattern("cruise.s??");
|
|
|
|
|
2009-05-29 14:38:22 +00:00
|
|
|
filenames = saveFileMan->listSavefiles(pattern);
|
2009-04-18 10:16:08 +00:00
|
|
|
sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..)
|
|
|
|
|
|
|
|
SaveStateList saveList;
|
2010-03-18 15:54:40 +00:00
|
|
|
for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); ++file) {
|
2009-04-18 10:16:08 +00:00
|
|
|
// Obtain the last 2 digits of the filename, since they correspond to the save slot
|
|
|
|
int slotNum = atoi(file->c_str() + file->size() - 2);
|
|
|
|
|
|
|
|
if (slotNum >= 0 && slotNum <= 99) {
|
2009-05-29 14:38:22 +00:00
|
|
|
Common::InSaveFile *in = saveFileMan->openForLoading(*file);
|
2009-04-18 10:16:08 +00:00
|
|
|
if (in) {
|
|
|
|
Cruise::CruiseSavegameHeader header;
|
|
|
|
Cruise::readSavegameHeader(in, header);
|
|
|
|
saveList.push_back(SaveStateDescriptor(slotNum, header.saveName));
|
2010-01-03 19:37:43 +00:00
|
|
|
delete header.thumbnail;
|
2009-04-18 10:16:08 +00:00
|
|
|
delete in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return saveList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CruiseMetaEngine::removeSaveState(const char *target, int slot) const {
|
|
|
|
g_system->getSavefileManager()->removeSavefile(Cruise::CruiseEngine::getSavegameFile(slot));
|
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateDescriptor CruiseMetaEngine::querySaveMetaInfos(const char *target, int slot) const {
|
|
|
|
Common::InSaveFile *f = g_system->getSavefileManager()->openForLoading(
|
|
|
|
Cruise::CruiseEngine::getSavegameFile(slot));
|
|
|
|
assert(f);
|
|
|
|
|
|
|
|
Cruise::CruiseSavegameHeader header;
|
|
|
|
Cruise::readSavegameHeader(f, header);
|
|
|
|
delete f;
|
|
|
|
|
|
|
|
// Create the return descriptor
|
|
|
|
SaveStateDescriptor desc(slot, header.saveName);
|
|
|
|
desc.setDeletableFlag(true);
|
|
|
|
desc.setWriteProtectedFlag(false);
|
|
|
|
desc.setThumbnail(header.thumbnail);
|
|
|
|
|
|
|
|
return desc;
|
|
|
|
}
|
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
bool CruiseMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
2008-03-14 17:31:04 +00:00
|
|
|
const Cruise::CRUISEGameDescription *gd = (const Cruise::CRUISEGameDescription *)desc;
|
2007-11-03 21:06:58 +00:00
|
|
|
if (gd) {
|
|
|
|
*engine = new Cruise::CruiseEngine(syst, gd);
|
|
|
|
}
|
|
|
|
return gd != 0;
|
2007-04-27 12:58:35 +00:00
|
|
|
}
|
|
|
|
|
2009-04-18 10:16:08 +00:00
|
|
|
|
2008-05-06 03:00:26 +00:00
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(CRUISE)
|
2009-01-16 02:43:41 +00:00
|
|
|
REGISTER_PLUGIN_DYNAMIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
|
2008-05-06 03:00:26 +00:00
|
|
|
#else
|
2009-01-16 02:43:41 +00:00
|
|
|
REGISTER_PLUGIN_STATIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
|
2008-05-06 03:00:26 +00:00
|
|
|
#endif
|