From 44be7e5ceb50ff1bfca64cd9c43423608105af0f Mon Sep 17 00:00:00 2001 From: kub Date: Thu, 27 Feb 2025 23:18:45 +0100 Subject: [PATCH] platform, improve mouse handling --- pico/pico.h | 1 + platform/common/emu.c | 83 +++++++++++++++++++++++++--------- platform/common/input_pico.h | 4 +- platform/common/inputmap_kbd.c | 2 +- platform/common/menu_pico.c | 4 +- platform/libpicofe | 2 +- platform/linux/emu.c | 3 +- 7 files changed, 69 insertions(+), 30 deletions(-) diff --git a/pico/pico.h b/pico/pico.h index 16cc6854..e9fc54f0 100644 --- a/pico/pico.h +++ b/pico/pico.h @@ -78,6 +78,7 @@ extern void *p32x_bios_g, *p32x_bios_m, *p32x_bios_s; #define POPT_EN_FM_DAC (1<<24) //x00 0000 #define POPT_EN_FM_FILTER (1<<25) #define POPT_EN_KBD (1<<26) +#define POPT_EN_MOUSE (1<<27) #define PAHW_MCD (1<<0) #define PAHW_32X (1<<1) diff --git a/platform/common/emu.c b/platform/common/emu.c index 618271e2..75735ea2 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -60,8 +60,10 @@ int pico_inp_mode; int flip_after_sync; int engineState = PGS_Menu; +int grab_mode; int kbd_mode; struct vkbd *vkbd; +int mouse_x, mouse_y; static int pico_page; static int pico_w, pico_h; @@ -1187,11 +1189,6 @@ void run_events_pico(unsigned int events) emu_status_msg("Input: Pen on Pad"); } } - if (events & PEV_PICO_PENST) { - PicoPicohw.pen_pos[0] ^= 0x8000; - PicoPicohw.pen_pos[1] ^= 0x8000; - emu_status_msg("Pen %s", PicoPicohw.pen_pos[0] & 0x8000 ? "Up" : "Down"); - } if ((currentConfig.EmuOpt & EOPT_PICO_PEN) && (PicoIn.pad[0]&0x20) && pico_inp_mode && pico_overlay) { @@ -1205,15 +1202,9 @@ void run_events_pico(unsigned int events) return; /* handle other input modes using the pen */ - if (currentConfig.input_dev0 == PICO_INPUT_MOUSE || - currentConfig.input_dev1 == PICO_INPUT_MOUSE) { + if (PicoIn.opt & POPT_EN_MOUSE) { pico_pen_x = PicoIn.mouse[0]; pico_pen_y = PicoIn.mouse[1]; - if ((pico_pad ^ PicoIn.pad[0]) & (1<