TITANIC: move debug channels to metaEngineDetection

This commit is contained in:
ysj1173886760 2021-05-16 21:06:39 +08:00 committed by Eugene Sandulenko
parent bea68bb58c
commit 8905a28f89
2 changed files with 13 additions and 6 deletions

View File

@ -26,6 +26,15 @@
#include "engines/advancedDetector.h"
#include "titanic/detection.h"
#include "titanic/debugger.h"
static const DebugChannelDef debugFlagList[] = {
{Titanic::kDebugCore, "core", "Core engine debug level"},
{Titanic::kDebugScripts, "scripts", "Game scripts"},
{Titanic::kDebugGraphics, "graphics", "Graphics handling"},
{Titanic::kDebugStarfield, "starfield", "Starfield logic"},
DEBUG_CHANNEL_END
};
static const PlainGameDescriptor TitanicGames[] = {
{"titanic", "Starship Titanic"},
@ -51,6 +60,10 @@ public:
const char *getOriginalCopyright() const override {
return "Starship Titanic (C) The Digital Village";
}
const DebugChannelDef *getDebugChannels() const override {
return debugFlagList;
}
};
REGISTER_PLUGIN_STATIC(TITANIC_DETECTION, PLUGIN_TYPE_ENGINE_DETECTION, TitanicMetaEngineDetection);

View File

@ -69,12 +69,6 @@ TitanicEngine::TitanicEngine(OSystem *syst, const TitanicGameDescription *gameDe
_script = nullptr;
CMusicRoom::_musicHandler = nullptr;
_loadSaveSlot = -1;
// Set up debug channels
DebugMan.addDebugChannel(kDebugCore, "core", "Core engine debug level");
DebugMan.addDebugChannel(kDebugScripts, "scripts", "Game scripts");
DebugMan.addDebugChannel(kDebugGraphics, "graphics", "Graphics handling");
DebugMan.addDebugChannel(kDebugStarfield, "starfield", "Starfield logic");
}
TitanicEngine::~TitanicEngine() {