GLK: FROTZ: Added user options initialization from configuration

This commit is contained in:
Paul Gilbert 2018-11-11 21:44:15 -08:00 committed by Paul Gilbert
parent 9fadd84b37
commit ad95130e4f
2 changed files with 43 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#include "gargoyle/frotz/frotz.h"
#include "gargoyle/frotz/frotz_types.h"
#include "common/config-manager.h"
namespace Gargoyle {
namespace Frotz {
@ -40,11 +41,48 @@ void Frotz::runGame(Common::SeekableReadStream *gameFile) {
// TODO
}
void Frotz::initialize() {
if (ConfMan.hasKey("attribute_assignment") && ConfMan.getBool("attribute_assignment"))
_attribute_assignment = true;
if (ConfMan.hasKey("attribute_testing") && ConfMan.getBool("attribute_testing"))
_attribute_testing = true;
if (ConfMan.hasKey("ignore_errors") && ConfMan.getBool("ignore_errors"))
_ignore_errors = true;
if (ConfMan.hasKey("object_movement") && ConfMan.getBool("object_movement"))
_object_movement = true;
if (ConfMan.hasKey("object_locating") && ConfMan.getBool("object_locating"))
_object_locating = true;
if (ConfMan.hasKey("piracy") && ConfMan.getBool("piracy"))
_piracy = true;
if (ConfMan.hasKey("save_quetzal") && ConfMan.getBool("save_quetzal"))
_save_quetzal = true;
if (ConfMan.hasKey("random_seed"))
_random.setSeed(ConfMan.getInt("random_seed"));
if (ConfMan.hasKey("script_cols"))
_script_cols = ConfMan.getInt("script_cols");
if (ConfMan.hasKey("tandy_bit") && ConfMan.getBool("tandy_bit"))
_user_tandy_bit = true;
if (ConfMan.hasKey("undo_slots"))
_undo_slots = ConfMan.getInt("undo_slots");
if (ConfMan.hasKey("expand_abbreviations") && ConfMan.getBool("expand_abbreviations"))
_expand_abbreviations = true;
if (ConfMan.hasKey("err_report_mode")) {
_err_report_mode = ConfMan.getInt("err_report_mode");
if ((_err_report_mode < ERR_REPORT_NEVER) || (_err_report_mode > ERR_REPORT_FATAL))
_err_report_mode = ERR_DEFAULT_REPORT_MODE;
}
// Call process initialization
Processor::initialize();
}
Common::Error Frotz::loadGameState(int slot) {
// TODO
return Common::kNoError;
}
Common::Error Frotz::saveGameState(int slot, const Common::String &desc) {
// TODO
return Common::kNoError;
}

View File

@ -38,6 +38,11 @@ public:
*/
Frotz(OSystem *syst, const GargoyleGameDescription *gameDesc);
/**
* Initialization
*/
void initialize();
/**
* Execute the game
*/