From 85a832653ab6e07805595ad4285f00b05c2d8048 Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Sat, 30 Nov 2024 04:30:44 -0600 Subject: [PATCH] Mouse position --- bootstrap/bloat-buster/bb_core.c | 4 ++++ bootstrap/include/std/graphics.h | 7 +++++++ bootstrap/std/graphics.c | 7 +++++++ 3 files changed, 18 insertions(+) diff --git a/bootstrap/bloat-buster/bb_core.c b/bootstrap/bloat-buster/bb_core.c index 071a6e9..cbfdee9 100644 --- a/bootstrap/bloat-buster/bb_core.c +++ b/bootstrap/bloat-buster/bb_core.c @@ -239,8 +239,12 @@ strlit("/usr/share/fonts/TTF/FiraSans-Regular.ttf") { graphics_poll_events(); + auto mouse_position = graphics_window_cursor_position_get(window); + print("Mouse position: ({f64}, {f64})\n", mouse_position.x, mouse_position.y); + auto frame_window_size = renderer_window_frame_begin(renderer, render_window); + window_command_begin(render_window); window_bind_pipeline(render_window, pipeline_index); diff --git a/bootstrap/include/std/graphics.h b/bootstrap/include/std/graphics.h index 1d85903..c406a7a 100644 --- a/bootstrap/include/std/graphics.h +++ b/bootstrap/include/std/graphics.h @@ -15,6 +15,12 @@ STRUCT(GraphicsWindowCreate) GraphicsWindowSize size; }; +STRUCT(GraphicsCursorPosition) +{ + f64 x; + f64 y; +}; + typedef struct GraphicsWindow GraphicsWindow; EXPORT void graphics_init(u8 should_use_x11); @@ -23,6 +29,7 @@ EXPORT u8 graphics_window_should_close(GraphicsWindow* window); EXPORT void graphics_poll_events(); EXPORT GraphicsWindowSize graphics_window_size_get(GraphicsWindow* window); EXPORT void graphics_window_consume_resize(GraphicsWindow* window); +EXPORT GraphicsCursorPosition graphics_window_cursor_position_get(GraphicsWindow* window); #ifdef __linux__ typedef unsigned long XID; diff --git a/bootstrap/std/graphics.c b/bootstrap/std/graphics.c index 88c2fdf..dd97e86 100644 --- a/bootstrap/std/graphics.c +++ b/bootstrap/std/graphics.c @@ -81,6 +81,13 @@ GraphicsWindowSize graphics_window_size_get(GraphicsWindow* window) return result; } +GraphicsCursorPosition graphics_window_cursor_position_get(GraphicsWindow* window) +{ + GraphicsCursorPosition result; + glfwGetCursorPos(window->handle, &result.x, &result.y); + return result; +} + #ifdef _WIN32 HANDLE graphics_win32_window_get(GraphicsWindow* window) {