[common] option: add preset-only options that don't show up in help

This commit is contained in:
Quantum 2021-08-30 04:17:04 -04:00 committed by Geoffrey McRae
parent 8a2ae6860e
commit 44850f1699
2 changed files with 12 additions and 1 deletions

View File

@ -50,6 +50,7 @@ struct Option
char * name;
char * description;
const char shortopt;
bool preset;
enum OptionType type;
union

View File

@ -663,6 +663,8 @@ void option_print(void)
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);
if (!value)
{
@ -695,8 +697,10 @@ void option_print(void)
for(int i = 0; i < state.groups[g].count; ++i)
{
struct Option * o = state.groups[g].options[i];
char * value = stringlist_at(values, i);
if (o->preset)
continue;
char * value = stringlist_at(values, i);
len = alloc_sprintf(
&line,
"%s:%-*s | %c%c | %-*s | %s",
@ -718,6 +722,12 @@ void option_print(void)
stringlist_free(&values);
if (stringlist_count(lines) <= 1)
{
stringlist_free(&lines);
continue;
}
// print out the lines
for(int i = 0; i < stringlist_count(lines); ++i)
{