mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
CINE: Added basic debugging console to engine
Since CINE uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands. svn-id: r54115
This commit is contained in:
parent
f452fe82ad
commit
0119a659b5
@ -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() {
|
||||
|
@ -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<Common::String, const char *> 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;
|
||||
|
||||
|
43
engines/cine/console.cpp
Normal file
43
engines/cine/console.cpp
Normal file
@ -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
|
50
engines/cine/console.h
Normal file
50
engines/cine/console.h
Normal file
@ -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
|
@ -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;
|
||||
|
@ -4,6 +4,7 @@ MODULE_OBJS := \
|
||||
anim.o \
|
||||
bg.o \
|
||||
bg_list.o \
|
||||
console.o \
|
||||
cine.o \
|
||||
detection.o \
|
||||
gfx.o \
|
||||
|
Loading…
x
Reference in New Issue
Block a user