diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-03-12 17:29:26 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-03-12 23:22:51 -0800 |
commit | 7ff8ef94c05ae6386463b63f3ba25add52340d8b (patch) | |
tree | 585b67df6590acac86d287e42a6bffb0bf995639 /src/sdl_fb.c | |
parent | 009f16f93b2a055ec0e14751e6d779849f87ab04 (diff) |
til_settings: always describe relevant settings
The existing iterative *_setup() interface only described
settings not found, quietly accepting usable settings already
present in the til_settings_t.
This worked fine for the existing interactive text setup thing,
but it's especially problematic for providing a GUI setup
frontend.
This commit makes it so the *_setup() methods always describe
undescribed settings they recognize, leaving the setup frontend
loop calling into the *_setup() methods to both apply the
description validation if wanted and actually tie the description
to respective setting returned by the _setup() methods as being
related to the returned description.
A new helper called til_settings_get_and_describe_value() has
been introduced primarily for use of module setup methods to
simplify this nonsense, replacing the til_settings_get_value()
calls and surrounding logic, but retaining the til_setting_desc_t
definitions largely verbatim.
This also results in discarding of some ad-hoc
til_setting_desc_check() calls, now that there's a centralized
place where settings become "described" (setup_interactively in
the case of rototiller).
Now a GUI frontend (like glimmer) would just provide its own
setup_interactively() equivalent for constructing its widgets for
a given *_setup() method's chain of returned descs. Whereas in
the past this wasn't really feasible unless there was never going
to be pre-supplied settings.
I suspect the til_setting_desc_check() integration into
setup_interactively() needs more work, but I think this is good
enough for now and I'm out of spare time for the moment.
Diffstat (limited to 'src/sdl_fb.c')
-rw-r--r-- | src/sdl_fb.c | 74 |
1 files changed, 30 insertions, 44 deletions
diff --git a/src/sdl_fb.c b/src/sdl_fb.c index 4a2b562..1d4aa3a 100644 --- a/src/sdl_fb.c +++ b/src/sdl_fb.c @@ -26,61 +26,47 @@ struct sdl_fb_page_t { }; -static int sdl_fb_setup(const til_settings_t *settings, til_setting_desc_t **next_setting) +static int sdl_fb_setup(const til_settings_t *settings, const til_setting_t **res_setting, const til_setting_desc_t **res_desc) { - const char *fullscreen_values[] = { - "off", - "on", - NULL - }; - const til_setting_desc_t descs[] = { - { + const char *fullscreen_values[] = { + "off", + "on", + NULL + }; + const char *fullscreen; + int r; + + r = til_settings_get_and_describe_value(settings, + &(til_setting_desc_t){ .name = "SDL Fullscreen Mode", .key = "fullscreen", .regex = NULL, .preferred = fullscreen_values[0], .values = fullscreen_values, .annotations = NULL - }, { - .name = "SDL Window size", - .key = "size", - .regex = "[1-9][0-9]*[xX][1-9][0-9]*", - .preferred = "640x480", - .values = NULL, - .annotations = NULL }, - }; - const char *fullscreen; - int r; - - - fullscreen = til_settings_get_value(settings, "fullscreen"); - if (!fullscreen) { - r = til_setting_desc_clone(&descs[0], next_setting); - if (r < 0) - return r; - - return 1; - } - - r = til_setting_desc_check(&descs[0], fullscreen); - if (r < 0) + &fullscreen, + res_setting, + res_desc); + if (r) return r; if (!strcasecmp(fullscreen, "off")) { const char *size; - size = til_settings_get_value(settings, "size"); - if (!size) { - r = til_setting_desc_clone(&descs[1], next_setting); - if (r < 0) - return r; - - return 1; - } - - r = til_setting_desc_check(&descs[1], size); - if (r < 0) + r = til_settings_get_and_describe_value(settings, + &(til_setting_desc_t){ + .name = "SDL Window size", + .key = "size", + .regex = "[1-9][0-9]*[xX][1-9][0-9]*", + .preferred = "640x480", + .values = NULL, + .annotations = NULL + }, + &size, + res_setting, + res_desc); + if (r) return r; } @@ -113,11 +99,11 @@ static int sdl_fb_init(const til_settings_t *settings, void **res_context) assert(settings); assert(res_context); - fullscreen = til_settings_get_value(settings, "fullscreen"); + fullscreen = til_settings_get_value(settings, "fullscreen", NULL); if (!fullscreen) return -EINVAL; - size = til_settings_get_value(settings, "size"); + size = til_settings_get_value(settings, "size", NULL); if (!size && !strcasecmp(fullscreen, "off")) return -EINVAL; |