2020-07-01 03:37:55 +00:00
|
|
|
#include <Settings/Settings.h>
|
|
|
|
#include <Common\StdString.h>
|
|
|
|
#include "InputSettingsID.h"
|
|
|
|
#include "InputSettings.h"
|
|
|
|
|
|
|
|
CInputSettings * g_Settings = nullptr;
|
|
|
|
|
|
|
|
CInputSettings::CInputSettings()
|
|
|
|
{
|
|
|
|
RegisterSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
CInputSettings::~CInputSettings()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-07 02:20:36 +00:00
|
|
|
void CInputSettings::LoadController(uint32_t ControlIndex, CONTROL & ControllerInfo, N64CONTROLLER & Controller)
|
2020-07-01 03:37:55 +00:00
|
|
|
{
|
|
|
|
struct {
|
|
|
|
BUTTON & Button;
|
|
|
|
InputSettingID SettingId;
|
|
|
|
uint32_t ControlIndex;
|
|
|
|
}
|
|
|
|
Buttons[] =
|
|
|
|
{
|
|
|
|
{ Controller.U_DPAD, Set_Control0_U_DPAD, 0 },
|
|
|
|
{ Controller.D_DPAD, Set_Control0_D_DPAD, 0 },
|
|
|
|
{ Controller.L_DPAD, Set_Control0_L_DPAD, 0 },
|
|
|
|
{ Controller.R_DPAD, Set_Control0_R_DPAD, 0 },
|
|
|
|
{ Controller.A_BUTTON, Set_Control0_A_BUTTON, 0 },
|
|
|
|
{ Controller.B_BUTTON, Set_Control0_B_BUTTON, 0 },
|
|
|
|
{ Controller.U_CBUTTON, Set_Control0_U_CBUTTON, 0 },
|
|
|
|
{ Controller.D_CBUTTON, Set_Control0_D_CBUTTON, 0 },
|
|
|
|
{ Controller.L_CBUTTON, Set_Control0_L_CBUTTON, 0 },
|
|
|
|
{ Controller.R_CBUTTON, Set_Control0_R_CBUTTON, 0 },
|
|
|
|
{ Controller.START_BUTTON, Set_Control0_START_BUTTON, 0 },
|
|
|
|
{ Controller.Z_TRIG, Set_Control0_Z_TRIG, 0 },
|
|
|
|
{ Controller.R_TRIG, Set_Control0_R_TRIG, 0 },
|
|
|
|
{ Controller.L_TRIG, Set_Control0_L_TRIG, 0 },
|
|
|
|
{ Controller.U_ANALOG, Set_Control0_U_ANALOG, 0 },
|
|
|
|
{ Controller.D_ANALOG, Set_Control0_D_ANALOG, 0 },
|
|
|
|
{ Controller.L_ANALOG, Set_Control0_L_ANALOG, 0 },
|
|
|
|
{ Controller.R_ANALOG, Set_Control0_R_ANALOG, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
char Buffer[400];
|
|
|
|
for (size_t i = 0, n = sizeof(Buttons) / sizeof(Buttons[0]); i < n; i++)
|
|
|
|
{
|
|
|
|
if (Buttons[i].ControlIndex != ControlIndex)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Buttons[i].Button = StrToButton(GetSettingSz((short)Buttons[i].SettingId, Buffer, sizeof(Buffer) / sizeof(Buffer[0])));
|
|
|
|
}
|
2020-07-07 02:16:08 +00:00
|
|
|
|
2020-07-07 02:20:36 +00:00
|
|
|
InputSettingID PresentSettings[] = { Set_Control0_Present };
|
2020-07-07 02:29:49 +00:00
|
|
|
InputSettingID PluginSettings[] = { Set_Control0_Plugin };
|
2020-07-07 02:16:08 +00:00
|
|
|
InputSettingID RangeSettings[] = { Set_Control0_Range };
|
|
|
|
|
2020-07-07 02:20:36 +00:00
|
|
|
ControllerInfo.Present = ControlIndex < (sizeof(PresentSettings) / sizeof(PresentSettings[0])) ? GetSetting((short)PresentSettings[ControlIndex]) != 0 : 0;
|
2020-07-07 02:29:49 +00:00
|
|
|
ControllerInfo.Plugin = ControlIndex < (sizeof(PluginSettings) / sizeof(PluginSettings[0])) ? GetSetting((short)PluginSettings[ControlIndex]) : PLUGIN_NONE;
|
2020-07-07 02:16:08 +00:00
|
|
|
Controller.Range = (uint8_t)(ControlIndex < (sizeof(RangeSettings) / sizeof(RangeSettings[0])) ? GetSetting((short)RangeSettings[ControlIndex]) : 100);
|
|
|
|
if (Controller.Range == 0) { Controller.Range = 1; }
|
|
|
|
if (Controller.Range > 100) { Controller.Range = 100; }
|
2020-07-01 03:37:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 02:20:36 +00:00
|
|
|
void CInputSettings::SaveController(uint32_t ControlIndex, const CONTROL & ControllerInfo, const N64CONTROLLER & Controller)
|
2020-07-01 03:37:55 +00:00
|
|
|
{
|
|
|
|
struct {
|
|
|
|
const BUTTON & Button;
|
|
|
|
InputSettingID SettingId;
|
|
|
|
uint32_t ControlIndex;
|
|
|
|
}
|
|
|
|
Buttons[] =
|
|
|
|
{
|
|
|
|
{ Controller.U_DPAD, Set_Control0_U_DPAD, 0 },
|
|
|
|
{ Controller.D_DPAD, Set_Control0_D_DPAD, 0 },
|
|
|
|
{ Controller.L_DPAD, Set_Control0_L_DPAD, 0 },
|
|
|
|
{ Controller.R_DPAD, Set_Control0_R_DPAD, 0 },
|
|
|
|
{ Controller.A_BUTTON, Set_Control0_A_BUTTON, 0 },
|
|
|
|
{ Controller.B_BUTTON, Set_Control0_B_BUTTON, 0 },
|
|
|
|
{ Controller.U_CBUTTON, Set_Control0_U_CBUTTON, 0 },
|
|
|
|
{ Controller.D_CBUTTON, Set_Control0_D_CBUTTON, 0 },
|
|
|
|
{ Controller.L_CBUTTON, Set_Control0_L_CBUTTON, 0 },
|
|
|
|
{ Controller.R_CBUTTON, Set_Control0_R_CBUTTON, 0 },
|
|
|
|
{ Controller.START_BUTTON, Set_Control0_START_BUTTON, 0 },
|
|
|
|
{ Controller.Z_TRIG, Set_Control0_Z_TRIG, 0 },
|
|
|
|
{ Controller.R_TRIG, Set_Control0_R_TRIG, 0 },
|
|
|
|
{ Controller.L_TRIG, Set_Control0_L_TRIG, 0 },
|
|
|
|
{ Controller.U_ANALOG, Set_Control0_U_ANALOG, 0 },
|
|
|
|
{ Controller.D_ANALOG, Set_Control0_D_ANALOG, 0 },
|
|
|
|
{ Controller.L_ANALOG, Set_Control0_L_ANALOG, 0 },
|
|
|
|
{ Controller.R_ANALOG, Set_Control0_R_ANALOG, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0, n = sizeof(Buttons) / sizeof(Buttons[0]); i < n; i++)
|
|
|
|
{
|
|
|
|
if (Buttons[i].ControlIndex != ControlIndex)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
SetSettingSz((short)Buttons[i].SettingId, ButtonToStr(Buttons[i].Button).c_str());
|
|
|
|
}
|
2020-07-07 02:16:08 +00:00
|
|
|
|
2020-07-07 02:20:36 +00:00
|
|
|
InputSettingID PresentSettings[] = { Set_Control0_Present };
|
|
|
|
if (ControlIndex < (sizeof(PresentSettings) / sizeof(PresentSettings[0])))
|
|
|
|
{
|
|
|
|
SetSetting((short)PresentSettings[ControlIndex], ControllerInfo.Present);
|
|
|
|
}
|
2020-07-07 02:29:49 +00:00
|
|
|
InputSettingID PluginSettings[] = { Set_Control0_Plugin };
|
|
|
|
if (ControlIndex < (sizeof(PluginSettings) / sizeof(PluginSettings[0])))
|
|
|
|
{
|
|
|
|
SetSetting((short)PluginSettings[ControlIndex], ControllerInfo.Plugin);
|
|
|
|
}
|
2020-07-07 02:20:36 +00:00
|
|
|
|
2020-07-07 02:16:08 +00:00
|
|
|
InputSettingID RangeSettings[] = { Set_Control0_Range };
|
|
|
|
if (ControlIndex < (sizeof(RangeSettings) / sizeof(RangeSettings[0])))
|
|
|
|
{
|
|
|
|
SetSetting((short)RangeSettings[ControlIndex], Controller.Range);
|
|
|
|
}
|
2020-07-01 03:37:55 +00:00
|
|
|
FlushSettings();
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:38:48 +00:00
|
|
|
void CInputSettings::ResetController(uint32_t ControlIndex, CONTROL & ControllerInfo, N64CONTROLLER & Controller)
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
const BUTTON & Button;
|
|
|
|
InputSettingID SettingId;
|
|
|
|
uint32_t ControlIndex;
|
|
|
|
}
|
|
|
|
Buttons[] =
|
|
|
|
{
|
|
|
|
{ Controller.U_DPAD, Set_Control0_U_DPAD, 0 },
|
|
|
|
{ Controller.D_DPAD, Set_Control0_D_DPAD, 0 },
|
|
|
|
{ Controller.L_DPAD, Set_Control0_L_DPAD, 0 },
|
|
|
|
{ Controller.R_DPAD, Set_Control0_R_DPAD, 0 },
|
|
|
|
{ Controller.A_BUTTON, Set_Control0_A_BUTTON, 0 },
|
|
|
|
{ Controller.B_BUTTON, Set_Control0_B_BUTTON, 0 },
|
|
|
|
{ Controller.U_CBUTTON, Set_Control0_U_CBUTTON, 0 },
|
|
|
|
{ Controller.D_CBUTTON, Set_Control0_D_CBUTTON, 0 },
|
|
|
|
{ Controller.L_CBUTTON, Set_Control0_L_CBUTTON, 0 },
|
|
|
|
{ Controller.R_CBUTTON, Set_Control0_R_CBUTTON, 0 },
|
|
|
|
{ Controller.START_BUTTON, Set_Control0_START_BUTTON, 0 },
|
|
|
|
{ Controller.Z_TRIG, Set_Control0_Z_TRIG, 0 },
|
|
|
|
{ Controller.R_TRIG, Set_Control0_R_TRIG, 0 },
|
|
|
|
{ Controller.L_TRIG, Set_Control0_L_TRIG, 0 },
|
|
|
|
{ Controller.U_ANALOG, Set_Control0_U_ANALOG, 0 },
|
|
|
|
{ Controller.D_ANALOG, Set_Control0_D_ANALOG, 0 },
|
|
|
|
{ Controller.L_ANALOG, Set_Control0_L_ANALOG, 0 },
|
|
|
|
{ Controller.R_ANALOG, Set_Control0_R_ANALOG, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0, n = sizeof(Buttons) / sizeof(Buttons[0]); i < n; i++)
|
|
|
|
{
|
|
|
|
SetSettingSz((short)Buttons[i].SettingId, NULL);
|
|
|
|
}
|
|
|
|
FlushSettings();
|
|
|
|
LoadController(ControlIndex, ControllerInfo, Controller);
|
|
|
|
}
|
|
|
|
|
2020-07-01 03:37:55 +00:00
|
|
|
BUTTON CInputSettings::StrToButton(const char * Buffer)
|
|
|
|
{
|
|
|
|
BUTTON Button = { 0 };
|
|
|
|
GUID &guid = Button.DeviceGuid;
|
|
|
|
uint32_t ButtonOffset = 0, ButtonAxisID = 0, ButtonType = 0;
|
|
|
|
sscanf(Buffer,
|
|
|
|
"{%8x-%4hx-%4hx-%2hhx%2hhx-%2hhx%2hhx%2hhx%2hhx%2hhx%2hhx} %x %u %u",
|
|
|
|
&guid.Data1, &guid.Data2, &guid.Data3,
|
|
|
|
&guid.Data4[0], &guid.Data4[1], &guid.Data4[2], &guid.Data4[3],
|
|
|
|
&guid.Data4[4], &guid.Data4[5], &guid.Data4[6], &guid.Data4[7],
|
|
|
|
&ButtonOffset, &ButtonAxisID, &ButtonType);
|
|
|
|
Button.Offset = (uint8_t)(ButtonOffset & 0xFF);
|
|
|
|
Button.AxisID = (uint8_t)(ButtonAxisID & 0xFF);
|
|
|
|
Button.BtnType = (BtnType)ButtonType;
|
|
|
|
return Button;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CInputSettings::ButtonToStr(const BUTTON & Button)
|
|
|
|
{
|
|
|
|
return stdstr_f("%s %02X %u %u", GUIDtoString(Button.DeviceGuid).c_str(), Button.Offset, Button.AxisID, Button.BtnType);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CInputSettings::GUIDtoString(const GUID & guid)
|
|
|
|
{
|
|
|
|
return stdstr_f("{%08.8lX-%04.4hX-%04.4hX-%02.2X%02.2X-%02.2X%02.2X%02.2X%02.2X%02.2X%02.2X}", guid.Data1, guid.Data2, guid.Data3, guid.Data4[0], guid.Data4[1], guid.Data4[2], guid.Data4[3], guid.Data4[4], guid.Data4[5], guid.Data4[6], guid.Data4[7]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CInputSettings::RegisterSettings(void)
|
|
|
|
{
|
|
|
|
SetModuleName("Input");
|
2020-07-07 02:20:36 +00:00
|
|
|
RegisterSetting(Set_Control0_Present, Data_DWORD_General, "Present", "Controller 1", 1, nullptr);
|
2020-07-07 02:29:49 +00:00
|
|
|
RegisterSetting(Set_Control0_Plugin, Data_DWORD_General, "Plugin", "Controller 1", PLUGIN_MEMPAK, nullptr);
|
2020-07-07 02:16:08 +00:00
|
|
|
RegisterSetting(Set_Control0_Range, Data_DWORD_General, "Range", "Controller 1", 100, nullptr);
|
2020-07-01 03:37:55 +00:00
|
|
|
RegisterSetting(Set_Control0_U_DPAD, Data_String_General, "DPadUp", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 17 0 5");
|
|
|
|
RegisterSetting(Set_Control0_D_DPAD, Data_String_General, "DPadDown", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 25 0 5");
|
|
|
|
RegisterSetting(Set_Control0_L_DPAD, Data_String_General, "DPadLeft", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 24 0 5");
|
|
|
|
RegisterSetting(Set_Control0_R_DPAD, Data_String_General, "DPadRight", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 26 0 5");
|
|
|
|
RegisterSetting(Set_Control0_A_BUTTON, Data_String_General, "ButtonA", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 2D 0 5");
|
|
|
|
RegisterSetting(Set_Control0_B_BUTTON, Data_String_General, "ButtonB", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 2E 0 5");
|
|
|
|
RegisterSetting(Set_Control0_U_CBUTTON, Data_String_General, "CButtonUp", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} C7 0 5");
|
|
|
|
RegisterSetting(Set_Control0_D_CBUTTON, Data_String_General, "CButtonDown", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} CF 0 5");
|
|
|
|
RegisterSetting(Set_Control0_L_CBUTTON, Data_String_General, "CButtonLeft", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} D1 0 5");
|
|
|
|
RegisterSetting(Set_Control0_R_CBUTTON, Data_String_General, "CButtonRight", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} D3 0 5");
|
|
|
|
RegisterSetting(Set_Control0_START_BUTTON, Data_String_General, "ButtonStart", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 1C 0 5");
|
|
|
|
RegisterSetting(Set_Control0_Z_TRIG, Data_String_General, "ButtonZ", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 2C 0 5");
|
|
|
|
RegisterSetting(Set_Control0_R_TRIG, Data_String_General, "ButtonR", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 1F 0 5");
|
|
|
|
RegisterSetting(Set_Control0_L_TRIG, Data_String_General, "ButtonL", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} 1E 0 5");
|
|
|
|
RegisterSetting(Set_Control0_U_ANALOG, Data_String_General, "AnalogUp", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} C8 0 5");
|
|
|
|
RegisterSetting(Set_Control0_D_ANALOG, Data_String_General, "AnalogDown", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} D0 0 5");
|
|
|
|
RegisterSetting(Set_Control0_L_ANALOG, Data_String_General, "AnalogLeft", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} CB 0 5");
|
|
|
|
RegisterSetting(Set_Control0_R_ANALOG, Data_String_General, "AnalogRight", "Controller 1", 0, "{6F1D2B61-D5A0-11CF-BFC7-444553540000} CD 0 5");
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetupInputSettings(void)
|
|
|
|
{
|
|
|
|
if (g_Settings == nullptr)
|
|
|
|
{
|
|
|
|
g_Settings = new CInputSettings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CleanupInputSettings(void)
|
|
|
|
{
|
|
|
|
if (g_Settings)
|
|
|
|
{
|
|
|
|
delete g_Settings;
|
|
|
|
g_Settings = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <Windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern "C" void UseUnregisteredSetting(int /*SettingID*/)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
DebugBreak();
|
|
|
|
#endif
|
|
|
|
}
|