int flip_after_sync;\r
int engineState = PGS_Menu;\r
\r
+int grab_mode;\r
int kbd_mode;\r
struct vkbd *vkbd;\r
+int mouse_x, mouse_y;\r
\r
static int pico_page;\r
static int pico_w, pico_h;\r
emu_status_msg("Input: Pen on Pad");\r
}\r
}\r
- if (events & PEV_PICO_PENST) {\r
- PicoPicohw.pen_pos[0] ^= 0x8000;\r
- PicoPicohw.pen_pos[1] ^= 0x8000;\r
- emu_status_msg("Pen %s", PicoPicohw.pen_pos[0] & 0x8000 ? "Up" : "Down");\r
- }\r
\r
if ((currentConfig.EmuOpt & EOPT_PICO_PEN) &&\r
(PicoIn.pad[0]&0x20) && pico_inp_mode && pico_overlay) {\r
return;\r
\r
/* handle other input modes using the pen */\r
- if (currentConfig.input_dev0 == PICO_INPUT_MOUSE ||\r
- currentConfig.input_dev1 == PICO_INPUT_MOUSE) {\r
+ if (PicoIn.opt & POPT_EN_MOUSE) {\r
pico_pen_x = PicoIn.mouse[0];\r
pico_pen_y = PicoIn.mouse[1];\r
- if ((pico_pad ^ PicoIn.pad[0]) & (1<<GBTN_START) & ~pico_pad) {\r
- PicoPicohw.pen_pos[0] ^= 0x8000;\r
- PicoPicohw.pen_pos[1] ^= 0x8000;\r
- }\r
- pico_pad = PicoIn.pad[0];\r
} else {\r
if (PicoIn.pad[0] & 1) pico_pen_y--;\r
if (PicoIn.pad[0] & 2) pico_pen_y++;\r
PicoIn.pad[0] &= ~0x0f; // release UDLR\r
}\r
\r
+ if ((pico_pad ^ PicoIn.pad[0]) & PicoIn.pad[0] & (1<<GBTN_START)) {\r
+ PicoPicohw.pen_pos[0] ^= 0x8000;\r
+ PicoPicohw.pen_pos[1] ^= 0x8000;\r
+ emu_status_msg("Pen %s", PicoPicohw.pen_pos[0] & 0x8000 ? "Up" : "Down");\r
+ }\r
+ pico_pad = PicoIn.pad[0];\r
+\r
/* cursor position, cursor drawing must not cross screen borders */\r
if (pico_pen_y < PICO_PEN_ADJUST_Y)\r
pico_pen_y = PICO_PEN_ADJUST_Y;\r
{\r
plat_video_toggle_renderer(1, 0);\r
}\r
+ if (which & PEV_GRAB_INPUT)\r
+ {\r
+ if (PicoIn.opt & POPT_EN_MOUSE) {\r
+ grab_mode = !grab_mode;\r
+ in_update_analog(0, 2, &mouse_x);\r
+ in_update_analog(0, 3, &mouse_y);\r
+ in_update_analog(0, 0, &mouse_x);\r
+ in_update_analog(0, 1, &mouse_y);\r
+ emu_status_msg("Mouse capture %s", grab_mode ? "on" : "off");\r
+ } else {\r
+ grab_mode = 0;\r
+ emu_status_msg("No mouse configured");\r
+ }\r
+\r
+ plat_grab_input(grab_mode);\r
+ }\r
if (which & PEV_SWITCH_KBD)\r
{\r
if (! (PicoIn.opt & POPT_EN_KBD)) {\r
events = actions[IN_BINDTYPE_EMU] & PEV_MASK;\r
\r
// update mouse coordinates if there is an emulated mouse\r
- if (currentConfig.input_dev0 == PICO_INPUT_MOUSE ||\r
- currentConfig.input_dev1 == PICO_INPUT_MOUSE) {\r
- in_update_analog(0, 0, &PicoIn.mouse[0]);\r
- in_update_analog(0, 1, &PicoIn.mouse[1]);\r
- // scale mouse coordinates from -1024..1024 to 0..screen_w/h\r
- PicoIn.mouse[0] = (PicoIn.mouse[0]+1024) * g_screen_width /2048;\r
- PicoIn.mouse[1] = (PicoIn.mouse[1]+1024) * g_screen_height/2048;\r
+ if (PicoIn.opt & POPT_EN_MOUSE) {\r
+ if (!grab_mode) {\r
+ in_update_analog(0, 0, &PicoIn.mouse[0]);\r
+ in_update_analog(0, 1, &PicoIn.mouse[1]);\r
+ // scale mouse coordinates from -1024..1024 to 0..screen_w/h\r
+ PicoIn.mouse[0] = (PicoIn.mouse[0]+1024) * g_screen_width /2048;\r
+ PicoIn.mouse[1] = (PicoIn.mouse[1]+1024) * g_screen_height/2048;\r
+ } else {\r
+ int xrel, yrel;\r
+ in_update_analog(0, 2, &xrel);\r
+ in_update_analog(0, 3, &yrel);\r
+ mouse_x += xrel, mouse_y += yrel;\r
+ // scale mouse coordinates from -1024..1024 to 0..screen_w/h\r
+ PicoIn.mouse[0] = (mouse_x+1024) * g_screen_width /2048;\r
+ PicoIn.mouse[1] = (mouse_y+1024) * g_screen_height/2048;\r
+ }\r
\r
in_update_analog(0, -1, &i); // get mouse buttons, bit 2-0 = RML\r
- if (i & 1) buttons |= 1<<GBTN_B;\r
- if (i & 4) buttons |= 1<<GBTN_C;\r
- if (i & 2) buttons |= 1<<GBTN_START;\r
+ if (PicoIn.AHW & PAHW_PICO) {\r
+ // TODO is maintaining 2 different mappings necessary?\r
+ if (i & 1) buttons |= 1<<GBTN_C; // pen button\r
+ if (i & 2) buttons |= 1<<GBTN_B; // red button\r
+ if (i & 4) buttons |= 1<<GBTN_START; // pen up/down\r
+ } else {\r
+ if (i & 1) buttons |= 1<<GBTN_B; // as Sega Mouse\r
+ if (i & 2) buttons |= 1<<GBTN_START;\r
+ if (i & 4) buttons |= 1<<GBTN_C;\r
+ }\r
+\r
if (currentConfig.input_dev0 == PICO_INPUT_MOUSE)\r
pl_actions[0] |= buttons;\r
if (currentConfig.input_dev1 == PICO_INPUT_MOUSE)\r
if (((PicoIn.AHW & PAHW_PICO) || (PicoIn.AHW & PAHW_SC)) && currentConfig.keyboard)\r
PicoIn.opt |= POPT_EN_KBD;\r
\r
+ PicoIn.opt &= ~POPT_EN_MOUSE;\r
+ if (!(PicoIn.AHW & PAHW_8BIT) && (currentConfig.input_dev0 == PICO_INPUT_MOUSE ||\r
+ currentConfig.input_dev1 == PICO_INPUT_MOUSE)) {\r
+ PicoIn.opt |= POPT_EN_MOUSE;\r
+ plat_grab_input(grab_mode);\r
+ }\r
+\r
pemu_loop_prep();\r
}\r
\r
\r
pemu_loop_end();\r
emu_sound_stop();\r
+ plat_grab_input(0);\r
}\r