mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
GLK: FROTZ: Added user options initialization from configuration
This commit is contained in:
parent
9fadd84b37
commit
ad95130e4f
@ -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;
|
||||
}
|
||||
|
||||
|
@ -38,6 +38,11 @@ public:
|
||||
*/
|
||||
Frotz(OSystem *syst, const GargoyleGameDescription *gameDesc);
|
||||
|
||||
/**
|
||||
* Initialization
|
||||
*/
|
||||
void initialize();
|
||||
|
||||
/**
|
||||
* Execute the game
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user