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.
|
|
|
|
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "base/plugins.h"
|
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
#include "engines/advancedDetector.h"
|
2007-07-17 21:35:01 +00:00
|
|
|
#include "common/file.h"
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
2009-06-06 17:56:41 +00:00
|
|
|
using Common::GUIO_NONE;
|
|
|
|
|
2007-07-17 21:35:01 +00:00
|
|
|
static const DrasculaGameDescription gameDescriptions[] = {
|
|
|
|
{
|
2007-07-17 22:29:09 +00:00
|
|
|
// Drascula English version
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
2007-11-14 19:27:08 +00:00
|
|
|
0,
|
2008-05-24 21:23:06 +00:00
|
|
|
AD_ENTRY1s("14.ald", "09b2735953edcd43af115c65ae00b10e", 1595),
|
2007-07-17 21:35:01 +00:00
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2007-07-17 21:35:01 +00:00
|
|
|
},
|
|
|
|
},
|
2008-05-24 21:23:06 +00:00
|
|
|
|
2008-06-01 21:30:07 +00:00
|
|
|
{
|
|
|
|
// Drascula English version (original packed files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
2010-11-07 17:15:27 +00: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},
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
2008-06-01 21:30:07 +00:00
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformPC,
|
2010-11-07 17:15:27 +00:00
|
|
|
GF_PACKED,
|
2009-06-06 17:56:41 +00:00
|
|
|
GUIO_NONE
|
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},
|
2008-06-02 05:56:53 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
2008-06-01 21:30:07 +00:00
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
2008-06-01 21:30:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula French 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.002", 1, "4401123400f22f212b89f15fb4b43013", 721122},
|
2008-06-02 05:56:53 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
2008-06-01 21:30:07 +00:00
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
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,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
2008-06-02 18:28:55 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
2007-07-17 22:29:09 +00:00
|
|
|
// Drascula Spanish version
|
2007-07-17 21:35:01 +00:00
|
|
|
{
|
|
|
|
"drascula",
|
2007-11-14 19:27:08 +00:00
|
|
|
0,
|
2008-05-24 21:23:06 +00:00
|
|
|
AD_ENTRY1s("14.ald", "0746ed1a5cc8d9728f790c29813f4b43", 23059),
|
2007-07-17 22:29:09 +00:00
|
|
|
Common::ES_ESP,
|
2007-07-17 21:35:01 +00:00
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2007-07-17 21:35:01 +00:00
|
|
|
},
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula German version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "72e46089033d56bad1c179ac36e2a9d2", 610),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula French version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "eeeee96b82169003630e08992248296c", 608),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2008-06-02 18:28:55 +00:00
|
|
|
{
|
|
|
|
// Drascula Italian version (original packed version)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("packet.001", "0253e924af223f5fe52537023385159b", 32564209),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
2008-06-02 18:28:55 +00:00
|
|
|
},
|
|
|
|
},
|
2008-05-24 21:23:06 +00:00
|
|
|
{
|
|
|
|
// Drascula Italian version
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
AD_ENTRY1s("14.ald", "02b49a18328d0bf2efe6ba658c9c7a1d", 2098),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2008-05-24 21:23:06 +00:00
|
|
|
},
|
|
|
|
},
|
2007-07-17 22:29:09 +00:00
|
|
|
|
2008-08-10 17:35:42 +00:00
|
|
|
{
|
|
|
|
// Drascula Spanish version (ScummVM repacked files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2010-04-28 20:47:49 +00:00
|
|
|
{"packet.004", 1, "a289d3cf80d50f25ec569b653248437e", 17205838},
|
2008-08-10 17:35:42 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
|
|
|
Common::ES_ESP,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
2008-08-10 17:35:42 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula Italian version (ScummVM repacked files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
2010-04-28 20:47:49 +00:00
|
|
|
{"packet.005", 1, "58caac54b891f5d7f335e710e45e5d29", 16209623},
|
2008-08-10 17:35:42 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformPC,
|
2009-06-06 17:56:41 +00:00
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
2008-08-10 17:35:42 +00:00
|
|
|
},
|
|
|
|
},
|
2010-10-05 20:11:19 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// Drascula French version (ScummVM repacked files)
|
|
|
|
{
|
|
|
|
"drascula",
|
|
|
|
0,
|
|
|
|
{
|
|
|
|
{"packet.001", 0, "c6a8697396e213a18472542d5f547cb4", 32847563},
|
|
|
|
{"packet.002", 1, "7b83cedb9bb326ed5143e5c459508d43", 722383},
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
},
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPC,
|
|
|
|
GF_PACKED,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
},
|
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
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Drascula
|
|
|
|
|
2009-01-29 22:13:01 +00:00
|
|
|
static const ADParams detectionParams = {
|
2007-07-17 21:35:01 +00:00
|
|
|
// Pointer to ADGameDescription or its superset structure
|
|
|
|
(const byte *)Drascula::gameDescriptions,
|
|
|
|
// Size of that superset structure
|
|
|
|
sizeof(Drascula::DrasculaGameDescription),
|
|
|
|
// Number of bytes to compute MD5 sum for
|
|
|
|
5000,
|
|
|
|
// List of all engine targets
|
|
|
|
drasculaGames,
|
|
|
|
// Structure for autoupgrading obsolete targets
|
|
|
|
0,
|
|
|
|
// Name of single gameid (optional)
|
|
|
|
"drascula",
|
|
|
|
// 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-11-07 19:13:08 +00:00
|
|
|
Common::GUIO_NOMIDI | Common::GUIO_NOLAUNCHLOAD,
|
2010-06-14 14:50:23 +00:00
|
|
|
// Maximum directory depth
|
2010-06-15 10:59:23 +00:00
|
|
|
1,
|
|
|
|
// List of directory globs
|
|
|
|
0
|
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:
|
2009-01-29 22:13:01 +00:00
|
|
|
DrasculaMetaEngine() : AdvancedMetaEngine(detectionParams) {}
|
2008-02-02 02:35:13 +00:00
|
|
|
|
|
|
|
virtual const char *getName() const {
|
|
|
|
return "Drascula Engine";
|
|
|
|
}
|
|
|
|
|
2009-03-05 12:04:58 +00:00
|
|
|
virtual const char *getOriginalCopyright() const {
|
2009-12-25 03:31:19 +00:00
|
|
|
return "Drascula Engine (C) 2000 Alcachofa Soft, (C) 1996 Digital Dreams Multimedia, (C) 1994 Emilio de Paz";
|
2008-02-02 02:35:13 +00:00
|
|
|
}
|
|
|
|
|
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-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
|
|
|
}
|
|
|
|
|
2008-05-06 03:00:26 +00:00
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(DRASCULA)
|
|
|
|
REGISTER_PLUGIN_DYNAMIC(DRASCULA, PLUGIN_TYPE_ENGINE, DrasculaMetaEngine);
|
|
|
|
#else
|
|
|
|
REGISTER_PLUGIN_STATIC(DRASCULA, PLUGIN_TYPE_ENGINE, DrasculaMetaEngine);
|
|
|
|
#endif
|