GRIM: move debug flags to metaEngineDetection

This commit is contained in:
ysj1173886760 2021-05-16 22:40:50 +08:00 committed by Eugene Sandulenko
parent b41b540a03
commit dd14b7b34a
3 changed files with 29 additions and 22 deletions

View File

@ -27,26 +27,6 @@
namespace Grim {
void Debug::registerDebugChannels() {
DebugMan.addDebugChannel(Info, "info", "");
DebugMan.addDebugChannel(Warning, "warning", "");
DebugMan.addDebugChannel(Error, "error", "");
DebugMan.addDebugChannel(Engine, "engine", "");
DebugMan.addDebugChannel(Lua, "lua", "");
DebugMan.addDebugChannel(Bitmaps, "bitmaps", "");
DebugMan.addDebugChannel(Models, "models", "");
DebugMan.addDebugChannel(Actors, "actors", "");
DebugMan.addDebugChannel(Costumes, "costumes", "");
DebugMan.addDebugChannel(Chores, "chores", "");
DebugMan.addDebugChannel(Fonts, "fonts", "");
DebugMan.addDebugChannel(Keyframes, "keyframes", "");
DebugMan.addDebugChannel(Movie, "movie", "");
DebugMan.addDebugChannel(Sound, "sound", "");
DebugMan.addDebugChannel(Scripts, "scripts", "");
DebugMan.addDebugChannel(Sets, "sets", "");
DebugMan.addDebugChannel(TextObjects, "textobjects", "");
DebugMan.addDebugChannel(Patchr, "patchr", "");
DebugMan.addDebugChannel(Lipsync, "lipsync", "");
DebugMan.addDebugChannel(Sprites, "sprites", "");
}
bool Debug::isChannelEnabled(DebugChannel chan) {

View File

@ -24,6 +24,31 @@
#include "engines/grim/detection.h"
#include "common/translation.h"
#include "engines/grim/debug.h"
static const DebugChannelDef debugFlagList[] = {
{Grim::Debug::Info, "info", ""},
{Grim::Debug::Warning, "warning", ""},
{Grim::Debug::Error, "error", ""},
{Grim::Debug::Engine, "engine", ""},
{Grim::Debug::Lua, "lua", ""},
{Grim::Debug::Bitmaps, "bitmaps", ""},
{Grim::Debug::Models, "models", ""},
{Grim::Debug::Actors, "actors", ""},
{Grim::Debug::Costumes, "costumes", ""},
{Grim::Debug::Chores, "chores", ""},
{Grim::Debug::Fonts, "fonts", ""},
{Grim::Debug::Keyframes, "keyframes", ""},
{Grim::Debug::Movie, "movie", ""},
{Grim::Debug::Sound, "sound", ""},
{Grim::Debug::Scripts, "scripts", ""},
{Grim::Debug::Sets, "sets", ""},
{Grim::Debug::TextObjects, "textobjects", ""},
{Grim::Debug::Patchr, "patchr", ""},
{Grim::Debug::Lipsync, "lipsync", ""},
{Grim::Debug::Sprites, "sprites", ""},
DEBUG_CHANNEL_END
};
namespace Grim {
@ -598,6 +623,10 @@ public:
return "LucasArts GrimE Games (C) LucasArts";
}
const DebugChannelDef *getDebugChannels() const override {
return debugFlagList;
}
};
} // End of namespace Grim

View File

@ -186,8 +186,6 @@ GrimEngine::GrimEngine(OSystem *syst, uint32 gameFlags, GrimGameType gameType, C
SearchMan.addSubDirectoryMatching(gameDataDir, "credits");
SearchMan.addSubDirectoryMatching(gameDataDir, "widescreen");
Debug::registerDebugChannels();
//Remastered:
if (getGameFlags() & ADGF_REMASTERED) {