2017-05-20 15:53:17 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
|
|
|
|
|
2017-06-13 15:16:41 +00:00
|
|
|
#include "DolphinQt2/Config/Mapping/IOWindow.h"
|
2017-05-20 15:53:17 +00:00
|
|
|
#include "DolphinQt2/Config/Mapping/MappingBool.h"
|
|
|
|
#include "DolphinQt2/Config/Mapping/MappingButton.h"
|
|
|
|
#include "DolphinQt2/Config/Mapping/MappingNumeric.h"
|
|
|
|
#include "DolphinQt2/Config/Mapping/MappingWindow.h"
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Control.h"
|
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Setting/BooleanSetting.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
|
|
|
|
|
|
|
MappingWidget::MappingWidget(MappingWindow* window) : m_parent(window)
|
|
|
|
{
|
|
|
|
connect(window, &MappingWindow::ClearFields, this, &MappingWidget::OnClearFields);
|
|
|
|
connect(window, &MappingWindow::Update, this, &MappingWidget::Update);
|
|
|
|
}
|
|
|
|
|
|
|
|
MappingWindow* MappingWidget::GetParent() const
|
|
|
|
{
|
|
|
|
return m_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<ciface::Core::Device> MappingWidget::GetDevice() const
|
|
|
|
{
|
|
|
|
return m_parent->GetDevice();
|
|
|
|
}
|
|
|
|
|
|
|
|
int MappingWidget::GetPort() const
|
|
|
|
{
|
|
|
|
return m_parent->GetPort();
|
|
|
|
}
|
|
|
|
|
|
|
|
QGroupBox* MappingWidget::CreateGroupBox(const QString& name, ControllerEmu::ControlGroup* group)
|
|
|
|
{
|
|
|
|
QGroupBox* group_box = new QGroupBox(name);
|
|
|
|
QFormLayout* form_layout = new QFormLayout();
|
|
|
|
|
|
|
|
group_box->setLayout(form_layout);
|
|
|
|
|
|
|
|
for (auto& control : group->controls)
|
|
|
|
{
|
|
|
|
auto* button = new MappingButton(this, control->control_ref.get());
|
2017-06-13 15:16:41 +00:00
|
|
|
|
2017-05-31 06:09:43 +00:00
|
|
|
button->setMinimumWidth(125);
|
2017-05-20 15:53:17 +00:00
|
|
|
button->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
form_layout->addRow(QString::fromStdString(control->name), button);
|
2017-06-13 15:16:41 +00:00
|
|
|
|
|
|
|
auto* control_ref = control->control_ref.get();
|
|
|
|
|
|
|
|
connect(button, &MappingButton::AdvancedPressed, [this, control_ref] {
|
|
|
|
if (m_parent->GetDevice() == nullptr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
IOWindow io(this, m_parent->GetController(), control_ref,
|
|
|
|
control_ref->IsInput() ? IOWindow::Type::Input : IOWindow::Type::Output);
|
|
|
|
io.exec();
|
|
|
|
Update();
|
|
|
|
});
|
|
|
|
|
2017-05-20 15:53:17 +00:00
|
|
|
m_buttons.push_back(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& numeric : group->numeric_settings)
|
|
|
|
{
|
|
|
|
auto* spinbox = new MappingNumeric(this, numeric.get());
|
|
|
|
spinbox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
form_layout->addRow(QString::fromStdString(numeric->m_name), spinbox);
|
|
|
|
m_numerics.push_back(spinbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& boolean : group->boolean_settings)
|
|
|
|
{
|
|
|
|
auto* checkbox = new MappingBool(this, boolean.get());
|
|
|
|
checkbox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
|
|
form_layout->addRow(checkbox);
|
|
|
|
m_bools.push_back(checkbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
return group_box;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MappingWidget::SetBlockInputs(const bool block)
|
|
|
|
{
|
|
|
|
m_parent->SetBlockInputs(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MappingWidget::OnClearFields()
|
|
|
|
{
|
|
|
|
for (auto* button : m_buttons)
|
|
|
|
button->Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MappingWidget::Update()
|
|
|
|
{
|
|
|
|
for (auto* button : m_buttons)
|
|
|
|
button->Update();
|
|
|
|
|
|
|
|
for (auto* spinbox : m_numerics)
|
|
|
|
spinbox->Update();
|
|
|
|
|
|
|
|
for (auto* checkbox : m_numerics)
|
|
|
|
checkbox->Update();
|
|
|
|
|
|
|
|
LoadSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MappingWidget::GetFirstButtonPress()
|
|
|
|
{
|
|
|
|
if (m_first)
|
|
|
|
{
|
|
|
|
m_first = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-13 15:16:41 +00:00
|
|
|
|
|
|
|
ControllerEmu::EmulatedController* MappingWidget::GetController() const
|
|
|
|
{
|
|
|
|
return m_parent->GetController();
|
|
|
|
}
|