From e3b45a6c47868b3002dacbfdedef957b800f308e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 20 Sep 2020 21:25:24 +0200 Subject: Some Terminus thingies --- apps/window.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'apps/window.c') diff --git a/apps/window.c b/apps/window.c index 6c71fc6..b3746c6 100644 --- a/apps/window.c +++ b/apps/window.c @@ -21,9 +21,12 @@ int main() gui_fill(&win, COLOR_BG); /* gui_border(&win, COLOR_FG, 2); */ - gui_init("/font/spleen-12x24.psfu"); + gui_init("/font/ter-p18n.psf"); + int font_height = gui_font_height(); + int font_width = gui_font_width(); + char *hello = "Hello, world!"; - gui_write(&win, win.width / 2 - (strlen(hello) * 12) / 2, 5, COLOR_GREEN, hello); + gui_write(&win, win.width / 2 - (strlen(hello) * font_width) / 2, 5, COLOR_GREEN, hello); struct message *msg; int char_x = 0; @@ -50,15 +53,17 @@ int main() } else if (ch == '\b') { if (char_x > 0) { char_x--; - gui_draw_rectangle(&win, 12 * char_x, 24 * char_y + 5, - 12 * (char_x + 1) - 1, - 24 * (char_y + 1) + 4, COLOR_BG); + gui_draw_rectangle(&win, font_width * char_x, + font_height * char_y + 5, + font_width * (char_x + 1) - 1, + font_height * (char_y + 1) + 4, + COLOR_BG); } } else if (ch == ' ' && event->scancode == KEY_SPACE) { char_x++; } else if (ch != ' ' && ch != '\0') { - gui_write_char(&win, 12 * char_x++, 24 * char_y + 5, COLOR_CYAN, - ch); + gui_write_char(&win, font_width * char_x++, + font_height * char_y + 5, COLOR_CYAN, ch); } break; } -- cgit v1.2.3