early-access version 1441

main
pineappleEA 2021-02-10 20:35:21 +01:00
parent d451d67207
commit 9cdbafcd33
3 changed files with 132 additions and 114 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 1440. This is the source code for early-access 1441.
## Legal Notice ## Legal Notice

View File

@ -37,7 +37,8 @@ void PlayerControlPreview::SetPlayerInput(std::size_t index, const ButtonParam&
Input::CreateDevice<Input::AnalogDevice>); Input::CreateDevice<Input::AnalogDevice>);
UpdateColors(); UpdateColors();
} }
void PlayerControlPreview::SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw buttons_, void PlayerControlPreview::SetPlayerInputRaw(std::size_t index,
const Settings::ButtonsRaw& buttons_,
Settings::AnalogsRaw analogs_) { Settings::AnalogsRaw analogs_) {
player_index = index; player_index = index;
std::transform(buttons_.begin() + Settings::NativeButton::BUTTON_HID_BEGIN, std::transform(buttons_.begin() + Settings::NativeButton::BUTTON_HID_BEGIN,
@ -520,14 +521,15 @@ void PlayerControlPreview::DrawDualController(QPainter& p, const QPointF center)
{ {
// Draw joysticks // Draw joysticks
using namespace Settings::NativeAnalog; using namespace Settings::NativeAnalog;
DrawJoystick(p, center + QPointF(-65, -65) + (axis_values[LStick].value * 7), 1.62f, const auto& l_stick = axis_values[LStick];
button_values[Settings::NativeButton::LStick]); const auto l_button = button_values[Settings::NativeButton::LStick];
DrawJoystick(p, center + QPointF(65, 12) + (axis_values[RStick].value * 7), 1.62f, const auto& r_stick = axis_values[RStick];
button_values[Settings::NativeButton::RStick]); const auto r_button = button_values[Settings::NativeButton::RStick];
DrawRawJoystick(p, center + QPointF(-180, 90), axis_values[LStick].raw_value,
axis_values[LStick].properties); DrawJoystick(p, center + QPointF(-65, -65) + (l_stick.value * 7), 1.62f, l_button);
DrawRawJoystick(p, center + QPointF(180, 90), axis_values[RStick].raw_value, DrawJoystick(p, center + QPointF(65, 12) + (r_stick.value * 7), 1.62f, r_button);
axis_values[RStick].properties); DrawRawJoystick(p, center + QPointF(-180, 90), l_stick.raw_value, l_stick.properties);
DrawRawJoystick(p, center + QPointF(180, 90), r_stick.raw_value, r_stick.properties);
} }
using namespace Settings::NativeButton; using namespace Settings::NativeButton;
@ -606,14 +608,15 @@ void PlayerControlPreview::DrawHandheldController(QPainter& p, const QPointF cen
{ {
// Draw joysticks // Draw joysticks
using namespace Settings::NativeAnalog; using namespace Settings::NativeAnalog;
DrawJoystick(p, center + QPointF(-171, -41) + (axis_values[LStick].value * 4), 1.0f, const auto& l_stick = axis_values[LStick];
button_values[Settings::NativeButton::LStick]); const auto l_button = button_values[Settings::NativeButton::LStick];
DrawJoystick(p, center + QPointF(171, 8) + (axis_values[RStick].value * 4), 1.0f, const auto& r_stick = axis_values[RStick];
button_values[Settings::NativeButton::RStick]); const auto r_button = button_values[Settings::NativeButton::RStick];
DrawRawJoystick(p, center + QPointF(-50, 0), axis_values[LStick].raw_value,
axis_values[LStick].properties); DrawJoystick(p, center + QPointF(-171, -41) + (l_stick.value * 4), 1.0f, l_button);
DrawRawJoystick(p, center + QPointF(50, 0), axis_values[RStick].raw_value, DrawJoystick(p, center + QPointF(171, 8) + (r_stick.value * 4), 1.0f, r_button);
axis_values[RStick].properties); DrawRawJoystick(p, center + QPointF(-50, 0), l_stick.raw_value, l_stick.properties);
DrawRawJoystick(p, center + QPointF(50, 0), r_stick.raw_value, r_stick.properties);
} }
using namespace Settings::NativeButton; using namespace Settings::NativeButton;
@ -1454,15 +1457,18 @@ void PlayerControlPreview::DrawProBody(QPainter& p, const QPointF center) {
constexpr int radius1 = 32; constexpr int radius1 = 32;
for (std::size_t point = 0; point < pro_left_handle.size() / 2; ++point) { for (std::size_t point = 0; point < pro_left_handle.size() / 2; ++point) {
qleft_handle[point] = const float left_x = pro_left_handle[point * 2 + 0];
center + QPointF(pro_left_handle[point * 2], pro_left_handle[point * 2 + 1]); const float left_y = pro_left_handle[point * 2 + 1];
qright_handle[point] =
center + QPointF(-pro_left_handle[point * 2], pro_left_handle[point * 2 + 1]); qleft_handle[point] = center + QPointF(left_x, left_y);
qright_handle[point] = center + QPointF(-left_x, left_y);
} }
for (std::size_t point = 0; point < pro_body.size() / 2; ++point) { for (std::size_t point = 0; point < pro_body.size() / 2; ++point) {
qbody[point] = center + QPointF(pro_body[point * 2], pro_body[point * 2 + 1]); const float body_x = pro_body[point * 2 + 0];
qbody[pro_body.size() - 1 - point] = const float body_y = pro_body[point * 2 + 1];
center + QPointF(-pro_body[point * 2], pro_body[point * 2 + 1]);
qbody[point] = center + QPointF(body_x, body_y);
qbody[pro_body.size() - 1 - point] = center + QPointF(-body_x, body_y);
} }
// Draw left handle body // Draw left handle body
@ -1493,21 +1499,25 @@ void PlayerControlPreview::DrawGCBody(QPainter& p, const QPointF center) {
constexpr float angle = 2 * 3.1415f / 8; constexpr float angle = 2 * 3.1415f / 8;
for (std::size_t point = 0; point < gc_left_body.size() / 2; ++point) { for (std::size_t point = 0; point < gc_left_body.size() / 2; ++point) {
qleft_handle[point] = const float body_x = gc_left_body[point * 2 + 0];
center + QPointF(gc_left_body[point * 2], gc_left_body[point * 2 + 1]); const float body_y = gc_left_body[point * 2 + 1];
qright_handle[point] =
center + QPointF(-gc_left_body[point * 2], gc_left_body[point * 2 + 1]); qleft_handle[point] = center + QPointF(body_x, body_y);
qright_handle[point] = center + QPointF(-body_x, body_y);
} }
for (std::size_t point = 0; point < gc_body.size() / 2; ++point) { for (std::size_t point = 0; point < gc_body.size() / 2; ++point) {
qbody[point] = center + QPointF(gc_body[point * 2], gc_body[point * 2 + 1]); const float body_x = gc_body[point * 2 + 0];
qbody[gc_body.size() - 1 - point] = const float body_y = gc_body[point * 2 + 1];
center + QPointF(-gc_body[point * 2], gc_body[point * 2 + 1]);
qbody[point] = center + QPointF(body_x, body_y);
qbody[gc_body.size() - 1 - point] = center + QPointF(-body_x, body_y);
} }
for (std::size_t point = 0; point < 8; ++point) { for (std::size_t point = 0; point < 8; ++point) {
left_hex[point] = const float point_cos = std::cos(point * angle);
center + QPointF(34 * std::cos(point * angle) - 111, 34 * std::sin(point * angle) - 44); const float point_sin = std::sin(point * angle);
right_hex[point] =
center + QPointF(26 * std::cos(point * angle) + 61, 26 * std::sin(point * angle) + 37); left_hex[point] = center + QPointF(34 * point_cos - 111, 34 * point_sin - 44);
right_hex[point] = center + QPointF(26 * point_cos + 61, 26 * point_sin + 37);
} }
// Draw body // Draw body
@ -1628,32 +1638,36 @@ void PlayerControlPreview::DrawDualBody(QPainter& p, const QPointF center) {
constexpr float offset = 209.3f; constexpr float offset = 209.3f;
for (std::size_t point = 0; point < left_joycon_body.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_body.size() / 2; ++point) {
left_joycon[point] = center + QPointF(left_joycon_body[point * 2] * size + offset, const float body_x = left_joycon_body[point * 2 + 0];
left_joycon_body[point * 2 + 1] * size - 1); const float body_y = left_joycon_body[point * 2 + 1];
right_joycon[point] = center + QPointF(-left_joycon_body[point * 2] * size - offset,
left_joycon_body[point * 2 + 1] * size - 1); left_joycon[point] = center + QPointF(body_x * size + offset, body_y * size - 1);
right_joycon[point] = center + QPointF(-body_x * size - offset, body_y * size - 1);
} }
for (std::size_t point = 0; point < left_joycon_slider.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_slider.size() / 2; ++point) {
qleft_joycon_slider[point] = const float slider_x = left_joycon_slider[point * 2 + 0];
center + QPointF(left_joycon_slider[point * 2], left_joycon_slider[point * 2 + 1]); const float slider_y = left_joycon_slider[point * 2 + 1];
qright_joycon_slider[point] =
center + QPointF(-left_joycon_slider[point * 2], left_joycon_slider[point * 2 + 1]); qleft_joycon_slider[point] = center + QPointF(slider_x, slider_y);
qright_joycon_slider[point] = center + QPointF(-slider_x, slider_y);
} }
for (std::size_t point = 0; point < left_joycon_topview.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_topview.size() / 2; ++point) {
const float top_view_x = left_joycon_topview[point * 2 + 0];
const float top_view_y = left_joycon_topview[point * 2 + 1];
qleft_joycon_topview[point] = qleft_joycon_topview[point] =
center + QPointF(left_joycon_topview[point * 2] * size2 - 52, center + QPointF(top_view_x * size2 - 52, top_view_y * size2 - 52);
left_joycon_topview[point * 2 + 1] * size2 - 52);
qright_joycon_topview[point] = qright_joycon_topview[point] =
center + QPointF(-left_joycon_topview[point * 2] * size2 + 52, center + QPointF(-top_view_x * size2 + 52, top_view_y * size2 - 52);
left_joycon_topview[point * 2 + 1] * size2 - 52);
} }
for (std::size_t point = 0; point < left_joycon_slider_topview.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_slider_topview.size() / 2; ++point) {
const float top_view_x = left_joycon_slider_topview[point * 2 + 0];
const float top_view_y = left_joycon_slider_topview[point * 2 + 1];
qleft_joycon_slider_topview[point] = qleft_joycon_slider_topview[point] =
center + QPointF(left_joycon_slider_topview[point * 2] * size2 - 52, center + QPointF(top_view_x * size2 - 52, top_view_y * size2 - 52);
left_joycon_slider_topview[point * 2 + 1] * size2 - 52);
qright_joycon_slider_topview[point] = qright_joycon_slider_topview[point] =
center + QPointF(-left_joycon_slider_topview[point * 2] * size2 + 52, center + QPointF(-top_view_x * size2 + 52, top_view_y * size2 - 52);
left_joycon_slider_topview[point * 2 + 1] * size2 - 52);
} }
// right joycon body // right joycon body
@ -1902,18 +1916,19 @@ void PlayerControlPreview::DrawProTriggers(QPainter& p, const QPointF center, bo
std::array<QPointF, pro_body_top.size()> qbody_top; std::array<QPointF, pro_body_top.size()> qbody_top;
for (std::size_t point = 0; point < pro_left_trigger.size() / 2; ++point) { for (std::size_t point = 0; point < pro_left_trigger.size() / 2; ++point) {
qleft_trigger[point] = const float trigger_x = pro_left_trigger[point * 2 + 0];
center + QPointF(pro_left_trigger[point * 2], const float trigger_y = pro_left_trigger[point * 2 + 1];
pro_left_trigger[point * 2 + 1] + (left_pressed ? 2 : 0));
qright_trigger[point] = qleft_trigger[point] = center + QPointF(trigger_x, trigger_y + (left_pressed ? 2 : 0));
center + QPointF(-pro_left_trigger[point * 2], qright_trigger[point] = center + QPointF(-trigger_x, trigger_y + (right_pressed ? 2 : 0));
pro_left_trigger[point * 2 + 1] + (right_pressed ? 2 : 0));
} }
for (std::size_t point = 0; point < pro_body_top.size() / 2; ++point) { for (std::size_t point = 0; point < pro_body_top.size() / 2; ++point) {
qbody_top[pro_body_top.size() - 1 - point] = const float top_x = pro_body_top[point * 2 + 0];
center + QPointF(-pro_body_top[point * 2], pro_body_top[point * 2 + 1]); const float top_y = pro_body_top[point * 2 + 1];
qbody_top[point] = center + QPointF(pro_body_top[point * 2], pro_body_top[point * 2 + 1]);
qbody_top[pro_body_top.size() - 1 - point] = center + QPointF(-top_x, top_y);
qbody_top[point] = center + QPointF(top_x, top_y);
} }
// Pro body detail // Pro body detail
@ -1936,12 +1951,11 @@ void PlayerControlPreview::DrawGCTriggers(QPainter& p, const QPointF center, boo
std::array<QPointF, left_gc_trigger.size() / 2> qright_trigger; std::array<QPointF, left_gc_trigger.size() / 2> qright_trigger;
for (std::size_t point = 0; point < left_gc_trigger.size() / 2; ++point) { for (std::size_t point = 0; point < left_gc_trigger.size() / 2; ++point) {
qleft_trigger[point] = const float trigger_x = left_gc_trigger[point * 2 + 0];
center + QPointF(left_gc_trigger[point * 2], const float trigger_y = left_gc_trigger[point * 2 + 1];
left_gc_trigger[point * 2 + 1] + (left_pressed ? 10 : 0));
qright_trigger[point] = qleft_trigger[point] = center + QPointF(trigger_x, trigger_y + (left_pressed ? 10 : 0));
center + QPointF(-left_gc_trigger[point * 2], qright_trigger[point] = center + QPointF(-trigger_x, trigger_y + (right_pressed ? 10 : 0));
left_gc_trigger[point * 2 + 1] + (right_pressed ? 10 : 0));
} }
// Left trigger // Left trigger
@ -1970,12 +1984,13 @@ void PlayerControlPreview::DrawHandheldTriggers(QPainter& p, const QPointF cente
std::array<QPointF, left_joycon_trigger.size() / 2> qright_trigger; std::array<QPointF, left_joycon_trigger.size() / 2> qright_trigger;
for (std::size_t point = 0; point < left_joycon_trigger.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_trigger.size() / 2; ++point) {
const float left_trigger_x = left_joycon_trigger[point * 2 + 0];
const float left_trigger_y = left_joycon_trigger[point * 2 + 1];
qleft_trigger[point] = qleft_trigger[point] =
center + QPointF(left_joycon_trigger[point * 2], center + QPointF(left_trigger_x, left_trigger_y + (left_pressed ? 0.5f : 0));
left_joycon_trigger[point * 2 + 1] + (left_pressed ? 0.5f : 0));
qright_trigger[point] = qright_trigger[point] =
center + QPointF(-left_joycon_trigger[point * 2], center + QPointF(-left_trigger_x, left_trigger_y + (right_pressed ? 0.5f : 0));
left_joycon_trigger[point * 2 + 1] + (right_pressed ? 0.5f : 0));
} }
// Left trigger // Left trigger
@ -1995,12 +2010,14 @@ void PlayerControlPreview::DrawDualTriggers(QPainter& p, const QPointF center, b
constexpr float size = 1.62f; constexpr float size = 1.62f;
constexpr float offset = 210.6f; constexpr float offset = 210.6f;
for (std::size_t point = 0; point < left_joycon_trigger.size() / 2; ++point) { for (std::size_t point = 0; point < left_joycon_trigger.size() / 2; ++point) {
qleft_trigger[point] = const float left_trigger_x = left_joycon_trigger[point * 2 + 0];
center + QPointF(left_joycon_trigger[point * 2] * size + offset, const float left_trigger_y = left_joycon_trigger[point * 2 + 1];
left_joycon_trigger[point * 2 + 1] * size + (left_pressed ? 0.5f : 0));
qright_trigger[point] = center + QPointF(-left_joycon_trigger[point * 2] * size - offset, qleft_trigger[point] = center + QPointF(left_trigger_x * size + offset,
left_joycon_trigger[point * 2 + 1] * size + left_trigger_y * size + (left_pressed ? 0.5f : 0));
(right_pressed ? 0.5f : 0)); qright_trigger[point] =
center + QPointF(-left_trigger_x * size - offset,
left_trigger_y * size + (right_pressed ? 0.5f : 0));
} }
// Left trigger // Left trigger
@ -2020,13 +2037,16 @@ void PlayerControlPreview::DrawDualTriggersTopView(QPainter& p, const QPointF ce
constexpr float size = 0.9f; constexpr float size = 0.9f;
for (std::size_t point = 0; point < left_joystick_L_topview.size() / 2; ++point) { for (std::size_t point = 0; point < left_joystick_L_topview.size() / 2; ++point) {
qleft_trigger[point] = center + QPointF(left_joystick_L_topview[point * 2] * size - 50, const float top_view_x = left_joystick_L_topview[point * 2 + 0];
left_joystick_L_topview[point * 2 + 1] * size - 52); const float top_view_y = left_joystick_L_topview[point * 2 + 1];
qleft_trigger[point] = center + QPointF(top_view_x * size - 50, top_view_y * size - 52);
} }
for (std::size_t point = 0; point < left_joystick_L_topview.size() / 2; ++point) { for (std::size_t point = 0; point < left_joystick_L_topview.size() / 2; ++point) {
qright_trigger[point] = const float top_view_x = left_joystick_L_topview[point * 2 + 0];
center + QPointF(-left_joystick_L_topview[point * 2] * size + 50, const float top_view_y = left_joystick_L_topview[point * 2 + 1];
left_joystick_L_topview[point * 2 + 1] * size - 52);
qright_trigger[point] = center + QPointF(-top_view_x * size + 50, top_view_y * size - 52);
} }
p.setPen(colors.outline); p.setPen(colors.outline);
@ -2320,7 +2340,7 @@ void PlayerControlPreview::DrawGCJoystick(QPainter& p, const QPointF center, boo
} }
void PlayerControlPreview::DrawRawJoystick(QPainter& p, const QPointF center, const QPointF value, void PlayerControlPreview::DrawRawJoystick(QPainter& p, const QPointF center, const QPointF value,
const Input::AnalogProperties properties) { const Input::AnalogProperties& properties) {
constexpr float size = 45.0f; constexpr float size = 45.0f;
const float range = size * properties.range; const float range = size * properties.range;
const float deadzone = size * properties.deadzone; const float deadzone = size * properties.deadzone;
@ -2443,17 +2463,16 @@ void PlayerControlPreview::DrawArrowButtonOutline(QPainter& p, const QPointF cen
std::array<QPointF, (arrow_points - 1) * 4> arrow_button_outline; std::array<QPointF, (arrow_points - 1) * 4> arrow_button_outline;
for (std::size_t point = 0; point < arrow_points - 1; ++point) { for (std::size_t point = 0; point < arrow_points - 1; ++point) {
arrow_button_outline[point] = center + QPointF(up_arrow_button[point * 2] * size, const float up_arrow_x = up_arrow_button[point * 2 + 0];
up_arrow_button[point * 2 + 1] * size); const float up_arrow_y = up_arrow_button[point * 2 + 1];
arrow_button_outline[point] = center + QPointF(up_arrow_x * size, up_arrow_y * size);
arrow_button_outline[(arrow_points - 1) * 2 - point - 1] = arrow_button_outline[(arrow_points - 1) * 2 - point - 1] =
center + center + QPointF(up_arrow_y * size, up_arrow_x * size);
QPointF(up_arrow_button[point * 2 + 1] * size, up_arrow_button[point * 2] * size);
arrow_button_outline[(arrow_points - 1) * 2 + point] = arrow_button_outline[(arrow_points - 1) * 2 + point] =
center + center + QPointF(-up_arrow_x * size, -up_arrow_y * size);
QPointF(-up_arrow_button[point * 2] * size, -up_arrow_button[point * 2 + 1] * size);
arrow_button_outline[(arrow_points - 1) * 4 - point - 1] = arrow_button_outline[(arrow_points - 1) * 4 - point - 1] =
center + center + QPointF(-up_arrow_y * size, -up_arrow_x * size);
QPointF(-up_arrow_button[point * 2 + 1] * size, -up_arrow_button[point * 2] * size);
} }
// Draw arrow button outline // Draw arrow button outline
p.setPen(colors.outline); p.setPen(colors.outline);
@ -2467,22 +2486,21 @@ void PlayerControlPreview::DrawArrowButton(QPainter& p, const QPointF center,
QPoint offset; QPoint offset;
for (std::size_t point = 0; point < up_arrow_button.size() / 2; ++point) { for (std::size_t point = 0; point < up_arrow_button.size() / 2; ++point) {
const float up_arrow_x = up_arrow_button[point * 2 + 0];
const float up_arrow_y = up_arrow_button[point * 2 + 1];
switch (direction) { switch (direction) {
case Direction::Up: case Direction::Up:
arrow_button[point] = center + QPointF(up_arrow_button[point * 2] * size, arrow_button[point] = center + QPointF(up_arrow_x * size, up_arrow_y * size);
up_arrow_button[point * 2 + 1] * size);
break; break;
case Direction::Left: case Direction::Left:
arrow_button[point] = center + QPointF(up_arrow_button[point * 2 + 1] * size, arrow_button[point] = center + QPointF(up_arrow_y * size, up_arrow_x * size);
up_arrow_button[point * 2] * size);
break; break;
case Direction::Right: case Direction::Right:
arrow_button[point] = center + QPointF(-up_arrow_button[point * 2 + 1] * size, arrow_button[point] = center + QPointF(-up_arrow_y * size, up_arrow_x * size);
up_arrow_button[point * 2] * size);
break; break;
case Direction::Down: case Direction::Down:
arrow_button[point] = center + QPointF(up_arrow_button[point * 2] * size, arrow_button[point] = center + QPointF(up_arrow_x * size, -up_arrow_y * size);
-up_arrow_button[point * 2 + 1] * size);
break; break;
case Direction::None: case Direction::None:
break; break;
@ -2523,14 +2541,15 @@ void PlayerControlPreview::DrawTriggerButton(QPainter& p, const QPointF center,
std::array<QPointF, trigger_button.size() / 2> qtrigger_button; std::array<QPointF, trigger_button.size() / 2> qtrigger_button;
for (std::size_t point = 0; point < trigger_button.size() / 2; ++point) { for (std::size_t point = 0; point < trigger_button.size() / 2; ++point) {
const float trigger_button_x = trigger_button[point * 2 + 0];
const float trigger_button_y = trigger_button[point * 2 + 1];
switch (direction) { switch (direction) {
case Direction::Left: case Direction::Left:
qtrigger_button[point] = qtrigger_button[point] = center + QPointF(-trigger_button_x, trigger_button_y);
center + QPointF(-trigger_button[point * 2], trigger_button[point * 2 + 1]);
break; break;
case Direction::Right: case Direction::Right:
qtrigger_button[point] = qtrigger_button[point] = center + QPointF(trigger_button_x, trigger_button_y);
center + QPointF(trigger_button[point * 2], trigger_button[point * 2 + 1]);
break; break;
case Direction::Up: case Direction::Up:
case Direction::Down: case Direction::Down:
@ -2653,22 +2672,21 @@ void PlayerControlPreview::DrawArrow(QPainter& p, const QPointF center, const Di
std::array<QPointF, up_arrow_symbol.size() / 2> arrow_symbol; std::array<QPointF, up_arrow_symbol.size() / 2> arrow_symbol;
for (std::size_t point = 0; point < up_arrow_symbol.size() / 2; ++point) { for (std::size_t point = 0; point < up_arrow_symbol.size() / 2; ++point) {
const float up_arrow_x = up_arrow_symbol[point * 2 + 0];
const float up_arrow_y = up_arrow_symbol[point * 2 + 1];
switch (direction) { switch (direction) {
case Direction::Up: case Direction::Up:
arrow_symbol[point] = center + QPointF(up_arrow_symbol[point * 2] * size, arrow_symbol[point] = center + QPointF(up_arrow_x * size, up_arrow_y * size);
up_arrow_symbol[point * 2 + 1] * size);
break; break;
case Direction::Left: case Direction::Left:
arrow_symbol[point] = center + QPointF(up_arrow_symbol[point * 2 + 1] * size, arrow_symbol[point] = center + QPointF(up_arrow_y * size, up_arrow_x * size);
up_arrow_symbol[point * 2] * size);
break; break;
case Direction::Right: case Direction::Right:
arrow_symbol[point] = center + QPointF(-up_arrow_symbol[point * 2 + 1] * size, arrow_symbol[point] = center + QPointF(-up_arrow_y * size, up_arrow_x * size);
up_arrow_symbol[point * 2] * size);
break; break;
case Direction::Down: case Direction::Down:
arrow_symbol[point] = center + QPointF(up_arrow_symbol[point * 2] * size, arrow_symbol[point] = center + QPointF(up_arrow_x * size, -up_arrow_y * size);
-up_arrow_symbol[point * 2 + 1] * size);
break; break;
case Direction::None: case Direction::None:
break; break;

View File

@ -25,7 +25,7 @@ public:
void SetPlayerInput(std::size_t index, const ButtonParam& buttons_param, void SetPlayerInput(std::size_t index, const ButtonParam& buttons_param,
const AnalogParam& analogs_param); const AnalogParam& analogs_param);
void SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw buttons_, void SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw& buttons_,
Settings::AnalogsRaw analogs_); Settings::AnalogsRaw analogs_);
void SetConnectedStatus(bool checked); void SetConnectedStatus(bool checked);
void SetControllerType(Settings::ControllerType type); void SetControllerType(Settings::ControllerType type);
@ -138,8 +138,8 @@ private:
// Draw joystick functions // Draw joystick functions
void DrawJoystick(QPainter& p, QPointF center, float size, bool pressed); void DrawJoystick(QPainter& p, QPointF center, float size, bool pressed);
void DrawJoystickSideview(QPainter& p, QPointF center, float angle, float size, bool pressed); void DrawJoystickSideview(QPainter& p, QPointF center, float angle, float size, bool pressed);
void DrawRawJoystick(QPainter& p, QPointF center, const QPointF value, void DrawRawJoystick(QPainter& p, QPointF center, QPointF value,
const Input::AnalogProperties properties); const Input::AnalogProperties& properties);
void DrawProJoystick(QPainter& p, QPointF center, QPointF offset, float scalar, bool pressed); void DrawProJoystick(QPainter& p, QPointF center, QPointF offset, float scalar, bool pressed);
void DrawGCJoystick(QPainter& p, QPointF center, bool pressed); void DrawGCJoystick(QPainter& p, QPointF center, bool pressed);