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

234 lines
6.3 KiB
C++
Raw Normal View History

2017-05-20 15:53:17 +00:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <future>
#include <utility>
#include <QApplication>
#include <QFontMetrics>
2017-05-20 15:53:17 +00:00
#include <QMouseEvent>
#include <QRegExp>
#include <QString>
#include <QTimer>
2018-07-06 22:40:15 +00:00
#include "DolphinQt/Config/Mapping/MappingButton.h"
2017-05-20 15:53:17 +00:00
#include "Common/Thread.h"
#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"
#include "DolphinQt/QtUtils/QueueOnObject.h"
2018-07-06 22:40:15 +00:00
#include "DolphinQt/Settings.h"
2017-05-20 15:53:17 +00:00
#include "InputCommon/ControlReference/ControlReference.h"
#include "InputCommon/ControllerEmu/ControlGroup/Buttons.h"
2017-05-20 15:53:17 +00:00
#include "InputCommon/ControllerEmu/ControllerEmu.h"
#include "InputCommon/ControllerInterface/ControllerInterface.h"
#include "InputCommon/ControllerInterface/Device.h"
2017-05-20 15:53:17 +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)
{
2019-03-03 14:43:18 +00:00
return string.replace(QStringLiteral("&"), QStringLiteral("&&"))
.replace(QStringLiteral("`"), QStringLiteral(""));
}
2018-04-01 14:25:34 +00:00
bool MappingButton::IsInput() const
{
return m_reference->IsInput();
}
MappingButton::MappingButton(MappingWidget* widget, ControlReference* ref, bool indicator)
2019-03-03 14:43:18 +00:00
: ElidedButton(ToDisplayString(QString::fromStdString(ref->GetExpression()))), m_parent(widget),
m_reference(ref)
2017-05-20 15:53:17 +00:00
{
// Force all mapping buttons to stay at a minimal height.
setFixedHeight(minimumSizeHint().height());
// Make sure that long entries don't throw our layout out of whack.
setFixedWidth(112);
setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
2017-05-20 15:53:17 +00:00
Connect();
2018-02-07 17:16:15 +00:00
setToolTip(
tr("Left-click to detect input.\nMiddle-click to clear.\nRight-click for more options."));
if (!m_reference->IsInput() || !indicator)
return;
m_timer = new QTimer(this);
connect(m_timer, &QTimer::timeout, this, [this] {
if (!isActiveWindow())
return;
Settings::Instance().SetControllerStateNeeded(true);
if (Core::GetState() == Core::State::Uninitialized || Core::GetState() == Core::State::Paused)
g_controller_interface.UpdateInput();
auto state = m_reference->State();
QFont f = m_parent->font();
QPalette p = m_parent->palette();
if (state > ControllerEmu::Buttons::ACTIVATION_THRESHOLD)
{
f.setBold(true);
p.setColor(QPalette::ButtonText, Qt::red);
}
setFont(f);
setPalette(p);
Settings::Instance().SetControllerStateNeeded(false);
});
m_timer->start(1000 / 30);
2017-05-20 15:53:17 +00:00
}
void MappingButton::Connect()
{
2018-04-01 14:25:34 +00:00
connect(this, &MappingButton::pressed, this, &MappingButton::Detect);
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
{
if (m_parent->GetDevice() == nullptr || !m_reference->IsInput())
2017-05-20 15:53:17 +00:00
return;
installEventFilter(BlockUserInputFilter::Instance());
grabKeyboard();
2017-05-20 15:53:17 +00:00
// Make sure that we don't block event handling
QueueOnObject(this, [this] {
setText(QStringLiteral("..."));
2017-05-20 15:53:17 +00:00
// The button text won't be updated if we don't process events here
QApplication::processEvents();
// Avoid that the button press itself is registered as an event
Common::SleepCurrentThread(100);
2017-05-20 15:53:17 +00:00
std::vector<std::future<std::pair<QString, QString>>> futures;
QString expr;
if (m_parent->GetParent()->IsMappingAllDevices())
{
for (const std::string& device_str : g_controller_interface.GetAllDeviceStrings())
{
ciface::Core::DeviceQualifier devq;
devq.FromString(device_str);
auto dev = g_controller_interface.FindDevice(devq);
auto future = std::async(std::launch::async, [this, devq, dev, device_str] {
return std::make_pair(
QString::fromStdString(device_str),
MappingCommon::DetectExpression(m_reference, dev.get(),
m_parent->GetController()->GetDefaultDevice()));
});
futures.push_back(std::move(future));
}
bool done = false;
while (!done)
{
for (auto& future : futures)
{
const auto status = future.wait_for(std::chrono::milliseconds(10));
if (status == std::future_status::ready)
{
const auto pair = future.get();
done = true;
if (pair.second.isEmpty())
break;
expr = QStringLiteral("`%1:%2`")
.arg(pair.first)
.arg(pair.second.startsWith(QLatin1Char('`')) ? pair.second.mid(1) :
pair.second);
break;
}
}
}
}
else
{
const auto dev = m_parent->GetDevice();
expr = MappingCommon::DetectExpression(m_reference, dev.get(),
m_parent->GetController()->GetDefaultDevice());
}
2017-05-20 15:53:17 +00:00
releaseKeyboard();
removeEventFilter(BlockUserInputFilter::Instance());
if (!expr.isEmpty())
{
m_reference->SetExpression(expr.toStdString());
m_parent->SaveSettings();
Update();
m_parent->GetController()->UpdateReferences(g_controller_interface);
2018-04-01 14:25:34 +00:00
if (m_parent->IsIterativeInput())
m_parent->NextButton(this);
2017-05-20 15:53:17 +00:00
}
else
{
OnButtonTimeout();
2017-05-20 15:53:17 +00:00
}
2018-04-01 14:25:34 +00:00
});
2017-05-20 15:53:17 +00:00
}
void MappingButton::OnButtonTimeout()
{
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::Clear()
{
m_reference->SetExpression("");
m_reference->range = 100.0 / SLIDER_TICK_COUNT;
m_parent->SaveSettings();
2018-02-07 17:16:15 +00:00
Update();
2017-05-20 15:53:17 +00:00
}
void MappingButton::Update()
{
const auto lock = ControllerEmu::EmulatedController::GetStateLock();
m_reference->UpdateReference(g_controller_interface,
m_parent->GetController()->GetDefaultDevice());
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)
{
switch (event->button())
2017-05-20 15:53:17 +00:00
{
case Qt::MouseButton::LeftButton:
if (m_reference->IsInput())
2017-05-20 15:53:17 +00:00
QPushButton::mouseReleaseEvent(event);
else
emit AdvancedPressed();
return;
2018-02-07 17:16:15 +00:00
case Qt::MouseButton::MidButton:
Clear();
return;
case Qt::MouseButton::RightButton:
emit AdvancedPressed();
return;
default:
return;
2017-05-20 15:53:17 +00:00
}
}