mirror of
https://github.com/libretro/RetroArch
synced 2024-12-28 18:31:05 +00:00
259 lines
7.4 KiB
C
259 lines
7.4 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
* Copyright (C) 2012-2015 - Michael Lelli
|
|
* Copyright (C) 2013-2014 - Steven Crowe
|
|
*
|
|
* 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 "../../config.def.h"
|
|
|
|
#include "../input_driver.h"
|
|
#include "../drivers_keyboard/keyboard_event_android.h"
|
|
|
|
static const char *android_joypad_name(unsigned pad)
|
|
{
|
|
return input_config_get_device_name(pad);
|
|
}
|
|
|
|
static void *android_joypad_init(void *data) { return (void*)-1; }
|
|
|
|
static int32_t android_joypad_button_state(
|
|
struct android_app *android_app,
|
|
uint8_t *buf,
|
|
unsigned port, uint16_t joykey)
|
|
{
|
|
unsigned hat_dir = GET_HAT_DIR(joykey);
|
|
|
|
if (hat_dir)
|
|
{
|
|
unsigned h = GET_HAT(joykey);
|
|
if (h > 0)
|
|
return 0;
|
|
|
|
switch (hat_dir)
|
|
{
|
|
case HAT_LEFT_MASK:
|
|
return (android_app->hat_state[port][0] == -1);
|
|
case HAT_RIGHT_MASK:
|
|
return (android_app->hat_state[port][0] == 1);
|
|
case HAT_UP_MASK:
|
|
return (android_app->hat_state[port][1] == -1);
|
|
case HAT_DOWN_MASK:
|
|
return (android_app->hat_state[port][1] == 1);
|
|
default:
|
|
break;
|
|
}
|
|
/* hat requested and no hat button down */
|
|
}
|
|
else if (joykey < LAST_KEYCODE)
|
|
return BIT_GET(buf, joykey);
|
|
return 0;
|
|
}
|
|
|
|
static int32_t android_joypad_button(unsigned port, uint16_t joykey)
|
|
{
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
|
uint8_t *buf = android_keyboard_state_get(port);
|
|
|
|
if (port >= DEFAULT_MAX_PADS)
|
|
return 0;
|
|
|
|
return android_joypad_button_state(android_app, buf, port, joykey);
|
|
}
|
|
|
|
static int16_t android_joypad_axis_state(
|
|
struct android_app *android_app,
|
|
unsigned port, uint32_t joyaxis)
|
|
{
|
|
if (AXIS_NEG_GET(joyaxis) < MAX_AXIS)
|
|
{
|
|
int16_t val = android_app->analog_state[port][AXIS_NEG_GET(joyaxis)];
|
|
if (val < 0)
|
|
return val;
|
|
}
|
|
else if (AXIS_POS_GET(joyaxis) < MAX_AXIS)
|
|
{
|
|
int16_t val = android_app->analog_state[port][AXIS_POS_GET(joyaxis)];
|
|
if (val > 0)
|
|
return val;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int16_t android_joypad_axis(unsigned port, uint32_t joyaxis)
|
|
{
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
|
return android_joypad_axis_state(android_app, port, joyaxis);
|
|
}
|
|
|
|
static int16_t android_joypad_state(
|
|
rarch_joypad_info_t *joypad_info,
|
|
const struct retro_keybind *binds,
|
|
unsigned port)
|
|
{
|
|
unsigned i;
|
|
int16_t ret = 0;
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
|
uint8_t *buf = android_keyboard_state_get(port);
|
|
uint16_t port_idx = joypad_info->joy_idx;
|
|
|
|
if (port_idx >= DEFAULT_MAX_PADS)
|
|
return 0;
|
|
|
|
for (i = 0; i < RARCH_FIRST_CUSTOM_BIND; i++)
|
|
{
|
|
/* Auto-binds are per joypad, not per user. */
|
|
const uint64_t joykey = (binds[i].joykey != NO_BTN)
|
|
? binds[i].joykey : joypad_info->auto_binds[i].joykey;
|
|
const uint32_t joyaxis = (binds[i].joyaxis != AXIS_NONE)
|
|
? binds[i].joyaxis : joypad_info->auto_binds[i].joyaxis;
|
|
if ((uint16_t)joykey != NO_BTN
|
|
&& android_joypad_button_state(
|
|
android_app,
|
|
buf,
|
|
port_idx, (uint16_t)joykey))
|
|
ret |= ( 1 << i);
|
|
else if (joyaxis != AXIS_NONE &&
|
|
((float)abs(android_joypad_axis_state(
|
|
android_app, port_idx, joyaxis))
|
|
/ 0x8000) > joypad_info->axis_threshold)
|
|
ret |= (1 << i);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void android_joypad_poll(void) { }
|
|
|
|
static bool android_joypad_query_pad(unsigned pad)
|
|
{
|
|
return (pad < MAX_USERS);
|
|
}
|
|
|
|
static void android_joypad_destroy(void)
|
|
{
|
|
unsigned i, j;
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
|
|
|
for (i = 0; i < DEFAULT_MAX_PADS; i++)
|
|
{
|
|
for (j = 0; j < 2; j++)
|
|
android_app->hat_state[i][j] = 0;
|
|
for (j = 0; j < MAX_AXIS; j++)
|
|
android_app->analog_state[i][j] = 0;
|
|
}
|
|
|
|
for (i = 0; i < MAX_USERS; i++)
|
|
{
|
|
android_app->rumble_last_strength_strong[i] = 0;
|
|
android_app->rumble_last_strength_weak [i] = 0;
|
|
android_app->rumble_last_strength [i] = 0;
|
|
android_app->id [i] = 0;
|
|
}
|
|
}
|
|
|
|
static void android_input_set_rumble_internal(
|
|
uint16_t strength,
|
|
uint16_t *last_strength_strong,
|
|
uint16_t *last_strength_weak,
|
|
uint16_t *last_strength,
|
|
int8_t id,
|
|
enum retro_rumble_effect effect
|
|
)
|
|
{
|
|
JNIEnv *env = (JNIEnv*)jni_thread_getenv();
|
|
uint16_t new_strength = 0;
|
|
|
|
if (!env)
|
|
return;
|
|
|
|
if (effect == RETRO_RUMBLE_STRONG)
|
|
{
|
|
new_strength = strength | *last_strength_weak;
|
|
*last_strength_strong = strength;
|
|
}
|
|
else if (effect == RETRO_RUMBLE_WEAK)
|
|
{
|
|
new_strength = strength | *last_strength_strong;
|
|
*last_strength_weak = strength;
|
|
}
|
|
|
|
if (new_strength != *last_strength)
|
|
{
|
|
/* trying to send this value as a JNI param without
|
|
* storing it first was causing 0 to be seen on the other side ?? */
|
|
int strength_final = (255.0f / 65535.0f) * (float)new_strength;
|
|
|
|
CALL_VOID_METHOD_PARAM(env, g_android->activity->clazz,
|
|
g_android->doVibrate, (jint)id, (jint)RETRO_RUMBLE_STRONG, (jint)strength_final, (jint)0);
|
|
|
|
*last_strength = new_strength;
|
|
}
|
|
}
|
|
|
|
static bool android_joypad_rumble(unsigned port,
|
|
enum retro_rumble_effect type, uint16_t strength)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
|
bool enable_device_vibration = settings->bools.enable_device_vibration;
|
|
|
|
if (!android_app || !android_app->doVibrate)
|
|
return false;
|
|
|
|
if (enable_device_vibration)
|
|
{
|
|
static uint16_t last_strength_strong = 0;
|
|
static uint16_t last_strength_weak = 0;
|
|
static uint16_t last_strength = 0;
|
|
|
|
if (port != 0)
|
|
return false;
|
|
|
|
android_input_set_rumble_internal(
|
|
strength,
|
|
&last_strength_strong,
|
|
&last_strength_weak,
|
|
&last_strength,
|
|
-1,
|
|
type);
|
|
}
|
|
else
|
|
{
|
|
android_input_set_rumble_internal(
|
|
strength,
|
|
&android_app->rumble_last_strength_strong[port],
|
|
&android_app->rumble_last_strength_weak[port],
|
|
&android_app->rumble_last_strength[port],
|
|
android_app->id[port],
|
|
type);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
input_device_driver_t android_joypad = {
|
|
android_joypad_init,
|
|
android_joypad_query_pad,
|
|
android_joypad_destroy,
|
|
android_joypad_button,
|
|
android_joypad_state,
|
|
NULL,
|
|
android_joypad_axis,
|
|
android_joypad_poll,
|
|
android_joypad_rumble,
|
|
NULL,
|
|
android_joypad_name,
|
|
"android",
|
|
};
|