2021-12-13 12:12:54 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2022 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
#include <QtWidgets/QInputDialog>
|
2022-03-25 12:16:21 +00:00
|
|
|
#include <QtWidgets/QMenu>
|
2021-12-13 12:12:54 +00:00
|
|
|
#include <QtWidgets/QMessageBox>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
#include "Settings/ControllerBindingWidgets.h"
|
|
|
|
#include "Settings/ControllerSettingsDialog.h"
|
|
|
|
#include "Settings/ControllerSettingWidgetBinder.h"
|
|
|
|
#include "Settings/SettingsDialog.h"
|
2022-09-07 09:20:50 +00:00
|
|
|
#include "QtHost.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
#include "QtUtils.h"
|
|
|
|
#include "SettingWidgetBinder.h"
|
|
|
|
|
|
|
|
#include "common/StringUtil.h"
|
2022-05-24 12:37:44 +00:00
|
|
|
#include "pcsx2/HostSettings.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
#include "pcsx2/PAD/Host/PAD.h"
|
|
|
|
|
|
|
|
ControllerBindingWidget::ControllerBindingWidget(QWidget* parent, ControllerSettingsDialog* dialog, u32 port)
|
|
|
|
: QWidget(parent)
|
|
|
|
, m_dialog(dialog)
|
|
|
|
, m_config_section(StringUtil::StdStringFromFormat("Pad%u", port + 1u))
|
|
|
|
, m_port_number(port)
|
|
|
|
{
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
populateControllerTypes();
|
|
|
|
onTypeChanged();
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileString(m_dialog->getProfileSettingsInterface(),
|
|
|
|
m_ui.controllerType, m_config_section, "Type", PAD::GetDefaultPadType(port));
|
|
|
|
|
2022-03-25 12:16:21 +00:00
|
|
|
connect(m_ui.controllerType, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ControllerBindingWidget::onTypeChanged);
|
2022-08-05 13:52:16 +00:00
|
|
|
connect(m_ui.bindings, &QPushButton::clicked, this, &ControllerBindingWidget::onBindingsClicked);
|
|
|
|
connect(m_ui.settings, &QPushButton::clicked, this, &ControllerBindingWidget::onSettingsClicked);
|
|
|
|
connect(m_ui.macros, &QPushButton::clicked, this, &ControllerBindingWidget::onMacrosClicked);
|
|
|
|
connect(m_ui.automaticBinding, &QPushButton::clicked, this, &ControllerBindingWidget::onAutomaticBindingClicked);
|
|
|
|
connect(m_ui.clearBindings, &QPushButton::clicked, this, &ControllerBindingWidget::onClearBindingsClicked);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 12:16:21 +00:00
|
|
|
ControllerBindingWidget::~ControllerBindingWidget() = default;
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
QIcon ControllerBindingWidget::getIcon() const
|
|
|
|
{
|
2022-08-05 13:52:16 +00:00
|
|
|
return m_bindings_widget->getIcon();
|
2022-06-08 12:15:10 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
void ControllerBindingWidget::populateControllerTypes()
|
|
|
|
{
|
2022-05-29 13:56:03 +00:00
|
|
|
for (const auto& [name, display_name] : PAD::GetControllerTypeNames())
|
|
|
|
m_ui.controllerType->addItem(QString::fromStdString(display_name), QString::fromStdString(name));
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerBindingWidget::onTypeChanged()
|
|
|
|
{
|
2022-08-05 13:52:16 +00:00
|
|
|
const bool is_initializing = (m_ui.stackedWidget->count() == 0);
|
2022-06-08 12:15:10 +00:00
|
|
|
m_controller_type = m_dialog->getStringValue(m_config_section.c_str(), "Type", PAD::GetDefaultPadType(m_port_number));
|
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
if (m_bindings_widget)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-08-05 13:52:16 +00:00
|
|
|
m_ui.stackedWidget->removeWidget(m_bindings_widget);
|
|
|
|
delete m_bindings_widget;
|
|
|
|
m_bindings_widget = nullptr;
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
2022-08-05 13:52:16 +00:00
|
|
|
if (m_settings_widget)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-08-05 13:52:16 +00:00
|
|
|
m_ui.stackedWidget->removeWidget(m_settings_widget);
|
|
|
|
delete m_settings_widget;
|
|
|
|
m_settings_widget = nullptr;
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
2022-08-05 13:52:16 +00:00
|
|
|
if (m_macros_widget)
|
|
|
|
{
|
|
|
|
m_ui.stackedWidget->removeWidget(m_macros_widget);
|
|
|
|
delete m_macros_widget;
|
|
|
|
m_macros_widget = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PAD::ControllerInfo* cinfo = PAD::GetControllerInfo(m_controller_type);
|
|
|
|
const bool has_settings = (cinfo && cinfo->num_settings > 0);
|
|
|
|
const bool has_macros = (cinfo && cinfo->num_bindings > 0);
|
|
|
|
m_ui.settings->setEnabled(has_settings);
|
|
|
|
m_ui.macros->setEnabled(has_macros);
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
if (m_controller_type == "DualShock2")
|
2022-08-05 13:52:16 +00:00
|
|
|
m_bindings_widget = ControllerBindingWidget_DualShock2::createInstance(this);
|
2021-12-13 12:12:54 +00:00
|
|
|
else
|
2022-08-05 13:52:16 +00:00
|
|
|
m_bindings_widget = new ControllerBindingWidget_Base(this);
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
m_ui.stackedWidget->addWidget(m_bindings_widget);
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_bindings_widget);
|
|
|
|
|
|
|
|
if (has_settings)
|
|
|
|
{
|
|
|
|
m_settings_widget = new ControllerCustomSettingsWidget(this, m_ui.stackedWidget);
|
|
|
|
m_ui.stackedWidget->addWidget(m_settings_widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_macros)
|
|
|
|
{
|
|
|
|
m_macros_widget = new ControllerMacroWidget(this);
|
|
|
|
m_ui.stackedWidget->addWidget(m_macros_widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateHeaderToolButtons();
|
2022-06-08 12:15:10 +00:00
|
|
|
|
|
|
|
// no need to do this on first init, only changes
|
|
|
|
if (!is_initializing)
|
|
|
|
m_dialog->updateListDescription(m_port_number, this);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
void ControllerBindingWidget::updateHeaderToolButtons()
|
|
|
|
{
|
|
|
|
const QWidget* current_widget = m_ui.stackedWidget->currentWidget();
|
|
|
|
const QSignalBlocker bindings_sb(m_ui.bindings);
|
|
|
|
const QSignalBlocker settings_sb(m_ui.settings);
|
|
|
|
const QSignalBlocker macros_sb(m_ui.macros);
|
|
|
|
|
|
|
|
const bool is_bindings = (current_widget == m_bindings_widget);
|
|
|
|
m_ui.bindings->setChecked(is_bindings);
|
|
|
|
m_ui.automaticBinding->setEnabled(is_bindings);
|
|
|
|
m_ui.clearBindings->setEnabled(is_bindings);
|
|
|
|
m_ui.macros->setChecked(current_widget == m_macros_widget);
|
|
|
|
m_ui.settings->setChecked((current_widget == m_settings_widget));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerBindingWidget::onBindingsClicked()
|
|
|
|
{
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_bindings_widget);
|
|
|
|
updateHeaderToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerBindingWidget::onSettingsClicked()
|
|
|
|
{
|
|
|
|
if (!m_settings_widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_settings_widget);
|
|
|
|
updateHeaderToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerBindingWidget::onMacrosClicked()
|
|
|
|
{
|
|
|
|
if (!m_macros_widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_macros_widget);
|
|
|
|
updateHeaderToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerBindingWidget::onAutomaticBindingClicked()
|
2022-03-25 12:16:21 +00:00
|
|
|
{
|
|
|
|
QMenu menu(this);
|
|
|
|
bool added = false;
|
|
|
|
|
|
|
|
for (const QPair<QString, QString>& dev : m_dialog->getDeviceList())
|
|
|
|
{
|
|
|
|
// we set it as data, because the device list could get invalidated while the menu is up
|
|
|
|
QAction* action = menu.addAction(QStringLiteral("%1 (%2)").arg(dev.first).arg(dev.second));
|
|
|
|
action->setData(dev.first);
|
|
|
|
connect(action, &QAction::triggered, this, [this, action]() {
|
|
|
|
doDeviceAutomaticBinding(action->data().toString());
|
|
|
|
});
|
|
|
|
added = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!added)
|
|
|
|
{
|
|
|
|
QAction* action = menu.addAction(tr("No devices available"));
|
|
|
|
action->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu.exec(QCursor::pos());
|
|
|
|
}
|
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
void ControllerBindingWidget::onClearBindingsClicked()
|
2022-05-24 14:27:19 +00:00
|
|
|
{
|
|
|
|
if (QMessageBox::question(QtUtils::GetRootWidget(this), tr("Clear Bindings"),
|
2022-06-08 12:15:10 +00:00
|
|
|
tr("Are you sure you want to clear all bindings for this controller? This action cannot be undone.")) != QMessageBox::Yes)
|
2022-05-24 14:27:19 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
if (m_dialog->isEditingGlobalSettings())
|
2022-05-24 14:27:19 +00:00
|
|
|
{
|
2022-09-15 14:40:34 +00:00
|
|
|
{
|
|
|
|
auto lock = Host::GetSettingsLock();
|
|
|
|
PAD::ClearPortBindings(*Host::Internal::GetBaseSettingsLayer(), m_port_number);
|
|
|
|
}
|
2022-09-07 07:44:10 +00:00
|
|
|
Host::CommitBaseSettingChanges();
|
2022-05-24 14:27:19 +00:00
|
|
|
}
|
2022-06-08 12:15:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
PAD::ClearPortBindings(*m_dialog->getProfileSettingsInterface(), m_port_number);
|
2022-09-07 07:44:10 +00:00
|
|
|
m_dialog->getProfileSettingsInterface()->Save();
|
2022-06-08 12:15:10 +00:00
|
|
|
}
|
2022-05-24 14:27:19 +00:00
|
|
|
|
2022-09-07 07:44:10 +00:00
|
|
|
// force a refresh after clearing
|
|
|
|
g_emu_thread->applySettings();
|
|
|
|
onTypeChanged();
|
2022-05-24 14:27:19 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 12:16:21 +00:00
|
|
|
void ControllerBindingWidget::doDeviceAutomaticBinding(const QString& device)
|
|
|
|
{
|
|
|
|
std::vector<std::pair<GenericInputBinding, std::string>> mapping = InputManager::GetGenericBindingMapping(device.toStdString());
|
|
|
|
if (mapping.empty())
|
|
|
|
{
|
|
|
|
QMessageBox::critical(QtUtils::GetRootWidget(this), tr("Automatic Binding"),
|
|
|
|
tr("No generic bindings were generated for device '%1'").arg(device));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool result;
|
2022-06-08 12:15:10 +00:00
|
|
|
if (m_dialog->isEditingGlobalSettings())
|
2022-03-25 12:16:21 +00:00
|
|
|
{
|
2022-09-10 03:06:04 +00:00
|
|
|
{
|
|
|
|
auto lock = Host::GetSettingsLock();
|
|
|
|
result = PAD::MapController(*Host::Internal::GetBaseSettingsLayer(), m_port_number, mapping);
|
|
|
|
}
|
2022-09-07 07:44:10 +00:00
|
|
|
if (result)
|
|
|
|
Host::CommitBaseSettingChanges();
|
2022-03-25 12:16:21 +00:00
|
|
|
}
|
2022-06-08 12:15:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
result = PAD::MapController(*m_dialog->getProfileSettingsInterface(), m_port_number, mapping);
|
2022-09-07 07:44:10 +00:00
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
m_dialog->getProfileSettingsInterface()->Save();
|
|
|
|
g_emu_thread->reloadInputBindings();
|
|
|
|
}
|
2022-06-08 12:15:10 +00:00
|
|
|
}
|
2022-03-25 12:16:21 +00:00
|
|
|
|
2022-05-24 14:27:19 +00:00
|
|
|
// force a refresh after mapping
|
2022-03-25 12:16:21 +00:00
|
|
|
if (result)
|
2022-09-07 07:44:10 +00:00
|
|
|
{
|
|
|
|
g_emu_thread->applySettings();
|
|
|
|
onTypeChanged();
|
|
|
|
}
|
2022-03-25 12:16:21 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 13:52:16 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ControllerMacroWidget::ControllerMacroWidget(ControllerBindingWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
setWindowTitle(tr("Controller Port %1 Macros").arg(parent->getPortNumber() + 1u));
|
|
|
|
createWidgets(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerMacroWidget::~ControllerMacroWidget() = default;
|
|
|
|
|
|
|
|
void ControllerMacroWidget::updateListItem(u32 index)
|
|
|
|
{
|
|
|
|
m_ui.portList->item(static_cast<int>(index))
|
|
|
|
->setText(tr("Macro %1\n%2").arg(index + 1).arg(m_macros[index]->getSummary()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroWidget::createWidgets(ControllerBindingWidget* parent)
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < NUM_MACROS; i++)
|
|
|
|
{
|
|
|
|
m_macros[i] = new ControllerMacroEditWidget(this, parent, i);
|
|
|
|
m_ui.container->addWidget(m_macros[i]);
|
|
|
|
|
|
|
|
QListWidgetItem* item = new QListWidgetItem();
|
|
|
|
item->setIcon(QIcon::fromTheme(QStringLiteral("flashlight-line")));
|
|
|
|
m_ui.portList->addItem(item);
|
|
|
|
updateListItem(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui.portList->setCurrentRow(0);
|
|
|
|
m_ui.container->setCurrentIndex(0);
|
|
|
|
|
|
|
|
connect(m_ui.portList, &QListWidget::currentRowChanged, m_ui.container, &QStackedWidget::setCurrentIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ControllerMacroEditWidget::ControllerMacroEditWidget(ControllerMacroWidget* parent, ControllerBindingWidget* bwidget,
|
|
|
|
u32 index)
|
|
|
|
: QWidget(parent)
|
|
|
|
, m_parent(parent)
|
|
|
|
, m_bwidget(bwidget)
|
|
|
|
, m_index(index)
|
|
|
|
{
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
|
|
|
ControllerSettingsDialog* dialog = m_bwidget->getDialog();
|
|
|
|
const std::string& section = m_bwidget->getConfigSection();
|
|
|
|
const PAD::ControllerInfo* cinfo = PAD::GetControllerInfo(m_bwidget->getControllerType());
|
|
|
|
if (!cinfo)
|
|
|
|
{
|
|
|
|
// Shouldn't ever happen.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load binds (single string joined by &)
|
|
|
|
const std::string binds_string(
|
|
|
|
dialog->getStringValue(section.c_str(), fmt::format("Macro{}Binds", index + 1u).c_str(), ""));
|
|
|
|
const std::vector<std::string_view> buttons_split(StringUtil::SplitString(binds_string, '&', true));
|
|
|
|
|
|
|
|
for (const std::string_view& button : buttons_split)
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < cinfo->num_bindings; i++)
|
|
|
|
{
|
|
|
|
if (button == cinfo->bindings[i].name)
|
|
|
|
{
|
|
|
|
m_binds.push_back(&cinfo->bindings[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// populate list view
|
|
|
|
for (u32 i = 0; i < cinfo->num_bindings; i++)
|
|
|
|
{
|
|
|
|
const PAD::ControllerBindingInfo& bi = cinfo->bindings[i];
|
|
|
|
if (bi.type == PAD::ControllerBindingType::Motor)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
QListWidgetItem* item = new QListWidgetItem();
|
|
|
|
item->setText(QString::fromUtf8(bi.display_name));
|
|
|
|
item->setCheckState((std::find(m_binds.begin(), m_binds.end(), &bi) != m_binds.end()) ? Qt::Checked :
|
|
|
|
Qt::Unchecked);
|
|
|
|
m_ui.bindList->addItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_frequency = dialog->getIntValue(section.c_str(), fmt::format("Macro{}Frequency", index + 1u).c_str(), 0);
|
|
|
|
updateFrequencyText();
|
|
|
|
|
|
|
|
m_ui.trigger->initialize(dialog->getProfileSettingsInterface(), section, fmt::format("Macro{}", index + 1u));
|
|
|
|
|
|
|
|
connect(m_ui.increaseFrequency, &QAbstractButton::clicked, this, [this]() { modFrequency(1); });
|
|
|
|
connect(m_ui.decreateFrequency, &QAbstractButton::clicked, this, [this]() { modFrequency(-1); });
|
|
|
|
connect(m_ui.setFrequency, &QAbstractButton::clicked, this, &ControllerMacroEditWidget::onSetFrequencyClicked);
|
|
|
|
connect(m_ui.bindList, &QListWidget::itemChanged, this, &ControllerMacroEditWidget::updateBinds);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerMacroEditWidget::~ControllerMacroEditWidget() = default;
|
|
|
|
|
|
|
|
QString ControllerMacroEditWidget::getSummary() const
|
|
|
|
{
|
|
|
|
QString str;
|
|
|
|
for (const PAD::ControllerBindingInfo* bi : m_binds)
|
|
|
|
{
|
|
|
|
if (!str.isEmpty())
|
|
|
|
str += static_cast<QChar>('/');
|
|
|
|
str += QString::fromUtf8(bi->name);
|
|
|
|
}
|
|
|
|
return str.isEmpty() ? tr("Not Configured") : str;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroEditWidget::onSetFrequencyClicked()
|
|
|
|
{
|
|
|
|
bool okay;
|
|
|
|
int new_freq = QInputDialog::getInt(this, tr("Set Frequency"), tr("Frequency: "), static_cast<int>(m_frequency), 0,
|
|
|
|
std::numeric_limits<int>::max(), 1, &okay);
|
|
|
|
if (!okay)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_frequency = static_cast<u32>(new_freq);
|
|
|
|
updateFrequency();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroEditWidget::modFrequency(s32 delta)
|
|
|
|
{
|
|
|
|
if (delta < 0 && m_frequency == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_frequency = static_cast<u32>(static_cast<s32>(m_frequency) + delta);
|
|
|
|
updateFrequency();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroEditWidget::updateFrequency()
|
|
|
|
{
|
|
|
|
m_bwidget->getDialog()->setIntValue(m_bwidget->getConfigSection().c_str(),
|
|
|
|
fmt::format("Macro{}Frequency", m_index + 1u).c_str(),
|
|
|
|
static_cast<s32>(m_frequency));
|
|
|
|
updateFrequencyText();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroEditWidget::updateFrequencyText()
|
|
|
|
{
|
|
|
|
if (m_frequency == 0)
|
|
|
|
m_ui.frequencyText->setText(tr("Macro will not repeat."));
|
|
|
|
else
|
|
|
|
m_ui.frequencyText->setText(tr("Macro will toggle buttons every %1 frames.").arg(m_frequency));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerMacroEditWidget::updateBinds()
|
|
|
|
{
|
|
|
|
ControllerSettingsDialog* dialog = m_bwidget->getDialog();
|
|
|
|
const PAD::ControllerInfo* cinfo = PAD::GetControllerInfo(m_bwidget->getControllerType());
|
|
|
|
if (!cinfo)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::vector<const PAD::ControllerBindingInfo*> new_binds;
|
|
|
|
for (u32 i = 0, bind_index = 0; i < cinfo->num_bindings; i++)
|
|
|
|
{
|
|
|
|
const PAD::ControllerBindingInfo& bi = cinfo->bindings[i];
|
|
|
|
if (bi.type == PAD::ControllerBindingType::Motor)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const QListWidgetItem* item = m_ui.bindList->item(static_cast<int>(bind_index));
|
|
|
|
bind_index++;
|
|
|
|
|
|
|
|
if (!item)
|
|
|
|
{
|
|
|
|
// shouldn't happen
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item->checkState() == Qt::Checked)
|
|
|
|
new_binds.push_back(&bi);
|
|
|
|
}
|
|
|
|
if (m_binds == new_binds)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_binds = std::move(new_binds);
|
|
|
|
|
|
|
|
std::string binds_string;
|
|
|
|
for (const PAD::ControllerBindingInfo* bi : m_binds)
|
|
|
|
{
|
|
|
|
if (!binds_string.empty())
|
|
|
|
binds_string.append(" & ");
|
|
|
|
binds_string.append(bi->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& section = m_bwidget->getConfigSection();
|
|
|
|
const std::string key(fmt::format("Macro{}Binds", m_index + 1u));
|
|
|
|
if (binds_string.empty())
|
|
|
|
dialog->clearSettingValue(section.c_str(), key.c_str());
|
|
|
|
else
|
|
|
|
dialog->setStringValue(section.c_str(), key.c_str(), binds_string.c_str());
|
|
|
|
|
|
|
|
m_parent->updateListItem(m_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ControllerCustomSettingsWidget::ControllerCustomSettingsWidget(ControllerBindingWidget* parent, QWidget* parent_widget)
|
|
|
|
: QWidget(parent_widget)
|
|
|
|
, m_parent(parent)
|
|
|
|
{
|
|
|
|
const PAD::ControllerInfo* cinfo = PAD::GetControllerInfo(parent->getControllerType());
|
|
|
|
if (!cinfo || cinfo->num_settings == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QGroupBox* gbox = new QGroupBox(tr("%1 Settings").arg(qApp->translate("PAD", cinfo->display_name)), this);
|
|
|
|
QGridLayout* gbox_layout = new QGridLayout(gbox);
|
|
|
|
createSettingWidgets(parent, gbox, gbox_layout, cinfo);
|
|
|
|
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
layout->addWidget(gbox);
|
|
|
|
|
|
|
|
QHBoxLayout* bottom_hlayout = new QHBoxLayout();
|
|
|
|
QPushButton* restore_defaults = new QPushButton(tr("Restore Default Settings"), this);
|
|
|
|
restore_defaults->setIcon(QIcon::fromTheme(QStringLiteral("restart-line")));
|
|
|
|
connect(restore_defaults, &QPushButton::clicked, this, &ControllerCustomSettingsWidget::restoreDefaults);
|
|
|
|
bottom_hlayout->addStretch(1);
|
|
|
|
bottom_hlayout->addWidget(restore_defaults);
|
|
|
|
layout->addLayout(bottom_hlayout);
|
|
|
|
layout->addStretch(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerCustomSettingsWidget::~ControllerCustomSettingsWidget() = default;
|
|
|
|
|
|
|
|
void ControllerCustomSettingsWidget::createSettingWidgets(ControllerBindingWidget* parent, QWidget* widget_parent,
|
|
|
|
QGridLayout* layout, const PAD::ControllerInfo* cinfo)
|
|
|
|
{
|
|
|
|
const std::string& section = parent->getConfigSection();
|
|
|
|
SettingsInterface* sif = parent->getDialog()->getProfileSettingsInterface();
|
|
|
|
int current_row = 0;
|
|
|
|
|
|
|
|
for (u32 i = 0; i < cinfo->num_settings; i++)
|
|
|
|
{
|
|
|
|
const PAD::ControllerSettingInfo& si = cinfo->settings[i];
|
2022-08-07 06:37:25 +00:00
|
|
|
std::string key_name = si.name;
|
2022-08-05 13:52:16 +00:00
|
|
|
|
|
|
|
switch (si.type)
|
|
|
|
{
|
|
|
|
case PAD::ControllerSettingInfo::Type::Boolean:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QCheckBox* cb = new QCheckBox(qApp->translate(cinfo->name, si.display_name), widget_parent);
|
|
|
|
cb->setObjectName(QString::fromUtf8(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileBool(sif, cb, section, std::move(key_name),
|
|
|
|
si.BooleanDefaultValue());
|
|
|
|
layout->addWidget(cb, current_row, 0, 1, 4);
|
|
|
|
current_row++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Integer:
|
|
|
|
{
|
|
|
|
QSpinBox* sb = new QSpinBox(widget_parent);
|
2022-08-07 06:37:25 +00:00
|
|
|
sb->setObjectName(QString::fromUtf8(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
sb->setMinimum(si.IntegerMinValue());
|
|
|
|
sb->setMaximum(si.IntegerMaxValue());
|
|
|
|
sb->setSingleStep(si.IntegerStepValue());
|
|
|
|
SettingWidgetBinder::BindWidgetToIntSetting(sif, sb, section, std::move(key_name), si.IntegerDefaultValue());
|
2022-08-07 06:37:25 +00:00
|
|
|
layout->addWidget(new QLabel(qApp->translate(cinfo->name, si.display_name), widget_parent), current_row, 0);
|
2022-08-05 13:52:16 +00:00
|
|
|
layout->addWidget(sb, current_row, 1, 1, 3);
|
|
|
|
current_row++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Float:
|
|
|
|
{
|
|
|
|
QDoubleSpinBox* sb = new QDoubleSpinBox(widget_parent);
|
2022-08-07 06:37:25 +00:00
|
|
|
sb->setObjectName(QString::fromUtf8(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
sb->setMinimum(si.FloatMinValue());
|
|
|
|
sb->setMaximum(si.FloatMaxValue());
|
|
|
|
sb->setSingleStep(si.FloatStepValue());
|
|
|
|
SettingWidgetBinder::BindWidgetToFloatSetting(sif, sb, section, std::move(key_name), si.FloatDefaultValue());
|
2022-08-07 06:37:25 +00:00
|
|
|
layout->addWidget(new QLabel(qApp->translate(cinfo->name, si.display_name), widget_parent), current_row, 0);
|
2022-08-05 13:52:16 +00:00
|
|
|
layout->addWidget(sb, current_row, 1, 1, 3);
|
|
|
|
current_row++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::String:
|
|
|
|
{
|
|
|
|
QLineEdit* le = new QLineEdit(widget_parent);
|
2022-08-07 06:37:25 +00:00
|
|
|
le->setObjectName(QString::fromUtf8(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToStringSetting(sif, le, section, std::move(key_name), si.StringDefaultValue());
|
2022-08-07 06:37:25 +00:00
|
|
|
layout->addWidget(new QLabel(qApp->translate(cinfo->name, si.display_name), widget_parent), current_row, 0);
|
2022-08-05 13:52:16 +00:00
|
|
|
layout->addWidget(le, current_row, 1, 1, 3);
|
|
|
|
current_row++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Path:
|
|
|
|
{
|
|
|
|
QLineEdit* le = new QLineEdit(widget_parent);
|
2022-08-07 06:37:25 +00:00
|
|
|
le->setObjectName(QString::fromUtf8(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
QPushButton* browse_button = new QPushButton(tr("Browse..."), widget_parent);
|
|
|
|
SettingWidgetBinder::BindWidgetToStringSetting(sif, le, section, std::move(key_name), si.StringDefaultValue());
|
|
|
|
connect(browse_button, &QPushButton::clicked, [this, le]() {
|
|
|
|
QString path = QFileDialog::getOpenFileName(this, tr("Select File"));
|
|
|
|
if (!path.isEmpty())
|
|
|
|
le->setText(path);
|
|
|
|
});
|
|
|
|
|
|
|
|
QHBoxLayout* hbox = new QHBoxLayout();
|
|
|
|
hbox->addWidget(le, 1);
|
|
|
|
hbox->addWidget(browse_button);
|
|
|
|
|
2022-08-07 06:37:25 +00:00
|
|
|
layout->addWidget(new QLabel(qApp->translate(cinfo->name, si.display_name), widget_parent), current_row, 0);
|
2022-08-05 13:52:16 +00:00
|
|
|
layout->addLayout(hbox, current_row, 1, 1, 3);
|
|
|
|
current_row++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLabel* label = new QLabel(si.description ? qApp->translate(cinfo->name, si.description) : QString(), widget_parent);
|
|
|
|
label->setWordWrap(true);
|
|
|
|
layout->addWidget(label, current_row++, 0, 1, 4);
|
|
|
|
|
|
|
|
layout->addItem(new QSpacerItem(1, 10, QSizePolicy::Minimum, QSizePolicy::Fixed), current_row++, 0, 1, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerCustomSettingsWidget::restoreDefaults()
|
|
|
|
{
|
|
|
|
const PAD::ControllerInfo* cinfo = PAD::GetControllerInfo(m_parent->getControllerType());
|
|
|
|
if (!cinfo || cinfo->num_settings == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (u32 i = 0; i < cinfo->num_settings; i++)
|
|
|
|
{
|
|
|
|
const PAD::ControllerSettingInfo& si = cinfo->settings[i];
|
2022-08-07 06:37:25 +00:00
|
|
|
const QString key(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
|
|
|
|
switch (si.type)
|
|
|
|
{
|
|
|
|
case PAD::ControllerSettingInfo::Type::Boolean:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QCheckBox* widget = findChild<QCheckBox*>(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
if (widget)
|
|
|
|
widget->setChecked(si.BooleanDefaultValue());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Integer:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QSpinBox* widget = findChild<QSpinBox*>(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
if (widget)
|
|
|
|
widget->setValue(si.IntegerDefaultValue());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Float:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QDoubleSpinBox* widget = findChild<QDoubleSpinBox*>(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
if (widget)
|
|
|
|
widget->setValue(si.FloatDefaultValue());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::String:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QLineEdit* widget = findChild<QLineEdit*>(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
if (widget)
|
|
|
|
widget->setText(QString::fromUtf8(si.StringDefaultValue()));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::ControllerSettingInfo::Type::Path:
|
|
|
|
{
|
2022-08-07 06:37:25 +00:00
|
|
|
QLineEdit* widget = findChild<QLineEdit*>(QString::fromStdString(si.name));
|
2022-08-05 13:52:16 +00:00
|
|
|
if (widget)
|
|
|
|
widget->setText(QString::fromUtf8(si.StringDefaultValue()));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ControllerBindingWidget_Base::ControllerBindingWidget_Base(ControllerBindingWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerBindingWidget_Base::~ControllerBindingWidget_Base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
QIcon ControllerBindingWidget_Base::getIcon() const
|
|
|
|
{
|
|
|
|
return QIcon::fromTheme("artboard-2-line");
|
|
|
|
}
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
void ControllerBindingWidget_Base::initBindingWidgets()
|
|
|
|
{
|
|
|
|
const std::string& type = getControllerType();
|
|
|
|
const std::string& config_section = getConfigSection();
|
|
|
|
std::vector<std::string> bindings(PAD::GetControllerBinds(type));
|
2022-06-08 12:15:10 +00:00
|
|
|
SettingsInterface* sif = getDialog()->getProfileSettingsInterface();
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
for (std::string& binding : bindings)
|
|
|
|
{
|
|
|
|
InputBindingWidget* widget = findChild<InputBindingWidget*>(QString::fromStdString(binding));
|
|
|
|
if (!widget)
|
|
|
|
{
|
2022-03-20 03:40:47 +00:00
|
|
|
Console.Error("(ControllerBindingWidget_Base) No widget found for '%s' (%.*s)",
|
2021-12-13 12:12:54 +00:00
|
|
|
binding.c_str(), static_cast<int>(type.size()), type.data());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
widget->initialize(sif, config_section, std::move(binding));
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const PAD::VibrationCapabilities vibe_caps = PAD::GetControllerVibrationCapabilities(type);
|
|
|
|
switch (vibe_caps)
|
|
|
|
{
|
|
|
|
case PAD::VibrationCapabilities::LargeSmallMotors:
|
|
|
|
{
|
|
|
|
InputVibrationBindingWidget* widget = findChild<InputVibrationBindingWidget*>(QStringLiteral("LargeMotor"));
|
|
|
|
if (widget)
|
|
|
|
widget->setKey(getDialog(), config_section, "LargeMotor");
|
|
|
|
|
|
|
|
widget = findChild<InputVibrationBindingWidget*>(QStringLiteral("SmallMotor"));
|
|
|
|
if (widget)
|
|
|
|
widget->setKey(getDialog(), config_section, "SmallMotor");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::VibrationCapabilities::SingleMotor:
|
|
|
|
{
|
|
|
|
InputVibrationBindingWidget* widget = findChild<InputVibrationBindingWidget*>(QStringLiteral("Motor"));
|
|
|
|
if (widget)
|
|
|
|
widget->setKey(getDialog(), config_section, "Motor");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD::VibrationCapabilities::NoVibration:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2022-05-03 13:23:39 +00:00
|
|
|
|
2022-06-18 09:29:57 +00:00
|
|
|
if (QSlider* widget = findChild<QSlider*>(QStringLiteral("Deadzone")); widget)
|
|
|
|
{
|
|
|
|
const float range = static_cast<float>(widget->maximum());
|
|
|
|
QLabel* label = findChild<QLabel*>(QStringLiteral("DeadzoneLabel"));
|
|
|
|
if (label)
|
|
|
|
{
|
|
|
|
connect(widget, &QSlider::valueChanged, this, [range, label](int value) {
|
|
|
|
label->setText(tr("%1%").arg((static_cast<float>(value) / range) * 100.0f, 0, 'f', 0));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileNormalized(sif, widget, config_section, "Deadzone", range,
|
|
|
|
PAD::DEFAULT_STICK_DEADZONE);
|
|
|
|
}
|
|
|
|
|
2022-05-03 13:23:39 +00:00
|
|
|
if (QSlider* widget = findChild<QSlider*>(QStringLiteral("AxisScale")); widget)
|
|
|
|
{
|
|
|
|
// position 1.0f at the halfway point
|
|
|
|
const float range = static_cast<float>(widget->maximum()) * 0.5f;
|
|
|
|
QLabel* label = findChild<QLabel*>(QStringLiteral("AxisScaleLabel"));
|
|
|
|
if (label)
|
|
|
|
{
|
|
|
|
connect(widget, &QSlider::valueChanged, this, [range, label](int value) {
|
2022-06-18 09:29:57 +00:00
|
|
|
label->setText(tr("%1%").arg((static_cast<float>(value) / range) * 100.0f, 0, 'f', 0));
|
2022-05-03 13:23:39 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-18 09:29:57 +00:00
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileNormalized(sif, widget, config_section, "AxisScale", range,
|
|
|
|
PAD::DEFAULT_STICK_SCALE);
|
2022-05-03 13:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (QDoubleSpinBox* widget = findChild<QDoubleSpinBox*>(QStringLiteral("SmallMotorScale")); widget)
|
2022-06-27 12:37:22 +00:00
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileFloat(sif, widget, config_section, "SmallMotorScale", PAD::DEFAULT_MOTOR_SCALE);
|
2022-05-03 13:23:39 +00:00
|
|
|
if (QDoubleSpinBox* widget = findChild<QDoubleSpinBox*>(QStringLiteral("LargeMotorScale")); widget)
|
2022-06-27 12:37:22 +00:00
|
|
|
ControllerSettingWidgetBinder::BindWidgetToInputProfileFloat(sif, widget, config_section, "LargeMotorScale", PAD::DEFAULT_MOTOR_SCALE);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ControllerBindingWidget_DualShock2::ControllerBindingWidget_DualShock2(ControllerBindingWidget* parent)
|
|
|
|
: ControllerBindingWidget_Base(parent)
|
|
|
|
{
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
initBindingWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerBindingWidget_DualShock2::~ControllerBindingWidget_DualShock2()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:15:10 +00:00
|
|
|
QIcon ControllerBindingWidget_DualShock2::getIcon() const
|
|
|
|
{
|
|
|
|
return QIcon::fromTheme("gamepad-line");
|
|
|
|
}
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
ControllerBindingWidget_Base* ControllerBindingWidget_DualShock2::createInstance(ControllerBindingWidget* parent)
|
|
|
|
{
|
|
|
|
return new ControllerBindingWidget_DualShock2(parent);
|
|
|
|
}
|
|
|
|
|
2022-03-20 03:40:47 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|