mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 06:40:14 +00:00
5da1cd08ff
== DETAILS When I first implemented the Wii U HID architecture, I ended up having to design my own implementation because, at the time, I did not have a way to read the HID device string to allow the existing code to successfully detect the gamepad. After spending some time experimenting, I've figured out how to do this. And that means I can better align the HID driver with other platforms. change summary: - create a single state structure for all three sub-types of wiiu pads (kpad, wpad, and hid) - eliminate confusing duplicate pad lists - eliminate confusing duplicate HID pad drivers (ds3, gamecube adapter, etc) - ensure the ds3 driver still works
292 lines
8.2 KiB
C
292 lines
8.2 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2014-2017 - Ali Bouhlel
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/**
|
|
* This sub-driver handles the wiimotes. The Wii U has 4 channels available.
|
|
* This also handles wiimote attachments such as the nunchuk and classic/pro
|
|
* controllers.
|
|
*/
|
|
|
|
#include "../../include/wiiu/input.h"
|
|
|
|
#define WIIU_PRO_BUTTON_MASK 0x3FC0000;
|
|
#define CLASSIC_BUTTON_MASK 0xFF0000;
|
|
|
|
/* Forward declarations */
|
|
static void kpad_poll(void);
|
|
static void kpad_deregister(unsigned channel);
|
|
|
|
static int to_wiimote_channel(unsigned pad)
|
|
{
|
|
unsigned i;
|
|
|
|
for (i = 0; i < WIIU_WIIMOTE_CHANNELS; i++)
|
|
if (joypad_state.kpad.channel_slot_map[i] == pad)
|
|
return i;
|
|
|
|
return -1;
|
|
}
|
|
|
|
static int get_slot_for_channel(unsigned channel)
|
|
{
|
|
int slot = pad_connection_find_vacant_pad(joypad_state.pads);
|
|
if (slot >= 0)
|
|
{
|
|
joypad_state.kpad.channel_slot_map[channel] = slot;
|
|
joypad_state.pads[slot].connected = true;
|
|
}
|
|
|
|
return slot;
|
|
}
|
|
|
|
static void *kpad_init(void *data)
|
|
{
|
|
memset(&joypad_state.kpad, 0, sizeof(joypad_state.kpad));
|
|
|
|
for(int i = 0; i < WIIU_WIIMOTE_CHANNELS; i++) {
|
|
joypad_state.kpad.channel_slot_map[i] = -1;
|
|
}
|
|
|
|
kpad_poll();
|
|
joypad_state.kpad.ready = true;
|
|
|
|
return (void*)-1;
|
|
}
|
|
|
|
static bool kpad_query_pad(unsigned pad)
|
|
{
|
|
return joypad_state.kpad.ready && pad < MAX_USERS;
|
|
}
|
|
|
|
static void kpad_destroy(void)
|
|
{
|
|
joypad_state.kpad.ready = false;
|
|
}
|
|
|
|
static int32_t kpad_button(unsigned port, uint16_t joykey)
|
|
{
|
|
int channel;
|
|
if (!kpad_query_pad(port))
|
|
return 0;
|
|
|
|
channel = to_wiimote_channel(port);
|
|
if (channel < 0)
|
|
return 0;
|
|
return (joypad_state.kpad.wiimotes[channel].button_state
|
|
& (UINT64_C(1) << joykey));
|
|
}
|
|
|
|
static void kpad_get_buttons(unsigned port, input_bits_t *state)
|
|
{
|
|
int channel = to_wiimote_channel(port);
|
|
|
|
if (!kpad_query_pad(port) || channel < 0)
|
|
BIT256_CLEAR_ALL_PTR(state);
|
|
else
|
|
BITS_COPY16_PTR(state, joypad_state.kpad.wiimotes[channel].button_state);
|
|
}
|
|
|
|
static int16_t kpad_axis(unsigned port, uint32_t axis)
|
|
{
|
|
axis_data data;
|
|
int channel = to_wiimote_channel(port);
|
|
|
|
if (!kpad_query_pad(port) || channel < 0)
|
|
return 0;
|
|
|
|
pad_functions.read_axis_data(axis, &data);
|
|
return pad_functions.get_axis_value(data.axis,
|
|
joypad_state.kpad.wiimotes[channel].analog_state,
|
|
data.is_negative);
|
|
}
|
|
|
|
static int16_t kpad_state(
|
|
rarch_joypad_info_t *joypad_info,
|
|
const struct retro_keybind *binds,
|
|
unsigned port)
|
|
{
|
|
unsigned i;
|
|
int16_t ret = 0;
|
|
uint16_t port_idx = joypad_info->joy_idx;
|
|
|
|
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
|
|
&& kpad_button(port_idx, (uint16_t)joykey))
|
|
ret |= ( 1 << i);
|
|
else if (joyaxis != AXIS_NONE &&
|
|
((float)abs(kpad_axis(port_idx, joyaxis))
|
|
/ 0x8000) > joypad_info->axis_threshold)
|
|
ret |= (1 << i);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void kpad_register(unsigned channel, uint8_t device_type)
|
|
{
|
|
if (joypad_state.kpad.wiimotes[channel].type != device_type)
|
|
{
|
|
int slot;
|
|
|
|
kpad_deregister(channel);
|
|
slot = get_slot_for_channel(channel);
|
|
|
|
if (slot < 0)
|
|
{
|
|
RARCH_ERR("Couldn't get a slot for this remote.\n");
|
|
return;
|
|
}
|
|
|
|
joypad_state.kpad.wiimotes[channel].type = device_type;
|
|
joypad_state.pad_drivers[slot] = &kpad_driver;
|
|
input_pad_connect(slot, &kpad_driver);
|
|
}
|
|
}
|
|
|
|
static void kpad_poll_one_channel(unsigned channel, KPADData *kpad)
|
|
{
|
|
kpad_register(channel, kpad->device_type);
|
|
switch(kpad->device_type)
|
|
{
|
|
case WIIMOTE_TYPE_PRO:
|
|
joypad_state.kpad.wiimotes[channel].button_state = kpad->classic.btns_h
|
|
& ~WIIU_PRO_BUTTON_MASK;
|
|
pad_functions.set_axis_value(joypad_state.kpad.wiimotes[channel].analog_state,
|
|
WIIU_READ_STICK(kpad->classic.lstick_x),
|
|
WIIU_READ_STICK(kpad->classic.lstick_y),
|
|
WIIU_READ_STICK(kpad->classic.rstick_x),
|
|
WIIU_READ_STICK(kpad->classic.rstick_y), 0, 0);
|
|
break;
|
|
case WIIMOTE_TYPE_CLASSIC:
|
|
joypad_state.kpad.wiimotes[channel].button_state = kpad->classic.btns_h
|
|
& ~CLASSIC_BUTTON_MASK;
|
|
pad_functions.set_axis_value(joypad_state.kpad.wiimotes[channel].analog_state,
|
|
WIIU_READ_STICK(kpad->classic.lstick_x),
|
|
WIIU_READ_STICK(kpad->classic.lstick_y),
|
|
WIIU_READ_STICK(kpad->classic.rstick_x),
|
|
WIIU_READ_STICK(kpad->classic.rstick_y), 0, 0);
|
|
break;
|
|
case WIIMOTE_TYPE_NUNCHUK:
|
|
joypad_state.kpad.wiimotes[channel].button_state = kpad->btns_h;
|
|
pad_functions.set_axis_value(joypad_state.kpad.wiimotes[channel].analog_state,
|
|
WIIU_READ_STICK(kpad->nunchuck.stick_x),
|
|
WIIU_READ_STICK(kpad->nunchuck.stick_y), 0, 0, 0, 0);
|
|
break;
|
|
case WIIMOTE_TYPE_WIIPLUS:
|
|
joypad_state.kpad.wiimotes[channel].button_state = kpad->btns_h;
|
|
pad_functions.set_axis_value(joypad_state.kpad.wiimotes[channel].analog_state,
|
|
0, 0, 0, 0, 0, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void kpad_deregister(unsigned channel)
|
|
{
|
|
int slot = joypad_state.kpad.channel_slot_map[channel];
|
|
|
|
if (slot >= 0)
|
|
{
|
|
input_autoconfigure_disconnect(slot, kpad_driver.name(slot));
|
|
joypad_state.kpad.wiimotes[channel].type = WIIMOTE_TYPE_NONE;
|
|
joypad_state.pads[slot].connected = false;
|
|
|
|
joypad_state.kpad.channel_slot_map[channel] = -1;
|
|
}
|
|
}
|
|
|
|
static void kpad_poll(void)
|
|
{
|
|
unsigned channel;
|
|
KPADData kpad;
|
|
int32_t result = 0;
|
|
|
|
for (channel = 0; channel < WIIU_WIIMOTE_CHANNELS; channel++)
|
|
{
|
|
memset(&kpad, 0, sizeof(kpad));
|
|
|
|
result = KPADRead(channel, &kpad, 1);
|
|
/* this is a hack to prevent spurious disconnects */
|
|
/* TODO: use KPADSetConnectCallback and use callbacks to detect */
|
|
/* pad disconnects properly. */
|
|
if (result == 0)
|
|
{
|
|
joypad_state.kpad.poll_failures[channel]++;
|
|
if (joypad_state.kpad.poll_failures[channel] > 5)
|
|
kpad_deregister(channel);
|
|
continue;
|
|
}
|
|
joypad_state.kpad.poll_failures[channel] = 0;
|
|
|
|
/* Several reads when a device is connected or an attachment added give */
|
|
/* bogus results, try to weed them out */
|
|
if (kpad.wpad_error || kpad.device_type == 255) {
|
|
continue;
|
|
}
|
|
|
|
kpad_poll_one_channel(channel, &kpad);
|
|
}
|
|
}
|
|
|
|
static const char *kpad_name(unsigned pad)
|
|
{
|
|
int channel = to_wiimote_channel(pad);
|
|
if (channel < 0)
|
|
return "unknown";
|
|
|
|
switch(joypad_state.kpad.wiimotes[channel].type)
|
|
{
|
|
case WIIMOTE_TYPE_PRO:
|
|
return PAD_NAME_WIIU_PRO;
|
|
case WIIMOTE_TYPE_CLASSIC:
|
|
return PAD_NAME_CLASSIC;
|
|
case WIIMOTE_TYPE_NUNCHUK:
|
|
return PAD_NAME_NUNCHUK;
|
|
case WIIMOTE_TYPE_WIIPLUS:
|
|
return PAD_NAME_WIIMOTE;
|
|
case WIIMOTE_TYPE_NONE:
|
|
default:
|
|
#ifdef DEBUG
|
|
RARCH_LOG("[kpad]: Unknown pad type %d\n", joypad_state.kpad.wiimotes[pad].type);
|
|
#endif
|
|
break;
|
|
}
|
|
|
|
return "N/A";
|
|
}
|
|
|
|
input_device_driver_t kpad_driver =
|
|
{
|
|
kpad_init,
|
|
kpad_query_pad,
|
|
kpad_destroy,
|
|
kpad_button,
|
|
kpad_state,
|
|
kpad_get_buttons,
|
|
kpad_axis,
|
|
kpad_poll,
|
|
NULL,
|
|
NULL,
|
|
kpad_name,
|
|
"wiimote",
|
|
};
|