2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2022-06-08 12:15:10 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-05-13 04:30:41 +00:00
|
|
|
#include "pcsx2/Host.h"
|
|
|
|
|
|
|
|
#include "QtHost.h"
|
|
|
|
#include "SettingWidgetBinder.h"
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
#include <QtCore/QtCore>
|
|
|
|
#include <QtGui/QAction>
|
|
|
|
#include <QtWidgets/QCheckBox>
|
|
|
|
#include <QtWidgets/QComboBox>
|
|
|
|
#include <QtWidgets/QDoubleSpinBox>
|
|
|
|
#include <QtWidgets/QLineEdit>
|
|
|
|
#include <QtWidgets/QSlider>
|
|
|
|
#include <QtWidgets/QSpinBox>
|
|
|
|
|
|
|
|
/// This nastyness is required because input profiles aren't overlaid settings like the rest of them, it's
|
|
|
|
/// input profile *or* global, not both.
|
|
|
|
namespace ControllerSettingWidgetBinder
|
|
|
|
{
|
|
|
|
/// Interface specific method of BindWidgetToBoolSetting().
|
|
|
|
template <typename WidgetType>
|
2023-01-30 10:40:47 +00:00
|
|
|
static inline void BindWidgetToInputProfileBool(
|
2023-01-30 10:38:23 +00:00
|
|
|
SettingsInterface* sif, WidgetType* widget, std::string section, std::string key, bool default_value)
|
2022-06-08 12:15:10 +00:00
|
|
|
{
|
|
|
|
using Accessor = SettingWidgetBinder::SettingAccessor<WidgetType>;
|
|
|
|
|
|
|
|
if (sif)
|
|
|
|
{
|
|
|
|
const bool value = sif->GetBoolValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setBoolValue(widget, value);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [sif, widget, section = std::move(section), key = std::move(key)]() {
|
|
|
|
const bool new_value = Accessor::getBoolValue(widget);
|
|
|
|
sif->SetBoolValue(section.c_str(), key.c_str(), new_value);
|
2024-05-04 13:33:35 +00:00
|
|
|
QtHost::SaveGameSettings(sif, false);
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->reloadGameSettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const bool value = Host::GetBaseBoolSettingValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setBoolValue(widget, value);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [widget, section = std::move(section), key = std::move(key)]() {
|
|
|
|
const bool new_value = Accessor::getBoolValue(widget);
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::SetBaseBoolSettingValue(section.c_str(), key.c_str(), new_value);
|
|
|
|
Host::CommitBaseSettingChanges();
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->applySettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-30 10:38:23 +00:00
|
|
|
/// Interface specific method of BindWidgetToIntSetting().
|
|
|
|
template <typename WidgetType>
|
2023-01-30 10:40:47 +00:00
|
|
|
static inline void BindWidgetToInputProfileInt(
|
2023-01-30 10:38:23 +00:00
|
|
|
SettingsInterface* sif, WidgetType* widget, std::string section, std::string key, s32 default_value, s32 option_offset = 0)
|
|
|
|
{
|
|
|
|
using Accessor = SettingWidgetBinder::SettingAccessor<WidgetType>;
|
|
|
|
|
|
|
|
if (sif)
|
|
|
|
{
|
|
|
|
const s32 value = sif->GetIntValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setIntValue(widget, value - option_offset);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [sif, widget, section = std::move(section), key = std::move(key), option_offset]() {
|
|
|
|
const float new_value = Accessor::getIntValue(widget);
|
|
|
|
sif->SetIntValue(section.c_str(), key.c_str(), new_value + option_offset);
|
2024-05-04 13:33:35 +00:00
|
|
|
QtHost::SaveGameSettings(sif, false);
|
2023-01-30 10:38:23 +00:00
|
|
|
g_emu_thread->reloadGameSettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const s32 value = Host::GetBaseIntSettingValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setIntValue(widget, value - option_offset);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [widget, section = std::move(section), key = std::move(key), option_offset]() {
|
|
|
|
const s32 new_value = Accessor::getIntValue(widget);
|
|
|
|
Host::SetBaseIntSettingValue(section.c_str(), key.c_str(), new_value + option_offset);
|
|
|
|
Host::CommitBaseSettingChanges();
|
|
|
|
g_emu_thread->applySettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
/// Interface specific method of BindWidgetToFloatSetting().
|
|
|
|
template <typename WidgetType>
|
2023-01-30 10:40:47 +00:00
|
|
|
static inline void BindWidgetToInputProfileFloat(
|
2023-01-30 10:38:23 +00:00
|
|
|
SettingsInterface* sif, WidgetType* widget, std::string section, std::string key, float default_value, float multiplier = 1.0f)
|
2022-06-08 12:15:10 +00:00
|
|
|
{
|
|
|
|
using Accessor = SettingWidgetBinder::SettingAccessor<WidgetType>;
|
|
|
|
|
|
|
|
if (sif)
|
|
|
|
{
|
|
|
|
const float value = sif->GetFloatValue(section.c_str(), key.c_str(), default_value);
|
2023-01-30 10:38:23 +00:00
|
|
|
Accessor::setFloatValue(widget, value * multiplier);
|
2022-06-08 12:15:10 +00:00
|
|
|
|
2023-01-30 10:38:23 +00:00
|
|
|
Accessor::connectValueChanged(widget, [sif, widget, section = std::move(section), key = std::move(key), multiplier]() {
|
|
|
|
const float new_value = Accessor::getFloatValue(widget) / multiplier;
|
2022-06-08 12:15:10 +00:00
|
|
|
sif->SetFloatValue(section.c_str(), key.c_str(), new_value);
|
2024-05-04 13:33:35 +00:00
|
|
|
QtHost::SaveGameSettings(sif, false);
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->reloadGameSettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const float value = Host::GetBaseFloatSettingValue(section.c_str(), key.c_str(), default_value);
|
2023-01-30 10:38:23 +00:00
|
|
|
Accessor::setFloatValue(widget, value * multiplier);
|
2022-06-08 12:15:10 +00:00
|
|
|
|
2023-01-30 10:38:23 +00:00
|
|
|
Accessor::connectValueChanged(widget, [widget, section = std::move(section), key = std::move(key), multiplier]() {
|
|
|
|
const float new_value = Accessor::getFloatValue(widget) / multiplier;
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::SetBaseFloatSettingValue(section.c_str(), key.c_str(), new_value);
|
|
|
|
Host::CommitBaseSettingChanges();
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->applySettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Interface specific method of BindWidgetToNormalizedSetting().
|
|
|
|
template <typename WidgetType>
|
2023-01-30 10:40:47 +00:00
|
|
|
static inline void BindWidgetToInputProfileNormalized(
|
2022-06-08 12:15:10 +00:00
|
|
|
SettingsInterface* sif, WidgetType* widget, std::string section, std::string key, float range, float default_value)
|
|
|
|
{
|
|
|
|
using Accessor = SettingWidgetBinder::SettingAccessor<WidgetType>;
|
|
|
|
|
|
|
|
if (sif)
|
|
|
|
{
|
|
|
|
const float value = sif->GetFloatValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setIntValue(widget, static_cast<int>(value * range));
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [sif, widget, section = std::move(section), key = std::move(key), range]() {
|
|
|
|
const int new_value = Accessor::getIntValue(widget);
|
|
|
|
sif->SetFloatValue(section.c_str(), key.c_str(), static_cast<float>(new_value) / range);
|
2024-05-04 13:33:35 +00:00
|
|
|
QtHost::SaveGameSettings(sif, false);
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->reloadGameSettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const float value = Host::GetBaseFloatSettingValue(section.c_str(), key.c_str(), default_value);
|
|
|
|
Accessor::setIntValue(widget, static_cast<int>(value * range));
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [widget, section = std::move(section), key = std::move(key), range]() {
|
|
|
|
const float new_value = (static_cast<float>(Accessor::getIntValue(widget)) / range);
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::SetBaseFloatSettingValue(section.c_str(), key.c_str(), new_value);
|
|
|
|
Host::CommitBaseSettingChanges();
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->applySettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Interface specific method of BindWidgetToStringSetting().
|
|
|
|
template <typename WidgetType>
|
2023-01-30 10:40:47 +00:00
|
|
|
static inline void BindWidgetToInputProfileString(
|
2022-06-08 12:15:10 +00:00
|
|
|
SettingsInterface* sif, WidgetType* widget, std::string section, std::string key, std::string default_value = std::string())
|
|
|
|
{
|
|
|
|
using Accessor = SettingWidgetBinder::SettingAccessor<WidgetType>;
|
|
|
|
|
|
|
|
if (sif)
|
|
|
|
{
|
|
|
|
const QString value(QString::fromStdString(sif->GetStringValue(section.c_str(), key.c_str(), default_value.c_str())));
|
|
|
|
|
|
|
|
Accessor::setStringValue(widget, value);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [widget, sif, section = std::move(section), key = std::move(key)]() {
|
|
|
|
const QString new_value = Accessor::getStringValue(widget);
|
|
|
|
if (!new_value.isEmpty())
|
|
|
|
sif->SetStringValue(section.c_str(), key.c_str(), new_value.toUtf8().constData());
|
|
|
|
else
|
|
|
|
sif->DeleteValue(section.c_str(), key.c_str());
|
|
|
|
|
2024-05-04 13:33:35 +00:00
|
|
|
QtHost::SaveGameSettings(sif, false);
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->reloadGameSettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-01-30 10:38:23 +00:00
|
|
|
const QString value(
|
|
|
|
QString::fromStdString(Host::GetBaseStringSettingValue(section.c_str(), key.c_str(), default_value.c_str())));
|
2022-06-08 12:15:10 +00:00
|
|
|
|
|
|
|
Accessor::setStringValue(widget, value);
|
|
|
|
|
|
|
|
Accessor::connectValueChanged(widget, [widget, section = std::move(section), key = std::move(key)]() {
|
|
|
|
const QString new_value = Accessor::getStringValue(widget);
|
|
|
|
if (!new_value.isEmpty())
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::SetBaseStringSettingValue(section.c_str(), key.c_str(), new_value.toUtf8().constData());
|
2022-06-08 12:15:10 +00:00
|
|
|
else
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::RemoveBaseSettingValue(section.c_str(), key.c_str());
|
2022-06-08 12:15:10 +00:00
|
|
|
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::CommitBaseSettingChanges();
|
2022-06-08 12:15:10 +00:00
|
|
|
g_emu_thread->applySettings();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace ControllerSettingWidgetBinder
|