2018-02-06 11:10:28 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/TAS/IRWidget.h"
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
2018-08-13 12:41:53 +00:00
|
|
|
#include <cmath>
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2020-02-17 14:07:18 +00:00
|
|
|
constexpr int PADDING = 1;
|
|
|
|
|
2018-02-06 11:10:28 +00:00
|
|
|
IRWidget::IRWidget(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
|
|
|
setMouseTracking(false);
|
2018-08-13 12:41:53 +00:00
|
|
|
setToolTip(tr("Left click to set the IR value.\n"
|
|
|
|
"Right click to re-center it."));
|
2020-02-17 14:07:18 +00:00
|
|
|
|
|
|
|
// If the widget gets too small, it will get deformed.
|
|
|
|
setMinimumSize(QSize(64, 48));
|
2018-02-06 11:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::SetX(u16 x)
|
|
|
|
{
|
2018-02-12 20:31:40 +00:00
|
|
|
m_x = std::min(ir_max_x, x);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::SetY(u16 y)
|
|
|
|
{
|
2018-02-12 20:31:40 +00:00
|
|
|
m_y = std::min(ir_max_y, y);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::paintEvent(QPaintEvent* event)
|
|
|
|
{
|
|
|
|
QPainter painter(this);
|
|
|
|
|
2018-08-13 13:05:30 +00:00
|
|
|
painter.setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
|
|
|
|
|
2020-02-17 14:07:18 +00:00
|
|
|
const int w = width() - PADDING * 2;
|
|
|
|
const int h = height() - PADDING * 2;
|
|
|
|
|
2018-02-06 11:10:28 +00:00
|
|
|
painter.setBrush(Qt::white);
|
2020-02-17 14:07:18 +00:00
|
|
|
painter.drawRect(PADDING, PADDING, w, h);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
2020-02-17 14:07:18 +00:00
|
|
|
painter.drawLine(PADDING, PADDING + h / 2, PADDING + w, PADDING + h / 2);
|
|
|
|
painter.drawLine(PADDING + w / 2, PADDING, PADDING + w / 2, PADDING + h);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
// convert from value space to widget space
|
2020-02-17 14:07:18 +00:00
|
|
|
u16 x = PADDING + (w - (m_x * w) / ir_max_x);
|
|
|
|
u16 y = PADDING + ((m_y * h) / ir_max_y);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
2020-02-17 14:07:18 +00:00
|
|
|
painter.drawLine(PADDING + w / 2, PADDING + h / 2, x, y);
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
painter.setBrush(Qt::blue);
|
2020-02-17 14:07:18 +00:00
|
|
|
int wh_avg = (w + h) / 2;
|
2018-02-06 11:10:28 +00:00
|
|
|
int radius = wh_avg / 30;
|
|
|
|
painter.drawEllipse(x - radius, y - radius, radius * 2, radius * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::mousePressEvent(QMouseEvent* event)
|
|
|
|
{
|
|
|
|
handleMouseEvent(event);
|
2019-03-25 23:38:25 +00:00
|
|
|
m_ignore_movement = event->button() == Qt::RightButton;
|
2018-02-06 11:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::mouseMoveEvent(QMouseEvent* event)
|
|
|
|
{
|
2019-03-25 23:38:25 +00:00
|
|
|
if (!m_ignore_movement)
|
|
|
|
handleMouseEvent(event);
|
2018-02-06 11:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IRWidget::handleMouseEvent(QMouseEvent* event)
|
|
|
|
{
|
2018-08-13 12:41:53 +00:00
|
|
|
if (event->button() == Qt::RightButton)
|
|
|
|
{
|
|
|
|
m_x = std::round(ir_max_x / 2.);
|
|
|
|
m_y = std::round(ir_max_y / 2.);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// convert from widget space to value space
|
|
|
|
int new_x = ir_max_x - (event->x() * ir_max_x) / width();
|
|
|
|
int new_y = (event->y() * ir_max_y) / height();
|
|
|
|
|
|
|
|
m_x = std::max(0, std::min(static_cast<int>(ir_max_x), new_x));
|
|
|
|
m_y = std::max(0, std::min(static_cast<int>(ir_max_y), new_y));
|
|
|
|
}
|
2018-02-06 11:10:28 +00:00
|
|
|
|
|
|
|
emit ChangedX(m_x);
|
|
|
|
emit ChangedY(m_y);
|
|
|
|
update();
|
|
|
|
}
|