2015-04-02 13:43:23 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2015-04-06 02:53:05 +00:00
|
|
|
*
|
2015-04-02 13:43:23 +00:00
|
|
|
* 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 <libusb-1.0/libusb.h>
|
|
|
|
#include <rthreads/rthreads.h>
|
2015-04-03 03:26:58 +00:00
|
|
|
#include <compat/strl.h>
|
2015-04-02 15:49:32 +00:00
|
|
|
#include "../connect/joypad_connection.h"
|
2015-04-02 13:43:23 +00:00
|
|
|
#include "../../driver.h"
|
2015-04-03 03:26:58 +00:00
|
|
|
#include "../input_autodetect.h"
|
2015-04-02 13:43:23 +00:00
|
|
|
#include "../input_hid_driver.h"
|
|
|
|
|
|
|
|
typedef struct libusb_hid
|
|
|
|
{
|
|
|
|
libusb_hotplug_callback_handle hp;
|
2015-04-02 15:49:32 +00:00
|
|
|
joypad_connection_t *slots;
|
2015-04-02 13:43:23 +00:00
|
|
|
} libusb_hid_t;
|
|
|
|
|
|
|
|
struct libusb_adapter
|
|
|
|
{
|
|
|
|
volatile bool quitting;
|
|
|
|
struct libusb_device *device;
|
|
|
|
libusb_device_handle *handle;
|
2015-04-03 16:52:48 +00:00
|
|
|
int interface_number;
|
2015-04-06 02:53:05 +00:00
|
|
|
int endpoint_in;
|
|
|
|
int endpoint_out;
|
|
|
|
int endpoint_in_max_size;
|
|
|
|
int endpoint_out_max_size;
|
2015-04-02 13:43:23 +00:00
|
|
|
|
2015-04-02 15:16:51 +00:00
|
|
|
uint8_t manufacturer_name[255];
|
|
|
|
uint8_t name[255];
|
2015-04-04 15:30:50 +00:00
|
|
|
uint8_t data[2048];
|
2015-04-02 15:16:51 +00:00
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
uint32_t slot;
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
sthread_t *thread;
|
|
|
|
struct libusb_adapter *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct libusb_adapter adapters;
|
|
|
|
|
|
|
|
static void adapter_thread(void *data)
|
|
|
|
{
|
|
|
|
struct libusb_adapter *adapter = (struct libusb_adapter*)data;
|
|
|
|
|
|
|
|
while (!adapter->quitting)
|
|
|
|
{
|
2015-04-04 15:30:50 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)driver->hid_data;
|
2015-04-06 02:53:05 +00:00
|
|
|
int size = 0;
|
|
|
|
libusb_interrupt_transfer(adapter->handle, adapter->endpoint_in, &adapter->data[0], adapter->endpoint_in_max_size, &size, 0);
|
2015-04-02 13:43:23 +00:00
|
|
|
#if 0
|
|
|
|
static unsigned count;
|
2015-04-04 15:30:50 +00:00
|
|
|
fprintf(stderr, "[%s] Gets here, count: %d\n", adapter->name, count++);
|
2015-04-02 13:43:23 +00:00
|
|
|
#endif
|
2015-04-04 15:30:50 +00:00
|
|
|
if (adapter && hid)
|
|
|
|
pad_connection_packet(&hid->slots[adapter->slot], adapter->slot,
|
2015-04-06 02:53:05 +00:00
|
|
|
adapter->data, size);
|
2015-04-02 13:43:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
static void libusb_hid_device_send_control(void *data,
|
|
|
|
uint8_t* data_buf, size_t size)
|
|
|
|
{
|
2015-04-03 16:52:48 +00:00
|
|
|
struct libusb_adapter *adapter = (struct libusb_adapter*)data;
|
|
|
|
int report_number = data_buf[0];
|
2015-04-06 02:53:05 +00:00
|
|
|
int tmp;
|
2015-04-03 16:52:48 +00:00
|
|
|
|
2015-04-03 18:49:49 +00:00
|
|
|
if (adapter)
|
2015-04-06 02:53:05 +00:00
|
|
|
#if 0
|
2015-04-03 16:52:48 +00:00
|
|
|
libusb_control_transfer(adapter->handle,
|
|
|
|
LIBUSB_REQUEST_TYPE_CLASS|LIBUSB_RECIPIENT_INTERFACE|LIBUSB_ENDPOINT_OUT,
|
|
|
|
0x09/*HID Set_Report*/,
|
|
|
|
(2/*HID output*/ << 8) | report_number,
|
|
|
|
adapter->interface_number,
|
|
|
|
data_buf, size,
|
|
|
|
1000/*timeout millis*/);
|
2015-04-06 02:53:05 +00:00
|
|
|
#endif
|
|
|
|
// TODO: push this to the adapter thread
|
|
|
|
libusb_interrupt_transfer(adapter->handle, adapter->endpoint_out, data_buf, size, &tmp, 0);
|
2015-04-03 03:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void libusb_hid_device_add_autodetect(unsigned idx,
|
|
|
|
const char *device_name, const char *driver_name,
|
|
|
|
uint16_t dev_vid, uint16_t dev_pid)
|
|
|
|
{
|
|
|
|
autoconfig_params_t params = {{0}};
|
|
|
|
|
|
|
|
params.idx = idx;
|
|
|
|
params.vid = dev_vid;
|
|
|
|
params.pid = dev_pid;
|
|
|
|
|
|
|
|
strlcpy(params.name, device_name, sizeof(params.name));
|
|
|
|
strlcpy(params.driver, driver_name, sizeof(params.driver));
|
|
|
|
|
|
|
|
input_config_autoconfigure_joypad(¶ms);
|
|
|
|
}
|
|
|
|
|
2015-04-03 16:52:48 +00:00
|
|
|
static void libusb_get_description(struct libusb_device *device,
|
2015-04-06 02:53:05 +00:00
|
|
|
struct libusb_adapter *adapter)
|
2015-04-03 16:52:48 +00:00
|
|
|
{
|
|
|
|
unsigned i, j, k;
|
|
|
|
struct libusb_config_descriptor *config;
|
|
|
|
|
|
|
|
libusb_get_config_descriptor(device, 0, &config);
|
|
|
|
|
|
|
|
fprintf(stderr, "Interfaces: %d.\n", (int)config->bNumInterfaces);
|
|
|
|
|
|
|
|
for(i=0; i < (int)config->bNumInterfaces; i++)
|
|
|
|
{
|
|
|
|
const struct libusb_interface *inter = &config->interface[i];
|
|
|
|
|
|
|
|
fprintf(stderr, "Number of alternate settings: %d.\n", inter->num_altsetting);
|
|
|
|
|
|
|
|
for(j = 0; j < inter->num_altsetting; j++)
|
|
|
|
{
|
|
|
|
const struct libusb_interface_descriptor *interdesc = &inter->altsetting[j];
|
|
|
|
|
2015-04-06 02:53:05 +00:00
|
|
|
//if (interdesc->bInterfaceClass == LIBUSB_CLASS_HID)
|
2015-04-03 16:52:48 +00:00
|
|
|
{
|
2015-04-06 02:53:05 +00:00
|
|
|
adapter->interface_number = (int)interdesc->bInterfaceNumber;
|
|
|
|
|
|
|
|
fprintf(stderr, "Interface Number: %d.\n", (int)interdesc->bInterfaceNumber);
|
|
|
|
fprintf(stderr, "Number of endpoints: %d.\n", (int)interdesc->bNumEndpoints);
|
|
|
|
|
|
|
|
for(k = 0; k < (int)interdesc->bNumEndpoints; k++)
|
|
|
|
{
|
|
|
|
const struct libusb_endpoint_descriptor *epdesc = &interdesc->endpoint[k];
|
|
|
|
bool is_int = (epdesc->bmAttributes & LIBUSB_TRANSFER_TYPE_MASK) == LIBUSB_TRANSFER_TYPE_INTERRUPT;
|
|
|
|
bool is_out = (epdesc->bEndpointAddress & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_OUT;
|
|
|
|
bool is_in = (epdesc->bEndpointAddress & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_IN;
|
|
|
|
if (is_int)
|
|
|
|
{
|
|
|
|
if (is_in)
|
|
|
|
{
|
|
|
|
adapter->endpoint_in = epdesc->bEndpointAddress;
|
|
|
|
adapter->endpoint_in_max_size = epdesc->wMaxPacketSize;
|
|
|
|
}
|
|
|
|
if (is_out)
|
|
|
|
{
|
|
|
|
adapter->endpoint_out = epdesc->bEndpointAddress;
|
|
|
|
adapter->endpoint_out_max_size = epdesc->wMaxPacketSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "Descriptor Type: %d.\n", (int)epdesc->bDescriptorType);
|
|
|
|
fprintf(stderr, "EP Address: %d.\n", (int)epdesc->bEndpointAddress);
|
|
|
|
}
|
2015-04-03 16:52:48 +00:00
|
|
|
}
|
2015-04-06 02:53:05 +00:00
|
|
|
goto ret;
|
2015-04-03 16:52:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 02:53:05 +00:00
|
|
|
ret:
|
2015-04-03 16:52:48 +00:00
|
|
|
libusb_free_config_descriptor(config);
|
|
|
|
}
|
|
|
|
|
2015-04-02 15:28:12 +00:00
|
|
|
static int add_adapter(void *data, struct libusb_device *dev)
|
2015-04-02 13:43:23 +00:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
struct libusb_adapter *old_head = NULL;
|
2015-04-03 03:26:58 +00:00
|
|
|
struct libusb_hid *hid = (struct libusb_hid*)data;
|
|
|
|
const char *device_name = NULL;
|
2015-04-03 17:02:35 +00:00
|
|
|
struct libusb_adapter *adapter = (struct libusb_adapter*)calloc(1, sizeof(struct libusb_adapter));
|
2015-04-02 13:43:23 +00:00
|
|
|
|
2015-04-03 17:02:35 +00:00
|
|
|
if (!adapter || !hid)
|
2015-04-02 13:43:23 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Allocation of adapter failed.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2015-04-03 17:02:35 +00:00
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
rc = libusb_get_device_descriptor(dev, &desc);
|
|
|
|
|
|
|
|
if (rc != LIBUSB_SUCCESS)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error getting device descriptor.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
adapter->device = dev;
|
|
|
|
|
2015-04-06 02:53:05 +00:00
|
|
|
libusb_get_description(adapter->device, adapter);
|
|
|
|
|
|
|
|
if (adapter->endpoint_in == 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not find HID config for device.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
rc = libusb_open (adapter->device, &adapter->handle);
|
|
|
|
|
|
|
|
if (rc != LIBUSB_SUCCESS)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error opening device 0x%p (VID/PID: %04x:%04x).\n",
|
|
|
|
adapter->device, desc.idVendor, desc.idProduct);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2015-04-02 15:16:51 +00:00
|
|
|
if (desc.iManufacturer)
|
|
|
|
{
|
|
|
|
libusb_get_string_descriptor_ascii(adapter->handle,
|
|
|
|
desc.iManufacturer, adapter->manufacturer_name,
|
|
|
|
sizeof(adapter->manufacturer_name));
|
|
|
|
fprintf(stderr, "Adapter Manufacturer name: %s\n",
|
|
|
|
adapter->manufacturer_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (desc.iProduct)
|
|
|
|
{
|
|
|
|
libusb_get_string_descriptor_ascii(adapter->handle,
|
|
|
|
desc.iProduct, adapter->name,
|
|
|
|
sizeof(adapter->name));
|
|
|
|
fprintf(stderr, "Adapter name: %s\n", adapter->name);
|
|
|
|
}
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
if (libusb_kernel_driver_active(adapter->handle, 0) == 1
|
|
|
|
&& libusb_detach_kernel_driver(adapter->handle, 0))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error detaching handle 0x%p from kernel.\n", adapter->handle);
|
|
|
|
goto error;
|
|
|
|
}
|
2015-04-06 02:53:05 +00:00
|
|
|
|
2015-04-03 17:02:35 +00:00
|
|
|
device_name = (const char*)adapter->name;
|
2015-04-03 03:26:58 +00:00
|
|
|
|
|
|
|
adapter->slot = pad_connection_pad_init(hid->slots,
|
2015-04-03 21:30:39 +00:00
|
|
|
device_name, desc.idVendor, desc.idProduct, adapter, &libusb_hid_device_send_control);
|
2015-04-03 03:26:58 +00:00
|
|
|
|
|
|
|
if (!pad_connection_has_interface(hid->slots, adapter->slot))
|
2015-04-03 17:33:47 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Interface not found (%s).\n", adapter->name);
|
2015-04-03 03:26:58 +00:00
|
|
|
goto error;
|
2015-04-03 17:33:47 +00:00
|
|
|
}
|
2015-04-03 03:26:58 +00:00
|
|
|
|
|
|
|
if (adapter->name[0] == '\0')
|
|
|
|
goto error;
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
fprintf(stderr, "Device 0x%p attached (VID/PID: %04x:%04x).\n",
|
|
|
|
adapter->device, desc.idVendor, desc.idProduct);
|
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
libusb_hid_device_add_autodetect(adapter->slot,
|
|
|
|
device_name, libusb_hid.ident, desc.idVendor, desc.idProduct);
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
adapter->thread = sthread_create(adapter_thread, adapter);
|
|
|
|
|
|
|
|
if (!adapter->thread)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error initializing adapter thread.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
old_head = adapters.next;
|
|
|
|
adapters.next = adapter;
|
|
|
|
adapter->next = old_head;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (adapter->thread)
|
|
|
|
sthread_join(adapter->thread);
|
|
|
|
if (adapter)
|
|
|
|
free(adapter);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-04-02 15:28:12 +00:00
|
|
|
static int remove_adapter(void *data, struct libusb_device *dev)
|
2015-04-02 13:43:23 +00:00
|
|
|
{
|
|
|
|
struct libusb_adapter *adapter = (struct libusb_adapter*)&adapters;
|
2015-04-03 03:26:58 +00:00
|
|
|
struct libusb_hid *hid = (struct libusb_hid*)data;
|
2015-04-02 13:43:23 +00:00
|
|
|
|
|
|
|
while (adapter->next != NULL)
|
|
|
|
{
|
|
|
|
if (adapter->next->device == dev)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Device 0x%p disconnected.\n", adapter->next->device);
|
|
|
|
|
|
|
|
struct libusb_adapter *new_next = NULL;
|
|
|
|
adapter->next->quitting = true;
|
|
|
|
sthread_join(adapter->next->thread);
|
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
pad_connection_pad_deinit(&hid->slots[adapter->slot], adapter->slot);
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
libusb_close(adapter->next->handle);
|
|
|
|
|
|
|
|
new_next = adapter->next->next;
|
|
|
|
free(adapter->next);
|
|
|
|
adapter->next = new_next;
|
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
adapter = adapter->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int libusb_hid_hotplug_callback(struct libusb_context *ctx,
|
|
|
|
struct libusb_device *dev, libusb_hotplug_event event, void *user_data)
|
|
|
|
{
|
2015-04-02 15:28:12 +00:00
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)user_data;
|
2015-04-02 13:43:23 +00:00
|
|
|
|
|
|
|
switch (event)
|
|
|
|
{
|
|
|
|
case LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED:
|
2015-04-02 15:28:12 +00:00
|
|
|
add_adapter(hid, dev);
|
2015-04-02 13:43:23 +00:00
|
|
|
break;
|
|
|
|
case LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT:
|
2015-04-02 15:28:12 +00:00
|
|
|
remove_adapter(hid, dev);
|
2015-04-02 13:43:23 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Unhandled event: %d\n", event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool libusb_hid_joypad_query(void *data, unsigned pad)
|
|
|
|
{
|
|
|
|
return pad < MAX_USERS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *libusb_hid_joypad_name(void *data, unsigned pad)
|
|
|
|
{
|
|
|
|
/* TODO/FIXME - implement properly */
|
|
|
|
if (pad >= MAX_USERS)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t libusb_hid_joypad_get_buttons(void *data, unsigned port)
|
|
|
|
{
|
2015-04-03 03:26:58 +00:00
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)data;
|
|
|
|
if (hid)
|
|
|
|
return pad_connection_get_buttons(&hid->slots[port], port);
|
2015-04-02 13:43:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool libusb_hid_joypad_button(void *data, unsigned port, uint16_t joykey)
|
|
|
|
{
|
2015-04-03 03:26:58 +00:00
|
|
|
uint64_t buttons = libusb_hid_joypad_get_buttons(data, port);
|
|
|
|
|
|
|
|
if (joykey == NO_BTN)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Check hat. */
|
|
|
|
if (GET_HAT_DIR(joykey))
|
|
|
|
return false;
|
2015-04-02 13:43:23 +00:00
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
/* Check the button. */
|
|
|
|
if ((port < MAX_USERS) && (joykey < 32))
|
|
|
|
return ((buttons & (1 << joykey)) != 0);
|
2015-04-02 13:43:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool libusb_hid_joypad_rumble(void *data, unsigned pad,
|
|
|
|
enum retro_rumble_effect effect, uint16_t strength)
|
|
|
|
{
|
2015-04-03 03:26:58 +00:00
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)data;
|
|
|
|
if (!hid)
|
|
|
|
return false;
|
|
|
|
return pad_connection_rumble(&hid->slots[pad], pad, effect, strength);
|
2015-04-02 13:43:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int16_t libusb_hid_joypad_axis(void *data, unsigned port, uint32_t joyaxis)
|
|
|
|
{
|
2015-04-03 03:26:58 +00:00
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)data;
|
|
|
|
int16_t val = 0;
|
2015-04-02 13:43:23 +00:00
|
|
|
|
2015-04-03 03:26:58 +00:00
|
|
|
if (joyaxis == AXIS_NONE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (AXIS_NEG_GET(joyaxis) < 4)
|
|
|
|
{
|
|
|
|
val = pad_connection_get_axis(&hid->slots[port], port, AXIS_NEG_GET(joyaxis));
|
|
|
|
|
|
|
|
if (val >= 0)
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
else if(AXIS_POS_GET(joyaxis) < 4)
|
|
|
|
{
|
|
|
|
val = pad_connection_get_axis(&hid->slots[port], port, AXIS_POS_GET(joyaxis));
|
|
|
|
|
|
|
|
if (val <= 0)
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
2015-04-02 13:43:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void libusb_hid_free(void *data)
|
|
|
|
{
|
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)data;
|
|
|
|
|
2015-04-02 20:51:04 +00:00
|
|
|
pad_connection_destroy(hid->slots);
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
while(adapters.next)
|
2015-04-02 15:28:12 +00:00
|
|
|
remove_adapter(hid, adapters.next->device);
|
2015-04-02 13:43:23 +00:00
|
|
|
|
|
|
|
libusb_hotplug_deregister_callback(NULL, hid->hp);
|
|
|
|
|
|
|
|
libusb_exit(NULL);
|
|
|
|
if (hid)
|
|
|
|
free(hid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *libusb_hid_init(void)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
int ret, count;
|
|
|
|
struct libusb_device **devices;
|
|
|
|
libusb_hid_t *hid = (libusb_hid_t*)calloc(1, sizeof(*hid));
|
|
|
|
|
|
|
|
if (!hid)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
ret = libusb_init(NULL);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!libusb_has_capability(LIBUSB_CAP_HAS_HOTPLUG))
|
|
|
|
goto error;
|
|
|
|
|
2015-04-04 14:32:06 +00:00
|
|
|
hid->slots = (joypad_connection_t*)pad_connection_init(MAX_USERS);
|
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
count = libusb_get_device_list(NULL, &devices);
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
libusb_get_device_descriptor(devices[i], &desc);
|
|
|
|
|
|
|
|
if (desc.idVendor > 0 && desc.idProduct > 0)
|
2015-04-02 15:28:12 +00:00
|
|
|
add_adapter(hid, devices[i]);
|
2015-04-02 13:43:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 0)
|
|
|
|
libusb_free_device_list(devices, 1);
|
|
|
|
|
|
|
|
ret = libusb_hotplug_register_callback(NULL,
|
|
|
|
LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED |
|
2015-04-06 02:53:05 +00:00
|
|
|
LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT, 0,
|
2015-04-02 13:43:23 +00:00
|
|
|
LIBUSB_HOTPLUG_MATCH_ANY,
|
|
|
|
LIBUSB_HOTPLUG_MATCH_ANY,
|
|
|
|
LIBUSB_HOTPLUG_MATCH_ANY,
|
|
|
|
libusb_hid_hotplug_callback,
|
2015-04-02 15:28:12 +00:00
|
|
|
hid,
|
2015-04-02 13:43:23 +00:00
|
|
|
&hid->hp);
|
|
|
|
|
|
|
|
if (ret != LIBUSB_SUCCESS)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error creating a hotplug callback.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2015-04-02 20:51:04 +00:00
|
|
|
|
2015-04-02 13:43:23 +00:00
|
|
|
return hid;
|
|
|
|
|
|
|
|
error:
|
|
|
|
libusb_hid_free(hid);
|
|
|
|
return hid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void libusb_hid_poll(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
hid_driver_t libusb_hid = {
|
|
|
|
libusb_hid_init,
|
|
|
|
libusb_hid_joypad_query,
|
|
|
|
libusb_hid_free,
|
|
|
|
libusb_hid_joypad_button,
|
|
|
|
libusb_hid_joypad_get_buttons,
|
|
|
|
libusb_hid_joypad_axis,
|
|
|
|
libusb_hid_poll,
|
|
|
|
libusb_hid_joypad_rumble,
|
|
|
|
libusb_hid_joypad_name,
|
|
|
|
"libusb",
|
|
|
|
};
|