rulimine/stage2/menu.c

109 lines
3.1 KiB
C
Raw Normal View History

2020-06-05 21:27:52 +03:00
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
2020-08-29 21:02:16 +03:00
#include <limine.h>
2020-06-05 21:27:52 +03:00
#include <menu.h>
#include <lib/print.h>
#include <lib/blib.h>
#include <lib/libc.h>
#include <lib/config.h>
2020-09-02 10:55:56 +03:00
#include <lib/term.h>
2020-06-05 21:27:52 +03:00
static char *cmdline;
#define CMDLINE_MAX 1024
static char config_entry_name[1024];
char *menu(void) {
cmdline = balloc(CMDLINE_MAX);
char buf[16];
2020-09-19 16:43:59 +03:00
// If there is no TEXTMODE config key or the value is not "on", enable graphics
if (config_get_value(buf, 0, 16, "TEXTMODE") == NULL || strcmp(buf, "on")) {
term_vbe();
2020-06-05 21:27:52 +03:00
}
int timeout;
if (!config_get_value(buf, 0, 16, "TIMEOUT")) {
timeout = 5;
} else {
timeout = (int)strtoui(buf);
}
2020-09-02 10:55:56 +03:00
disable_cursor();
2020-06-05 21:27:52 +03:00
int selected_entry = 0;
bool skip_timeout = false;
refresh:
2020-09-02 10:55:56 +03:00
clear(true);
2020-08-29 21:02:16 +03:00
print("\n\n \e[36m Limine " LIMINE_VERSION " \e[37m\n\n\n");
2020-06-05 21:27:52 +03:00
print("Select an entry:\n\n");
int max_entries;
for (max_entries = 0; ; max_entries++) {
if (config_get_entry_name(config_entry_name, max_entries, 1024) == -1)
break;
if (max_entries == selected_entry)
print(" \e[47m\e[30m %s \e[40m\e[37m\n", config_entry_name);
else
print(" %s\n", config_entry_name);
}
if (max_entries == 0)
panic("Config contains no entries.");
print("\n");
if (skip_timeout == false) {
for (int i = timeout; i; i--) {
print("\rBooting automatically in %u, press any key to stop the countdown...", i);
if (pit_sleep_and_quit_on_keypress(18)) {
skip_timeout = true;
goto refresh;
}
}
goto autoboot;
}
print("Arrows to choose, enter to select, 'e' to edit command line.");
for (;;) {
int c = getchar();
switch (c) {
case GETCHAR_CURSOR_UP:
if (--selected_entry == -1)
selected_entry = max_entries - 1;
goto refresh;
case GETCHAR_CURSOR_DOWN:
if (++selected_entry == max_entries)
selected_entry = 0;
goto refresh;
case '\r':
autoboot:
config_set_entry(selected_entry);
2020-09-02 10:55:56 +03:00
enable_cursor();
2020-06-05 21:27:52 +03:00
if (!config_get_value(cmdline, 0, CMDLINE_MAX, "KERNEL_CMDLINE")) {
if (!config_get_value(cmdline, 0, CMDLINE_MAX, "CMDLINE")) {
cmdline[0] = '\0';
}
}
2020-09-02 10:55:56 +03:00
clear(true);
2020-06-05 21:27:52 +03:00
return cmdline;
case 'e':
config_set_entry(selected_entry);
2020-09-02 10:55:56 +03:00
enable_cursor();
2020-06-05 21:27:52 +03:00
if (!config_get_value(cmdline, 0, CMDLINE_MAX, "KERNEL_CMDLINE")) {
if (!config_get_value(cmdline, 0, CMDLINE_MAX, "CMDLINE")) {
cmdline[0] = '\0';
}
}
print("\n\n> ");
gets(cmdline, cmdline, CMDLINE_MAX);
2020-09-02 10:55:56 +03:00
clear(true);
2020-06-05 21:27:52 +03:00
return cmdline;
}
}
}