dolphin/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

435 lines
14 KiB
C++
Raw Normal View History

2017-05-20 17:53:17 +02:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2018-07-07 00:40:15 +02:00
#include "DolphinQt/Config/Mapping/MappingWindow.h"
2018-05-28 03:48:04 +02:00
2018-04-01 16:25:34 +02:00
#include <QCheckBox>
2017-05-20 17:53:17 +02:00
#include <QComboBox>
#include <QDialogButtonBox>
#include <QGroupBox>
#include <QHBoxLayout>
#include <QPushButton>
#include <QTabWidget>
#include <QVBoxLayout>
2019-03-15 02:27:49 +01:00
#include "Core/Core.h"
#include "Common/FileSearch.h"
2017-05-20 17:53:17 +02:00
#include "Common/FileUtil.h"
#include "Common/IniFile.h"
#include "Common/StringUtil.h"
2018-05-28 03:48:04 +02:00
2018-07-07 00:40:15 +02:00
#include "DolphinQt/Config/Mapping/GCKeyboardEmu.h"
#include "DolphinQt/Config/Mapping/GCMicrophone.h"
#include "DolphinQt/Config/Mapping/GCPadEmu.h"
#include "DolphinQt/Config/Mapping/Hotkey3D.h"
#include "DolphinQt/Config/Mapping/HotkeyControllerProfile.h"
2018-07-07 00:40:15 +02:00
#include "DolphinQt/Config/Mapping/HotkeyDebugging.h"
#include "DolphinQt/Config/Mapping/HotkeyGeneral.h"
#include "DolphinQt/Config/Mapping/HotkeyGraphics.h"
#include "DolphinQt/Config/Mapping/HotkeyStates.h"
#include "DolphinQt/Config/Mapping/HotkeyStatesOther.h"
#include "DolphinQt/Config/Mapping/HotkeyTAS.h"
#include "DolphinQt/Config/Mapping/HotkeyWii.h"
#include "DolphinQt/Config/Mapping/WiimoteEmuExtension.h"
#include "DolphinQt/Config/Mapping/WiimoteEmuGeneral.h"
#include "DolphinQt/Config/Mapping/WiimoteEmuMotionControl.h"
#include "DolphinQt/Config/Mapping/WiimoteEmuMotionControlIMU.h"
2019-03-04 20:49:00 +01:00
#include "DolphinQt/QtUtils/ModalMessageBox.h"
2018-07-07 00:40:15 +02:00
#include "DolphinQt/QtUtils/WrapInScrollArea.h"
#include "DolphinQt/Settings.h"
2018-05-28 03:48:04 +02:00
2017-05-20 17:53:17 +02:00
#include "InputCommon/ControllerEmu/ControllerEmu.h"
#include "InputCommon/ControllerInterface/ControllerInterface.h"
2017-05-20 17:53:17 +02:00
#include "InputCommon/ControllerInterface/Device.h"
#include "InputCommon/InputConfig.h"
2018-04-30 09:09:27 +02:00
constexpr const char* PROFILES_DIR = "Profiles/";
MappingWindow::MappingWindow(QWidget* parent, Type type, int port_num)
: QDialog(parent), m_port(port_num)
2017-05-20 17:53:17 +02:00
{
setWindowTitle(tr("Port %1").arg(port_num + 1));
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
2017-05-20 17:53:17 +02:00
CreateDevicesLayout();
CreateProfilesLayout();
CreateResetLayout();
CreateMainLayout();
ConnectWidgets();
SetMappingType(type);
2019-03-15 02:27:49 +01:00
emit ConfigChanged();
2017-05-20 17:53:17 +02:00
}
void MappingWindow::CreateDevicesLayout()
{
m_devices_layout = new QHBoxLayout();
m_devices_box = new QGroupBox(tr("Device"));
2017-05-20 17:53:17 +02:00
m_devices_combo = new QComboBox();
m_devices_refresh = new QPushButton(tr("Refresh"));
m_devices_combo->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed);
2017-05-20 17:53:17 +02:00
m_devices_refresh->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
2017-05-20 17:53:17 +02:00
m_devices_layout->addWidget(m_devices_combo);
m_devices_layout->addWidget(m_devices_refresh);
m_devices_box->setLayout(m_devices_layout);
}
void MappingWindow::CreateProfilesLayout()
{
m_profiles_layout = new QHBoxLayout();
m_profiles_box = new QGroupBox(tr("Profile"));
2017-05-20 17:53:17 +02:00
m_profiles_combo = new QComboBox();
m_profiles_load = new QPushButton(tr("Load"));
m_profiles_save = new QPushButton(tr("Save"));
m_profiles_delete = new QPushButton(tr("Delete"));
auto* button_layout = new QHBoxLayout();
m_profiles_combo->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed);
2019-04-28 21:00:35 +02:00
m_profiles_combo->setMinimumWidth(100);
2017-05-20 17:53:17 +02:00
m_profiles_combo->setEditable(true);
m_profiles_layout->addWidget(m_profiles_combo);
button_layout->addWidget(m_profiles_load);
button_layout->addWidget(m_profiles_save);
button_layout->addWidget(m_profiles_delete);
m_profiles_layout->addLayout(button_layout);
2017-05-20 17:53:17 +02:00
m_profiles_box->setLayout(m_profiles_layout);
}
void MappingWindow::CreateResetLayout()
{
m_reset_layout = new QHBoxLayout();
2017-05-20 17:53:17 +02:00
m_reset_box = new QGroupBox(tr("Reset"));
m_reset_clear = new QPushButton(tr("Clear"));
m_reset_default = new QPushButton(tr("Default"));
m_reset_box->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
m_reset_layout->addWidget(m_reset_default);
m_reset_layout->addWidget(m_reset_clear);
2017-05-20 17:53:17 +02:00
m_reset_box->setLayout(m_reset_layout);
}
void MappingWindow::CreateMainLayout()
{
m_main_layout = new QVBoxLayout();
m_config_layout = new QHBoxLayout();
m_tab_widget = new QTabWidget();
2018-03-20 10:12:11 +01:00
m_button_box = new QDialogButtonBox(QDialogButtonBox::Close);
2017-05-20 17:53:17 +02:00
m_config_layout->addWidget(m_devices_box);
2017-05-20 17:53:17 +02:00
m_config_layout->addWidget(m_reset_box);
m_config_layout->addWidget(m_profiles_box);
2017-05-20 17:53:17 +02:00
m_main_layout->addLayout(m_config_layout);
2017-05-20 17:53:17 +02:00
m_main_layout->addWidget(m_tab_widget);
m_main_layout->addWidget(m_button_box);
setLayout(m_main_layout);
}
void MappingWindow::ConnectWidgets()
{
connect(&Settings::Instance(), &Settings::DevicesChanged, this,
&MappingWindow::OnGlobalDevicesChanged);
2019-03-15 02:27:49 +01:00
connect(this, &MappingWindow::ConfigChanged, this, &MappingWindow::OnGlobalDevicesChanged);
2017-05-20 17:53:17 +02:00
connect(m_devices_combo, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
2019-03-15 02:27:49 +01:00
this, &MappingWindow::OnSelectDevice);
connect(m_devices_refresh, &QPushButton::clicked, this, &MappingWindow::RefreshDevices);
connect(m_reset_clear, &QPushButton::clicked, this, &MappingWindow::OnClearFieldsPressed);
2017-05-20 17:53:17 +02:00
connect(m_reset_default, &QPushButton::clicked, this, &MappingWindow::OnDefaultFieldsPressed);
connect(m_profiles_save, &QPushButton::clicked, this, &MappingWindow::OnSaveProfilePressed);
connect(m_profiles_load, &QPushButton::clicked, this, &MappingWindow::OnLoadProfilePressed);
connect(m_profiles_delete, &QPushButton::clicked, this, &MappingWindow::OnDeleteProfilePressed);
2019-03-15 02:27:49 +01:00
// We currently use the "Close" button as an "Accept" button so we must save on reject.
connect(this, &QDialog::rejected, [this] { emit Save(); });
2019-03-15 02:27:49 +01:00
connect(m_button_box, &QDialogButtonBox::rejected, this, &QDialog::reject);
2017-05-20 17:53:17 +02:00
}
2019-04-28 21:00:35 +02:00
void MappingWindow::UpdateProfileIndex()
{
// Make sure currentIndex and currentData are accurate when the user manually types a name.
const auto current_text = m_profiles_combo->currentText();
const int text_index = m_profiles_combo->findText(current_text);
m_profiles_combo->setCurrentIndex(text_index);
if (text_index == -1)
m_profiles_combo->setCurrentText(current_text);
}
2017-05-20 17:53:17 +02:00
void MappingWindow::OnDeleteProfilePressed()
{
2019-04-28 21:00:35 +02:00
UpdateProfileIndex();
2017-05-20 17:53:17 +02:00
const QString profile_name = m_profiles_combo->currentText();
const QString profile_path = m_profiles_combo->currentData().toString();
2019-04-28 21:00:35 +02:00
if (m_profiles_combo->currentIndex() == -1 || !File::Exists(profile_path.toStdString()))
2017-05-20 17:53:17 +02:00
{
2019-03-04 20:49:00 +01:00
ModalMessageBox error(this);
2017-05-20 17:53:17 +02:00
error.setIcon(QMessageBox::Critical);
error.setWindowTitle(tr("Error"));
2017-05-20 17:53:17 +02:00
error.setText(tr("The profile '%1' does not exist").arg(profile_name));
error.exec();
return;
}
2019-03-04 20:49:00 +01:00
ModalMessageBox confirm(this);
2017-05-20 17:53:17 +02:00
confirm.setIcon(QMessageBox::Warning);
confirm.setWindowTitle(tr("Confirm"));
2017-05-20 17:53:17 +02:00
confirm.setText(tr("Are you sure that you want to delete '%1'?").arg(profile_name));
confirm.setInformativeText(tr("This cannot be undone!"));
confirm.setStandardButtons(QMessageBox::Yes | QMessageBox::Cancel);
if (confirm.exec() != QMessageBox::Yes)
{
return;
}
m_profiles_combo->removeItem(m_profiles_combo->currentIndex());
2019-04-28 21:00:35 +02:00
m_profiles_combo->setCurrentIndex(-1);
2017-05-20 17:53:17 +02:00
File::Delete(profile_path.toStdString());
2017-05-20 17:53:17 +02:00
2019-03-04 20:49:00 +01:00
ModalMessageBox result(this);
2017-05-20 17:53:17 +02:00
result.setIcon(QMessageBox::Information);
result.setWindowModality(Qt::WindowModal);
result.setWindowTitle(tr("Success"));
2017-05-20 17:53:17 +02:00
result.setText(tr("Successfully deleted '%1'.").arg(profile_name));
}
void MappingWindow::OnLoadProfilePressed()
{
2019-04-28 21:00:35 +02:00
UpdateProfileIndex();
2017-05-20 17:53:17 +02:00
2019-04-28 21:00:35 +02:00
if (m_profiles_combo->currentIndex() == -1)
{
ModalMessageBox error(this);
error.setIcon(QMessageBox::Critical);
error.setWindowTitle(tr("Error"));
error.setText(tr("The profile '%1' does not exist").arg(m_profiles_combo->currentText()));
error.exec();
2017-05-20 17:53:17 +02:00
return;
2019-04-28 21:00:35 +02:00
}
const QString profile_path = m_profiles_combo->currentData().toString();
2017-05-20 17:53:17 +02:00
IniFile ini;
ini.Load(profile_path.toStdString());
2017-05-20 17:53:17 +02:00
m_controller->LoadConfig(ini.GetOrCreateSection("Profile"));
m_controller->UpdateReferences(g_controller_interface);
2019-03-15 02:27:49 +01:00
emit ConfigChanged();
2017-05-20 17:53:17 +02:00
}
void MappingWindow::OnSaveProfilePressed()
{
const QString profile_name = m_profiles_combo->currentText();
if (profile_name.isEmpty())
return;
2019-04-28 21:00:35 +02:00
const std::string profile_path = File::GetUserPath(D_CONFIG_IDX) + PROFILES_DIR +
m_config->GetProfileName() + "/" + profile_name.toStdString() +
".ini";
2018-04-30 09:09:27 +02:00
File::CreateFullPath(profile_path);
2017-05-20 17:53:17 +02:00
IniFile ini;
m_controller->SaveConfig(ini.GetOrCreateSection("Profile"));
2018-04-30 09:09:27 +02:00
ini.Save(profile_path);
2017-05-20 17:53:17 +02:00
2019-04-28 21:00:35 +02:00
if (m_profiles_combo->findText(profile_name) == -1)
2018-04-30 09:09:27 +02:00
m_profiles_combo->addItem(profile_name, QString::fromStdString(profile_path));
2017-05-20 17:53:17 +02:00
}
void MappingWindow::OnSelectDevice(int)
2017-05-20 17:53:17 +02:00
{
if (IsMappingAllDevices())
return;
2019-03-15 02:27:49 +01:00
// Original string is stored in the "user-data".
const auto device = m_devices_combo->currentData().toString().toStdString();
m_controller->SetDefaultDevice(device);
2019-03-15 02:27:49 +01:00
m_controller->UpdateReferences(g_controller_interface);
2017-05-20 17:53:17 +02:00
}
bool MappingWindow::IsMappingAllDevices() const
{
return m_devices_combo->currentIndex() == m_devices_combo->count() - 1;
}
2017-05-20 17:53:17 +02:00
void MappingWindow::RefreshDevices()
{
Core::RunAsCPUThread([&] { g_controller_interface.RefreshDevices(); });
}
void MappingWindow::OnGlobalDevicesChanged()
2017-05-20 17:53:17 +02:00
{
const QSignalBlocker blocker(m_devices_combo);
2019-03-15 02:27:49 +01:00
2017-05-20 17:53:17 +02:00
m_devices_combo->clear();
2019-03-15 02:27:49 +01:00
for (const auto& name : g_controller_interface.GetAllDeviceStrings())
{
const auto qname = QString::fromStdString(name);
m_devices_combo->addItem(qname, qname);
}
2017-05-20 17:53:17 +02:00
2019-03-15 02:27:49 +01:00
m_devices_combo->insertSeparator(m_devices_combo->count());
2017-05-20 17:53:17 +02:00
2019-03-15 02:27:49 +01:00
const auto default_device = m_controller->GetDefaultDevice().ToString();
2017-05-20 17:53:17 +02:00
2019-03-15 02:27:49 +01:00
if (!default_device.empty())
{
const auto default_device_index =
m_devices_combo->findText(QString::fromStdString(default_device));
if (default_device_index != -1)
{
m_devices_combo->setCurrentIndex(default_device_index);
}
else
{
2019-03-15 02:27:49 +01:00
// Selected device is not currently attached.
const auto qname = QString::fromStdString(default_device);
m_devices_combo->addItem(QLatin1Char{'['} + tr("disconnected") + QStringLiteral("] ") + qname,
qname);
2019-03-15 02:27:49 +01:00
m_devices_combo->setCurrentIndex(m_devices_combo->count() - 1);
}
2019-03-15 02:27:49 +01:00
}
2017-05-21 14:47:35 +02:00
2019-03-15 02:27:49 +01:00
m_devices_combo->addItem(tr("All devices"));
2017-05-20 17:53:17 +02:00
}
void MappingWindow::SetMappingType(MappingWindow::Type type)
2017-05-20 17:53:17 +02:00
{
MappingWidget* widget;
switch (type)
{
case Type::MAPPING_GC_KEYBOARD:
widget = new GCKeyboardEmu(this);
AddWidget(tr("GameCube Keyboard"), widget);
setWindowTitle(tr("GameCube Keyboard at Port %1").arg(GetPort() + 1));
break;
case Type::MAPPING_GC_BONGOS:
case Type::MAPPING_GC_STEERINGWHEEL:
case Type::MAPPING_GC_DANCEMAT:
case Type::MAPPING_GCPAD:
widget = new GCPadEmu(this);
setWindowTitle(tr("GameCube Controller at Port %1").arg(GetPort() + 1));
AddWidget(tr("GameCube Controller"), widget);
break;
case Type::MAPPING_GC_MICROPHONE:
widget = new GCMicrophone(this);
setWindowTitle(tr("GameCube Microphone Slot %1")
.arg(GetPort() == 0 ? QLatin1Char{'A'} : QLatin1Char{'B'}));
AddWidget(tr("Microphone"), widget);
break;
2017-05-20 17:53:17 +02:00
case Type::MAPPING_WIIMOTE_EMU:
{
auto* extension = new WiimoteEmuExtension(this);
widget = new WiimoteEmuGeneral(this, extension);
setWindowTitle(tr("Wii Remote %1").arg(GetPort() + 1));
2017-05-20 17:53:17 +02:00
AddWidget(tr("General and Options"), widget);
AddWidget(tr("Motion Simulation"), new WiimoteEmuMotionControl(this));
AddWidget(tr("Motion Input"), new WiimoteEmuMotionControlIMU(this));
2017-05-20 17:53:17 +02:00
AddWidget(tr("Extension"), extension);
break;
}
case Type::MAPPING_HOTKEYS:
{
widget = new HotkeyGeneral(this);
AddWidget(tr("General"), widget);
// i18n: TAS is short for tool-assisted speedrun. Read http://tasvideos.org/ for details.
// Frame advance is an example of a typical TAS tool.
AddWidget(tr("TAS Tools"), new HotkeyTAS(this));
AddWidget(tr("Debugging"), new HotkeyDebugging(this));
AddWidget(tr("Wii and Wii Remote"), new HotkeyWii(this));
2018-05-24 05:20:58 +02:00
AddWidget(tr("Controller Profile"), new HotkeyControllerProfile(this));
AddWidget(tr("Graphics"), new HotkeyGraphics(this));
// i18n: Stereoscopic 3D
AddWidget(tr("3D"), new Hotkey3D(this));
AddWidget(tr("Save and Load State"), new HotkeyStates(this));
AddWidget(tr("Other State Management"), new HotkeyStatesOther(this));
setWindowTitle(tr("Hotkey Settings"));
break;
}
2017-05-20 17:53:17 +02:00
default:
return;
}
widget->LoadSettings();
m_config = widget->GetConfig();
m_controller = m_config->GetController(GetPort());
const std::string profiles_path =
2018-04-30 09:09:27 +02:00
File::GetUserPath(D_CONFIG_IDX) + PROFILES_DIR + m_config->GetProfileName();
for (const auto& filename : Common::DoFileSearch({profiles_path}, {".ini"}))
{
std::string basename;
SplitPath(filename, nullptr, &basename, nullptr);
m_profiles_combo->addItem(QString::fromStdString(basename), QString::fromStdString(filename));
2017-05-20 17:53:17 +02:00
}
2019-04-28 21:00:35 +02:00
m_profiles_combo->setCurrentIndex(-1);
2017-05-20 17:53:17 +02:00
}
void MappingWindow::AddWidget(const QString& name, QWidget* widget)
{
2019-03-06 13:46:00 +01:00
m_tab_widget->addTab(GetWrappedWidget(widget, this, 150, 210), name);
2017-05-20 17:53:17 +02:00
}
int MappingWindow::GetPort() const
{
return m_port;
}
ControllerEmu::EmulatedController* MappingWindow::GetController() const
{
return m_controller;
}
void MappingWindow::OnDefaultFieldsPressed()
{
m_controller->LoadDefaults(g_controller_interface);
m_controller->UpdateReferences(g_controller_interface);
2019-03-15 02:27:49 +01:00
emit ConfigChanged();
emit Save();
}
2018-04-01 16:25:34 +02:00
void MappingWindow::OnClearFieldsPressed()
{
// Loading an empty inifile section clears everything.
IniFile::Section sec;
2019-03-15 02:27:49 +01:00
// Keep the currently selected device.
const auto default_device = m_controller->GetDefaultDevice();
m_controller->LoadConfig(&sec);
2019-03-15 02:27:49 +01:00
m_controller->SetDefaultDevice(default_device);
m_controller->UpdateReferences(g_controller_interface);
2019-03-15 02:27:49 +01:00
emit ConfigChanged();
emit Save();
}