From 16873a1e1bfcccfb8c49c6b4e5dfff75d83f600d Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 31 Aug 2021 16:27:22 -0700 Subject: [PATCH] Finally fixed mouse input on GLFW Platforms --- platform/glfw/glwfwplatform.c | 6 ++++-- platform/glfw/glwfwplatform.h | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/platform/glfw/glwfwplatform.c b/platform/glfw/glwfwplatform.c index 49cefd24..c3367ece 100644 --- a/platform/glfw/glwfwplatform.c +++ b/platform/glfw/glwfwplatform.c @@ -73,6 +73,8 @@ int32_t main() { inputBind(input, INPUT_ACCEPT, (inputsource_t)GLFW_KEY_E); inputBind(input, INPUT_ACCEPT, (inputsource_t)GLFW_KEY_ENTER); inputBind(input, INPUT_ACCEPT, (inputsource_t)GLFW_KEY_SPACE); + inputBind(input, INPUT_MOUSE_X, GLFW_PLATFORM_INPUT_MOUSE_X); + inputBind(input, INPUT_MOUSE_Y, GLFW_PLATFORM_INPUT_MOUSE_Y); // Bind the fake inputs inputBind(input, INPUT_MOUSE_X, (inputsource_t)INPUT_MOUSE_X); @@ -132,6 +134,6 @@ void glfwOnError(int error, const char* description) { void glfwOnCursor(GLFWwindow *window, double x, double y) { input_t *input = &GAME_STATE->engine.input; - input->buffer[INPUT_MOUSE_X] = (float)x; - input->buffer[INPUT_MOUSE_Y] = (float)y; + input->buffer[GLFW_PLATFORM_INPUT_MOUSE_X] = (float)x; + input->buffer[GLFW_PLATFORM_INPUT_MOUSE_Y] = (float)y; } \ No newline at end of file diff --git a/platform/glfw/glwfwplatform.h b/platform/glfw/glwfwplatform.h index db80d6da..48f327ed 100644 --- a/platform/glfw/glwfwplatform.h +++ b/platform/glfw/glwfwplatform.h @@ -13,6 +13,9 @@ #define WINDOW_WIDTH_DEFAULT 1280 #define WINDOW_HEIGHT_DEFAULT WINDOW_WIDTH_DEFAULT/16*9 +#define GLFW_PLATFORM_INPUT_MOUSE_X (inputsource_t)512 +#define GLFW_PLATFORM_INPUT_MOUSE_Y (inputsource_t)513 + /** The current running game state. */ extern game_t *GAME_STATE;