forked from Dniel97/segatools
158 lines
4.6 KiB
C
158 lines
4.6 KiB
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
|
|
#include "idacio/config.h"
|
|
|
|
void idac_di_config_load(struct idac_di_config *cfg, const wchar_t *filename)
|
|
{
|
|
wchar_t key[8];
|
|
int i;
|
|
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"dinput",
|
|
L"deviceName",
|
|
L"",
|
|
cfg->device_name,
|
|
_countof(cfg->device_name),
|
|
filename);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"dinput",
|
|
L"pedalsName",
|
|
L"",
|
|
cfg->pedals_name,
|
|
_countof(cfg->pedals_name),
|
|
filename);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"dinput",
|
|
L"shifterName",
|
|
L"",
|
|
cfg->shifter_name,
|
|
_countof(cfg->shifter_name),
|
|
filename);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"dinput",
|
|
L"brakeAxis",
|
|
L"RZ",
|
|
cfg->brake_axis,
|
|
_countof(cfg->brake_axis),
|
|
filename);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"dinput",
|
|
L"accelAxis",
|
|
L"Y",
|
|
cfg->accel_axis,
|
|
_countof(cfg->accel_axis),
|
|
filename);
|
|
|
|
cfg->start = GetPrivateProfileIntW(L"dinput", L"start", 0, filename);
|
|
cfg->view_chg = GetPrivateProfileIntW(L"dinput", L"viewChg", 0, filename);
|
|
cfg->left = GetPrivateProfileIntW(L"dinput", L"left", 0, filename);
|
|
cfg->right = GetPrivateProfileIntW(L"dinput", L"right", 0, filename);
|
|
cfg->shift_dn = GetPrivateProfileIntW(L"dinput", L"shiftDn", 0, filename);
|
|
cfg->shift_up = GetPrivateProfileIntW(L"dinput", L"shiftUp", 0, filename);
|
|
|
|
cfg->reverse_brake_axis = GetPrivateProfileIntW(
|
|
L"dinput",
|
|
L"reverseBrakeAxis",
|
|
0,
|
|
filename);
|
|
cfg->reverse_accel_axis = GetPrivateProfileIntW(
|
|
L"dinput",
|
|
L"reverseAccelAxis",
|
|
0,
|
|
filename);
|
|
|
|
for (i = 0 ; i < 6 ; i++) {
|
|
swprintf_s(key, _countof(key), L"gear%i", i + 1);
|
|
cfg->gear[i] = GetPrivateProfileIntW(L"dinput", key, i + 1, filename);
|
|
}
|
|
|
|
// FFB configuration
|
|
|
|
cfg->center_spring_strength = GetPrivateProfileIntW(
|
|
L"dinput",
|
|
L"centerSpringStrength",
|
|
30,
|
|
filename);
|
|
|
|
}
|
|
|
|
void idac_xi_config_load(struct idac_xi_config *cfg, const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
cfg->single_stick_steering = GetPrivateProfileIntW(
|
|
L"xinput",
|
|
L"singleStickSteering",
|
|
0,
|
|
filename);
|
|
|
|
cfg->linear_steering = GetPrivateProfileIntW(
|
|
L"xinput",
|
|
L"linearSteering",
|
|
0,
|
|
filename);
|
|
|
|
cfg->left_stick_deadzone = GetPrivateProfileIntW(
|
|
L"xinput",
|
|
L"leftStickDeadzone",
|
|
7849,
|
|
filename);
|
|
|
|
cfg->right_stick_deadzone = GetPrivateProfileIntW(
|
|
L"xinput",
|
|
L"rightStickDeadzone",
|
|
8689,
|
|
filename);
|
|
}
|
|
|
|
void idac_io_config_load(struct idac_io_config *cfg, const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
cfg->vk_test = GetPrivateProfileIntW(L"io4", L"test", '1', filename);
|
|
cfg->vk_service = GetPrivateProfileIntW(L"io4", L"service", '2', filename);
|
|
cfg->vk_coin = GetPrivateProfileIntW(L"io4", L"coin", '3', filename);
|
|
cfg->restrict_ = GetPrivateProfileIntW(L"io4", L"restrict", 128, filename);
|
|
|
|
GetPrivateProfileStringW(
|
|
L"io4",
|
|
L"mode",
|
|
L"xinput",
|
|
cfg->mode,
|
|
_countof(cfg->mode),
|
|
filename);
|
|
|
|
idac_shifter_config_load(&cfg->shifter, filename);
|
|
idac_di_config_load(&cfg->di, filename);
|
|
idac_xi_config_load(&cfg->xi, filename);
|
|
}
|
|
|
|
void idac_shifter_config_load(
|
|
struct idac_shifter_config *cfg,
|
|
const wchar_t *filename)
|
|
{
|
|
assert(cfg != NULL);
|
|
assert(filename != NULL);
|
|
|
|
cfg->auto_neutral = GetPrivateProfileIntW(
|
|
L"io4",
|
|
L"autoNeutral",
|
|
0,
|
|
filename);
|
|
}
|