mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
205 lines
6.1 KiB
C++
205 lines
6.1 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 "common/scummsys.h"
|
|
#include "common/util.h"
|
|
|
|
#include "queen/debug.h"
|
|
|
|
#include "queen/graphics.h"
|
|
#include "queen/logic.h"
|
|
#include "queen/queen.h"
|
|
#include "queen/resource.h"
|
|
#include "queen/sound.h"
|
|
|
|
namespace Queen {
|
|
|
|
Debugger::Debugger(QueenEngine *vm)
|
|
: _vm(vm), _flags(0) {
|
|
|
|
registerCmd("areas", WRAP_METHOD(Debugger, Cmd_Areas));
|
|
registerCmd("asm", WRAP_METHOD(Debugger, Cmd_Asm));
|
|
registerCmd("bob", WRAP_METHOD(Debugger, Cmd_Bob));
|
|
registerCmd("bobs", WRAP_METHOD(Debugger, Cmd_PrintBobs));
|
|
registerCmd("gs", WRAP_METHOD(Debugger, Cmd_GameState));
|
|
registerCmd("info", WRAP_METHOD(Debugger, Cmd_Info));
|
|
registerCmd("items", WRAP_METHOD(Debugger, Cmd_Items));
|
|
registerCmd("room", WRAP_METHOD(Debugger, Cmd_Room));
|
|
registerCmd("song", WRAP_METHOD(Debugger, Cmd_Song));
|
|
}
|
|
|
|
void Debugger::preEnter() {
|
|
GUI::Debugger::preEnter();
|
|
}
|
|
|
|
void Debugger::postEnter() {
|
|
GUI::Debugger::postEnter();
|
|
_vm->graphics()->setupMouseCursor();
|
|
}
|
|
|
|
static bool isNumeric(const char *arg) {
|
|
const char *str = arg;
|
|
bool retVal = true;
|
|
while (retVal && (*str != '\0')) {
|
|
retVal = Common::isDigit(*str++);
|
|
}
|
|
return retVal;
|
|
}
|
|
|
|
bool Debugger::Cmd_Asm(int argc, const char **argv) {
|
|
if (argc == 2 && isNumeric(argv[1])) {
|
|
uint16 sm = atoi(argv[1]);
|
|
_vm->logic()->executeSpecialMove(sm);
|
|
return false;
|
|
} else {
|
|
debugPrintf("Usage: %s smnum\n", argv[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Areas(int argc, const char **argv) {
|
|
_flags ^= DF_DRAW_AREAS;
|
|
debugPrintf("Room areas display %s\n", (_flags & DF_DRAW_AREAS) != 0 ? "on" : "off");
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Bob(int argc, const char **argv) {
|
|
if (argc >= 3 && isNumeric(argv[1])) {
|
|
int bobNum = atoi(argv[1]);
|
|
if (bobNum >= Graphics::MAX_BOBS_NUMBER) {
|
|
debugPrintf("Bob %d is out of range (range: 0 - %d)\n", bobNum, Graphics::MAX_BOBS_NUMBER);
|
|
} else {
|
|
int param = 0;
|
|
if (argc > 3 && isNumeric(argv[3])) {
|
|
param = atoi(argv[3]);
|
|
} else {
|
|
debugPrintf("Invalid parameter for bob command '%s'\n", argv[2]);
|
|
}
|
|
BobSlot *bob = _vm->graphics()->bob(bobNum);
|
|
if (!strcmp(argv[2], "toggle")) {
|
|
bob->active = !bob->active;
|
|
debugPrintf("bob[%d].active = %d\n", bobNum, bob->active);
|
|
} else if (!strcmp(argv[2], "x")) {
|
|
bob->x = param;
|
|
debugPrintf("bob[%d].x = %d\n", bobNum, bob->x);
|
|
} else if (!strcmp(argv[2], "y")) {
|
|
bob->y = param;
|
|
debugPrintf("bob[%d].y = %d\n", bobNum, bob->y);
|
|
} else if (!strcmp(argv[2], "frame")) {
|
|
bob->frameNum = param;
|
|
debugPrintf("bob[%d].frameNum = %d\n", bobNum, bob->frameNum);
|
|
} else if (!strcmp(argv[2], "speed")) {
|
|
bob->speed = param;
|
|
debugPrintf("bob[%d].speed = %d\n", bobNum, bob->speed);
|
|
} else {
|
|
debugPrintf("Unknown bob command '%s'\n", argv[2]);
|
|
}
|
|
}
|
|
} else {
|
|
debugPrintf("Usage: %s bobnum command parameter\n", argv[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_GameState(int argc, const char **argv) {
|
|
uint16 slot;
|
|
if ((argc == 2 || argc == 3) && isNumeric(argv[1])) {
|
|
slot = atoi(argv[1]);
|
|
debugPrintf("GAMESTATE[%d] ", slot);
|
|
debugPrintf("%s %d\n", (argc == 2) ? "is" : "was", _vm->logic()->gameState(slot));
|
|
|
|
if (argc == 3) {
|
|
if (isNumeric(argv[1])) {
|
|
_vm->logic()->gameState(slot, atoi(argv[2]));
|
|
debugPrintf("now %d\n", _vm->logic()->gameState(slot));
|
|
} else {
|
|
debugPrintf("Usage: %s slotnum <value>\n", argv[0]);
|
|
}
|
|
}
|
|
} else {
|
|
debugPrintf("Usage: %s slotnum <value>\n", argv[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Info(int argc, const char **argv) {
|
|
debugPrintf("Version: %s\n", _vm->resource()->getJASVersion());
|
|
debugPrintf("Audio compression: %d\n", _vm->resource()->getCompression());
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Items(int argc, const char **argv) {
|
|
int n = _vm->logic()->itemDataCount();
|
|
ItemData *item = _vm->logic()->itemData(1);
|
|
while (n--) {
|
|
item->name = ABS(item->name);
|
|
++item;
|
|
}
|
|
debugPrintf("Enabled all inventory items\n");
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_PrintBobs(int argc, const char**argv) {
|
|
int i;
|
|
BobSlot *bob = _vm->graphics()->bob(0);
|
|
debugPrintf("+------------------------------------+\n");
|
|
debugPrintf("|# | x| y|f|scl|frm|a|m|spd| ex| ey|\n");
|
|
debugPrintf("+--+---+---+-+---+---+-+-+---+---+---+\n");
|
|
for (i = 0; i < Graphics::MAX_BOBS_NUMBER; ++i, ++bob) {
|
|
if (bob->active) {
|
|
debugPrintf("|%2d|%3d|%3d|%1d|%3d|%3d|%1d|%1d|%3d|%3d|%3d|\n",
|
|
i, bob->x, bob->y, bob->xflip, bob->scale, bob->frameNum,
|
|
bob->animating, bob->moving, bob->speed, bob->endx, bob->endy);
|
|
}
|
|
}
|
|
debugPrintf("+--------------------------------+\n");
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Room(int argc, const char **argv) {
|
|
if (argc == 2 && isNumeric(argv[1])) {
|
|
uint16 roomNum = atoi(argv[1]);
|
|
_vm->logic()->joePos(0, 0);
|
|
_vm->logic()->newRoom(roomNum);
|
|
_vm->logic()->entryObj(_vm->logic()->roomData(roomNum) + 1);
|
|
return false;
|
|
} else {
|
|
debugPrintf("Current room: %d (%s), use '%s <roomnum>' to switch\n",
|
|
_vm->logic()->currentRoom(),
|
|
_vm->logic()->roomName(_vm->logic()->currentRoom()),
|
|
argv[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Debugger::Cmd_Song(int argc, const char **argv) {
|
|
if (argc == 2 && isNumeric(argv[1])) {
|
|
int16 songNum = atoi(argv[1]);
|
|
_vm->sound()->playSong(songNum);
|
|
debugPrintf("Playing song %d\n", songNum);
|
|
} else {
|
|
debugPrintf("Usage: %s songnum\n", argv[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // End of namespace Queen
|