2019-09-06 17:09:30 +02:00
|
|
|
// Copyright 2019 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.h"
|
|
|
|
|
2019-11-22 15:19:45 -05:00
|
|
|
#include <memory>
|
2019-09-06 17:09:30 +02:00
|
|
|
|
2019-11-22 15:19:45 -05:00
|
|
|
#include "Common/Common.h"
|
2020-02-03 19:45:36 -06:00
|
|
|
#include "Common/MathUtil.h"
|
2019-09-06 17:09:30 +02:00
|
|
|
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Control.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Input.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
|
|
|
IMUGyroscope::IMUGyroscope(std::string name, std::string ui_name)
|
|
|
|
: ControlGroup(std::move(name), std::move(ui_name), GroupType::IMUGyroscope)
|
|
|
|
{
|
2019-10-27 11:04:08 -05:00
|
|
|
AddInput(Translate, _trans("Pitch Up"));
|
|
|
|
AddInput(Translate, _trans("Pitch Down"));
|
|
|
|
AddInput(Translate, _trans("Roll Left"));
|
|
|
|
AddInput(Translate, _trans("Roll Right"));
|
|
|
|
AddInput(Translate, _trans("Yaw Left"));
|
|
|
|
AddInput(Translate, _trans("Yaw Right"));
|
2020-02-03 19:45:36 -06:00
|
|
|
|
|
|
|
AddSetting(&m_deadzone_setting,
|
|
|
|
{_trans("Dead Zone"),
|
|
|
|
// i18n: "°/s" is the symbol for degrees (angular measurement) divided by seconds.
|
|
|
|
_trans("°/s"),
|
|
|
|
// i18n: Refers to the dead-zone setting of gyroscope input.
|
|
|
|
_trans("Angular velocity to ignore.")},
|
|
|
|
1, 0, 180);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto IMUGyroscope::GetRawState() const -> StateData
|
|
|
|
{
|
|
|
|
return StateData(controls[1]->GetState() - controls[0]->GetState(),
|
|
|
|
controls[2]->GetState() - controls[3]->GetState(),
|
|
|
|
controls[4]->GetState() - controls[5]->GetState());
|
2019-09-06 17:09:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<IMUGyroscope::StateData> IMUGyroscope::GetState() const
|
|
|
|
{
|
2020-01-18 13:56:11 -06:00
|
|
|
if (controls[0]->control_ref->BoundCount() == 0)
|
|
|
|
return std::nullopt;
|
|
|
|
|
2020-02-03 19:45:36 -06:00
|
|
|
auto state = GetRawState();
|
|
|
|
|
|
|
|
// Apply "deadzone".
|
|
|
|
for (auto& c : state.data)
|
|
|
|
c *= std::abs(c) > GetDeadzone();
|
|
|
|
|
2020-01-18 13:56:11 -06:00
|
|
|
return state;
|
2019-09-06 17:09:30 +02:00
|
|
|
}
|
|
|
|
|
2020-02-03 19:45:36 -06:00
|
|
|
ControlState IMUGyroscope::GetDeadzone() const
|
|
|
|
{
|
|
|
|
return m_deadzone_setting.GetValue() / 360 * MathUtil::TAU;
|
|
|
|
}
|
|
|
|
|
2019-09-06 17:09:30 +02:00
|
|
|
} // namespace ControllerEmu
|