diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp index 5c2119c1e4c..38a0eda13e5 100644 --- a/engines/cine/cine.cpp +++ b/engines/cine/cine.cpp @@ -56,6 +56,7 @@ CineEngine::CineEngine(OSystem *syst, const CINEGameDescription *gameDesc) : Eng DebugMan.addDebugChannel(kCineDebugScript, "Script", "Script debug level"); DebugMan.addDebugChannel(kCineDebugPart, "Part", "Part debug level"); DebugMan.addDebugChannel(kCineDebugSound, "Sound", "Sound debug level"); + _console = new CineConsole(this); // Setup mixer _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume")); @@ -74,7 +75,9 @@ CineEngine::~CineEngine() { if (getGameType() == Cine::GType_OS) { freeErrmessDat(); } + DebugMan.clearAllDebugChannels(); + delete _console; } Common::Error CineEngine::run() { diff --git a/engines/cine/cine.h b/engines/cine/cine.h index cab6b92a5d4..dd00d9b2063 100644 --- a/engines/cine/cine.h +++ b/engines/cine/cine.h @@ -49,6 +49,7 @@ #include "cine/anim.h" #include "cine/bg_list.h" #include "cine/various.h" +#include "cine/console.h" //#define DUMP_SCRIPTS @@ -99,6 +100,8 @@ struct SeqListElement; typedef Common::HashMap StringPtrHashMap; +class CineConsole; + class CineEngine : public Engine { protected: @@ -137,6 +140,8 @@ public: StringPtrHashMap _volumeEntriesMap; TextHandler _textHandler; + GUI::Debugger *getDebugger() { return _console; } + bool _restartRequested; private: @@ -151,6 +156,7 @@ private: void mainLoop(int bootScriptIdx); void readVolCnf(); + CineConsole *_console; bool _preLoad; int _timerDelayMultiplier; diff --git a/engines/cine/console.cpp b/engines/cine/console.cpp new file mode 100644 index 00000000000..87633a26449 --- /dev/null +++ b/engines/cine/console.cpp @@ -0,0 +1,43 @@ +/* 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 "cine/console.h" +#include "cine/cine.h" + +namespace Cine { + +CineConsole::CineConsole(CineEngine *vm) : GUI::Debugger(), _vm(vm) { +} + +CineConsole::~CineConsole() { +} + +void CineConsole::preEnter() { +} + +void CineConsole::postEnter() { +} + +} // End of namespace Cine diff --git a/engines/cine/console.h b/engines/cine/console.h new file mode 100644 index 00000000000..256ec16ce6b --- /dev/null +++ b/engines/cine/console.h @@ -0,0 +1,50 @@ +/* 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$ + * + */ + +#ifndef CINE_CONSOLE_H +#define CINE_CONSOLE_H + +#include "gui/debugger.h" + +namespace Cine { + +class CineEngine; + +class CineConsole : public GUI::Debugger { +public: + CineConsole(CineEngine *vm); + virtual ~CineConsole(void); + +protected: + virtual void preEnter(); + virtual void postEnter(); + +private: + CineEngine *_vm; +}; + +} // End of namespace Cine + +#endif diff --git a/engines/cine/main_loop.cpp b/engines/cine/main_loop.cpp index 3d280c20ef5..644744d3ed5 100644 --- a/engines/cine/main_loop.cpp +++ b/engines/cine/main_loop.cpp @@ -161,6 +161,12 @@ static void processEvent(Common::Event &event) { case Common::KEYCODE_KP3: moveUsingKeyboard(+1, -1); // Down & Right break; + case Common::KEYCODE_d: + if (event.kbd.hasFlags(Common::KBD_CTRL)) { + g_cine->getDebugger()->attach(); + g_cine->getDebugger()->onFrame(); + } + // No Break to allow fallthrough to process 'd' without CTRL default: lastKeyStroke = event.kbd.keycode; break; diff --git a/engines/cine/module.mk b/engines/cine/module.mk index 2260524dcb1..6e77449c599 100644 --- a/engines/cine/module.mk +++ b/engines/cine/module.mk @@ -4,6 +4,7 @@ MODULE_OBJS := \ anim.o \ bg.o \ bg_list.o \ + console.o \ cine.o \ detection.o \ gfx.o \