From 0de8165d440c549847a1c600558305b04a36a77e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 26 Jul 2020 13:34:29 +0200 Subject: Added basic gui writer --- src/features/gui.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/features/gui.c (limited to 'src/features/gui.c') diff --git a/src/features/gui.c b/src/features/gui.c new file mode 100644 index 0000000..ddf1c60 --- /dev/null +++ b/src/features/gui.c @@ -0,0 +1,44 @@ +// MIT License, Copyright (c) 2020 Marvin Borner +// Some GUI functions + +#include +#include +#include +#include +#include + +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]; + + u32 stride = font->char_size / font->height; + for (int cy = 0; cy < font->height; cy++) { + for (int cx = 0; cx < font->width; cx++) { + u8 bits = font->chars[ch * font->char_size + cy * stride + cx / 8]; + u8 bit = bits >> (7 - cx % 8) & 1; + if (bit) { + draw[vbe_bpl * cx] = c[2]; + draw[vbe_bpl * cx + 1] = c[1]; + draw[vbe_bpl * cx + 2] = c[0]; + } + } + draw += vbe_pitch; + } +} + +void gui_write(int x, int y, const u32 c[3], char *text) +{ + for (u32 i = 0; i < strlen(text); i++) { + gui_write_char(x + i * font->width, y, c, text[i]); + } +} + +void gui_init(char *font_path) +{ + font = psf_parse(read_file(font_path)); +} -- cgit v1.2.3