2020-06-21 16:36:28 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
2020-06-21 19:31:57 +00:00
|
|
|
|
2020-06-22 02:58:53 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
2020-06-21 16:36:28 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "input_common/gcadapter/gc_adapter.h"
|
|
|
|
|
|
|
|
namespace GCAdapter {
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
Adapter::Adapter() {
|
|
|
|
if (usb_adapter_handle != nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LOG_INFO(Input, "GC Adapter Initialization started");
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
current_status = NO_ADAPTER_DETECTED;
|
|
|
|
libusb_init(&libusb_ctx);
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
StartScanThread();
|
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
GCPadStatus Adapter::GetPadStatus(int port, const std::array<u8, 37>& adapter_payload) {
|
2020-06-21 16:36:28 +00:00
|
|
|
GCPadStatus pad = {};
|
|
|
|
bool get_origin = false;
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
ControllerTypes type = ControllerTypes(adapter_payload[1 + (9 * port)] >> 4);
|
2020-06-23 21:37:15 +00:00
|
|
|
if (type != ControllerTypes::None) {
|
2020-06-21 16:36:28 +00:00
|
|
|
get_origin = true;
|
2020-06-23 21:37:15 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
|
|
|
adapter_controllers_status[port] = type;
|
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
constexpr std::array<PadButton, 8> b1_buttons{
|
2020-06-24 15:39:30 +00:00
|
|
|
PadButton::PAD_BUTTON_A, PadButton::PAD_BUTTON_B, PadButton::PAD_BUTTON_X,
|
|
|
|
PadButton::PAD_BUTTON_Y, PadButton::PAD_BUTTON_LEFT, PadButton::PAD_BUTTON_RIGHT,
|
|
|
|
PadButton::PAD_BUTTON_DOWN, PadButton::PAD_BUTTON_UP};
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-24 15:39:30 +00:00
|
|
|
constexpr std::array<PadButton, 4> b2_buttons{
|
|
|
|
PadButton::PAD_BUTTON_START, PadButton::PAD_TRIGGER_Z, PadButton::PAD_TRIGGER_R,
|
|
|
|
PadButton::PAD_TRIGGER_L};
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
if (adapter_controllers_status[port] != ControllerTypes::None) {
|
|
|
|
const u8 b1 = adapter_payload[1 + (9 * port) + 1];
|
|
|
|
const u8 b2 = adapter_payload[1 + (9 * port) + 2];
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-30 21:28:02 +00:00
|
|
|
for (std::size_t i = 0; i < b1_buttons.size(); ++i) {
|
2020-06-23 21:37:15 +00:00
|
|
|
if (b1 & (1 << i)) {
|
2020-06-24 15:39:30 +00:00
|
|
|
pad.button |= static_cast<u16>(b1_buttons[i]);
|
2020-06-23 21:37:15 +00:00
|
|
|
}
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
|
2020-06-30 21:28:02 +00:00
|
|
|
for (std::size_t j = 0; j < b2_buttons.size(); ++j) {
|
2020-06-23 21:37:15 +00:00
|
|
|
if (b2 & (1 << j)) {
|
2020-06-24 15:39:30 +00:00
|
|
|
pad.button |= static_cast<u16>(b2_buttons[j]);
|
2020-06-23 21:37:15 +00:00
|
|
|
}
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-21 19:31:57 +00:00
|
|
|
if (get_origin) {
|
2020-06-21 16:36:28 +00:00
|
|
|
pad.button |= PAD_GET_ORIGIN;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
pad.stick_x = adapter_payload[1 + (9 * port) + 3];
|
|
|
|
pad.stick_y = adapter_payload[1 + (9 * port) + 4];
|
|
|
|
pad.substick_x = adapter_payload[1 + (9 * port) + 5];
|
|
|
|
pad.substick_y = adapter_payload[1 + (9 * port) + 6];
|
|
|
|
pad.trigger_left = adapter_payload[1 + (9 * port) + 7];
|
|
|
|
pad.trigger_right = adapter_payload[1 + (9 * port) + 8];
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
|
2020-06-22 22:11:59 +00:00
|
|
|
void Adapter::PadToState(const GCPadStatus& pad, GCState& state) {
|
2020-06-27 03:46:49 +00:00
|
|
|
for (const auto& button : PadButtonArray) {
|
2020-06-30 21:28:02 +00:00
|
|
|
const u16 button_value = static_cast<u16>(button);
|
2020-06-24 15:39:30 +00:00
|
|
|
state.buttons.insert_or_assign(button_value, pad.button & button_value);
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::StickX), pad.stick_x);
|
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::StickY), pad.stick_y);
|
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::SubstickX), pad.substick_x);
|
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::SubstickY), pad.substick_y);
|
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::TriggerLeft), pad.trigger_left);
|
|
|
|
state.axes.insert_or_assign(static_cast<u8>(PadAxes::TriggerRight), pad.trigger_right);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::Read() {
|
2020-06-30 21:28:02 +00:00
|
|
|
LOG_DEBUG(Input, "GC Adapter Read() thread started");
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
int payload_size_in, payload_size_copy;
|
2020-06-22 22:11:59 +00:00
|
|
|
std::array<u8, 37> adapter_payload;
|
2020-06-23 21:37:15 +00:00
|
|
|
std::array<u8, 37> adapter_payload_copy;
|
|
|
|
std::array<GCPadStatus, 4> pads;
|
2020-06-22 22:11:59 +00:00
|
|
|
|
2020-06-21 16:36:28 +00:00
|
|
|
while (adapter_thread_running) {
|
2020-06-22 22:11:59 +00:00
|
|
|
libusb_interrupt_transfer(usb_adapter_handle, input_endpoint, adapter_payload.data(),
|
2020-06-25 23:31:51 +00:00
|
|
|
sizeof(adapter_payload), &payload_size_in, 16);
|
2020-06-23 21:37:15 +00:00
|
|
|
payload_size_copy = 0;
|
2020-06-21 16:36:28 +00:00
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lk(s_mutex);
|
|
|
|
std::copy(std::begin(adapter_payload), std::end(adapter_payload),
|
2020-06-23 21:37:15 +00:00
|
|
|
std::begin(adapter_payload_copy));
|
|
|
|
payload_size_copy = payload_size_in;
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
2020-06-21 19:31:57 +00:00
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
if (payload_size_copy != sizeof(adapter_payload_copy) ||
|
|
|
|
adapter_payload_copy[0] != LIBUSB_DT_HID) {
|
|
|
|
LOG_ERROR(Input, "error reading payload (size: %d, type: %02x)", payload_size_copy,
|
|
|
|
adapter_payload_copy[0]);
|
2020-06-25 23:31:51 +00:00
|
|
|
adapter_thread_running = false; // error reading from adapter, stop reading.
|
2020-06-30 21:28:02 +00:00
|
|
|
break;
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
2020-06-30 21:28:02 +00:00
|
|
|
for (std::size_t port = 0; port < pads.size(); ++port) {
|
|
|
|
pads[port] = GetPadStatus(port, adapter_payload_copy);
|
2020-06-21 16:36:28 +00:00
|
|
|
if (DeviceConnected(port) && configuring) {
|
2020-06-23 21:37:15 +00:00
|
|
|
if (pads[port].button != PAD_GET_ORIGIN) {
|
|
|
|
pad_queue[port].Push(pads[port]);
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
|
|
|
// Accounting for a threshold here because of some controller variance
|
2020-06-23 21:37:15 +00:00
|
|
|
if (pads[port].stick_x > pads[port].MAIN_STICK_CENTER_X + pads[port].THRESHOLD ||
|
|
|
|
pads[port].stick_x < pads[port].MAIN_STICK_CENTER_X - pads[port].THRESHOLD) {
|
|
|
|
pads[port].axis = GCAdapter::PadAxes::StickX;
|
|
|
|
pads[port].axis_value = pads[port].stick_x;
|
|
|
|
pad_queue[port].Push(pads[port]);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
if (pads[port].stick_y > pads[port].MAIN_STICK_CENTER_Y + pads[port].THRESHOLD ||
|
|
|
|
pads[port].stick_y < pads[port].MAIN_STICK_CENTER_Y - pads[port].THRESHOLD) {
|
|
|
|
pads[port].axis = GCAdapter::PadAxes::StickY;
|
|
|
|
pads[port].axis_value = pads[port].stick_y;
|
|
|
|
pad_queue[port].Push(pads[port]);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
if (pads[port].substick_x > pads[port].C_STICK_CENTER_X + pads[port].THRESHOLD ||
|
|
|
|
pads[port].substick_x < pads[port].C_STICK_CENTER_X - pads[port].THRESHOLD) {
|
|
|
|
pads[port].axis = GCAdapter::PadAxes::SubstickX;
|
|
|
|
pads[port].axis_value = pads[port].substick_x;
|
|
|
|
pad_queue[port].Push(pads[port]);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
if (pads[port].substick_y > pads[port].C_STICK_CENTER_Y + pads[port].THRESHOLD ||
|
|
|
|
pads[port].substick_y < pads[port].C_STICK_CENTER_Y - pads[port].THRESHOLD) {
|
|
|
|
pads[port].axis = GCAdapter::PadAxes::SubstickY;
|
|
|
|
pads[port].axis_value = pads[port].substick_y;
|
|
|
|
pad_queue[port].Push(pads[port]);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
PadToState(pads[port], state[port]);
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
std::this_thread::yield();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::ScanThreadFunc() {
|
2020-06-21 16:36:28 +00:00
|
|
|
LOG_INFO(Input, "GC Adapter scanning thread started");
|
|
|
|
|
|
|
|
while (detect_thread_running) {
|
|
|
|
if (usb_adapter_handle == nullptr) {
|
|
|
|
std::lock_guard<std::mutex> lk(initialization_mutex);
|
|
|
|
Setup();
|
|
|
|
}
|
2020-06-22 02:58:53 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::StartScanThread() {
|
2020-06-21 19:31:57 +00:00
|
|
|
if (detect_thread_running) {
|
2020-06-21 16:36:28 +00:00
|
|
|
return;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
|
|
|
if (!libusb_ctx) {
|
2020-06-21 16:36:28 +00:00
|
|
|
return;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
|
|
|
detect_thread_running = true;
|
2020-06-21 22:43:01 +00:00
|
|
|
detect_thread = std::thread([=] { ScanThreadFunc(); });
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::StopScanThread() {
|
2020-06-23 16:47:58 +00:00
|
|
|
detect_thread_running = false;
|
2020-06-21 16:36:28 +00:00
|
|
|
detect_thread.join();
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::Setup() {
|
2020-06-21 16:36:28 +00:00
|
|
|
// Reset the error status in case the adapter gets unplugged
|
2020-06-21 19:31:57 +00:00
|
|
|
if (current_status < 0) {
|
2020-06-21 16:36:28 +00:00
|
|
|
current_status = NO_ADAPTER_DETECTED;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-22 01:15:58 +00:00
|
|
|
adapter_controllers_status.fill(ControllerTypes::None);
|
2020-06-21 19:31:57 +00:00
|
|
|
|
2020-06-30 21:28:02 +00:00
|
|
|
// pointer to list of connected usb devices
|
|
|
|
libusb_device** devices;
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-30 21:28:02 +00:00
|
|
|
// populate the list of devices, get the count
|
|
|
|
const std::size_t device_count = libusb_get_device_list(libusb_ctx, &devices);
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-30 21:28:02 +00:00
|
|
|
for (std::size_t index = 0; index < device_count; ++index) {
|
|
|
|
if (CheckDeviceAccess(devices[index])) {
|
2020-06-23 21:37:15 +00:00
|
|
|
// GC Adapter found and accessible, registering it
|
2020-06-30 21:28:02 +00:00
|
|
|
GetGCEndpoint(devices[index]);
|
2020-06-21 16:36:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
bool Adapter::CheckDeviceAccess(libusb_device* device) {
|
2020-06-21 16:36:28 +00:00
|
|
|
libusb_device_descriptor desc;
|
2020-06-23 21:37:15 +00:00
|
|
|
const int get_descriptor_error = libusb_get_device_descriptor(device, &desc);
|
|
|
|
if (get_descriptor_error) {
|
2020-06-21 16:36:28 +00:00
|
|
|
// could not acquire the descriptor, no point in trying to use it.
|
2020-06-23 21:37:15 +00:00
|
|
|
LOG_ERROR(Input, "libusb_get_device_descriptor failed with error: %d",
|
|
|
|
get_descriptor_error);
|
2020-06-21 16:36:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (desc.idVendor != 0x057e || desc.idProduct != 0x0337) {
|
2020-06-27 03:46:49 +00:00
|
|
|
// This isn't the device we are looking for.
|
2020-06-21 16:36:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
const int open_error = libusb_open(device, &usb_adapter_handle);
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
if (open_error == LIBUSB_ERROR_ACCESS) {
|
2020-06-21 19:31:57 +00:00
|
|
|
LOG_ERROR(Input, "Yuzu can not gain access to this device: ID %04X:%04X.", desc.idVendor,
|
|
|
|
desc.idProduct);
|
2020-06-21 16:36:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-06-23 21:37:15 +00:00
|
|
|
if (open_error) {
|
|
|
|
LOG_ERROR(Input, "libusb_open failed to open device with error = %d", open_error);
|
2020-06-21 16:36:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
int kernel_driver_error = libusb_kernel_driver_active(usb_adapter_handle, 0);
|
|
|
|
if (kernel_driver_error == 1) {
|
|
|
|
kernel_driver_error = libusb_detach_kernel_driver(usb_adapter_handle, 0);
|
|
|
|
if (kernel_driver_error != 0 && kernel_driver_error != LIBUSB_ERROR_NOT_SUPPORTED) {
|
|
|
|
LOG_ERROR(Input, "libusb_detach_kernel_driver failed with error = %d",
|
|
|
|
kernel_driver_error);
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
if (kernel_driver_error && kernel_driver_error != LIBUSB_ERROR_NOT_SUPPORTED) {
|
2020-06-21 16:36:28 +00:00
|
|
|
libusb_close(usb_adapter_handle);
|
|
|
|
usb_adapter_handle = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-06-23 21:37:15 +00:00
|
|
|
const int interface_claim_error = libusb_claim_interface(usb_adapter_handle, 0);
|
|
|
|
if (interface_claim_error) {
|
|
|
|
LOG_ERROR(Input, "libusb_claim_interface failed with error = %d", interface_claim_error);
|
2020-06-21 16:36:28 +00:00
|
|
|
libusb_close(usb_adapter_handle);
|
|
|
|
usb_adapter_handle = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::GetGCEndpoint(libusb_device* device) {
|
2020-06-21 16:36:28 +00:00
|
|
|
libusb_config_descriptor* config = nullptr;
|
|
|
|
libusb_get_config_descriptor(device, 0, &config);
|
|
|
|
for (u8 ic = 0; ic < config->bNumInterfaces; ic++) {
|
|
|
|
const libusb_interface* interfaceContainer = &config->interface[ic];
|
|
|
|
for (int i = 0; i < interfaceContainer->num_altsetting; i++) {
|
|
|
|
const libusb_interface_descriptor* interface = &interfaceContainer->altsetting[i];
|
|
|
|
for (u8 e = 0; e < interface->bNumEndpoints; e++) {
|
|
|
|
const libusb_endpoint_descriptor* endpoint = &interface->endpoint[e];
|
2020-06-21 19:31:57 +00:00
|
|
|
if (endpoint->bEndpointAddress & LIBUSB_ENDPOINT_IN) {
|
2020-06-21 16:36:28 +00:00
|
|
|
input_endpoint = endpoint->bEndpointAddress;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
adapter_thread_running = true;
|
|
|
|
current_status = ADAPTER_DETECTED;
|
2020-06-21 22:43:01 +00:00
|
|
|
adapter_input_thread = std::thread([=] { Read(); }); // Read input
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
Adapter::~Adapter() {
|
2020-06-21 16:36:28 +00:00
|
|
|
StopScanThread();
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::Reset() {
|
2020-06-21 16:36:28 +00:00
|
|
|
std::unique_lock<std::mutex> lock(initialization_mutex, std::defer_lock);
|
2020-06-21 19:31:57 +00:00
|
|
|
if (!lock.try_lock()) {
|
2020-06-21 16:36:28 +00:00
|
|
|
return;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
|
|
|
if (current_status != ADAPTER_DETECTED) {
|
2020-06-21 16:36:28 +00:00
|
|
|
return;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-21 19:31:57 +00:00
|
|
|
if (adapter_thread_running) {
|
2020-06-23 16:47:58 +00:00
|
|
|
adapter_thread_running = false;
|
2020-06-21 19:31:57 +00:00
|
|
|
}
|
2020-06-25 23:31:51 +00:00
|
|
|
adapter_input_thread.join();
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2020-06-22 01:15:58 +00:00
|
|
|
adapter_controllers_status.fill(ControllerTypes::None);
|
2020-06-21 16:36:28 +00:00
|
|
|
current_status = NO_ADAPTER_DETECTED;
|
|
|
|
|
|
|
|
if (usb_adapter_handle) {
|
2020-06-25 23:31:51 +00:00
|
|
|
libusb_release_interface(usb_adapter_handle, 1);
|
2020-06-21 16:36:28 +00:00
|
|
|
libusb_close(usb_adapter_handle);
|
|
|
|
usb_adapter_handle = nullptr;
|
|
|
|
}
|
2020-06-23 16:47:58 +00:00
|
|
|
|
|
|
|
if (libusb_ctx) {
|
|
|
|
libusb_exit(libusb_ctx);
|
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
bool Adapter::DeviceConnected(int port) {
|
|
|
|
return adapter_controllers_status[port] != ControllerTypes::None;
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::ResetDeviceType(int port) {
|
|
|
|
adapter_controllers_status[port] = ControllerTypes::None;
|
2020-06-21 16:36:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::BeginConfiguration() {
|
2020-06-22 01:15:58 +00:00
|
|
|
for (auto& pq : pad_queue) {
|
|
|
|
pq.Clear();
|
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
configuring = true;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
void Adapter::EndConfiguration() {
|
2020-06-22 01:15:58 +00:00
|
|
|
for (auto& pq : pad_queue) {
|
|
|
|
pq.Clear();
|
|
|
|
}
|
2020-06-21 16:36:28 +00:00
|
|
|
configuring = false;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
std::array<Common::SPSCQueue<GCPadStatus>, 4>& Adapter::GetPadQueue() {
|
|
|
|
return pad_queue;
|
|
|
|
}
|
|
|
|
|
2020-06-22 01:50:58 +00:00
|
|
|
const std::array<Common::SPSCQueue<GCPadStatus>, 4>& Adapter::GetPadQueue() const {
|
|
|
|
return pad_queue;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:43:01 +00:00
|
|
|
std::array<GCState, 4>& Adapter::GetPadState() {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2020-06-22 01:50:58 +00:00
|
|
|
const std::array<GCState, 4>& Adapter::GetPadState() const {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2020-06-22 22:11:59 +00:00
|
|
|
} // namespace GCAdapter
|