RetroArch/input/drivers/cocoa_input.c

426 lines
11 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2014-01-01 00:50:59 +00:00
* Copyright (C) 2013-2014 - Jason Fetters
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <unistd.h>
2013-06-22 17:09:38 +00:00
2016-09-11 11:21:56 +00:00
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#include "../input_config.h"
#include "../input_driver.h"
#include "../input_joypad_driver.h"
2015-01-12 05:16:52 +00:00
#include "../input_keymaps.h"
2015-04-19 15:59:45 +00:00
#include "cocoa_input.h"
2016-12-07 07:10:02 +00:00
#include "../../gfx/video_driver.h"
2015-01-12 05:16:52 +00:00
#include "../../driver.h"
2015-11-29 14:52:37 +00:00
#include "../drivers_keyboard/keyboard_event_apple.h"
2016-01-15 21:22:37 +00:00
/* Forward declarations */
2016-02-26 12:40:29 +00:00
float get_backing_scale_factor(void);
2016-01-15 21:22:37 +00:00
int32_t cocoa_input_find_any_key(void)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)input_driver_get_data();
if (!apple)
return 0;
2014-10-04 14:34:52 +00:00
if (apple->joypad)
apple->joypad->poll();
2015-11-16 01:39:38 +00:00
2015-11-16 02:57:52 +00:00
if (apple->sec_joypad)
apple->sec_joypad->poll();
2015-11-29 14:46:01 +00:00
return apple_keyboard_find_any_key();
}
2015-09-16 01:40:16 +00:00
static int cocoa_input_find_any_button_ret(cocoa_input_data_t *apple,
unsigned buttons, unsigned port)
2015-09-16 01:29:38 +00:00
{
unsigned i;
if (buttons)
for (i = 0; i < 32; i++)
if (buttons & (1 << i))
return i;
return -1;
}
int32_t cocoa_input_find_any_button(uint32_t port)
{
2015-11-16 05:46:29 +00:00
int ret = -1;
cocoa_input_data_t *apple = (cocoa_input_data_t*)input_driver_get_data();
2014-09-30 14:34:40 +00:00
if (!apple)
return -1;
2014-10-04 14:34:52 +00:00
if (apple->joypad)
2015-11-16 05:46:29 +00:00
{
2014-10-04 14:34:52 +00:00
apple->joypad->poll();
2015-11-16 05:46:29 +00:00
if (apple->joypad->get_buttons)
ret = cocoa_input_find_any_button_ret(apple, (unsigned)apple->joypad->get_buttons(port), port);
2015-11-16 05:46:29 +00:00
}
2015-09-16 01:29:38 +00:00
if (ret != -1)
return ret;
2015-11-16 05:46:29 +00:00
if (apple->sec_joypad)
{
2015-11-16 05:46:29 +00:00
apple->sec_joypad->poll();
2015-11-16 05:46:29 +00:00
if (apple->sec_joypad->get_buttons)
{
apple->sec_joypad->poll();
ret = cocoa_input_find_any_button_ret(apple, (unsigned)apple->sec_joypad->get_buttons(port), port);
2015-11-16 05:46:29 +00:00
}
}
2015-11-16 05:46:29 +00:00
if (ret != -1)
return ret;
return -1;
}
int32_t cocoa_input_find_any_axis(uint32_t port)
{
int i;
cocoa_input_data_t *apple = (cocoa_input_data_t*)input_driver_get_data();
2014-10-04 14:34:52 +00:00
if (apple && apple->joypad)
apple->joypad->poll();
2015-11-16 01:39:38 +00:00
2015-11-16 02:57:52 +00:00
if (apple && apple->sec_joypad)
apple->sec_joypad->poll();
for (i = 0; i < 6; i++)
{
int16_t value = apple->joypad ? apple->joypad->axis(port, i) : 0;
if (abs(value) > 0x4000)
return (value < 0) ? -(i + 1) : i + 1;
value = apple->sec_joypad ? apple->sec_joypad->axis(port, i) : value;
if (abs(value) > 0x4000)
return (value < 0) ? -(i + 1) : i + 1;
}
return 0;
}
static void *cocoa_input_init(const char *joypad_driver)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)calloc(1, sizeof(*apple));
if (!apple)
return NULL;
input_keymaps_init_keyboard_lut(rarch_key_map_apple_hid);
apple->joypad = input_joypad_init_driver(joypad_driver, apple);
2015-11-16 01:39:38 +00:00
#ifdef HAVE_MFI
2015-11-16 02:57:52 +00:00
apple->sec_joypad = input_joypad_init_driver("mfi", apple);
2015-11-16 01:39:38 +00:00
#endif
return apple;
}
static void cocoa_input_poll(void *data)
{
uint32_t i;
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
2016-01-15 22:15:49 +00:00
#ifndef IOS
2016-01-15 21:22:37 +00:00
float backing_scale_factor = get_backing_scale_factor();
2016-01-15 22:15:49 +00:00
#endif
if (!apple)
return;
for (i = 0; i < apple->touch_count; i++)
{
struct video_viewport vp = {0};
2016-01-15 21:33:25 +00:00
#ifndef IOS
apple->touches[i].screen_x *= backing_scale_factor;
apple->touches[i].screen_y *= backing_scale_factor;
2016-01-15 21:33:25 +00:00
#endif
video_driver_translate_coord_viewport_wrap(
&vp,
2015-02-11 01:16:33 +00:00
apple->touches[i].screen_x,
apple->touches[i].screen_y,
&apple->touches[i].fixed_x,
&apple->touches[i].fixed_y,
&apple->touches[i].full_x,
&apple->touches[i].full_y);
}
if (apple->joypad)
apple->joypad->poll();
2015-11-16 02:57:52 +00:00
if (apple->sec_joypad)
apple->sec_joypad->poll();
apple->mouse_x_last = apple->mouse_rel_x;
apple->mouse_y_last = apple->mouse_rel_y;
}
static int16_t cocoa_mouse_state(cocoa_input_data_t *apple,
2014-09-30 14:34:40 +00:00
unsigned id)
{
switch (id)
{
case RETRO_DEVICE_ID_MOUSE_X:
return apple->mouse_rel_x - apple->mouse_x_last;
2014-09-30 14:34:40 +00:00
case RETRO_DEVICE_ID_MOUSE_Y:
return apple->mouse_rel_y - apple->mouse_y_last;
2014-09-30 14:34:40 +00:00
case RETRO_DEVICE_ID_MOUSE_LEFT:
return apple->mouse_buttons & 1;
case RETRO_DEVICE_ID_MOUSE_RIGHT:
return apple->mouse_buttons & 2;
2015-03-10 23:35:26 +00:00
case RETRO_DEVICE_ID_MOUSE_WHEELUP:
return apple->mouse_wu;
case RETRO_DEVICE_ID_MOUSE_WHEELDOWN:
return apple->mouse_wd;
2016-10-05 00:00:11 +00:00
case RETRO_DEVICE_ID_MOUSE_HORIZ_WHEELUP:
return apple->mouse_wl;
case RETRO_DEVICE_ID_MOUSE_HORIZ_WHEELDOWN:
return apple->mouse_wr;
2014-09-30 14:34:40 +00:00
}
return 0;
}
static int16_t cocoa_mouse_state_screen(cocoa_input_data_t *apple,
unsigned id)
{
2016-01-15 21:33:25 +00:00
int16_t val;
#ifndef IOS
float backing_scale_factor = get_backing_scale_factor();
2016-01-15 21:33:25 +00:00
#endif
switch (id)
{
case RETRO_DEVICE_ID_MOUSE_X:
2016-01-15 21:33:25 +00:00
val = apple->window_pos_x;
break;
case RETRO_DEVICE_ID_MOUSE_Y:
2016-01-15 21:33:25 +00:00
val = apple->window_pos_y;
break;
2016-01-15 21:33:25 +00:00
default:
return cocoa_mouse_state(apple, id);
}
2016-01-15 21:33:25 +00:00
#ifndef IOS
val *= backing_scale_factor;
#endif
return val;
}
static int16_t cocoa_pointer_state(cocoa_input_data_t *apple,
2014-10-20 18:31:00 +00:00
unsigned device, unsigned idx, unsigned id)
2014-09-30 14:34:40 +00:00
{
2014-09-30 14:35:49 +00:00
const bool want_full = (device == RARCH_DEVICE_POINTER_SCREEN);
2014-09-30 14:34:40 +00:00
2014-10-20 18:31:00 +00:00
if (idx < apple->touch_count && (idx < MAX_TOUCHES))
2014-09-30 14:34:40 +00:00
{
int16_t x, y;
const cocoa_touch_data_t *touch = (const cocoa_touch_data_t *)
2014-10-20 18:31:00 +00:00
&apple->touches[idx];
if (!touch)
return 0;
x = touch->fixed_x;
y = touch->fixed_y;
2015-02-11 01:16:33 +00:00
if (want_full)
{
x = touch->full_x;
y = touch->full_y;
}
2014-09-30 14:34:40 +00:00
switch (id)
{
case RETRO_DEVICE_ID_POINTER_PRESSED:
return (x != -0x8000) && (y != -0x8000);
case RETRO_DEVICE_ID_POINTER_X:
return x;
case RETRO_DEVICE_ID_POINTER_Y:
return y;
}
}
return 0;
}
static int16_t cocoa_input_state(void *data,
rarch_joypad_info_t joypad_info,
2014-09-30 14:34:40 +00:00
const struct retro_keybind **binds, unsigned port,
2014-10-20 18:31:00 +00:00
unsigned device, unsigned idx, unsigned id)
{
2016-10-27 19:46:54 +00:00
int16_t ret = 0;
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
if (!apple || !apple->joypad)
return 0;
switch (device)
{
case RETRO_DEVICE_JOYPAD:
return apple_input_is_pressed(port, binds[port], id) ||
input_joypad_pressed(apple->joypad, joypad_info, port, binds[port], id)
2015-11-16 01:39:38 +00:00
#ifdef HAVE_MFI
|| input_joypad_pressed(apple->sec_joypad, joypad_info, port, binds[port], id)
2015-11-16 01:39:38 +00:00
#endif
;
case RETRO_DEVICE_ANALOG:
2015-11-16 01:39:38 +00:00
#ifdef HAVE_MFI
2016-10-26 08:34:24 +00:00
if (binds[port])
ret = input_joypad_analog(apple->sec_joypad, joypad_info, port,
2014-10-20 18:31:00 +00:00
idx, id, binds[port]);
2015-11-16 01:39:38 +00:00
#endif
2016-10-26 08:34:24 +00:00
if (!ret && binds[port])
ret = input_joypad_analog(apple->joypad, joypad_info, port,
idx, id, binds[port]);
return ret;
2013-03-31 15:59:37 +00:00
case RETRO_DEVICE_KEYBOARD:
return apple_keyboard_state(id);
case RETRO_DEVICE_MOUSE:
return cocoa_mouse_state(apple, id);
case RARCH_DEVICE_MOUSE_SCREEN:
return cocoa_mouse_state_screen(apple, id);
case RETRO_DEVICE_POINTER:
case RARCH_DEVICE_POINTER_SCREEN:
return cocoa_pointer_state(apple, device, idx, id);
}
2014-09-30 14:34:40 +00:00
return 0;
}
2015-11-07 19:59:12 +00:00
static bool cocoa_input_meta_key_pressed(void *data, int key)
2015-07-17 01:31:51 +00:00
{
return false;
}
static void cocoa_input_free(void *data)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
2014-10-04 13:14:39 +00:00
if (!apple || !data)
return;
2014-05-13 11:49:29 +00:00
2014-10-04 13:14:39 +00:00
if (apple->joypad)
apple->joypad->destroy();
2015-11-16 02:57:52 +00:00
if (apple->sec_joypad)
apple->sec_joypad->destroy();
2015-11-16 01:39:38 +00:00
apple_keyboard_free();
free(apple);
}
static bool cocoa_input_set_rumble(void *data,
unsigned port, enum retro_rumble_effect effect, uint16_t strength)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
if (apple && apple->joypad)
2014-09-30 14:34:40 +00:00
return input_joypad_set_rumble(apple->joypad,
port, effect, strength);
2015-11-16 01:39:38 +00:00
#ifdef HAVE_MFI
2015-11-16 02:57:52 +00:00
if (apple && apple->sec_joypad)
return input_joypad_set_rumble(apple->sec_joypad,
2015-11-16 01:39:38 +00:00
port, effect, strength);
#endif
return false;
}
static uint64_t cocoa_input_get_capabilities(void *data)
{
(void)data;
2014-10-04 13:14:39 +00:00
return
(1 << RETRO_DEVICE_JOYPAD) |
(1 << RETRO_DEVICE_MOUSE) |
(1 << RETRO_DEVICE_KEYBOARD) |
(1 << RETRO_DEVICE_POINTER) |
(1 << RETRO_DEVICE_ANALOG);
}
static void cocoa_input_grab_mouse(void *data, bool state)
2014-10-04 13:14:39 +00:00
{
/* Dummy for now. Might be useful in the future. */
(void)data;
(void)state;
}
2015-11-16 01:39:38 +00:00
static const input_device_driver_t *cocoa_input_get_sec_joypad_driver(void *data)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
2015-11-16 02:57:52 +00:00
if (apple && apple->sec_joypad)
return apple->sec_joypad;
2015-11-16 01:39:38 +00:00
return NULL;
}
static const input_device_driver_t *cocoa_input_get_joypad_driver(void *data)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
if (apple && apple->joypad)
return apple->joypad;
return NULL;
}
static bool cocoa_input_keyboard_mapping_is_blocked(void *data)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
if (!apple)
return false;
return apple->blocked;
}
static void cocoa_input_keyboard_mapping_set_block(void *data, bool value)
{
cocoa_input_data_t *apple = (cocoa_input_data_t*)data;
if (!apple)
return;
apple->blocked = value;
}
input_driver_t input_cocoa = {
cocoa_input_init,
cocoa_input_poll,
cocoa_input_state,
2015-07-17 01:31:51 +00:00
cocoa_input_meta_key_pressed,
cocoa_input_free,
NULL,
NULL,
cocoa_input_get_capabilities,
"cocoa",
cocoa_input_grab_mouse,
NULL,
cocoa_input_set_rumble,
2015-06-19 01:46:54 +00:00
cocoa_input_get_joypad_driver,
2015-11-16 01:39:38 +00:00
cocoa_input_get_sec_joypad_driver,
cocoa_input_keyboard_mapping_is_blocked,
cocoa_input_keyboard_mapping_set_block,
};