emu_status_msg("No mouse configured");\r
}\r
\r
- plat_grab_input(grab_mode);\r
+ plat_grab_cursor(grab_mode);\r
}\r
if (which & PEV_SWITCH_KBD)\r
{\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
+ plat_grab_cursor(grab_mode);\r
}\r
\r
pemu_loop_prep();\r
\r
pemu_loop_end();\r
emu_sound_stop();\r
- plat_grab_input(0);\r
+ plat_grab_cursor(0);\r
}\r
void plat_finish(void);
void plat_show_cursor(int on);
-void plat_grab_input(int on);
+int plat_grab_cursor(int on);
+int plat_has_wm(void);
/* used before things blocking for a while (these funcs redraw on return) */
void plat_status_msg_busy_first(const char *msg);
{ "Pico Next page ", PEV_PICO_PNEXT },
{ "Pico Storyware ", PEV_PICO_STORY },
{ "Pico Pad ", PEV_PICO_PAD },
- { "Capture Mouse ", PEV_GRAB_INPUT },
{ "Switch Keyboard", PEV_SWITCH_KBD },
+ { "Capture Mouse ", PEV_GRAB_INPUT },
{ NULL, 0 }
};
static int key_config_loop_wrap(int id, int keys)
{
+ int n;
+
switch (id) {
case MA_CTRL_PLAYER1:
key_config_loop(me_ctrl_actions, array_size(me_ctrl_actions) - 1, 0);
key_config_loop(me_ctrl_actions, array_size(me_ctrl_actions) - 1, 3);
break;
case MA_CTRL_EMU:
- key_config_loop(emuctrl_actions, array_size(emuctrl_actions) - 1, -1);
+ n = (plat_has_wm() ? 1 : 2);
+ key_config_loop(emuctrl_actions, array_size(emuctrl_actions) - n, -1);
break;
default:
break;
SDL_ShowCursor(on && !hide_cursor);
}
-void plat_grab_input(int on)
+int plat_grab_cursor(int on)
{
SDL_WM_GrabInput(on ? SDL_GRAB_ON : SDL_GRAB_OFF);
+ return on;
+}
+
+int plat_has_wm(void)
+{
+ return plat_sdl_is_windowed();
}
static void plat_sdl_resize(int w, int h)
{
}
+void plat_show_cursor(int on)
+{
+}
+
+int plat_grab_cursor(int on)
+{
+ return 0;
+}
+
+int plat_has_wm(void)
+{
+ return 0;
+}
+
void *plat_mem_get_for_drc(size_t size)
{
return NULL;
{ KEY_6, IN_BINDTYPE_EMU, PEVB_PICO_PNEXT },\r
{ KEY_7, IN_BINDTYPE_EMU, PEVB_PICO_STORY },\r
{ KEY_8, IN_BINDTYPE_EMU, PEVB_PICO_PAD },\r
- { KEY_9, IN_BINDTYPE_EMU, PEVB_PICO_PENST },\r
{ 0, 0, 0 }\r
};\r
\r
// emu_video_mode_change will call pnd_setup_layer()\r
}\r
\r
+void plat_show_cursor(int on)\r
+{\r
+}\r
+\r
+int plat_grab_cursor(int on)\r
+{\r
+ return 0;\r
+}\r
+\r
+int plat_has_wm(void)\r
+{\r
+ return 0;\r
+}\r
+\r
void pemu_loop_prep(void)\r
{\r
// dirty buffers better go now than during gameplay\r
vidResetMode();
}
+void plat_show_cursor(int on)
+{
+}
+
+int plat_grab_cursor(int on)
+{
+ return 0;
+}
+
+int plat_has_wm(void)
+{
+ return 0;
+}
+
/* prepare for entering the emulator loop */
void pemu_loop_prep(void)
{
plat_video_set_buffer(g_screen_ptr);
}
+void plat_show_cursor(int on)
+{
+}
+
+int plat_grab_cursor(int on)
+{
+ return 0;
+}
+
+int plat_has_wm(void)
+{
+ return 0;
+}
+
/* check arg at index x */
int plat_parse_arg(int argc, char *argv[], int *x)
{