MORTEVIELLE: Add two debug functions required to check the English translation

This commit is contained in:
Strangerke 2013-02-21 07:57:31 +01:00
parent fab337c61c
commit a5e263cd05
2 changed files with 21 additions and 0 deletions

View File

@ -27,8 +27,25 @@ namespace Mortevielle {
Debugger::Debugger() : GUI::Debugger() {
DCmd_Register("continue", WRAP_METHOD(Debugger, Cmd_Exit));
DCmd_Register("show_questions", WRAP_METHOD(Debugger, Cmd_showAllQuestions));
DCmd_Register("reset_parano", WRAP_METHOD(Debugger, Cmd_resetParano));
}
bool Debugger::Cmd_showAllQuestions(int argc, const char **argv) {
for (int i = 1; i <= 10; ++i)
_vm->_coreVar._pctHintFound[i] = '*';
for (int i = 1; i <= 42; ++i)
_vm->_coreVar._availableQuestion[i] = '*';
return true;
}
bool Debugger::Cmd_resetParano(int argc, const char **argv) {
_vm->_coreVar._faithScore = 0;
return true;
}
void Debugger::setParent(MortevielleEngine *vm) {
_vm = vm;
}

View File

@ -34,6 +34,10 @@ class Debugger : public GUI::Debugger {
private:
MortevielleEngine *_vm;
protected:
bool Cmd_showAllQuestions(int argc, const char **argv);
bool Cmd_resetParano(int argc, const char **argv);
public:
Debugger();
virtual ~Debugger() {}