GBA Config: Support loading BIOS from config files

This commit is contained in:
Jeffrey Pfau 2014-11-02 01:31:12 -07:00
parent 3ed2993e8c
commit 5607a13039
2 changed files with 11 additions and 1 deletions

View File

@ -18,6 +18,15 @@ static const char* _lookupValue(const struct Configuration* config, const char*
return ConfigurationGetValue(config, 0, key);
}
static bool _lookupCharValue(const struct Configuration* config, const char* key, const char* port, char** out) {
const char* value = _lookupValue(config, key, port);
if (!value) {
return false;
}
*out = strdup(value);
return true;
}
static bool _lookupIntValue(const struct Configuration* config, const char* key, const char* port, int* out) {
const char* charValue = _lookupValue(config, key, port);
if (!charValue) {
@ -37,6 +46,7 @@ bool GBAConfigLoad(struct Configuration* config) {
}
void GBAConfigMapStartupOpts(const struct Configuration* config, const char* port, struct StartupOptions* opts) {
_lookupCharValue(config, "bios", port, &opts->bios);
_lookupIntValue(config, "logLevel", port, &opts->logLevel);
_lookupIntValue(config, "frameskip", port, &opts->frameskip);
_lookupIntValue(config, "rewindBufferCapacity", port, &opts->rewindBufferCapacity);

View File

@ -17,7 +17,6 @@ enum DebuggerType {
struct StartupOptions {
// Passed only
char* fname;
char* bios;
char* patch;
bool dirmode;
@ -25,6 +24,7 @@ struct StartupOptions {
bool debugAtStart;
// Configurable
char* bios;
int logLevel;
int frameskip;
int rewindBufferCapacity;