Mapping UI: Make the mixed trigger indicator styling match that of the analog sticks.

This commit is contained in:
Jordan Woyak
2018-12-29 12:46:05 -06:00
parent 187058a072
commit 970073084a
2 changed files with 96 additions and 60 deletions

View File

@ -15,11 +15,28 @@
#include "InputCommon/ControlReference/ControlReference.h" #include "InputCommon/ControlReference/ControlReference.h"
#include "InputCommon/ControllerEmu/Control/Control.h" #include "InputCommon/ControllerEmu/Control/Control.h"
#include "InputCommon/ControllerEmu/ControlGroup/AnalogStick.h" #include "InputCommon/ControllerEmu/ControlGroup/AnalogStick.h"
#include "InputCommon/ControllerEmu/ControlGroup/MixedTriggers.h"
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h" #include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
#include "InputCommon/ControllerInterface/Device.h" #include "InputCommon/ControllerInterface/Device.h"
#include "DolphinQt/Settings.h" #include "DolphinQt/Settings.h"
// Color constants to keep things looking consistent:
// TODO: could we maybe query theme colors from Qt for the bounding box?
static const QColor BBOX_PEN_COLOR = Qt::darkGray;
static const QColor BBOX_BRUSH_COLOR = Qt::white;
static const QColor RAW_INPUT_COLOR = Qt::darkGray;
static const QColor ADJ_INPUT_COLOR = Qt::red;
static const QPen INPUT_SHAPE_PEN(RAW_INPUT_COLOR, 1.0, Qt::DashLine);
static const QColor DEADZONE_COLOR = Qt::darkGray;
static const QBrush DEADZONE_BRUSH(DEADZONE_COLOR, Qt::BDiagPattern);
static const QColor TEXT_COLOR = Qt::darkGray;
// Text color that is visible atop ADJ_INPUT_COLOR:
static const QColor TEXT_ALT_COLOR = Qt::white;
MappingIndicator::MappingIndicator(ControllerEmu::ControlGroup* group) : m_group(group) MappingIndicator::MappingIndicator(ControllerEmu::ControlGroup* group) : m_group(group)
{ {
setMinimumHeight(128); setMinimumHeight(128);
@ -36,7 +53,7 @@ MappingIndicator::MappingIndicator(ControllerEmu::ControlGroup* group) : m_group
BindCursorControls(true); BindCursorControls(true);
break; break;
case ControllerEmu::GroupType::MixedTriggers: case ControllerEmu::GroupType::MixedTriggers:
BindMixedTriggersControls(); // Nothing needed:
break; break;
default: default:
break; break;
@ -70,16 +87,6 @@ void MappingIndicator::BindCursorControls(bool tilt)
} }
} }
void MappingIndicator::BindMixedTriggersControls()
{
m_mixed_triggers_l_button = m_group->controls[0]->control_ref.get();
m_mixed_triggers_r_button = m_group->controls[1]->control_ref.get();
m_mixed_triggers_l_analog = m_group->controls[2]->control_ref.get();
m_mixed_triggers_r_analog = m_group->controls[3]->control_ref.get();
m_mixed_triggers_threshold = m_group->numeric_settings[0].get();
}
static ControlState PollControlState(ControlReference* ref) static ControlState PollControlState(ControlReference* ref)
{ {
Settings::Instance().SetControllerStateNeeded(true); Settings::Instance().SetControllerStateNeeded(true);
@ -180,8 +187,8 @@ void MappingIndicator::DrawStick()
p.translate(width() / 2, height() / 2); p.translate(width() / 2, height() / 2);
// Bounding box. // Bounding box.
p.setBrush(Qt::white); p.setBrush(BBOX_BRUSH_COLOR);
p.setPen(Qt::gray); p.setPen(BBOX_PEN_COLOR);
p.drawRect(-scale - 1, -scale - 1, scale * 2 + 1, scale * 2 + 1); p.drawRect(-scale - 1, -scale - 1, scale * 2 + 1, scale * 2 + 1);
// UI y-axis is opposite that of stick. // UI y-axis is opposite that of stick.
@ -198,27 +205,27 @@ void MappingIndicator::DrawStick()
[&stick](double ang) { return stick.GetGateRadiusAtAngle(ang); }, scale)); [&stick](double ang) { return stick.GetGateRadiusAtAngle(ang); }, scale));
// Deadzone. // Deadzone.
p.setPen(Qt::darkGray); p.setPen(DEADZONE_COLOR);
p.setBrush(QBrush(Qt::darkGray, Qt::BDiagPattern)); p.setBrush(DEADZONE_BRUSH);
p.drawPolygon(GetPolygonFromRadiusGetter( p.drawPolygon(GetPolygonFromRadiusGetter(
[&stick](double ang) { return stick.GetDeadzoneRadiusAtAngle(ang); }, scale)); [&stick](double ang) { return stick.GetDeadzoneRadiusAtAngle(ang); }, scale));
// Input shape. // Input shape.
p.setPen(QPen(Qt::darkGray, 1.0, Qt::DashLine)); p.setPen(INPUT_SHAPE_PEN);
p.setBrush(Qt::NoBrush); p.setBrush(Qt::NoBrush);
p.drawPolygon(GetPolygonFromRadiusGetter( p.drawPolygon(GetPolygonFromRadiusGetter(
[&stick](double ang) { return stick.GetInputRadiusAtAngle(ang); }, scale)); [&stick](double ang) { return stick.GetInputRadiusAtAngle(ang); }, scale));
// Raw stick position. // Raw stick position.
p.setPen(Qt::NoPen); p.setPen(Qt::NoPen);
p.setBrush(Qt::darkGray); p.setBrush(RAW_INPUT_COLOR);
p.drawEllipse(QPointF{raw_coord.x, raw_coord.y} * scale, dot_radius, dot_radius); p.drawEllipse(QPointF{raw_coord.x, raw_coord.y} * scale, dot_radius, dot_radius);
// Adjusted stick position. // Adjusted stick position.
if (adj_coord.x || adj_coord.y) if (adj_coord.x || adj_coord.y)
{ {
p.setPen(Qt::NoPen); p.setPen(Qt::NoPen);
p.setBrush(Qt::red); p.setBrush(ADJ_INPUT_COLOR);
p.drawEllipse(QPointF{adj_coord.x, adj_coord.y} * scale, dot_radius, dot_radius); p.drawEllipse(QPointF{adj_coord.x, adj_coord.y} * scale, dot_radius, dot_radius);
} }
} }
@ -226,48 +233,86 @@ void MappingIndicator::DrawStick()
void MappingIndicator::DrawMixedTriggers() void MappingIndicator::DrawMixedTriggers()
{ {
QPainter p(this); QPainter p(this);
p.setRenderHint(QPainter::Antialiasing, true);
p.setRenderHint(QPainter::TextAntialiasing, true); p.setRenderHint(QPainter::TextAntialiasing, true);
p.setRenderHint(QPainter::SmoothPixmapTransform, true);
// Polled values auto& triggers = *static_cast<ControllerEmu::MixedTriggers*>(m_group);
double r_analog = PollControlState(m_mixed_triggers_r_analog); const ControlState threshold = triggers.numeric_settings[0]->GetValue();
double r_button = PollControlState(m_mixed_triggers_r_button);
double l_analog = PollControlState(m_mixed_triggers_l_analog);
double l_button = PollControlState(m_mixed_triggers_l_button);
double threshold = m_mixed_triggers_threshold->GetValue();
double r_bar_percent = r_analog; // MixedTriggers interface is a bit ugly:
double l_bar_percent = l_analog; constexpr int TRIGGER_COUNT = 2;
std::array<ControlState, TRIGGER_COUNT> analog_state;
const std::array<u16, TRIGGER_COUNT> button_masks = {0x1, 0x2};
u16 button_state = 0;
if ((r_button && r_button != r_analog) || (r_button == r_analog && r_analog > threshold)) Settings::Instance().SetControllerStateNeeded(true);
r_bar_percent = 1; triggers.GetState(&button_state, button_masks.data(), analog_state.data());
else Settings::Instance().SetControllerStateNeeded(false);
r_bar_percent *= 0.8;
if ((l_button && l_button != l_analog) || (l_button == l_analog && l_analog > threshold)) // Rectangle sizes:
l_bar_percent = 1; const int trigger_height = 32;
else const int trigger_width = width() - 1;
l_bar_percent *= 0.8; const int trigger_button_width = 32;
const int trigger_analog_width = trigger_width - trigger_button_width;
p.fillRect(0, 0, width(), 64, Qt::black); // Bounding box background:
p.setPen(Qt::NoPen);
p.setBrush(BBOX_BRUSH_COLOR);
p.drawRect(0, 0, trigger_width, trigger_height * TRIGGER_COUNT);
p.fillRect(0, 0, l_bar_percent * width(), 32, Qt::red); for (int t = 0; t != TRIGGER_COUNT; ++t)
p.fillRect(0, 32, r_bar_percent * width(), 32, Qt::red); {
const double trigger_analog = analog_state[t];
const bool trigger_button = button_state & button_masks[t];
auto const analog_name = QString::fromStdString(triggers.controls[TRIGGER_COUNT + t]->ui_name);
auto const button_name = QString::fromStdString(triggers.controls[t]->ui_name);
p.setPen(Qt::white); const QRectF trigger_rect(0, 0, trigger_width, trigger_height);
p.drawLine(width() * 0.8, 0, width() * 0.8, 63);
p.drawLine(0, 32, width(), 32);
p.setPen(Qt::green); const QRectF analog_rect(0, 0, trigger_analog_width, trigger_height);
p.drawLine(width() * 0.8 * threshold, 0, width() * 0.8 * threshold, 63);
p.setBrush(Qt::black); // Unactivated analog text:
p.setPen(Qt::white); p.setPen(TEXT_COLOR);
p.drawText(width() * 0.225, 20, tr("L-Analog")); p.drawText(analog_rect, Qt::AlignCenter, analog_name);
p.drawText(width() * 0.8 + 16, 20, tr("L"));
p.drawText(width() * 0.225, 52, tr("R-Analog")); const QRectF activated_analog_rect(0, 0, trigger_analog * trigger_analog_width, trigger_height);
p.drawText(width() * 0.8 + 16, 52, tr("R"));
// Trigger analog:
p.setPen(Qt::NoPen);
p.setBrush(ADJ_INPUT_COLOR);
p.drawRect(activated_analog_rect);
// Threshold setting:
const int threshold_x = trigger_analog_width * threshold;
p.setPen(INPUT_SHAPE_PEN);
p.drawLine(threshold_x, 0, threshold_x, trigger_height);
const QRectF button_rect(trigger_analog_width, 0, trigger_button_width, trigger_height);
// Trigger button:
p.setPen(BBOX_PEN_COLOR);
p.setBrush(trigger_button ? ADJ_INPUT_COLOR : BBOX_BRUSH_COLOR);
p.drawRect(button_rect);
// Bounding box outline:
p.setPen(BBOX_PEN_COLOR);
p.setBrush(Qt::NoBrush);
p.drawRect(trigger_rect);
// Button text:
p.setPen(TEXT_COLOR);
p.setPen(trigger_button ? TEXT_ALT_COLOR : TEXT_COLOR);
p.drawText(button_rect, Qt::AlignCenter, button_name);
// Activated analog text:
p.setPen(TEXT_ALT_COLOR);
p.setClipping(true);
p.setClipRect(activated_analog_rect);
p.drawText(analog_rect, Qt::AlignCenter, analog_name);
p.setClipping(false);
// Move down for next trigger:
p.translate(0.0, trigger_height);
}
} }
void MappingIndicator::paintEvent(QPaintEvent*) void MappingIndicator::paintEvent(QPaintEvent*)

View File

@ -11,7 +11,7 @@ namespace ControllerEmu
class Control; class Control;
class ControlGroup; class ControlGroup;
class NumericSetting; class NumericSetting;
} } // namespace ControllerEmu
class QPaintEvent; class QPaintEvent;
class QTimer; class QTimer;
@ -25,7 +25,6 @@ public:
private: private:
void BindCursorControls(bool tilt); void BindCursorControls(bool tilt);
void BindMixedTriggersControls();
void DrawCursor(bool tilt); void DrawCursor(bool tilt);
void DrawStick(); void DrawStick();
@ -47,13 +46,5 @@ private:
ControllerEmu::NumericSetting* m_cursor_height; ControllerEmu::NumericSetting* m_cursor_height;
ControllerEmu::NumericSetting* m_cursor_deadzone; ControllerEmu::NumericSetting* m_cursor_deadzone;
// Triggers settings
ControlReference* m_mixed_triggers_r_analog;
ControlReference* m_mixed_triggers_r_button;
ControlReference* m_mixed_triggers_l_analog;
ControlReference* m_mixed_triggers_l_button;
ControllerEmu::NumericSetting* m_mixed_triggers_threshold;
QTimer* m_timer; QTimer* m_timer;
}; };