504 lines
19 KiB
C
504 lines
19 KiB
C
#include "virt_ds5.h"
|
|
#include "message.h"
|
|
|
|
#include <bits/types/time_t.h>
|
|
#include <linux/uhid.h>
|
|
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <pthread.h>
|
|
#include <stdint.h>
|
|
|
|
#define DS_FEATURE_REPORT_PAIRING_INFO 0x09
|
|
#define DS_FEATURE_REPORT_PAIRING_INFO_SIZE 20
|
|
|
|
#define DS_FEATURE_REPORT_FIRMWARE_INFO 0x20
|
|
#define DS_FEATURE_REPORT_FIRMWARE_INFO_SIZE 64
|
|
|
|
#define DS_FEATURE_REPORT_CALIBRATION 0x05
|
|
#define DS_FEATURE_REPORT_CALIBRATION_SIZE 41
|
|
|
|
#define DS_INPUT_REPORT_USB 0x01
|
|
#define DS_INPUT_REPORT_USB_SIZE 64
|
|
|
|
#define DS_OUTPUT_VALID_FLAG0_HAPTICS_SELECT 0x02
|
|
|
|
#define DS_OUTPUT_VALID_FLAG2_COMPATIBLE_VIBRATION2 0x04
|
|
#define DS_OUTPUT_VALID_FLAG0_COMPATIBLE_VIBRATION 0x01
|
|
|
|
#define DS_OUTPUT_VALID_FLAG1_LIGHTBAR_CONTROL_ENABLE 0x04
|
|
|
|
#define DS5_SPEC_DELTA_TIME 4096.0f
|
|
|
|
static const char* path = "/dev/uhid";
|
|
|
|
//static const char* const MAC_ADDR_STR = "e8:47:3a:d6:e7:74";
|
|
static const uint8_t MAC_ADDR[] = { 0x74, 0xe7, 0xd6, 0x3a, 0x47, 0xe8 };
|
|
|
|
static unsigned char rdesc[] = {
|
|
0x05, 0x01, 0x09, 0x05, 0xA1, 0x01, 0x85, 0x01, 0x09, 0x30, 0x09, 0x31, 0x09, 0x32, 0x09, 0x35,
|
|
0x09, 0x33, 0x09, 0x34, 0x15, 0x00, 0x26, 0xFF, 0x00, 0x75, 0x08, 0x95, 0x06, 0x81, 0x02, 0x06,
|
|
0x00, 0xFF, 0x09, 0x20, 0x95, 0x01, 0x81, 0x02, 0x05, 0x01, 0x09, 0x39, 0x15, 0x00, 0x25, 0x07,
|
|
0x35, 0x00, 0x46, 0x3B, 0x01, 0x65, 0x14, 0x75, 0x04, 0x95, 0x01, 0x81, 0x42, 0x65, 0x00, 0x05,
|
|
0x09, 0x19, 0x01, 0x29, 0x0F, 0x15, 0x00, 0x25, 0x01, 0x75, 0x01, 0x95, 0x0F, 0x81, 0x02, 0x06,
|
|
0x00, 0xFF, 0x09, 0x21, 0x95, 0x0D, 0x81, 0x02, 0x06, 0x00, 0xFF, 0x09, 0x22, 0x15, 0x00, 0x26,
|
|
0xFF, 0x00, 0x75, 0x08, 0x95, 0x34, 0x81, 0x02, 0x85, 0x02, 0x09, 0x23, 0x95, 0x3F, 0x91, 0x02,
|
|
0x85, 0x05, 0x09, 0x33, 0x95, 0x28, 0xB1, 0x02, 0x85, 0x08, 0x09, 0x34, 0x95, 0x2F, 0xB1, 0x02,
|
|
0x85, 0x09, 0x09, 0x24, 0x95, 0x13, 0xB1, 0x02, 0x85, 0x0A, 0x09, 0x25, 0x95, 0x1A, 0xB1, 0x02,
|
|
0x85, 0x20, 0x09, 0x26, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0x21, 0x09, 0x27, 0x95, 0x04, 0xB1, 0x02,
|
|
0x85, 0x22, 0x09, 0x40, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0x80, 0x09, 0x28, 0x95, 0x3F, 0xB1, 0x02,
|
|
0x85, 0x81, 0x09, 0x29, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0x82, 0x09, 0x2A, 0x95, 0x09, 0xB1, 0x02,
|
|
0x85, 0x83, 0x09, 0x2B, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0x84, 0x09, 0x2C, 0x95, 0x3F, 0xB1, 0x02,
|
|
0x85, 0x85, 0x09, 0x2D, 0x95, 0x02, 0xB1, 0x02, 0x85, 0xA0, 0x09, 0x2E, 0x95, 0x01, 0xB1, 0x02,
|
|
0x85, 0xE0, 0x09, 0x2F, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0xF0, 0x09, 0x30, 0x95, 0x3F, 0xB1, 0x02,
|
|
0x85, 0xF1, 0x09, 0x31, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0xF2, 0x09, 0x32, 0x95, 0x34, 0xB1, 0x02,
|
|
0x85, 0xF4, 0x09, 0x35, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0xF5, 0x09, 0x36, 0x95, 0x03, 0xB1, 0x02,
|
|
0x85, 0x60, 0x09, 0x41, 0x95, 0x3F, 0xB1, 0x02, 0x85, 0x61, 0x09, 0x42, 0xB1, 0x02, 0x85, 0x62,
|
|
0x09, 0x43, 0xB1, 0x02, 0x85, 0x63, 0x09, 0x44, 0xB1, 0x02, 0x85, 0x64, 0x09, 0x45, 0xB1, 0x02,
|
|
0x85, 0x65, 0x09, 0x46, 0xB1, 0x02, 0x85, 0x68, 0x09, 0x47, 0xB1, 0x02, 0x85, 0x70, 0x09, 0x48,
|
|
0xB1, 0x02, 0x85, 0x71, 0x09, 0x49, 0xB1, 0x02, 0x85, 0x72, 0x09, 0x4A, 0xB1, 0x02, 0x85, 0x73,
|
|
0x09, 0x4B, 0xB1, 0x02, 0x85, 0x74, 0x09, 0x4C, 0xB1, 0x02, 0x85, 0x75, 0x09, 0x4D, 0xB1, 0x02,
|
|
0x85, 0x76, 0x09, 0x4E, 0xB1, 0x02, 0x85, 0x77, 0x09, 0x4F, 0xB1, 0x02, 0x85, 0x78, 0x09, 0x50,
|
|
0xB1, 0x02, 0x85, 0x79, 0x09, 0x51, 0xB1, 0x02, 0x85, 0x7A, 0x09, 0x52, 0xB1, 0x02, 0x85, 0x7B,
|
|
0x09, 0x53, 0xB1, 0x02, 0xC0
|
|
};
|
|
|
|
static int uhid_write(int fd, const struct uhid_event *ev)
|
|
{
|
|
ssize_t ret;
|
|
|
|
ret = write(fd, ev, sizeof(*ev));
|
|
if (ret < 0) {
|
|
fprintf(stderr, "Cannot write to uhid: %d\n", (int)ret);
|
|
return -errno;
|
|
} else if (ret != sizeof(*ev)) {
|
|
fprintf(stderr, "Wrong size written to uhid: %zd != %zu\n",
|
|
ret, sizeof(*ev));
|
|
return -EFAULT;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static int create(int fd)
|
|
{
|
|
struct uhid_event ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
ev.type = UHID_CREATE;
|
|
strcpy((char*)ev.u.create.name, "Sony Interactive Entertainment DualSense Wireless Controller");
|
|
ev.u.create.rd_data = rdesc;
|
|
ev.u.create.rd_size = sizeof(rdesc);
|
|
ev.u.create.bus = BUS_USB;
|
|
ev.u.create.vendor = 0x054C;
|
|
ev.u.create.product = 0x0df2;
|
|
ev.u.create.version = 0;
|
|
ev.u.create.country = 0;
|
|
memset(&ev.u.create.uniq, 0, sizeof(ev.u.create.uniq));
|
|
memcpy(&ev.u.create.uniq, (void*)MAC_ADDR, sizeof(MAC_ADDR));
|
|
|
|
return uhid_write(fd, &ev);
|
|
}
|
|
|
|
static void destroy(int fd)
|
|
{
|
|
struct uhid_event ev;
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
ev.type = UHID_DESTROY;
|
|
|
|
uhid_write(fd, &ev);
|
|
}
|
|
|
|
int virt_dualsense_init(virt_dualsense_t *const out_gamepad) {
|
|
int ret = 0;
|
|
|
|
out_gamepad->dt_sum = 0;
|
|
out_gamepad->dt_buffer_current = 0;
|
|
memset(out_gamepad->dt_buffer, 0, sizeof(out_gamepad->dt_buffer));
|
|
out_gamepad->debug = false;
|
|
out_gamepad->empty_reports = 0;
|
|
out_gamepad->last_time = 0;
|
|
out_gamepad->seq_num = 0;
|
|
|
|
out_gamepad->fd = open(path, O_RDWR | O_CLOEXEC /* | O_NONBLOCK */);
|
|
if (out_gamepad->fd < 0) {
|
|
fprintf(stderr, "Cannot open uhid-cdev %s: %d\n", path, out_gamepad->fd);
|
|
ret = out_gamepad->fd;
|
|
goto virt_dualshock_init_err;
|
|
}
|
|
|
|
ret = create(out_gamepad->fd);
|
|
if (ret) {
|
|
fprintf(stderr, "Error creating uhid device: %d\n", ret);
|
|
close(out_gamepad->fd);
|
|
goto virt_dualshock_init_err;
|
|
}
|
|
|
|
virt_dualshock_init_err:
|
|
return ret;
|
|
}
|
|
|
|
int virt_dualsense_get_fd(virt_dualsense_t *const in_gamepad) {
|
|
return in_gamepad->fd;
|
|
}
|
|
|
|
int virt_dualsense_event(virt_dualsense_t *const gamepad, gamepad_status_t *const out_device_status, int out_message_pipe_fd)
|
|
{
|
|
struct uhid_event ev;
|
|
ssize_t ret;
|
|
|
|
int fd = virt_dualsense_get_fd(gamepad);
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
ret = read(fd, &ev, sizeof(ev));
|
|
if (ret == 0) {
|
|
fprintf(stderr, "Read HUP on uhid-cdev\n");
|
|
return -EFAULT;
|
|
} else if (ret == -1) {
|
|
return 0;
|
|
} else if (ret < 0) {
|
|
fprintf(stderr, "Cannot read uhid-cdev: %d\n", (int)ret);
|
|
return -errno;
|
|
} else if (ret != sizeof(ev)) {
|
|
fprintf(stderr, "Invalid size read from uhid-dev: %zd != %zu\n",
|
|
ret, sizeof(ev));
|
|
return -EFAULT;
|
|
}
|
|
|
|
switch (ev.type) {
|
|
case UHID_START:
|
|
if (gamepad->debug) {
|
|
printf("UHID_START from uhid-dev\n");
|
|
}
|
|
break;
|
|
case UHID_STOP:
|
|
if (gamepad->debug) {
|
|
printf("UHID_STOP from uhid-dev\n");
|
|
}
|
|
break;
|
|
case UHID_OPEN:
|
|
if (gamepad->debug) {
|
|
printf("UHID_OPEN from uhid-dev\n");
|
|
}
|
|
break;
|
|
case UHID_CLOSE:
|
|
if (gamepad->debug) {
|
|
fprintf(stderr, "UHID_CLOSE from uhid-dev\n");
|
|
}
|
|
break;
|
|
case UHID_OUTPUT:
|
|
if (gamepad->debug) {
|
|
printf("UHID_OUTPUT from uhid-dev\n");
|
|
}
|
|
// Rumble and LED messages are adverised via OUTPUT reports; ignore the rest
|
|
if (ev.u.output.rtype != UHID_OUTPUT_REPORT)
|
|
return 0;
|
|
|
|
if (ev.u.output.size != 48) {
|
|
fprintf(stderr, "Invalid data length: got %d, expected 48\n", (int)ev.u.output.size);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// first byte is report-id which is 0x01
|
|
if (ev.u.output.data[0] != 0x02) {
|
|
fprintf(stderr, "Unrecognised report-id: got 0x%x expected 0x02\n", (int)ev.u.output.data[0]);
|
|
return 0;
|
|
}
|
|
|
|
const uint8_t valid_flag0 = ev.u.output.data[1];
|
|
const uint8_t valid_flag1 = ev.u.output.data[2];
|
|
// For DualShock 4 compatibility mode.
|
|
const uint8_t motor_right = ev.u.output.data[3];
|
|
const uint8_t motor_left = ev.u.output.data[4];
|
|
|
|
// Audio controls
|
|
const uint8_t reserved[4] = { ev.u.output.data[5], ev.u.output.data[6], ev.u.output.data[7], ev.u.output.data[8]};
|
|
const uint8_t mute_button_led = ev.u.output.data[9];
|
|
|
|
uint8_t power_save_control = ev.u.output.data[10];
|
|
uint8_t reserved2[28];
|
|
|
|
// LEDs and lightbar
|
|
uint8_t valid_flag2 = ev.u.output.data[39];
|
|
uint8_t reserved3[2] = {ev.u.output.data[40], ev.u.output.data[41]};
|
|
uint8_t lightbar_setup = ev.u.output.data[42];
|
|
uint8_t led_brightness = ev.u.output.data[43];
|
|
uint8_t player_leds = ev.u.output.data[44];
|
|
uint8_t lightbar_red = ev.u.output.data[45];
|
|
uint8_t lightbar_green = ev.u.output.data[46];
|
|
uint8_t lightbar_blue = ev.u.output.data[47];
|
|
|
|
if ((valid_flag0 & DS_OUTPUT_VALID_FLAG0_HAPTICS_SELECT)) {
|
|
if (/*(valid_flag2 & DS_OUTPUT_VALID_FLAG2_COMPATIBLE_VIBRATION2) ||*/ (valid_flag0 & DS_OUTPUT_VALID_FLAG0_COMPATIBLE_VIBRATION)) {
|
|
out_device_status->motors_intensity[0] = motor_left;
|
|
out_device_status->motors_intensity[1] = motor_right;
|
|
++out_device_status->rumble_events_count;
|
|
|
|
const out_message_t msg = {
|
|
.type = OUT_MSG_TYPE_RUMBLE,
|
|
.data = {
|
|
.rumble = {
|
|
.motors_left = motor_left,
|
|
.motors_right = motor_right,
|
|
}
|
|
}
|
|
};
|
|
|
|
const int write_res = write(out_message_pipe_fd, (void*)&msg, sizeof(msg));
|
|
if (write_res != 0) {
|
|
return write_res;
|
|
}
|
|
|
|
if (gamepad->debug) {
|
|
printf(
|
|
"Updated rumble -- motor_left: %d, motor_right: %d, valid_flag0; %d, valid_flag1: %d\n",
|
|
motor_left,
|
|
motor_right,
|
|
valid_flag0,
|
|
valid_flag1
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (valid_flag1 & DS_OUTPUT_VALID_FLAG1_LIGHTBAR_CONTROL_ENABLE) {
|
|
const out_message_t msg = {
|
|
.type = OUT_MSG_TYPE_LEDS,
|
|
.data = {
|
|
.leds = {
|
|
.r = lightbar_red,
|
|
.g = lightbar_green,
|
|
.b = lightbar_blue,
|
|
}
|
|
}
|
|
};
|
|
|
|
const int write_res = write(out_message_pipe_fd, (void*)&msg, sizeof(msg));
|
|
if (write_res != 0) {
|
|
return write_res;
|
|
}
|
|
}
|
|
|
|
break;
|
|
case UHID_OUTPUT_EV:
|
|
if (gamepad->debug) {
|
|
printf("UHID_OUTPUT_EV from uhid-dev\n");
|
|
}
|
|
break;
|
|
case UHID_GET_REPORT:
|
|
//fprintf(stderr, "UHID_GET_REPORT from uhid-dev, report=%d\n", ev.u.get_report.rnum);
|
|
if (ev.u.get_report.rnum == DS_FEATURE_REPORT_PAIRING_INFO) {
|
|
const struct uhid_event mac_addr_response = {
|
|
.type = UHID_GET_REPORT_REPLY,
|
|
.u = {
|
|
.get_report_reply = {
|
|
.size = 20,
|
|
.id = ev.u.get_report.id,
|
|
.err = 0,
|
|
.data = {
|
|
DS_FEATURE_REPORT_PAIRING_INFO,
|
|
MAC_ADDR[0], MAC_ADDR[1], MAC_ADDR[2], MAC_ADDR[3], MAC_ADDR[4], MAC_ADDR[5],
|
|
0x08,
|
|
0x25, 0x00, 0x1e, 0x00, 0xee, 0x74, 0xd0, 0xbc,
|
|
0x00, 0x00, 0x00, 0x00
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
uhid_write(fd, &mac_addr_response);
|
|
} else if (ev.u.get_report.rnum == DS_FEATURE_REPORT_FIRMWARE_INFO) {
|
|
const struct uhid_event firmware_info_response = {
|
|
.type = UHID_GET_REPORT_REPLY,
|
|
.u = {
|
|
.get_report_reply = {
|
|
.size = DS_FEATURE_REPORT_FIRMWARE_INFO_SIZE,
|
|
.id = ev.u.get_report.id,
|
|
.err = 0,
|
|
.data = {
|
|
DS_FEATURE_REPORT_FIRMWARE_INFO,
|
|
0x4a, 0x75, 0x6e, 0x20, 0x31, 0x39, 0x20, 0x32, 0x30, 0x32, 0x33, 0x31, 0x34, 0x3a, 0x34,
|
|
0x37, 0x3a, 0x33, 0x34, 0x03, 0x00, 0x44, 0x00, 0x08, 0x02, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01,
|
|
0xc1, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x01, 0x00, 0x00,
|
|
0x14, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
uhid_write(fd, &firmware_info_response);
|
|
} else if (ev.u.get_report.rnum == DS_FEATURE_REPORT_CALIBRATION) {
|
|
struct uhid_event firmware_info_response = {
|
|
.type = UHID_GET_REPORT_REPLY,
|
|
.u = {
|
|
.get_report_reply = {
|
|
.size = DS_FEATURE_REPORT_CALIBRATION_SIZE,
|
|
.id = ev.u.get_report.id,
|
|
.err = 0,
|
|
.data = {
|
|
DS_FEATURE_REPORT_CALIBRATION,
|
|
0xfe, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0x83, 0x22, 0x78, 0xdd, 0x92, 0x22, 0x5f, 0xdd, 0x95,
|
|
0x22, 0x6d, 0xdd, 0x1c, 0x02, 0x1c, 0x02, 0xf2, 0x1f, 0xed, 0xdf, 0xe3, 0x20, 0xda, 0xe0, 0xee,
|
|
0x1f, 0xdf, 0xdf, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
uhid_write(fd, &firmware_info_response);
|
|
}
|
|
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Invalid event from uhid-dev: %u\n", ev.type);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
typedef enum ds5_dpad_status {
|
|
DPAD_N = 0,
|
|
DPAD_NE = 1,
|
|
DPAD_E = 2,
|
|
DPAD_SE = 3,
|
|
DPAD_S = 4,
|
|
DPAD_SW = 5,
|
|
DPAD_W = 6,
|
|
DPAD_NW = 7,
|
|
DPAD_RELEASED = 0x08,
|
|
} ds5_dpad_status_t;
|
|
|
|
static ds5_dpad_status_t ds5_dpad_from_gamepad(uint8_t dpad) {
|
|
if (dpad == 0x01) {
|
|
return DPAD_E;
|
|
} else if (dpad == 0x02) {
|
|
return DPAD_W;
|
|
} else if (dpad == 0x10) {
|
|
return DPAD_N;
|
|
} else if (dpad == 0x20) {
|
|
return DPAD_S;
|
|
} else if (dpad == 0x11) {
|
|
return DPAD_NE;
|
|
} else if (dpad == 0x12) {
|
|
return DPAD_NW;
|
|
} else if (dpad == 0x21) {
|
|
return DPAD_SE;
|
|
} else if (dpad == 0x22) {
|
|
return DPAD_SW;
|
|
}
|
|
|
|
return DPAD_RELEASED;
|
|
}
|
|
|
|
void virt_dualsense_close(virt_dualsense_t *const out_gamepad) {
|
|
destroy(out_gamepad->fd);
|
|
}
|
|
|
|
void virt_dualsense_compose(virt_dualsense_t *const gamepad, gamepad_status_t *const in_device_status, uint8_t *const out_buf) {
|
|
const int64_t time_us = in_device_status->last_gyro_motion_time.tv_sec * 1000000 + in_device_status->last_gyro_motion_time.tv_usec;
|
|
|
|
const int delta_time = time_us - gamepad->last_time;
|
|
gamepad->last_time = time_us;
|
|
|
|
// find the average Δt in the last 30 non-zero inputs;
|
|
// this has to run thousands of times a second so i'm trying to do this as fast as possible
|
|
if (delta_time == 0) {
|
|
gamepad->empty_reports++;
|
|
} else if (delta_time < 1000000 && delta_time > 0 ) { // ignore outliers
|
|
gamepad->dt_sum -= gamepad->dt_buffer[gamepad->dt_buffer_current];
|
|
gamepad->dt_sum += delta_time;
|
|
gamepad->dt_buffer[gamepad->dt_buffer_current] = delta_time;
|
|
|
|
if (gamepad->dt_buffer_current == 29) {
|
|
gamepad->dt_buffer_current = 0;
|
|
} else {
|
|
gamepad->dt_buffer_current++;
|
|
}
|
|
}
|
|
|
|
static uint64_t sim_time = 0;
|
|
const double correction_factor = DS5_SPEC_DELTA_TIME / ((double)gamepad->dt_sum / 30.f);
|
|
if (delta_time != 0) {
|
|
sim_time += (int)((double)delta_time * correction_factor);
|
|
}
|
|
|
|
const uint32_t timestamp = sim_time + (int)((double)gamepad->empty_reports * DS5_SPEC_DELTA_TIME);
|
|
|
|
const int16_t g_x = in_device_status->raw_gyro[0];
|
|
const int16_t g_y = (int16_t)(-1) * in_device_status->raw_gyro[1]; // Swap Y and Z
|
|
const int16_t g_z = (int16_t)(-1) * in_device_status->raw_gyro[2]; // Swap Y and Z
|
|
const int16_t a_x = in_device_status->raw_accel[0];
|
|
const int16_t a_y = (int16_t)(-1) * in_device_status->raw_accel[1]; // Swap Y and Z
|
|
const int16_t a_z = (int16_t)(-1) * in_device_status->raw_accel[2]; // Swap Y and Z
|
|
|
|
|
|
out_buf[0] = DS_INPUT_REPORT_USB; // [00] report ID (0x01)
|
|
out_buf[1] = ((uint64_t)((int64_t)in_device_status->joystick_positions[0][0] + (int64_t)32768) >> (uint64_t)8); // L stick, X axis
|
|
out_buf[2] = ((uint64_t)((int64_t)in_device_status->joystick_positions[0][1] + (int64_t)32768) >> (uint64_t)8); // L stick, Y axis
|
|
out_buf[3] = ((uint64_t)((int64_t)in_device_status->joystick_positions[1][0] + (int64_t)32768) >> (uint64_t)8); // R stick, X axis
|
|
out_buf[4] = ((uint64_t)((int64_t)in_device_status->joystick_positions[1][1] + (int64_t)32768) >> (uint64_t)8); // R stick, Y axis
|
|
out_buf[5] = in_device_status->l2_trigger; // Z
|
|
out_buf[6] = in_device_status->r2_trigger; // RZ
|
|
out_buf[7] = gamepad->seq_num++; // seq_number
|
|
out_buf[8] = (in_device_status->square ? 0x10 : 0x00) |
|
|
(in_device_status->cross ? 0x20 : 0x00) |
|
|
(in_device_status->circle ? 0x40 : 0x00) |
|
|
(in_device_status->triangle ? 0x80 : 0x00) |
|
|
(uint8_t)ds5_dpad_from_gamepad(in_device_status->dpad);
|
|
out_buf[9] = (in_device_status->l1 ? 0x01 : 0x00) |
|
|
(in_device_status->r1 ? 0x02 : 0x00) |
|
|
(in_device_status->l2_trigger >= 225 ? 0x04 : 0x00) |
|
|
(in_device_status->r2_trigger >= 225 ? 0x08 : 0x00) |
|
|
(in_device_status->option ? 0x10 : 0x00) |
|
|
(in_device_status->share ? 0x20 : 0x00) |
|
|
(in_device_status->l3 ? 0x40 : 0x00) |
|
|
(in_device_status->r3 ? 0x80 : 0x00);
|
|
|
|
// mic button press is 0x04, touchpad press is 0x02
|
|
out_buf[10] = (in_device_status->l5 ? 0x40 : 0x00) |
|
|
(in_device_status->r5 ? 0x80 : 0x00) |
|
|
(in_device_status->l4 ? 0x10 : 0x00) |
|
|
(in_device_status->r4 ? 0x20 : 0x00) |
|
|
(in_device_status->touchpad_press ? 0x02 : 0x00) |
|
|
(in_device_status->center ? 0x01 : 0x00);
|
|
//buf[11] = ;
|
|
|
|
//buf[12] = 0x20; // [12] battery level | this is called sensor_temparature in the kernel driver but is never used...
|
|
memcpy(&out_buf[16], &g_x, sizeof(int16_t));
|
|
memcpy(&out_buf[18], &g_y, sizeof(int16_t));
|
|
memcpy(&out_buf[20], &g_z, sizeof(int16_t));
|
|
memcpy(&out_buf[22], &a_x, sizeof(int16_t));
|
|
memcpy(&out_buf[24], &a_y, sizeof(int16_t));
|
|
memcpy(&out_buf[26], &a_z, sizeof(int16_t));
|
|
memcpy(&out_buf[28], ×tamp, sizeof(timestamp));
|
|
|
|
// TODO: when touch is detected send 0x7F, when not 0x80
|
|
out_buf[33] = 0x80; //touch0 active?
|
|
out_buf[37] = 0x80; //touch1 active?
|
|
|
|
/*
|
|
buf[30] = 0x1b; // no headset attached
|
|
*/
|
|
out_buf[62] = 0x80; // IDK... it seems constant...
|
|
out_buf[57] = 0x80; // IDK... it seems constant...
|
|
out_buf[53] = 0x80; // IDK... it seems constant...
|
|
out_buf[48] = 0x80; // IDK... it seems constant...
|
|
out_buf[35] = 0x80; // IDK... it seems constant...
|
|
out_buf[44] = 0x80; // IDK... it seems constant...
|
|
}
|
|
|
|
int virt_dualsense_send(virt_dualsense_t *const gamepad, uint8_t *const out_buf) {
|
|
struct uhid_event l = {
|
|
.type = UHID_INPUT2,
|
|
.u = {
|
|
.input2 = {
|
|
.size = 64,
|
|
}
|
|
}
|
|
};
|
|
|
|
memcpy(&l.u.input2.data[0], &out_buf[0], l.u.input2.size);
|
|
|
|
return uhid_write(gamepad->fd, &l);
|
|
}
|