diff options
author | Marvin Borner | 2020-07-26 16:18:54 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-26 16:18:54 +0200 |
commit | 5860f8c0d690d430424a7b619558024691c71f69 (patch) | |
tree | bfc9dee83ff15da1a2eda39ad312709d22244226 /src/features/gui.c | |
parent | d8410862be2f00bf2ce321bc28b8322f2de944a9 (diff) |
Added simple keyboard input.
This is somewhat of a demo. The real gui will be implemented completely
different (ig)
Diffstat (limited to 'src/features/gui.c')
-rw-r--r-- | src/features/gui.c | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/src/features/gui.c b/src/features/gui.c index ddf1c60..fa0641c 100644 --- a/src/features/gui.c +++ b/src/features/gui.c @@ -11,8 +11,6 @@ struct font *font; void gui_write_char(int x, int y, const u32 c[3], char ch) { - /* const u32 c[3] = { 0xff, 0x00, 0x00 }; */ - int pos = x * vbe_bpl + y * vbe_pitch; char *draw = (char *)&fb[pos]; @@ -38,6 +36,32 @@ void gui_write(int x, int y, const u32 c[3], char *text) } } +// Abstraction +int x, y = 1; +const u32 c[3] = { 0xff, 0xff, 0xff }; +void gui_term_write_char(char ch) +{ + if (x + font->width > vbe_width) { + x = 0; + y += font->height; + } + + if (ch >= ' ' && ch <= '~') { + gui_write_char(x, y, c, ch); + x += font->width; + } else if (ch == '\n') { + x = 0; + y += font->height; + } +} + +void gui_term_write(char *text) +{ + for (u32 i = 0; i < strlen(text); i++) { + gui_term_write_char(text[i]); + } +} + void gui_init(char *font_path) { font = psf_parse(read_file(font_path)); |