2017-05-20 15:53:17 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/MappingButton.h"
|
2017-06-13 15:16:41 +00:00
|
|
|
|
2018-05-20 16:27:13 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QFontMetrics>
|
2017-05-20 15:53:17 +00:00
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QRegExp>
|
|
|
|
#include <QString>
|
2018-02-06 10:00:23 +00:00
|
|
|
|
2017-05-20 15:53:17 +00:00
|
|
|
#include "Common/Thread.h"
|
2018-05-10 23:46:05 +00:00
|
|
|
#include "Core/Core.h"
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/IOWindow.h"
|
|
|
|
#include "DolphinQt/Config/Mapping/MappingCommon.h"
|
|
|
|
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
|
|
|
#include "DolphinQt/Config/Mapping/MappingWindow.h"
|
|
|
|
#include "DolphinQt/QtUtils/BlockUserInputFilter.h"
|
2018-08-11 15:37:12 +00:00
|
|
|
#include "DolphinQt/QtUtils/QueueOnObject.h"
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Settings.h"
|
2018-05-10 23:46:05 +00:00
|
|
|
|
2017-05-20 15:53:17 +00:00
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
2018-12-31 13:31:11 +00:00
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/Buttons.h"
|
2017-05-20 15:53:17 +00:00
|
|
|
#include "InputCommon/ControllerEmu/ControllerEmu.h"
|
|
|
|
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
2017-06-13 15:16:41 +00:00
|
|
|
#include "InputCommon/ControllerInterface/Device.h"
|
2017-05-20 15:53:17 +00:00
|
|
|
|
2018-05-02 16:29:05 +00:00
|
|
|
constexpr int SLIDER_TICK_COUNT = 100;
|
|
|
|
|
2019-03-03 14:43:18 +00:00
|
|
|
// Escape ampersands and remove ticks
|
|
|
|
static QString ToDisplayString(QString&& string)
|
2017-07-02 11:15:46 +00:00
|
|
|
{
|
2019-03-03 14:43:18 +00:00
|
|
|
return string.replace(QStringLiteral("&"), QStringLiteral("&&"))
|
|
|
|
.replace(QStringLiteral("`"), QStringLiteral(""));
|
2017-07-02 11:15:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-01 14:25:34 +00:00
|
|
|
bool MappingButton::IsInput() const
|
|
|
|
{
|
|
|
|
return m_reference->IsInput();
|
|
|
|
}
|
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
MappingButton::MappingButton(MappingWidget* parent, ControlReference* ref, bool indicator)
|
|
|
|
: ElidedButton(ToDisplayString(QString::fromStdString(ref->GetExpression()))), m_parent(parent),
|
2017-07-02 11:15:46 +00:00
|
|
|
m_reference(ref)
|
2017-05-20 15:53:17 +00:00
|
|
|
{
|
2019-03-03 14:05:59 +00:00
|
|
|
// Force all mapping buttons to stay at a minimal height.
|
|
|
|
setFixedHeight(minimumSizeHint().height());
|
2018-05-20 16:27:13 +00:00
|
|
|
|
2019-03-03 14:05:59 +00:00
|
|
|
// Make sure that long entries don't throw our layout out of whack.
|
|
|
|
setFixedWidth(112);
|
2018-05-30 14:39:07 +00:00
|
|
|
|
2019-03-03 14:05:59 +00:00
|
|
|
setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
|
2018-05-20 16:27:13 +00:00
|
|
|
|
2018-02-07 17:16:15 +00:00
|
|
|
setToolTip(
|
|
|
|
tr("Left-click to detect input.\nMiddle-click to clear.\nRight-click for more options."));
|
2018-05-10 23:46:05 +00:00
|
|
|
|
2019-04-27 17:35:26 +00:00
|
|
|
connect(this, &MappingButton::clicked, this, &MappingButton::Detect);
|
2018-02-06 10:00:23 +00:00
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
if (indicator)
|
|
|
|
connect(parent, &MappingWidget::Update, this, &MappingButton::UpdateIndicator);
|
2018-02-06 10:00:23 +00:00
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
connect(parent, &MappingWidget::ConfigChanged, this, &MappingButton::ConfigChanged);
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
void MappingButton::AdvancedPressed()
|
2017-05-20 15:53:17 +00:00
|
|
|
{
|
2019-03-15 01:27:49 +00:00
|
|
|
IOWindow io(this, m_parent->GetController(), m_reference,
|
|
|
|
m_reference->IsInput() ? IOWindow::Type::Input : IOWindow::Type::Output);
|
|
|
|
io.exec();
|
|
|
|
|
|
|
|
ConfigChanged();
|
|
|
|
m_parent->SaveSettings();
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-01 14:25:34 +00:00
|
|
|
void MappingButton::Detect()
|
2017-05-20 15:53:17 +00:00
|
|
|
{
|
2019-03-15 01:27:49 +00:00
|
|
|
if (!m_reference->IsInput())
|
2017-05-20 15:53:17 +00:00
|
|
|
return;
|
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
const auto default_device_qualifier = m_parent->GetController()->GetDefaultDevice();
|
2018-05-23 21:47:42 +00:00
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
QString expression;
|
2017-05-20 15:53:17 +00:00
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
if (m_parent->GetParent()->IsMappingAllDevices())
|
|
|
|
{
|
|
|
|
expression = MappingCommon::DetectExpression(this, g_controller_interface,
|
|
|
|
g_controller_interface.GetAllDeviceStrings(),
|
|
|
|
default_device_qualifier);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
expression = MappingCommon::DetectExpression(this, g_controller_interface,
|
|
|
|
{default_device_qualifier.ToString()},
|
|
|
|
default_device_qualifier);
|
|
|
|
}
|
2017-06-14 00:11:52 +00:00
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
if (expression.isEmpty())
|
|
|
|
return;
|
2018-04-01 14:25:34 +00:00
|
|
|
|
2019-02-28 00:10:18 +00:00
|
|
|
m_reference->SetExpression(expression.toStdString());
|
|
|
|
m_parent->GetController()->UpdateReferences(g_controller_interface);
|
2017-05-20 15:53:17 +00:00
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
ConfigChanged();
|
|
|
|
m_parent->SaveSettings();
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MappingButton::Clear()
|
|
|
|
{
|
2018-05-02 16:29:05 +00:00
|
|
|
m_reference->range = 100.0 / SLIDER_TICK_COUNT;
|
2019-03-15 01:27:49 +00:00
|
|
|
|
|
|
|
m_reference->SetExpression("");
|
|
|
|
m_parent->GetController()->UpdateReferences(g_controller_interface);
|
|
|
|
|
2017-11-03 20:28:45 +00:00
|
|
|
m_parent->SaveSettings();
|
2019-03-15 01:27:49 +00:00
|
|
|
ConfigChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MappingButton::UpdateIndicator()
|
|
|
|
{
|
|
|
|
if (!isActiveWindow())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto state = m_reference->State();
|
|
|
|
|
|
|
|
QFont f = m_parent->font();
|
|
|
|
|
|
|
|
if (state > ControllerEmu::Buttons::ACTIVATION_THRESHOLD)
|
|
|
|
f.setBold(true);
|
|
|
|
|
|
|
|
setFont(f);
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 01:27:49 +00:00
|
|
|
void MappingButton::ConfigChanged()
|
2017-05-20 15:53:17 +00:00
|
|
|
{
|
2019-03-03 14:43:18 +00:00
|
|
|
setText(ToDisplayString(QString::fromStdString(m_reference->GetExpression())));
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MappingButton::mouseReleaseEvent(QMouseEvent* event)
|
|
|
|
{
|
2017-06-13 15:16:41 +00:00
|
|
|
switch (event->button())
|
2017-05-20 15:53:17 +00:00
|
|
|
{
|
2017-06-13 15:16:41 +00:00
|
|
|
case Qt::MouseButton::LeftButton:
|
|
|
|
if (m_reference->IsInput())
|
2017-05-20 15:53:17 +00:00
|
|
|
QPushButton::mouseReleaseEvent(event);
|
2017-06-13 15:16:41 +00:00
|
|
|
else
|
2019-03-15 01:27:49 +00:00
|
|
|
AdvancedPressed();
|
2017-06-13 15:16:41 +00:00
|
|
|
return;
|
2018-02-07 17:16:15 +00:00
|
|
|
case Qt::MouseButton::MidButton:
|
2017-06-13 15:16:41 +00:00
|
|
|
Clear();
|
|
|
|
return;
|
|
|
|
case Qt::MouseButton::RightButton:
|
2019-03-15 01:27:49 +00:00
|
|
|
AdvancedPressed();
|
2017-06-13 15:16:41 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
return;
|
2017-05-20 15:53:17 +00:00
|
|
|
}
|
|
|
|
}
|