mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 23:07:18 +00:00
[common] option: change option_dump to option_dump_preset
This new function dumps all options marked as preset instead of dumping individual sections. This should allow filter options to not be all grouped into the [eglFilter] section.
This commit is contained in:
parent
3345ff8448
commit
39e42ba735
@ -194,7 +194,7 @@ static bool savePreset(struct EGL_PostProcess * this, const char * name)
|
|||||||
free(path);
|
free(path);
|
||||||
|
|
||||||
DEBUG_INFO("Saving preset: %s", name);
|
DEBUG_INFO("Saving preset: %s", name);
|
||||||
option_dump(file, "eglFilter");
|
option_dump_preset(file);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -102,8 +102,8 @@ bool option_validate(void);
|
|||||||
// print out the options, help, and their current values
|
// print out the options, help, and their current values
|
||||||
void option_print(void);
|
void option_print(void);
|
||||||
|
|
||||||
// dump the options in ini format into the file
|
// dump preset options in ini format into the file
|
||||||
bool option_dump(FILE * file, const char * module);
|
bool option_dump_preset(FILE * file);
|
||||||
|
|
||||||
// final cleanup
|
// final cleanup
|
||||||
void option_free(void);
|
void option_free(void);
|
||||||
|
@ -758,21 +758,31 @@ void option_print(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// dump the options in ini format into the file
|
// dump the options in ini format into the file
|
||||||
bool option_dump(FILE * file, const char * module)
|
bool option_dump_preset(FILE * file)
|
||||||
{
|
{
|
||||||
fprintf(file, "[%s]\n", module);
|
for (int g = 0; g < state.gCount; ++g)
|
||||||
|
|
||||||
for (int i = 0; i < state.oCount; ++i)
|
|
||||||
{
|
{
|
||||||
struct Option * o = state.options[i];
|
bool hasPreset = false;
|
||||||
if (strcasecmp(o->module, module) != 0)
|
for (int i = 0; i < state.groups[g].count; ++i)
|
||||||
|
hasPreset |= state.groups[g].options[i]->preset;
|
||||||
|
if (!hasPreset)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
fprintf(file, "[%s]\n", state.groups[g].module);
|
||||||
|
|
||||||
|
for (int i = 0; i < state.groups[g].count; ++i)
|
||||||
|
{
|
||||||
|
struct Option * o = state.groups[g].options[i];
|
||||||
|
if (!o->preset)
|
||||||
|
continue;
|
||||||
|
|
||||||
char * value = o->toString(o);
|
char * value = o->toString(o);
|
||||||
fprintf(file, "%s=%s\n", o->name, value);
|
fprintf(file, "%s=%s\n", o->name, value);
|
||||||
free(value);
|
free(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
fputc('\n', file);
|
fputc('\n', file);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user