From: kub Date: Tue, 25 Feb 2025 23:29:20 +0000 (+0100) Subject: core, add mouse support for Pico X-Git-Tag: v2.04~40 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=037f58e14bcb4ece9c1cf5b081305b449897e693;p=picodrive.git core, add mouse support for Pico --- 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<