scummvm/engines/pegasus/console.cpp

102 lines
2.9 KiB
C++
Raw Normal View History

2011-05-12 16:17:12 -04:00
/* 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.
2016-09-03 12:46:38 +02:00
*
2011-05-12 16:17:12 -04:00
* 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.
2016-09-03 12:46:38 +02:00
*
2011-05-12 16:17:12 -04:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2011-05-12 16:17:12 -04:00
*
*/
#include "pegasus/console.h"
#include "pegasus/interface.h"
2011-05-12 16:17:12 -04:00
#include "pegasus/pegasus.h"
#include "pegasus/neighborhood/neighborhood.h"
2011-05-12 16:17:12 -04:00
namespace Pegasus {
PegasusConsole::PegasusConsole(PegasusEngine *vm) : GUI::Debugger(), _vm(vm) {
registerCmd("die", WRAP_METHOD(PegasusConsole, Cmd_Die));
// These functions are non-demo specific
if (!_vm->isDemo())
registerCmd("jump", WRAP_METHOD(PegasusConsole, Cmd_Jump));
2011-05-12 16:17:12 -04:00
}
PegasusConsole::~PegasusConsole() {
}
2011-09-26 09:29:31 -04:00
bool PegasusConsole::Cmd_Die(int argc, const char **argv) {
if (argc == 1) {
debugPrintf("Usage: die <death reason>\n");
2011-09-26 09:29:31 -04:00
return true;
}
int reason = atoi(argv[1]);
bool invalidReason = (reason == 0 || reason > kPlayerWonGame);
if (!invalidReason && _vm->isDemo())
invalidReason = (reason != kDeathFallOffCliff) && (reason != kDeathEatenByDinosaur) &&
(reason != kDeathStranded) && (reason != kPlayerWonGame);
if (invalidReason) {
debugPrintf("Invalid death reason %d\n", reason);
2011-09-26 09:29:31 -04:00
return true;
}
_vm->die(atoi(argv[1]));
return false;
}
bool PegasusConsole::Cmd_Jump(int argc, const char **argv) {
if (!g_interface) {
// TODO
debugPrintf("Cannot jump without interface set up\n");
return true;
}
// TODO: Default room/direction for each neighborhood
if (argc < 4) {
debugPrintf("Usage: jump <neighborhood> <room> <direction>\n");
return true;
}
NeighborhoodID neighborhood = (NeighborhoodID)atoi(argv[1]);
RoomID room = (RoomID)atoi(argv[2]);
DirectionConstant direction = (DirectionConstant)atoi(argv[3]);
2011-10-11 19:45:36 -04:00
if ((neighborhood < kCaldoriaID || neighborhood > kNoradDeltaID || neighborhood == kFinalTSAID) &&
neighborhood != kNoradSubChaseID) {
debugPrintf("Invalid neighborhood %d", neighborhood);
return true;
}
// No real way to check room validity at this point
if (direction > kWest) {
debugPrintf("Invalid direction %d", direction);
return true;
}
// Here we go!
// TODO: Can't clear menu since the engine is paused
_vm->jumpToNewEnvironment(neighborhood, room, direction);
return false;
}
2011-05-12 16:17:12 -04:00
} // End of namespace Pegasus