2007-07-17 21:35:01 +00:00
|
|
|
/* 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.
|
2014-02-18 02:34:19 +01:00
|
|
|
*
|
2007-07-17 21:35:01 +00:00
|
|
|
* 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.
|
2014-02-18 02:34:19 +01:00
|
|
|
*
|
2007-07-17 21:35:01 +00:00
|
|
|
* 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 "base/plugins.h"
|
2013-01-04 13:02:17 +02:00
|
|
|
#include "common/file.h"
|
|
|
|
#include "common/translation.h"
|
2007-07-17 21:35:01 +00:00
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
#include "engines/advancedDetector.h"
|
2012-04-15 11:09:15 -07:00
|
|
|
#include "engines/savestate.h"
|
2013-01-04 13:02:17 +02:00
|
|
|
|
|
|
|
#include "graphics/thumbnail.h"
|
2007-07-17 21:35:01 +00:00
|
|
|
|
|
|
|
#include "drascula/drascula.h"
|
|
|
|
|
|
|
|
namespace Drascula {
|
|
|
|
|
|
|
|
struct DrasculaGameDescription {
|
2009-01-29 22:13:01 +00:00
|
|
|
ADGameDescription desc;
|
2007-07-17 21:35:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 DrasculaEngine::getFeatures() const {
|
2008-06-02 18:38:50 +00:00
|
|
|
return _gameDescription->desc.flags;
|
2007-07-17 21:35:01 +00:00
|
|
|
}
|
|
|
|
|
2008-05-24 21:23:06 +00:00
|
|
|
Common::Language DrasculaEngine::getLanguage() const {
|
|
|
|
return _gameDescription->desc.language;
|
|
|
|
}
|
|
|
|
|
2008-06-02 06:51:59 +00:00
|
|
|
void DrasculaEngine::loadArchives() {
|
2009-01-29 22:13:01 +00:00
|
|
|
const ADGameFileDescription *ag;
|
2008-06-02 06:51:59 +00:00
|
|
|
|
|
|
|
if (getFeatures() & GF_PACKED) {
|
2011-01-28 01:09:27 +00:00
|
|
|
for (ag = _gameDescription->desc.filesDescriptions; ag->fileName; ag++) {
|
|
|
|
if (!_archives.hasArchive(ag->fileName))
|
|
|
|
_archives.registerArchive(ag->fileName, ag->fileType);
|
|
|
|
}
|
2008-06-02 06:51:59 +00:00
|
|
|
}
|
|
|
|
|
2010-02-08 18:17:32 +00:00
|
|
|
_archives.enableFallback(true);
|
2008-06-02 06:51:59 +00:00
|
|
|
}
|
|
|
|
|
2007-07-17 21:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const PlainGameDescriptor drasculaGames[] = {
|
2007-11-14 19:27:08 +00:00
|
|
|
{"drascula", "Drascula: The Vampire Strikes Back"},
|
2007-07-17 21:35:01 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace Drascula {
|
|
|
|
|
|
|
|
static const DrasculaGameDescription gameDescriptions[] = {
|
2013-05-19 08:24:35 +03:00
|
|
|
|
|
|
|
//// Packed versions //////////////////////////////////////////////////////
|
|
|
|
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula English version (original packed files)
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
2007-11-14 19:27:08 +00:00
|
|
|
0,
|
2013-05-19 08:24:35 +03:00
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
|
|
|
// HACK: List packet.001 twice to ensure this detector entry
|
|
|
|
// is ranked just as high as the others (which each have two
|
|
|
|
// detection files).
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2013-05-19 08:24:35 +03:00
|
|
|
},
|
2007-07-17 21:35:01 +00:00
|
|
|
Common::EN_ANY,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2013-05-19 08:24:35 +03:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2007-07-17 21:35:01 +00:00
|
|
|
},
|
|
|
|
},
|
2008-05-24 21:23:06 +00:00
|
|
|
|
2008-06-01 21:30:07 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula French version (original packed files)
|
2008-06-01 21:30:07 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2010-11-07 17:15:27 +00:00
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2013-05-19 08:24:35 +03:00
|
|
|
{"packet.002", 1, "4401123400f22f212b89f15fb4b43013", 721122},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2013-05-19 08:24:35 +03:00
|
|
|
},
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2013-05-19 08:24:35 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula French version (ScummVM repacked files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
{
|
2010-11-07 17:15:27 +00:00
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2013-05-19 08:24:35 +03:00
|
|
|
{"packet.002", 1, "7b83cedb9bb326ed5143e5c459508d43", 722383},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2010-11-07 17:15:27 +00:00
|
|
|
},
|
2013-05-19 08:24:35 +03:00
|
|
|
Common::FR_FRA,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2010-11-07 17:15:27 +00:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-06-01 21:30:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula German version (original packed files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2008-06-02 05:56:53 +00:00
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2010-04-28 20:47:49 +00:00
|
|
|
{"packet.003", 1, "e8f4dc6091037329bab4ddb1cba35807", 719728},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2008-06-02 05:56:53 +00:00
|
|
|
},
|
2008-06-01 21:30:07 +00:00
|
|
|
Common::DE_DEU,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-06-01 21:30:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula Italian version (original packed version)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("packet.001", "0253e924af223f5fe52537023385159b", 32564209),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2013-05-19 08:24:35 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula Italian version (ScummVM repacked files)
|
2008-06-01 21:30:07 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2008-06-02 05:56:53 +00:00
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2013-05-19 08:24:35 +03:00
|
|
|
{"packet.005", 1, "58caac54b891f5d7f335e710e45e5d29", 16209623},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2008-06-02 05:56:53 +00:00
|
|
|
},
|
2013-05-19 08:24:35 +03:00
|
|
|
Common::IT_ITA,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-06-01 21:30:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2008-06-02 18:28:55 +00:00
|
|
|
{
|
|
|
|
// Drascula Spanish version (original packed version)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("packet.001", "3c971aba65a037d29d0b479cad6f5943", 31702652),
|
|
|
|
Common::ES_ESP,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-06-02 18:28:55 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula Spanish version (ScummVM repacked files)
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
2007-11-14 19:27:08 +00:00
|
|
|
0,
|
2013-05-19 08:24:35 +03:00
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
|
|
|
{"packet.004", 1, "a289d3cf80d50f25ec569b653248437e", 17205838},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2013-05-19 08:24:35 +03:00
|
|
|
},
|
2007-07-17 22:29:09 +00:00
|
|
|
Common::ES_ESP,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2013-05-19 08:24:35 +03:00
|
|
|
GF_PACKED,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2007-07-17 21:35:01 +00:00
|
|
|
},
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
|
2018-02-21 22:04:08 +01:00
|
|
|
{
|
|
|
|
// Drascula Russian version (ScummVM repacked files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
|
|
|
{"packet.006", 1, "e464b99de7f226391337510d5c328258", 697173},
|
2019-12-04 04:30:23 +00:00
|
|
|
AD_LISTEND
|
2018-02-21 22:04:08 +01:00
|
|
|
},
|
|
|
|
Common::RU_RUS,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
GF_PACKED,
|
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-05-19 08:24:35 +03:00
|
|
|
//// Unpacked versions ////////////////////////////////////////////////////
|
|
|
|
|
2008-05-24 21:23:06 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula English version
|
2008-05-24 21:23:06 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2013-05-19 08:24:35 +03:00
|
|
|
AD_ENTRY1s("14.ald", "09b2735953edcd43af115c65ae00b10e", 1595),
|
|
|
|
Common::EN_ANY,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula French version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "eeeee96b82169003630e08992248296c", 608),
|
|
|
|
Common::FR_FRA,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-05-19 08:15:50 +03:00
|
|
|
{
|
|
|
|
// Drascula French version (updated - bug #3612236)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "1f9fbded768bee061cc22bc5bdeab540", 611),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2013-05-19 08:15:50 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2008-06-02 18:28:55 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula German version
|
2008-06-02 18:28:55 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2013-05-19 08:24:35 +03:00
|
|
|
AD_ENTRY1s("14.ald", "72e46089033d56bad1c179ac36e2a9d2", 610),
|
|
|
|
Common::DE_DEU,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2013-05-19 08:24:35 +03:00
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-06-02 18:28:55 +00:00
|
|
|
},
|
|
|
|
},
|
2013-05-19 08:15:50 +03:00
|
|
|
|
2008-05-24 21:23:06 +00:00
|
|
|
{
|
|
|
|
// Drascula Italian version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "02b49a18328d0bf2efe6ba658c9c7a1d", 2098),
|
|
|
|
Common::IT_ITA,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
2007-07-17 22:29:09 +00:00
|
|
|
|
2013-05-19 08:15:50 +03:00
|
|
|
{
|
|
|
|
// Drascula Italian version (updated - bug #3612236)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "ccaee939bb3b344c048f28f9205710d1", 2925),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2013-05-19 08:15:50 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2008-08-10 17:35:42 +00:00
|
|
|
{
|
2013-05-19 08:24:35 +03:00
|
|
|
// Drascula Spanish version
|
2008-08-10 17:35:42 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2013-05-19 08:24:35 +03:00
|
|
|
AD_ENTRY1s("14.ald", "0746ed1a5cc8d9728f790c29813f4b43", 23059),
|
2008-08-10 17:35:42 +00:00
|
|
|
Common::ES_ESP,
|
2013-05-02 18:26:58 -04:00
|
|
|
Common::kPlatformDOS,
|
2013-05-19 08:24:35 +03:00
|
|
|
ADGF_NO_FLAGS,
|
2017-02-11 14:31:38 +00:00
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
2010-10-05 20:11:19 +00:00
|
|
|
},
|
|
|
|
},
|
2018-02-21 22:04:08 +01:00
|
|
|
{
|
|
|
|
// Drascula Russian version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "4dfab170eae935a2e9889196df427a4a", 1426),
|
|
|
|
Common::RU_RUS,
|
|
|
|
Common::kPlatformDOS,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO1(GUIO_LINKSPEECHTOSFX)
|
|
|
|
},
|
|
|
|
},
|
2008-08-10 17:35:42 +00:00
|
|
|
|
2008-06-02 18:38:50 +00:00
|
|
|
{ AD_TABLE_END_MARKER }
|
2007-07-17 21:35:01 +00:00
|
|
|
};
|
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
static const ExtraGuiOption drasculaExtraGuiOption = {
|
|
|
|
_s("Use original save/load screens"),
|
2016-11-29 20:02:50 +01:00
|
|
|
_s("Use the original save/load screens instead of the ScummVM ones"),
|
2013-01-04 13:02:17 +02:00
|
|
|
"originalsaveload",
|
|
|
|
false
|
|
|
|
};
|
|
|
|
|
2013-01-04 13:24:43 +02:00
|
|
|
SaveStateDescriptor loadMetaData(Common::ReadStream *s, int slot, bool setPlayTime);
|
2007-07-17 21:35:01 +00:00
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
class DrasculaMetaEngine : public AdvancedMetaEngine {
|
2008-02-02 02:35:13 +00:00
|
|
|
public:
|
2011-06-10 15:53:52 +02:00
|
|
|
DrasculaMetaEngine() : AdvancedMetaEngine(Drascula::gameDescriptions, sizeof(Drascula::DrasculaGameDescription), drasculaGames) {
|
2016-03-08 18:30:58 +01:00
|
|
|
_guiOptions = GUIO1(GUIO_NOMIDI);
|
2013-01-04 13:02:17 +02:00
|
|
|
}
|
|
|
|
|
2020-02-05 15:13:46 +01:00
|
|
|
const char *getEngineId() const override {
|
2016-09-15 18:23:35 +02:00
|
|
|
return "drascula";
|
|
|
|
}
|
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
const char *getName() const override {
|
2016-09-15 20:04:14 +02:00
|
|
|
return "Drascula: The Vampire Strikes Back";
|
2011-06-10 15:53:52 +02:00
|
|
|
}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
const char *getOriginalCopyright() const override {
|
2016-09-15 20:04:14 +02:00
|
|
|
return "Drascula: The Vampire Strikes Back (C) 2000 Alcachofa Soft, (C) 1996 Digital Dreams Multimedia, (C) 1994 Emilio de Paz";
|
2012-04-15 11:09:15 -07:00
|
|
|
}
|
|
|
|
|
2020-02-09 12:05:28 +01:00
|
|
|
bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *gd) const override;
|
|
|
|
bool hasFeature(MetaEngineFeature f) const override;
|
|
|
|
const ExtraGuiOptions getExtraGuiOptions(const Common::String &target) const override;
|
|
|
|
SaveStateList listSaves(const char *target) const override;
|
|
|
|
int getMaximumSaveSlot() const override;
|
|
|
|
void removeSaveState(const char *target, int slot) const override;
|
2020-02-05 15:13:46 +01:00
|
|
|
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const override;
|
2013-01-04 13:02:17 +02:00
|
|
|
};
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
bool DrasculaMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
|
|
return
|
|
|
|
(f == kSupportsListSaves) ||
|
|
|
|
(f == kSupportsLoadingDuringStartup) ||
|
|
|
|
(f == kSupportsDeleteSave) ||
|
|
|
|
(f == kSavesSupportMetaInfo) ||
|
|
|
|
(f == kSavesSupportThumbnail) ||
|
|
|
|
(f == kSavesSupportCreationDate) ||
|
2016-07-25 14:32:04 +06:00
|
|
|
(f == kSavesSupportPlayTime) ||
|
|
|
|
(f == kSimpleSavesNames);
|
2013-01-04 13:02:17 +02:00
|
|
|
}
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
const ExtraGuiOptions DrasculaMetaEngine::getExtraGuiOptions(const Common::String &target) const {
|
|
|
|
ExtraGuiOptions options;
|
|
|
|
options.push_back(drasculaExtraGuiOption);
|
|
|
|
return options;
|
|
|
|
}
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
SaveStateList DrasculaMetaEngine::listSaves(const char *target) const {
|
|
|
|
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
|
|
|
|
Common::StringArray filenames;
|
|
|
|
Common::String pattern = target;
|
2016-01-26 02:40:48 +01:00
|
|
|
pattern += ".###";
|
2013-01-04 13:02:17 +02:00
|
|
|
|
|
|
|
filenames = saveFileMan->listSavefiles(pattern);
|
|
|
|
|
|
|
|
SaveStateList saveList;
|
|
|
|
int slotNum = 0;
|
|
|
|
for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); ++file) {
|
|
|
|
// Obtain the last 3 digits of the filename, since they correspond to the save slot
|
|
|
|
slotNum = atoi(file->c_str() + file->size() - 3);
|
|
|
|
|
|
|
|
if (slotNum >= 0 && slotNum <= getMaximumSaveSlot()) {
|
|
|
|
Common::InSaveFile *in = saveFileMan->openForLoading(*file);
|
|
|
|
if (in) {
|
2013-01-04 13:24:43 +02:00
|
|
|
SaveStateDescriptor desc = loadMetaData(in, slotNum, false);
|
2013-01-04 13:02:17 +02:00
|
|
|
if (desc.getSaveSlot() != slotNum) {
|
|
|
|
// invalid
|
|
|
|
delete in;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
saveList.push_back(desc);
|
|
|
|
delete in;
|
2012-04-15 11:09:15 -07:00
|
|
|
}
|
|
|
|
}
|
2013-01-04 13:02:17 +02:00
|
|
|
}
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2016-02-25 19:55:13 +01:00
|
|
|
// Sort saves based on slot number.
|
|
|
|
Common::sort(saveList.begin(), saveList.end(), SaveStateDescriptorSlotComparator());
|
2013-01-04 13:02:17 +02:00
|
|
|
return saveList;
|
|
|
|
}
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
SaveStateDescriptor DrasculaMetaEngine::querySaveMetaInfos(const char *target, int slot) const {
|
2014-12-22 22:43:46 +01:00
|
|
|
Common::String fileName = Common::String::format("%s.%03d", target, slot);
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
Common::InSaveFile *in = g_system->getSavefileManager()->openForLoading(fileName);
|
2012-04-15 17:29:41 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
SaveStateDescriptor desc;
|
|
|
|
// Do not allow save slot 0 (used for auto-saving) to be deleted or
|
|
|
|
// overwritten.
|
|
|
|
desc.setDeletableFlag(slot != 0);
|
|
|
|
desc.setWriteProtectedFlag(slot == 0);
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
if (in) {
|
2013-01-04 13:24:43 +02:00
|
|
|
desc = Drascula::loadMetaData(in, slot, false);
|
2013-01-04 13:02:17 +02:00
|
|
|
if (desc.getSaveSlot() != slot) {
|
|
|
|
delete in;
|
|
|
|
return SaveStateDescriptor();
|
2012-04-15 11:09:15 -07:00
|
|
|
}
|
|
|
|
|
ALL: Load savegame thumbnail only when necessary
This commit introduces the following changes:
1. Graphics::loadThumbnail()
Now returns a boolean and takes a new argument skipThumbnail which
defaults to false. In case of true, loadThumbnail() reads past the
thumbnail data in the input stream instead of actually loading the
thumbnail. This simplifies savegame handling where, up until now,
many engines always read the whole savegame metadata (including
the thumbnail) and then threw away the thumbnail when not needed
(which is in almost all cases, the most common exception being
MetaEngine::querySaveMetaInfos() which is responsible for loading
savegame metadata for displaying it in the GUI launcher.
2. readSavegameHeader()
Engines which already implement such a method (name varies) now take
a new argument skipThumbnail (default: true) which is passed
through to loadThumbnail(). This means that the default case for
readSavegameHeader() is now _not_ loading the thumbnail from a
savegame and just reading past it. In those cases, e.g.
querySaveMetaInfos(), where we actually are interested in loading
the thumbnail readSavegameHeader() needs to explicitely be called
with skipThumbnail == false.
Engines whose readSavegameHeader() (name varies) already takes an
argument loadThumbnail have been adapted to have a similar
prototype and semantics.
I.e. readSaveHeader(in, loadThumbnail, header) now is
readSaveHeader(in, header, skipThumbnail).
3. Error handling
Engines which previously did not check the return value of
readSavegameHeader() (name varies) now do so ensuring that possibly
broken savegames (be it a broken thumbnail or something else) don't
make it into the GUI launcher list in the first place.
2018-04-06 00:06:38 +02:00
|
|
|
Graphics::Surface *thumbnail;
|
|
|
|
if (!Graphics::loadThumbnail(*in, thumbnail)) {
|
|
|
|
delete in;
|
|
|
|
return SaveStateDescriptor();
|
|
|
|
}
|
2013-01-04 13:02:17 +02:00
|
|
|
desc.setThumbnail(thumbnail);
|
2012-04-15 11:09:15 -07:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
delete in;
|
2008-02-02 02:35:13 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
return desc;
|
|
|
|
}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
int DrasculaMetaEngine::getMaximumSaveSlot() const { return 999; }
|
|
|
|
|
|
|
|
void DrasculaMetaEngine::removeSaveState(const char *target, int slot) const {
|
|
|
|
Common::String fileName = Common::String::format("%s.%03d", target, slot);
|
|
|
|
g_system->getSavefileManager()->removeSavefile(fileName);
|
|
|
|
}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
bool DrasculaMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
2008-03-14 17:31:04 +00:00
|
|
|
const Drascula::DrasculaGameDescription *gd = (const Drascula::DrasculaGameDescription *)desc;
|
2007-11-03 21:06:58 +00:00
|
|
|
if (gd) {
|
|
|
|
*engine = new Drascula::DrasculaEngine(syst, gd);
|
|
|
|
}
|
|
|
|
return gd != 0;
|
2007-07-17 21:35:01 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 13:02:17 +02:00
|
|
|
} // End of namespace Drascula
|
|
|
|
|
2008-05-06 03:00:26 +00:00
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(DRASCULA)
|
2013-01-04 13:02:17 +02:00
|
|
|
REGISTER_PLUGIN_DYNAMIC(DRASCULA, PLUGIN_TYPE_ENGINE, Drascula::DrasculaMetaEngine);
|
2008-05-06 03:00:26 +00:00
|
|
|
#else
|
2013-01-04 13:02:17 +02:00
|
|
|
REGISTER_PLUGIN_STATIC(DRASCULA, PLUGIN_TYPE_ENGINE, Drascula::DrasculaMetaEngine);
|
2008-05-06 03:00:26 +00:00
|
|
|
#endif
|