2017-02-08 22:15:43 -05:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/AnalogStick.h"
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include "Common/Common.h"
|
2018-12-18 20:06:16 -06:00
|
|
|
#include "Common/MathUtil.h"
|
2017-02-08 22:15:43 -05:00
|
|
|
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Control.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Input.h"
|
|
|
|
#include "InputCommon/ControllerEmu/ControllerEmu.h"
|
2017-02-26 12:00:24 -08:00
|
|
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
2017-02-08 22:15:43 -05:00
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
2018-12-18 20:06:16 -06:00
|
|
|
AnalogStick::AnalogStick(const char* const name_, std::unique_ptr<StickGate>&& stick_gate)
|
|
|
|
: AnalogStick(name_, name_, std::move(stick_gate))
|
2017-02-08 22:15:43 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AnalogStick::AnalogStick(const char* const name_, const char* const ui_name_,
|
2018-12-18 20:06:16 -06:00
|
|
|
std::unique_ptr<StickGate>&& stick_gate)
|
2018-12-29 16:06:03 -06:00
|
|
|
: ReshapableInput(name_, ui_name_, GroupType::Stick), m_stick_gate(std::move(stick_gate))
|
2017-02-08 22:15:43 -05:00
|
|
|
{
|
|
|
|
for (auto& named_direction : named_directions)
|
2019-10-27 11:04:08 -05:00
|
|
|
AddInput(Translate, named_direction);
|
2017-02-08 22:15:43 -05:00
|
|
|
|
2019-10-27 11:04:08 -05:00
|
|
|
AddInput(Translate, _trans("Modifier"));
|
2017-02-08 22:15:43 -05:00
|
|
|
}
|
|
|
|
|
2021-05-04 23:47:55 +03:00
|
|
|
AnalogStick::ReshapeData AnalogStick::GetReshapableState(bool adjusted) const
|
2017-02-08 22:15:43 -05:00
|
|
|
{
|
2020-02-08 20:36:26 -06:00
|
|
|
const ControlState y = controls[0]->GetState() - controls[1]->GetState();
|
|
|
|
const ControlState x = controls[3]->GetState() - controls[2]->GetState();
|
2017-02-08 22:15:43 -05:00
|
|
|
|
2018-12-18 20:06:16 -06:00
|
|
|
// Return raw values. (used in UI)
|
|
|
|
if (!adjusted)
|
|
|
|
return {x, y};
|
2017-02-08 22:15:43 -05:00
|
|
|
|
2020-02-08 20:36:26 -06:00
|
|
|
const ControlState modifier = controls[4]->GetState();
|
2018-12-29 16:06:03 -06:00
|
|
|
|
|
|
|
return Reshape(x, y, modifier);
|
2017-02-08 22:15:43 -05:00
|
|
|
}
|
2018-12-18 20:06:16 -06:00
|
|
|
|
2021-05-04 23:47:55 +03:00
|
|
|
AnalogStick::StateData AnalogStick::GetState() const
|
2018-12-30 09:10:32 -06:00
|
|
|
{
|
|
|
|
return GetReshapableState(true);
|
|
|
|
}
|
|
|
|
|
2018-12-18 20:06:16 -06:00
|
|
|
ControlState AnalogStick::GetGateRadiusAtAngle(double ang) const
|
|
|
|
{
|
|
|
|
return m_stick_gate->GetRadiusAtAngle(ang);
|
|
|
|
}
|
|
|
|
|
2020-08-01 00:17:23 +01:00
|
|
|
OctagonAnalogStick::OctagonAnalogStick(const char* name_, ControlState gate_radius)
|
|
|
|
: OctagonAnalogStick(name_, name_, gate_radius)
|
2018-12-18 20:06:16 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-01 00:17:23 +01:00
|
|
|
OctagonAnalogStick::OctagonAnalogStick(const char* name_, const char* ui_name_,
|
2018-12-18 20:06:16 -06:00
|
|
|
ControlState gate_radius)
|
2020-08-01 00:17:23 +01:00
|
|
|
: AnalogStick(name_, ui_name_, std::make_unique<ControllerEmu::OctagonStickGate>(gate_radius))
|
2018-12-18 20:06:16 -06:00
|
|
|
{
|
2020-10-29 22:11:34 +00:00
|
|
|
AddVirtualNotchSetting(&m_virtual_notch_setting, 45);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlState OctagonAnalogStick::GetVirtualNotchSize() const
|
|
|
|
{
|
|
|
|
return m_virtual_notch_setting.GetValue() * MathUtil::TAU / 360;
|
2018-12-18 20:06:16 -06:00
|
|
|
}
|
|
|
|
|
2017-02-08 22:15:43 -05:00
|
|
|
} // namespace ControllerEmu
|