forked from Hay1tsme/segatools
Dniel97
d521eeb43e
- Configure separate pedals which are not part of the steering wheel (base) - It is now possible to have a different steering wheel, pedal and shifter brand all connected to 3 different USB ports - XInput does not have a deadzone at the end of the max steering anymore and the `restrict` setting works as intended
44 lines
1.0 KiB
C
44 lines
1.0 KiB
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
struct swdc_di_config {
|
|
wchar_t device_name[64];
|
|
wchar_t pedals_name[64];
|
|
wchar_t brake_axis[16];
|
|
wchar_t accel_axis[16];
|
|
uint8_t start;
|
|
uint8_t view_chg;
|
|
uint8_t paddle_left;
|
|
uint8_t paddle_right;
|
|
uint8_t wheel_green;
|
|
uint8_t wheel_red;
|
|
uint8_t wheel_blue;
|
|
uint8_t wheel_yellow;
|
|
bool reverse_brake_axis;
|
|
bool reverse_accel_axis;
|
|
};
|
|
|
|
struct swdc_xi_config {
|
|
bool single_stick_steering;
|
|
bool linear_steering;
|
|
uint16_t left_stick_deadzone;
|
|
uint16_t right_stick_deadzone;
|
|
};
|
|
|
|
struct swdc_io_config {
|
|
uint8_t vk_test;
|
|
uint8_t vk_service;
|
|
uint8_t vk_coin;
|
|
wchar_t mode[8];
|
|
int restrict_;
|
|
struct swdc_di_config di;
|
|
struct swdc_xi_config xi;
|
|
};
|
|
|
|
void swdc_di_config_load(struct swdc_di_config *cfg, const wchar_t *filename);
|
|
void swdc_xi_config_load(struct swdc_xi_config *cfg, const wchar_t *filename);
|
|
void swdc_io_config_load(struct swdc_io_config *cfg, const wchar_t *filename);
|