aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorThanasis Antoniou2019-12-11 14:09:35 +0200
committerThanasis Antoniou2019-12-11 14:10:04 +0200
commiteb0c4526fdff46f90d4b43ffd17fbdb221c48718 (patch)
tree9d3f2fd1e4d12d2d1d32567bedf2fe48ad8a1f61 /engines
parentf37f24e8c00dd5b02fcf2d8e832d4299a949be7c (diff)
downloadscummvm-rg350-eb0c4526fdff46f90d4b43ffd17fbdb221c48718.tar.gz
scummvm-rg350-eb0c4526fdff46f90d4b43ffd17fbdb221c48718.tar.bz2
scummvm-rg350-eb0c4526fdff46f90d4b43ffd17fbdb221c48718.zip
BLADERUNNER: Debugger get or set game difficulty
Diffstat (limited to 'engines')
-rw-r--r--engines/bladerunner/debugger.cpp54
-rw-r--r--engines/bladerunner/debugger.h2
2 files changed, 56 insertions, 0 deletions
diff --git a/engines/bladerunner/debugger.cpp b/engines/bladerunner/debugger.cpp
index d8ba06d8ed..566c4eb1dd 100644
--- a/engines/bladerunner/debugger.cpp
+++ b/engines/bladerunner/debugger.cpp
@@ -133,6 +133,7 @@ Debugger::Debugger(BladeRunnerEngine *vm) : GUI::Debugger() {
registerCmd("item", WRAP_METHOD(Debugger, cmdItem));
registerCmd("region", WRAP_METHOD(Debugger, cmdRegion));
registerCmd("click", WRAP_METHOD(Debugger, cmdClick));
+ registerCmd("difficulty", WRAP_METHOD(Debugger, cmdDifficulty));
#if BLADERUNNER_ORIGINAL_BUGS
#else
registerCmd("effect", WRAP_METHOD(Debugger, cmdEffect));
@@ -1780,6 +1781,59 @@ bool Debugger::cmdClick(int argc, const char **argv) {
return true;
}
+/**
+* Auxiliary function to get a descriptive string for a given difficulty value
+*/
+Common::String Debugger::getDifficultyDescription(int difficultyValue) {
+ Common::String difficultyStr;
+ switch (difficultyValue) {
+ default:
+ // fall through
+ case kGameDifficultyEasy:
+ difficultyStr = Common::String::format("Easy (%d)", kGameDifficultyEasy);
+ break;
+ case kGameDifficultyMedium:
+ difficultyStr = Common::String::format("Normal (%d)", kGameDifficultyMedium);
+ break;
+ case kGameDifficultyHard:
+ difficultyStr = Common::String::format("Hard (%d)", kGameDifficultyHard);
+ break;
+ }
+ return difficultyStr;
+}
+
+/**
+* Show or set current game's difficulty mode
+*/
+bool Debugger::cmdDifficulty(int argc, const char **argv) {
+ bool invalidSyntax = false;
+
+ if (argc == 1) {
+ debugPrintf("Current game difficulty is %s\n", getDifficultyDescription(_vm->_settings->getDifficulty()).c_str());
+ } else if (argc == 2) {
+ int difficultyID = atoi(argv[1]);
+ if (difficultyID < kGameDifficultyEasy || difficultyID > kGameDifficultyHard) {
+ debugPrintf("The difficulty value must be an integer within [0, 2]\n");
+ return true;
+ } else {
+ _vm->_settings->setDifficulty(difficultyID);
+ debugPrintf("Current game difficulty is set to %s\n", getDifficultyDescription(_vm->_settings->getDifficulty()).c_str());
+ }
+ } else {
+ invalidSyntax = true;
+ }
+
+ if (invalidSyntax) {
+ debugPrintf("Show or set current game's difficulty mode\n");
+ debugPrintf("Valid difficulty values: \n");
+ debugPrintf("0: Easy\n");
+ debugPrintf("1: Normal\n");
+ debugPrintf("2: Hard\n");
+ debugPrintf("Usage 1: %s\n", argv[0]);
+ debugPrintf("Usage 2: %s <difficulty>\n", argv[0]);
+ }
+ return true;
+}
#if BLADERUNNER_ORIGINAL_BUGS
#else
bool Debugger::cmdEffect(int argc, const char **argv) {
diff --git a/engines/bladerunner/debugger.h b/engines/bladerunner/debugger.h
index 359163d160..a7c0aa4edb 100644
--- a/engines/bladerunner/debugger.h
+++ b/engines/bladerunner/debugger.h
@@ -113,6 +113,7 @@ public:
bool cmdItem(int argc, const char **argv);
bool cmdRegion(int argc, const char **argv);
bool cmdClick(int argc, const char **argv);
+ bool cmdDifficulty(int argc, const char **argv);
#if BLADERUNNER_ORIGINAL_BUGS
#else
bool cmdEffect(int argc, const char **argv);
@@ -120,6 +121,7 @@ public:
bool cmdList(int argc, const char **argv);
bool cmdVk(int argc, const char **argv);
+ Common::String getDifficultyDescription(int difficultyValue);
void drawDebuggerOverlay();
void drawBBox(Vector3 start, Vector3 end, View *view, Graphics::Surface *surface, int color);