forked from Dniel97/segatools
115 lines
3.6 KiB
C
115 lines
3.6 KiB
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
|
|
#include "swdcio/config.h"
|
|
|
|
void swdc_di_config_load(struct swdc_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"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->paddle_left = GetPrivateProfileIntW(L"dinput", L"paddleLeft", 0, filename);
|
|
cfg->paddle_right = GetPrivateProfileIntW(L"dinput", L"paddleRight", 0, filename);
|
|
cfg->wheel_green = GetPrivateProfileIntW(L"dinput", L"wheelGreen", 0, filename);
|
|
cfg->wheel_red = GetPrivateProfileIntW(L"dinput", L"wheelRed", 0, filename);
|
|
cfg->wheel_blue = GetPrivateProfileIntW(L"dinput", L"wheelBlue", 0, filename);
|
|
cfg->wheel_yellow = GetPrivateProfileIntW(L"dinput", L"wheelYellow", 0, filename);
|
|
|
|
cfg->reverse_brake_axis = GetPrivateProfileIntW(
|
|
L"dinput",
|
|
L"reverseBrakeAxis",
|
|
0,
|
|
filename);
|
|
cfg->reverse_accel_axis = GetPrivateProfileIntW(
|
|
L"dinput",
|
|
L"reverseAccelAxis",
|
|
0,
|
|
filename);
|
|
}
|
|
|
|
void swdc_xi_config_load(struct swdc_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 swdc_io_config_load(struct swdc_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);
|
|
|
|
swdc_di_config_load(&cfg->di, filename);
|
|
swdc_xi_config_load(&cfg->xi, filename);
|
|
}
|