#include #include #include #include #include #include #include "idzio/backend.h" #include "idzio/config.h" #include "idzio/idzio.h" #include "idzio/shifter.h" #include "idzio/xi.h" #include "util/dprintf.h" static void idz_xi_jvs_read_buttons(uint8_t *gamebtn_out); static void idz_xi_jvs_read_shifter(uint8_t *gear); static void idz_xi_jvs_read_analogs(struct idz_io_analog_state *out); static HRESULT idz_xi_config_apply(const struct idz_xi_config *cfg); static const struct idz_io_backend idz_xi_backend = { .jvs_read_buttons = idz_xi_jvs_read_buttons, .jvs_read_shifter = idz_xi_jvs_read_shifter, .jvs_read_analogs = idz_xi_jvs_read_analogs, }; static bool idz_xi_single_stick_steering; static bool idz_xi_linear_steering; static uint16_t idz_xi_left_stick_deadzone; static uint16_t idz_xi_right_stick_deadzone; const uint16_t max_stick_value = 32767; /* Apply steering wheel restriction. Real cabs only report about 76% of the output value when the wheel is turned to either of its maximum positions. */ const uint16_t max_wheel_value = 24831; HRESULT idz_xi_init(const struct idz_xi_config *cfg, const struct idz_io_backend **backend) { HRESULT hr; assert(cfg != NULL); assert(backend != NULL); hr = idz_xi_config_apply(cfg); if (FAILED(hr)) { return hr; } dprintf("XInput: Using XInput controller\n"); *backend = &idz_xi_backend; return S_OK; } static HRESULT idz_xi_config_apply(const struct idz_xi_config *cfg) { /* Deadzones check */ if (cfg->left_stick_deadzone > 32767 || cfg->left_stick_deadzone < 0) { dprintf("XInput: Left stick deadzone is too large or negative\n"); return E_INVALIDARG; } if (cfg->right_stick_deadzone > 32767 || cfg->right_stick_deadzone < 0) { dprintf("XInput: Right stick deadzone is too large or negative\n"); return E_INVALIDARG; } dprintf("XInput: --- Begin configuration ---\n"); dprintf("XInput: Single Stick Steering : %i\n", cfg->single_stick_steering); dprintf("XInput: Linear Steering . . . : %i\n", cfg->linear_steering); dprintf("XInput: Left Deadzone . . . . : %i\n", cfg->left_stick_deadzone); dprintf("XInput: Right Deadzone . . . : %i\n", cfg->right_stick_deadzone); dprintf("XInput: --- End configuration ---\n"); idz_xi_single_stick_steering = cfg->single_stick_steering; idz_xi_linear_steering = cfg->linear_steering; idz_xi_left_stick_deadzone = cfg->left_stick_deadzone; idz_xi_right_stick_deadzone = cfg->right_stick_deadzone; return S_OK; } static void idz_xi_jvs_read_buttons(uint8_t *gamebtn_out) { uint8_t gamebtn; XINPUT_STATE xi; WORD xb; assert(gamebtn_out != NULL); gamebtn = 0; memset(&xi, 0, sizeof(xi)); XInputGetState(0, &xi); xb = xi.Gamepad.wButtons; if (xb & XINPUT_GAMEPAD_DPAD_UP) { gamebtn |= IDZ_IO_GAMEBTN_UP; } if (xb & XINPUT_GAMEPAD_DPAD_DOWN) { gamebtn |= IDZ_IO_GAMEBTN_DOWN; } if (xb & XINPUT_GAMEPAD_DPAD_LEFT) { gamebtn |= IDZ_IO_GAMEBTN_LEFT; } if (xb & XINPUT_GAMEPAD_DPAD_RIGHT) { gamebtn |= IDZ_IO_GAMEBTN_RIGHT; } if (xb & (XINPUT_GAMEPAD_START | XINPUT_GAMEPAD_A)) { gamebtn |= IDZ_IO_GAMEBTN_START; } if (xb & (XINPUT_GAMEPAD_BACK | XINPUT_GAMEPAD_B)) { gamebtn |= IDZ_IO_GAMEBTN_VIEW_CHANGE; } *gamebtn_out = gamebtn; } static void idz_xi_jvs_read_shifter(uint8_t *gear) { bool shift_dn; bool shift_up; XINPUT_STATE xi; WORD xb; assert(gear != NULL); memset(&xi, 0, sizeof(xi)); XInputGetState(0, &xi); xb = xi.Gamepad.wButtons; if (xb & XINPUT_GAMEPAD_START) { /* Reset to Neutral when start is pressed */ idz_shifter_reset(); } shift_dn = xb & (XINPUT_GAMEPAD_Y | XINPUT_GAMEPAD_LEFT_SHOULDER); shift_up = xb & (XINPUT_GAMEPAD_X | XINPUT_GAMEPAD_RIGHT_SHOULDER); idz_shifter_update(shift_dn, shift_up); *gear = idz_shifter_current_gear(); } static int16_t calculate_norm_steering(int16_t axis, uint16_t deadzone, bool linear_steering) { // determine how far the controller is pushed float magnitude = sqrt(axis*axis); // determine the direction the controller is pushed float norm_axis = axis / magnitude; float norm_magnitude = 0.0; // check if the controller is outside a circular dead zone if (magnitude > deadzone) { // clip the magnitude at its expected maximum value if (magnitude > max_stick_value) magnitude = max_stick_value; // adjust magnitude relative to the end of the dead zone magnitude -= deadzone; // optionally normalize the magnitude with respect to its expected range // giving a magnitude value of 0.0 to 1.0 norm_magnitude = magnitude / (max_stick_value - deadzone); } else // if the controller is in the deadzone zero out the magnitude { magnitude = 0.0; norm_magnitude = 0.0; } // apply non-linear transform to the axis if (!linear_steering) { return norm_axis * pow(norm_magnitude, 3.0) * max_wheel_value; } return norm_axis * norm_magnitude * max_wheel_value; } static void idz_xi_jvs_read_analogs(struct idz_io_analog_state *out) { XINPUT_STATE xi; int left; int right; assert(out != NULL); memset(&xi, 0, sizeof(xi)); XInputGetState(0, &xi); left = xi.Gamepad.sThumbLX; right = xi.Gamepad.sThumbRX; // normalize the steering axis left = calculate_norm_steering(left, idz_xi_left_stick_deadzone, idz_xi_linear_steering); right = calculate_norm_steering(right, idz_xi_right_stick_deadzone, idz_xi_linear_steering); if(idz_xi_single_stick_steering) { out->wheel = left; } else { out->wheel = (left + right) / 2; } out->accel = xi.Gamepad.bRightTrigger << 8; out->brake = xi.Gamepad.bLeftTrigger << 8; }