2009-05-26 14:13:08 +00:00
|
|
|
/* Residual - A 3D game interpreter
|
2009-05-25 19:21:58 +00:00
|
|
|
*
|
|
|
|
* Residual is the legal property of its developers, whose names
|
2011-04-16 14:12:44 +02:00
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
2009-05-25 19:21:58 +00:00
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "engines/advancedDetector.h"
|
|
|
|
|
|
|
|
#include "engines/grim/grim.h"
|
2011-04-10 11:24:03 +02:00
|
|
|
#include "engines/grim/colormap.h"
|
2011-05-17 20:48:58 -07:00
|
|
|
#include "engines/grim/savegame.h"
|
|
|
|
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/savefile.h"
|
2009-05-25 19:21:58 +00:00
|
|
|
|
|
|
|
namespace Grim {
|
|
|
|
|
|
|
|
struct GrimGameDescription {
|
|
|
|
ADGameDescription desc;
|
2011-03-24 22:04:40 +08:00
|
|
|
GrimGameType gameType;
|
2009-05-25 19:21:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const PlainGameDescriptor grimGames[] = {
|
|
|
|
{"grim", "Grim Fandango"},
|
2011-03-24 22:04:40 +08:00
|
|
|
{"monkey4", "Escape From Monkey Island"},
|
2009-05-25 19:21:58 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
2009-06-21 08:12:49 +00:00
|
|
|
using Common::GUIO_NONE;
|
|
|
|
|
2009-05-25 19:21:58 +00:00
|
|
|
static const GrimGameDescription gameDescriptions[] = {
|
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
// Grim Fandango English version
|
2009-05-25 19:21:58 +00:00
|
|
|
{
|
|
|
|
"grim",
|
2011-03-24 22:04:40 +08:00
|
|
|
"",
|
2009-05-25 21:18:07 +00:00
|
|
|
AD_ENTRY1s("grim.tab", "cfb333d6aec260c905151b6b98ef71e8", 362212),
|
2009-05-25 19:21:58 +00:00
|
|
|
Common::EN_ANY,
|
2010-05-17 16:32:13 +00:00
|
|
|
Common::kPlatformWindows,
|
2009-06-21 08:12:49 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-05-25 19:21:58 +00:00
|
|
|
},
|
2011-03-24 22:04:40 +08:00
|
|
|
GType_GRIM
|
2009-05-25 19:21:58 +00:00
|
|
|
},
|
2011-04-19 00:14:27 +08:00
|
|
|
{
|
|
|
|
// Grim Fandango English version (Adventure-bundle, possibly patched)
|
|
|
|
{
|
|
|
|
"grim",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("grim.tab", "cfb333d6aec260c905151b6b98ef71e8", 362164),
|
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_GRIM
|
|
|
|
},
|
2009-05-26 06:41:24 +00:00
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
// Grim Fandango German version
|
2009-05-26 06:41:24 +00:00
|
|
|
{
|
|
|
|
"grim",
|
2011-03-24 22:04:40 +08:00
|
|
|
"",
|
2009-05-28 21:51:50 +00:00
|
|
|
AD_ENTRY1s("grim.tab", "464138caf47e580cbb237dee10674b16", 398592),
|
2009-05-26 06:41:24 +00:00
|
|
|
Common::DE_DEU,
|
2010-05-17 16:32:13 +00:00
|
|
|
Common::kPlatformWindows,
|
2009-06-21 08:12:49 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-05-26 06:41:24 +00:00
|
|
|
},
|
2011-03-24 22:04:40 +08:00
|
|
|
GType_GRIM
|
2009-05-26 06:41:24 +00:00
|
|
|
},
|
2011-05-18 07:18:25 +08:00
|
|
|
{
|
|
|
|
// Grim Fandango German version (patched)
|
|
|
|
{
|
|
|
|
"grim",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("grim.tab", "464138caf47e580cbb237dee10674b16", 398671),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_GRIM
|
|
|
|
},
|
2009-05-26 06:41:24 +00:00
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
// Grim Fandango Spanish version
|
2009-05-26 06:41:24 +00:00
|
|
|
{
|
|
|
|
"grim",
|
2011-03-24 22:04:40 +08:00
|
|
|
"",
|
2009-05-27 18:07:10 +00:00
|
|
|
AD_ENTRY1s("grim.tab", "b1460cd029f13718f7f62c2403e047ec", 372709),
|
2009-05-26 06:41:24 +00:00
|
|
|
Common::ES_ESP,
|
2010-05-17 16:32:13 +00:00
|
|
|
Common::kPlatformWindows,
|
2009-06-21 08:12:49 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-05-26 06:41:24 +00:00
|
|
|
},
|
2011-03-24 22:04:40 +08:00
|
|
|
GType_GRIM
|
2009-05-26 06:41:24 +00:00
|
|
|
},
|
2009-05-28 16:08:33 +00:00
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
// Grim Fandango Italian version
|
2009-05-28 16:08:33 +00:00
|
|
|
{
|
|
|
|
"grim",
|
2011-03-24 22:04:40 +08:00
|
|
|
"",
|
2009-05-28 16:08:33 +00:00
|
|
|
AD_ENTRY1s("grim.tab", "2d99c796b7a4e5c421cae49dc29dab6c", 369071),
|
|
|
|
Common::IT_ITA,
|
2010-05-17 16:32:13 +00:00
|
|
|
Common::kPlatformWindows,
|
2009-06-21 08:12:49 +00:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
2009-05-28 16:08:33 +00:00
|
|
|
},
|
2011-03-24 22:04:40 +08:00
|
|
|
GType_GRIM
|
2009-05-28 16:08:33 +00:00
|
|
|
},
|
2011-05-05 18:51:45 +02:00
|
|
|
{
|
|
|
|
// Grim Fandango patched Italian version
|
|
|
|
{
|
|
|
|
"grim",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("grim.tab", "2d99c796b7a4e5c421cae49dc29dab6c", 369242),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_GRIM
|
|
|
|
},
|
2011-04-06 17:00:53 +08:00
|
|
|
{
|
|
|
|
// Grim Fandango French version
|
|
|
|
{
|
|
|
|
"grim",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("grim.tab", "3bd00ca87214862c012ac99e1758dd83", 386292),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_GRIM
|
|
|
|
},
|
2009-06-13 16:11:11 +00:00
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
// Grim Fandango English demo version
|
2009-06-13 16:11:11 +00:00
|
|
|
{
|
2011-03-24 22:04:40 +08:00
|
|
|
"grim",
|
|
|
|
"Demo",
|
2009-06-13 16:11:11 +00:00
|
|
|
AD_ENTRY1s("gfdemo01.lab", "755cdac083f7f751bec7506402278f1a", 29489930),
|
|
|
|
Common::EN_ANY,
|
2010-05-17 16:32:13 +00:00
|
|
|
Common::kPlatformWindows,
|
2011-03-24 22:04:40 +08:00
|
|
|
ADGF_DEMO,
|
2009-06-21 08:12:49 +00:00
|
|
|
GUIO_NONE
|
2009-06-13 16:11:11 +00:00
|
|
|
},
|
2011-03-24 22:04:40 +08:00
|
|
|
GType_GRIM
|
2009-06-13 16:11:11 +00:00
|
|
|
},
|
2011-04-30 22:28:54 +02:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island English
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
2011-05-01 16:45:04 +08:00
|
|
|
AD_ENTRY1s("voiceAll.m4b", "c66cc6b656a2b1abae373b61d3115342", 17325629),
|
2011-04-30 22:28:54 +02:00
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
2011-05-05 18:44:53 +02:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island German
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "63b4724afc9d94a5aa71b46e6b1b7551", 19999850),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
2011-05-01 16:45:04 +08:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island Italian
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "d4b9659a0853e707fdb7c7a68c7604d2", 21206992),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Escape from Monkey Island Spanish
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "0b48fba32e47f372712ed06365678c2b", 18486773),
|
|
|
|
Common::ES_ESP,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Escape from Monkey Island French
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "e75ca3a03515e009dc2e4426010d8ebb", 20044753),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
2011-03-25 06:15:54 +08:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island English PS2
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
2011-05-01 16:45:04 +08:00
|
|
|
AD_ENTRY1s("voiceAll.m4b", "c03391279486f0158c75398f5117ad73", 15095808),
|
2011-03-25 06:15:54 +08:00
|
|
|
Common::EN_ANY,
|
2011-04-12 20:13:34 +08:00
|
|
|
Common::kPlatformPS2,
|
2011-03-25 06:15:54 +08:00
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
2011-05-05 18:44:53 +02:00
|
|
|
GType_MONKEY4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Escape from Monkey Island German PS2
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "6bdd08f3f313765c610fbbe39d18797f", 17262912),
|
|
|
|
Common::DE_DEU,
|
|
|
|
Common::kPlatformPS2,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
2011-03-25 06:15:54 +08:00
|
|
|
GType_MONKEY4
|
|
|
|
},
|
2011-05-02 17:55:43 +08:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island Italian PS2
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "342fc0288a7d0e25a7284a04b98ede83", 18128960),
|
|
|
|
Common::IT_ITA,
|
|
|
|
Common::kPlatformPS2,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Escape from Monkey Island Spanish PS2
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "782ca7d9357577a4c5eefc37974661cc", 15789184),
|
|
|
|
Common::ES_ESP,
|
|
|
|
Common::kPlatformPS2,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Escape from Monkey Island French PS2
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"",
|
|
|
|
AD_ENTRY1s("voiceAll.m4b", "ef0905bc590e1afbe2eef1535bde7a6b", 16768512),
|
|
|
|
Common::FR_FRA,
|
|
|
|
Common::kPlatformPS2,
|
|
|
|
ADGF_NO_FLAGS,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
|
|
|
GType_MONKEY4
|
|
|
|
},
|
2011-03-24 22:11:32 +08:00
|
|
|
{
|
|
|
|
// Escape from Monkey Island demo
|
|
|
|
{
|
|
|
|
"monkey4",
|
|
|
|
"Demo",
|
|
|
|
AD_ENTRY1s("magdemo.lab", "9e7eaa1b9317ff47d5deeda0b2c42ce3", 19826116),
|
|
|
|
Common::EN_ANY,
|
|
|
|
Common::kPlatformWindows,
|
|
|
|
ADGF_DEMO,
|
|
|
|
GUIO_NONE
|
|
|
|
},
|
2011-03-24 22:57:35 +08:00
|
|
|
GType_MONKEY4
|
2011-03-24 22:11:32 +08:00
|
|
|
},
|
2009-05-25 19:21:58 +00:00
|
|
|
|
|
|
|
|
2011-05-14 12:11:53 +02:00
|
|
|
{ AD_TABLE_END_MARKER, GType_GRIM }
|
2009-05-30 11:32:43 +00:00
|
|
|
};
|
|
|
|
|
2011-03-24 22:04:40 +08:00
|
|
|
static const ADObsoleteGameID obsoleteGameIDsTable[] = {
|
|
|
|
{"grimdemo", "grim", Common::kPlatformWindows},
|
|
|
|
{0, 0, Common::kPlatformUnknown}
|
|
|
|
};
|
|
|
|
|
2009-05-25 19:21:58 +00:00
|
|
|
static const ADParams detectionParams = {
|
|
|
|
// Pointer to ADGameDescription or its superset structure
|
2009-05-30 11:38:42 +00:00
|
|
|
(const byte *)gameDescriptions,
|
2009-05-25 19:21:58 +00:00
|
|
|
// Size of that superset structure
|
2009-05-30 11:38:42 +00:00
|
|
|
sizeof(GrimGameDescription),
|
2009-05-25 19:21:58 +00:00
|
|
|
// Number of bytes to compute MD5 sum for
|
|
|
|
5000,
|
|
|
|
// List of all engine targets
|
|
|
|
grimGames,
|
|
|
|
// Structure for autoupgrading obsolete targets
|
2011-03-24 22:04:40 +08:00
|
|
|
obsoleteGameIDsTable,
|
2009-05-25 19:21:58 +00:00
|
|
|
// Name of single gameid (optional)
|
2011-03-24 22:04:40 +08:00
|
|
|
0,
|
2009-05-25 19:21:58 +00:00
|
|
|
// List of files for file-based fallback detection (optional)
|
2011-05-14 12:11:53 +02:00
|
|
|
0,
|
2009-05-25 19:21:58 +00:00
|
|
|
// Flags
|
2009-06-21 08:12:49 +00:00
|
|
|
0,
|
|
|
|
// Additional GUI options (for every game}
|
2011-04-12 20:41:22 +08:00
|
|
|
Common::GUIO_NOMIDI,
|
|
|
|
// Maximum directory depth
|
|
|
|
1,
|
|
|
|
// List of directory globs
|
|
|
|
0
|
2009-05-25 19:21:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GrimMetaEngine : public AdvancedMetaEngine {
|
|
|
|
public:
|
|
|
|
GrimMetaEngine() : AdvancedMetaEngine(detectionParams) {}
|
|
|
|
|
|
|
|
virtual const char *getName() const {
|
|
|
|
return "Grim Engine";
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getOriginalCopyright() const {
|
|
|
|
return "LucasArts GrimE Games (C) LucasArts";
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const;
|
2011-05-17 20:48:58 -07:00
|
|
|
|
|
|
|
virtual bool hasFeature(MetaEngineFeature f) const;
|
|
|
|
virtual SaveStateList listSaves(const char *target) const;
|
2009-05-25 19:21:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool GrimMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
2009-05-30 11:38:42 +00:00
|
|
|
const GrimGameDescription *gd = (const GrimGameDescription *)desc;
|
2011-03-24 22:04:40 +08:00
|
|
|
|
|
|
|
if (gd)
|
2011-05-14 12:11:53 +02:00
|
|
|
*engine = new GrimEngine(syst, gd->desc.flags, gd->gameType, gd->desc.platform, gd->desc.language);
|
2011-03-24 22:04:40 +08:00
|
|
|
|
2009-05-25 19:21:58 +00:00
|
|
|
return gd != 0;
|
|
|
|
}
|
|
|
|
|
2011-05-17 20:48:58 -07:00
|
|
|
bool GrimMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
|
|
return
|
|
|
|
(f == kSupportsListSaves) ||
|
|
|
|
(f == kSupportsLoadingDuringStartup);
|
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateList GrimMetaEngine::listSaves(const char *target) const {
|
|
|
|
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
|
|
|
|
Common::StringArray filenames;
|
|
|
|
Common::String saveDesc;
|
2011-05-18 08:09:14 -07:00
|
|
|
Common::String pattern = "grim??.gsv";
|
2011-05-17 20:48:58 -07:00
|
|
|
|
|
|
|
filenames = saveFileMan->listSavefiles(pattern);
|
|
|
|
sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..)
|
|
|
|
|
|
|
|
SaveStateList saveList;
|
|
|
|
char str[256];
|
|
|
|
int32 strSize;
|
|
|
|
for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); ++file) {
|
|
|
|
// Obtain the last 2 digits of the filename, since they correspond to the save slot
|
|
|
|
int slotNum = atoi(file->c_str() + 4);
|
|
|
|
|
|
|
|
if (slotNum >= 0 && slotNum <= 99) {
|
|
|
|
SaveGame *savedState = new SaveGame((*file).c_str(), false);
|
|
|
|
if (savedState) {
|
|
|
|
if (savedState->saveVersion() != SaveGame::SAVEGAME_VERSION) {
|
|
|
|
delete savedState;
|
2011-05-18 08:09:14 -07:00
|
|
|
continue;
|
2011-05-17 20:48:58 -07:00
|
|
|
}
|
|
|
|
savedState->beginSection('SUBS');
|
|
|
|
strSize = savedState->readLESint32();
|
|
|
|
savedState->read(str, strSize);
|
|
|
|
saveDesc = str;
|
|
|
|
saveList.push_back(SaveStateDescriptor(slotNum, saveDesc));
|
|
|
|
delete savedState;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return saveList;
|
|
|
|
}
|
|
|
|
|
2009-05-30 11:38:42 +00:00
|
|
|
} // End of namespace Grim
|
|
|
|
|
2009-05-25 19:21:58 +00:00
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(GRIM)
|
2009-05-30 11:38:42 +00:00
|
|
|
REGISTER_PLUGIN_DYNAMIC(GRIM, PLUGIN_TYPE_ENGINE, Grim::GrimMetaEngine);
|
2009-05-25 19:21:58 +00:00
|
|
|
#else
|
2009-05-30 11:38:42 +00:00
|
|
|
REGISTER_PLUGIN_STATIC(GRIM, PLUGIN_TYPE_ENGINE, Grim::GrimMetaEngine);
|
2009-05-25 19:21:58 +00:00
|
|
|
#endif
|