aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.cpp
diff options
context:
space:
mode:
authorJames Brown2002-12-20 13:50:24 +0000
committerJames Brown2002-12-20 13:50:24 +0000
commit4e373ef467187a66edccc05daadeb0e83a09f0e7 (patch)
treed4dea4a0edfb45a22c663264d431023263ea5e20 /scumm/debugger.cpp
parent799da2baeff6dc35990bfbf85fa4531c1b3bc8ed (diff)
downloadscummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.tar.gz
scummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.tar.bz2
scummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.zip
Add room command to debugger
svn-id: r6029
Diffstat (limited to 'scumm/debugger.cpp')
-rw-r--r--scumm/debugger.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index bbb927b616..7c50c9a659 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -53,6 +53,7 @@ void ScummDebugger::attach(Scumm *s)
if (_dcmd_count < 1) { // We need to register our commands
DCmd_Register("exit", &ScummDebugger::Cmd_Exit);
DCmd_Register("quit", &ScummDebugger::Cmd_Exit);
+ DCmd_Register("room", &ScummDebugger::Cmd_Room);
}
}
@@ -160,7 +161,7 @@ bool ScummDebugger::RunCommand(char *input) {
DebugProc cmd;
cmd = _dcmds[i].function;
- return (this->*cmd)();
+ return (this->*cmd)(parm);
}
}
@@ -245,7 +246,16 @@ bool ScummDebugger::RunCommand(char *input) {
}
// Commands
-bool ScummDebugger::Cmd_Exit() {
+bool ScummDebugger::Cmd_Exit(char _parameter[255][255]) {
_detach_now = true;
return false;
}
+
+bool ScummDebugger::Cmd_Room(char _parameter[255][255]) {
+ int room = atoi(_parameter[1]);
+ _s->_actors[_s->_vars[_s->VAR_EGO]].room = room;
+ _s->startScene(room, 0, 0);
+ _s->_fullRedraw = 1;
+
+ return true;
+}