From 037f58e14bcb4ece9c1cf5b081305b449897e693 Mon Sep 17 00:00:00 2001 From: kub Date: Wed, 26 Feb 2025 00:29:20 +0100 Subject: [PATCH] core, add mouse support for Pico --- platform/common/emu.c | 61 ++++++++++++++++++++++++-------------- platform/common/emu.h | 3 ++ platform/common/plat_sdl.c | 15 ++++++++++ platform/linux/emu.c | 3 ++ 4 files changed, 60 insertions(+), 22 deletions(-) diff --git a/platform/common/emu.c b/platform/common/emu.c index 86b5429a..618271e2 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -66,6 +66,7 @@ struct vkbd *vkbd; static int pico_page; static int pico_w, pico_h; static u16 *pico_overlay; +static int pico_pad; static short __attribute__((aligned(4))) sndBuffer[2*54000/50]; @@ -1148,6 +1149,9 @@ void emu_pico_overlay(u16 *pd, int w, int h, int pitch) void run_events_pico(unsigned int events) { + // treat pad ports equal to support pad in one and mouse in the other + PicoIn.pad[0] |= PicoIn.pad[1]; + if (events & PEV_PICO_PPREV) { PicoPicohw.page--; if (PicoPicohw.page < 0) @@ -1200,12 +1204,23 @@ void run_events_pico(unsigned int events) if (pico_inp_mode == 0) return; - /* handle other input modes */ - if (PicoIn.pad[0] & 1) pico_pen_y--; - if (PicoIn.pad[0] & 2) pico_pen_y++; - if (PicoIn.pad[0] & 4) pico_pen_x--; - if (PicoIn.pad[0] & 8) pico_pen_x++; - PicoIn.pad[0] &= ~0x0f; // release UDLR + /* handle other input modes using the pen */ + if (currentConfig.input_dev0 == PICO_INPUT_MOUSE || + currentConfig.input_dev1 == PICO_INPUT_MOUSE) { + pico_pen_x = PicoIn.mouse[0]; + pico_pen_y = PicoIn.mouse[1]; + if ((pico_pad ^ PicoIn.pad[0]) & (1<