aboutsummaryrefslogtreecommitdiff
path: root/apps/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test.c')
-rw-r--r--apps/test.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/test.c b/apps/test.c
index 6585c33..c542ca1 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -3,6 +3,7 @@
#include <conv.h>
#include <def.h>
#include <gui.h>
+#include <input.h>
#include <print.h>
#include <str.h>
@@ -18,8 +19,39 @@ int main()
gui_init("/font/spleen-12x24.psfu");
char *hello = "Hello, world!";
gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, FG_COLOR, hello);
+ event_register(EVENT_KEYBOARD);
+ struct message *msg;
+ int char_x = 0;
+ int char_y = 1;
while (1) {
+ if (!(msg = msg_receive())) {
+ yield();
+ continue;
+ }
+ switch (msg->type) {
+ case EVENT_KEYBOARD: {
+ struct event_keyboard *event = msg->data;
+
+ if (event->magic != KEYBOARD_MAGIC)
+ break;
+
+ if (!event->press)
+ break;
+
+ int key = event->scancode;
+ if (key == KEY_ENTER) {
+ char_x = 0;
+ char_y++;
+ } else if (KEY_ALPHABETIC(key)) {
+ gui_write_char(win, 12 * char_x++, 24 * char_y + 5, FG_COLOR, 'a');
+ }
+
+ break;
+ }
+ default:
+ break;
+ }
yield();
}
return 0;