2020-02-04 23:27:25 +00:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2021-01-02 18:25:38 +00:00
|
|
|
Copyright (C) 1997-2021 Sam Lantinga <slouken@libsdl.org>
|
2020-02-04 23:27:25 +00:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
#include "../../SDL_internal.h"
|
|
|
|
|
|
|
|
#ifdef SDL_JOYSTICK_HIDAPI
|
|
|
|
|
|
|
|
/* Handle rumble on a separate thread so it doesn't block the application */
|
|
|
|
|
|
|
|
#include "SDL_thread.h"
|
2021-01-01 19:12:36 +00:00
|
|
|
#include "SDL_timer.h"
|
2020-02-04 23:27:25 +00:00
|
|
|
#include "SDL_hidapijoystick_c.h"
|
|
|
|
#include "SDL_hidapi_rumble.h"
|
2020-02-05 00:05:39 +00:00
|
|
|
#include "../../thread/SDL_systhread.h"
|
2020-02-04 23:27:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct SDL_HIDAPI_RumbleRequest
|
|
|
|
{
|
|
|
|
SDL_HIDAPI_Device *device;
|
2020-02-07 19:02:34 +00:00
|
|
|
Uint8 data[2*USB_PACKET_LENGTH]; /* need enough space for the biggest report: dualshock4 is 78 bytes */
|
2020-02-04 23:27:25 +00:00
|
|
|
int size;
|
|
|
|
struct SDL_HIDAPI_RumbleRequest *prev;
|
|
|
|
|
|
|
|
} SDL_HIDAPI_RumbleRequest;
|
|
|
|
|
|
|
|
typedef struct SDL_HIDAPI_RumbleContext
|
|
|
|
{
|
2020-02-07 19:02:34 +00:00
|
|
|
SDL_atomic_t initialized;
|
|
|
|
SDL_atomic_t running;
|
2020-02-04 23:27:25 +00:00
|
|
|
SDL_Thread *thread;
|
|
|
|
SDL_mutex *lock;
|
|
|
|
SDL_sem *request_sem;
|
|
|
|
SDL_HIDAPI_RumbleRequest *requests_head;
|
|
|
|
SDL_HIDAPI_RumbleRequest *requests_tail;
|
|
|
|
} SDL_HIDAPI_RumbleContext;
|
|
|
|
|
|
|
|
static SDL_HIDAPI_RumbleContext rumble_context;
|
|
|
|
|
|
|
|
static int SDL_HIDAPI_RumbleThread(void *data)
|
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = (SDL_HIDAPI_RumbleContext *)data;
|
|
|
|
|
|
|
|
SDL_SetThreadPriority(SDL_THREAD_PRIORITY_HIGH);
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
while (SDL_AtomicGet(&ctx->running)) {
|
2020-02-04 23:27:25 +00:00
|
|
|
SDL_HIDAPI_RumbleRequest *request = NULL;
|
|
|
|
|
|
|
|
SDL_SemWait(ctx->request_sem);
|
|
|
|
|
|
|
|
SDL_LockMutex(ctx->lock);
|
|
|
|
request = ctx->requests_tail;
|
|
|
|
if (request) {
|
|
|
|
if (request == ctx->requests_head) {
|
|
|
|
ctx->requests_head = NULL;
|
|
|
|
}
|
|
|
|
ctx->requests_tail = request->prev;
|
|
|
|
}
|
|
|
|
SDL_UnlockMutex(ctx->lock);
|
|
|
|
|
|
|
|
if (request) {
|
|
|
|
SDL_LockMutex(request->device->dev_lock);
|
2020-03-04 22:59:44 +00:00
|
|
|
if (request->device->dev) {
|
2021-01-15 07:49:27 +00:00
|
|
|
#ifdef DEBUG_RUMBLE
|
|
|
|
HIDAPI_DumpPacket("Rumble packet: size = %d", request->data, request->size);
|
|
|
|
#endif
|
|
|
|
hid_write(request->device->dev, request->data, request->size);
|
2020-03-04 22:59:44 +00:00
|
|
|
}
|
2020-02-04 23:27:25 +00:00
|
|
|
SDL_UnlockMutex(request->device->dev_lock);
|
|
|
|
(void)SDL_AtomicDecRef(&request->device->rumble_pending);
|
|
|
|
SDL_free(request);
|
2021-01-01 19:12:36 +00:00
|
|
|
|
|
|
|
/* Make sure we're not starving report reads when there's lots of rumble */
|
|
|
|
SDL_Delay(10);
|
2020-02-04 23:27:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SDL_HIDAPI_StopRumbleThread(SDL_HIDAPI_RumbleContext *ctx)
|
|
|
|
{
|
2020-12-07 17:38:21 +00:00
|
|
|
SDL_HIDAPI_RumbleRequest *request;
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
SDL_AtomicSet(&ctx->running, SDL_FALSE);
|
2020-02-04 23:27:25 +00:00
|
|
|
|
|
|
|
if (ctx->thread) {
|
|
|
|
int result;
|
|
|
|
|
|
|
|
SDL_SemPost(ctx->request_sem);
|
|
|
|
SDL_WaitThread(ctx->thread, &result);
|
|
|
|
ctx->thread = NULL;
|
|
|
|
}
|
|
|
|
|
2020-12-07 17:38:21 +00:00
|
|
|
SDL_LockMutex(ctx->lock);
|
|
|
|
while (ctx->requests_tail) {
|
|
|
|
request = ctx->requests_tail;
|
|
|
|
if (request == ctx->requests_head) {
|
|
|
|
ctx->requests_head = NULL;
|
|
|
|
}
|
|
|
|
ctx->requests_tail = request->prev;
|
|
|
|
|
|
|
|
(void)SDL_AtomicDecRef(&request->device->rumble_pending);
|
|
|
|
SDL_free(request);
|
|
|
|
}
|
|
|
|
SDL_UnlockMutex(ctx->lock);
|
2020-02-04 23:27:25 +00:00
|
|
|
|
|
|
|
if (ctx->request_sem) {
|
|
|
|
SDL_DestroySemaphore(ctx->request_sem);
|
|
|
|
ctx->request_sem = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->lock) {
|
|
|
|
SDL_DestroyMutex(ctx->lock);
|
|
|
|
ctx->lock = NULL;
|
|
|
|
}
|
2020-02-07 19:02:34 +00:00
|
|
|
|
|
|
|
SDL_AtomicSet(&ctx->initialized, SDL_FALSE);
|
2020-02-04 23:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
SDL_HIDAPI_StartRumbleThread(SDL_HIDAPI_RumbleContext *ctx)
|
|
|
|
{
|
|
|
|
ctx->lock = SDL_CreateMutex();
|
|
|
|
if (!ctx->lock) {
|
|
|
|
SDL_HIDAPI_StopRumbleThread(ctx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->request_sem = SDL_CreateSemaphore(0);
|
|
|
|
if (!ctx->request_sem) {
|
|
|
|
SDL_HIDAPI_StopRumbleThread(ctx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
SDL_AtomicSet(&ctx->running, SDL_TRUE);
|
2020-02-05 00:05:39 +00:00
|
|
|
ctx->thread = SDL_CreateThreadInternal(SDL_HIDAPI_RumbleThread, "HIDAPI Rumble", 0, ctx);
|
2020-02-04 23:27:25 +00:00
|
|
|
if (!ctx->thread) {
|
|
|
|
SDL_HIDAPI_StopRumbleThread(ctx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
int SDL_HIDAPI_LockRumble(void)
|
2020-02-04 23:27:25 +00:00
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = &rumble_context;
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
if (SDL_AtomicCAS(&ctx->initialized, SDL_FALSE, SDL_TRUE)) {
|
2020-02-04 23:27:25 +00:00
|
|
|
if (SDL_HIDAPI_StartRumbleThread(ctx) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
return SDL_LockMutex(ctx->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_bool SDL_HIDAPI_GetPendingRumbleLocked(SDL_HIDAPI_Device *device, Uint8 **data, int **size, int *maximum_size)
|
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = &rumble_context;
|
2020-11-20 21:24:49 +00:00
|
|
|
SDL_HIDAPI_RumbleRequest *request, *found;
|
2020-02-07 19:02:34 +00:00
|
|
|
|
2020-11-20 21:24:49 +00:00
|
|
|
found = NULL;
|
2020-02-07 19:02:34 +00:00
|
|
|
for (request = ctx->requests_tail; request; request = request->prev) {
|
|
|
|
if (request->device == device) {
|
2020-11-20 21:24:49 +00:00
|
|
|
found = request;
|
2020-02-07 19:02:34 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-20 21:24:49 +00:00
|
|
|
if (found) {
|
|
|
|
*data = found->data;
|
|
|
|
*size = &found->size;
|
|
|
|
*maximum_size = sizeof(found->data);
|
|
|
|
return SDL_TRUE;
|
|
|
|
}
|
2020-02-07 19:02:34 +00:00
|
|
|
return SDL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SDL_HIDAPI_SendRumbleAndUnlock(SDL_HIDAPI_Device *device, const Uint8 *data, int size)
|
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = &rumble_context;
|
|
|
|
SDL_HIDAPI_RumbleRequest *request;
|
|
|
|
|
|
|
|
if (size > sizeof(request->data)) {
|
|
|
|
SDL_HIDAPI_UnlockRumble();
|
|
|
|
return SDL_SetError("Couldn't send rumble, size %d is greater than %d", size, (int)sizeof(request->data));
|
|
|
|
}
|
|
|
|
|
2020-02-04 23:27:25 +00:00
|
|
|
request = (SDL_HIDAPI_RumbleRequest *)SDL_calloc(1, sizeof(*request));
|
|
|
|
if (!request) {
|
2020-02-07 19:02:34 +00:00
|
|
|
SDL_HIDAPI_UnlockRumble();
|
2020-02-04 23:27:25 +00:00
|
|
|
return SDL_OutOfMemory();
|
|
|
|
}
|
|
|
|
request->device = device;
|
|
|
|
SDL_memcpy(request->data, data, size);
|
|
|
|
request->size = size;
|
|
|
|
|
|
|
|
SDL_AtomicIncRef(&device->rumble_pending);
|
|
|
|
|
|
|
|
if (ctx->requests_head) {
|
|
|
|
ctx->requests_head->prev = request;
|
|
|
|
} else {
|
|
|
|
ctx->requests_tail = request;
|
|
|
|
}
|
|
|
|
ctx->requests_head = request;
|
2020-02-07 19:02:34 +00:00
|
|
|
|
|
|
|
/* Make sure we unlock before posting the semaphore so the rumble thread can run immediately */
|
|
|
|
SDL_HIDAPI_UnlockRumble();
|
2020-02-04 23:27:25 +00:00
|
|
|
|
|
|
|
SDL_SemPost(ctx->request_sem);
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
void SDL_HIDAPI_UnlockRumble(void)
|
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = &rumble_context;
|
|
|
|
|
|
|
|
SDL_UnlockMutex(ctx->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SDL_HIDAPI_SendRumble(SDL_HIDAPI_Device *device, const Uint8 *data, int size)
|
|
|
|
{
|
|
|
|
Uint8 *pending_data;
|
|
|
|
int *pending_size;
|
|
|
|
int maximum_size;
|
|
|
|
|
|
|
|
if (SDL_HIDAPI_LockRumble() < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if there is a pending request for the device and update it */
|
|
|
|
if (SDL_HIDAPI_GetPendingRumbleLocked(device, &pending_data, &pending_size, &maximum_size)) {
|
|
|
|
if (size > maximum_size) {
|
|
|
|
SDL_HIDAPI_UnlockRumble();
|
|
|
|
return SDL_SetError("Couldn't send rumble, size %d is greater than %d", size, maximum_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_memcpy(pending_data, data, size);
|
|
|
|
*pending_size = size;
|
|
|
|
SDL_HIDAPI_UnlockRumble();
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SDL_HIDAPI_SendRumbleAndUnlock(device, data, size);
|
|
|
|
}
|
|
|
|
|
2020-02-04 23:42:49 +00:00
|
|
|
void SDL_HIDAPI_QuitRumble(void)
|
2020-02-04 23:27:25 +00:00
|
|
|
{
|
|
|
|
SDL_HIDAPI_RumbleContext *ctx = &rumble_context;
|
|
|
|
|
2020-02-07 19:02:34 +00:00
|
|
|
if (SDL_AtomicGet(&ctx->running)) {
|
2020-02-04 23:27:25 +00:00
|
|
|
SDL_HIDAPI_StopRumbleThread(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SDL_JOYSTICK_HIDAPI */
|
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|