mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "director/director.h"
|
|
#include "director/lingo/lingo.h"
|
|
#include "director/lingo/lingo-code.h"
|
|
#include "director/lingo/lingo-object.h"
|
|
#include "director/lingo/lingo-codegen.h"
|
|
#include "director/debugger.h"
|
|
|
|
namespace Director {
|
|
|
|
#define PROMPT "lingo"
|
|
|
|
Debugger *g_debugger;
|
|
|
|
Debugger::Debugger(): GUI::Debugger() {
|
|
g_debugger = this;
|
|
registerCmd("lingo", WRAP_METHOD(Debugger, cmd_lingo));
|
|
}
|
|
|
|
bool Debugger::cmd_lingo(int argc, const char **argv) {
|
|
if (argc == 2 && !strcmp(argv[1], "on")) {
|
|
registerDefaultCmd(WRAP_DEFAULTCOMMAND(Debugger, lingoCommandProcessor));
|
|
debugPrintf(PROMPT);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::lingoCommandProcessor(const char *inputOrig) {
|
|
if (!strcmp(inputOrig, "lingo off")) {
|
|
registerDefaultCmd(nullptr);
|
|
return true;
|
|
}
|
|
|
|
Common::String expr = Common::String(inputOrig);
|
|
// Compile the code to an anonymous function and call it
|
|
ScriptContext *sc = g_lingo->_compiler->compileAnonymous(expr);
|
|
Symbol sym = sc->_eventHandlers[kEventGeneric];
|
|
LC::call(sym, 0, false);
|
|
g_lingo->execute();
|
|
debugPrintf(PROMPT);
|
|
return true;
|
|
}
|
|
|
|
} // End of namespace Director
|