aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/libc/inc/sys.h1
-rw-r--r--libs/libgui/gui.c71
-rw-r--r--libs/libgui/gui.h2
3 files changed, 58 insertions, 16 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h
index 5b2130c..8aae78b 100644
--- a/libs/libc/inc/sys.h
+++ b/libs/libc/inc/sys.h
@@ -48,6 +48,7 @@ enum dev_type {
// Device control declarations
#define DEVCTL_FB_GET 0
+#define DEVCTL_TIMER_SLEEP 0
#define DEVCTL_BUS_CONNECT_BUS 0
#define DEVCTL_BUS_CONNECT_CONN 1
#define DEVCTL_BUS_REGISTER 2
diff --git a/libs/libgui/gui.c b/libs/libgui/gui.c
index 2dae302..f768232 100644
--- a/libs/libgui/gui.c
+++ b/libs/libgui/gui.c
@@ -646,7 +646,6 @@ static void gui_handle_mouse(struct message_mouse *msg)
struct gui_widget widget = { 0 };
gui_widget_at(msg->id, msg->pos, &widget);
- printf("%d\n", widget.id);
struct gui_window *win = gui_window_by_id(msg->id);
vec2 offset = gui_widget_offset(win->main_widget, &widget);
@@ -690,6 +689,25 @@ static void gui_handle_exit(void)
* Main loop
*/
+static void gui_handle_message(void *msg)
+{
+ struct message_header *head = msg;
+ switch (head->type) {
+ case GUI_MOUSE:
+ gui_handle_mouse(msg);
+ break;
+ case GUI_PING_WINDOW:
+ gui_handle_ping_window(msg);
+ break;
+ case GUI_DESTROY_WINDOW:
+ gui_handle_destroy_window(msg);
+ break;
+ default:
+ // TODO: Fix random unknown msg types
+ gui_error(EINVAL);
+ }
+}
+
void gui_loop(void)
{
atexit(gui_handle_exit);
@@ -699,22 +717,43 @@ void gui_loop(void)
u8 msg[4096] = { 0 };
while (gui_connect_wm(), msg_receive(msg, 4096) > 0) {
- struct message_header *head = (void *)msg;
- switch (head->type) {
- case GUI_MOUSE:
- gui_handle_mouse((void *)msg);
- break;
- case GUI_PING_WINDOW:
- gui_handle_ping_window((void *)msg);
- break;
- case GUI_DESTROY_WINDOW:
- gui_handle_destroy_window((void *)msg);
- break;
- default:
- // TODO: Fix random unknown msg types
- gui_error(EINVAL);
- }
+ gui_handle_message(msg);
}
err(1, "Gui loop failed\n");
}
+
+void gui_time_loop(u32 time, void (*callback)(struct timer *time))
+{
+ atexit(gui_handle_exit);
+
+ if (!windows)
+ err(1, "Create some windows first\n");
+
+ u8 msg[4096] = { 0 };
+ struct timer timer = { 0 };
+ enum dev_type listeners[] = { DEV_TIMER, DEV_BUS, 0 };
+ dev_control(DEV_TIMER, DEVCTL_TIMER_SLEEP, 0);
+
+ while (1) {
+ gui_connect_wm();
+ res poll_ret = 0;
+ if ((poll_ret = dev_poll(listeners)) < 0)
+ panic("Poll/read error: %s\n", strerror(errno));
+
+ if (poll_ret == DEV_TIMER) {
+ if (dev_read(DEV_TIMER, &timer, 0, sizeof(timer)) > 0) {
+ callback(&timer);
+ continue;
+ }
+ } else if (poll_ret == DEV_BUS) {
+ if (msg_receive(msg, sizeof(msg)) > 0) {
+ gui_handle_message(msg);
+ dev_control(DEV_TIMER, DEVCTL_TIMER_SLEEP, time);
+ continue;
+ }
+ }
+
+ err(1, "Gui loop failed\n");
+ }
+}
diff --git a/libs/libgui/gui.h b/libs/libgui/gui.h
index 0a4427b..10d44d8 100644
--- a/libs/libgui/gui.h
+++ b/libs/libgui/gui.h
@@ -6,6 +6,7 @@
#include <def.h>
#include <errno.h>
#include <libgui/gfx.h>
+#include <sys.h>
#include <vec.h>
enum gui_listener {
@@ -87,5 +88,6 @@ void gui_widget_margin(u32 win_id, u32 widget_id, vec2 margin);
void gui_widget_layout(u32 win_id, u32 widget_id, enum gui_layout layout);
void gui_loop(void);
+void gui_time_loop(u32 time, void (*callback)(struct timer *time));
#endif