aboutsummaryrefslogtreecommitdiff
path: root/src/features/gui.c
diff options
context:
space:
mode:
authorMarvin Borner2020-07-26 16:18:54 +0200
committerMarvin Borner2020-07-26 16:18:54 +0200
commit5860f8c0d690d430424a7b619558024691c71f69 (patch)
treebfc9dee83ff15da1a2eda39ad312709d22244226 /src/features/gui.c
parentd8410862be2f00bf2ce321bc28b8322f2de944a9 (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.c28
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));