From: kub Date: Thu, 27 Feb 2025 22:18:45 +0000 (+0100) Subject: platform, improve mouse handling X-Git-Tag: v2.04~38 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44be7e5ceb50ff1bfca64cd9c43423608105af0f;p=picodrive.git platform, improve mouse handling --- 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<