2017-02-09 03:15:43 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/Slider.h"
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Control.h"
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Input.h"
|
|
|
|
#include "InputCommon/ControllerEmu/ControllerEmu.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
2017-12-19 10:21:27 +00:00
|
|
|
Slider::Slider(const std::string& name_, const std::string& ui_name_)
|
|
|
|
: ControlGroup(name_, ui_name_, GroupType::Slider)
|
2017-02-09 03:15:43 +00:00
|
|
|
{
|
2018-04-10 15:22:30 +00:00
|
|
|
controls.emplace_back(std::make_unique<Input>(Translate, _trans("Left")));
|
|
|
|
controls.emplace_back(std::make_unique<Input>(Translate, _trans("Right")));
|
2017-02-09 03:15:43 +00:00
|
|
|
|
2019-03-27 00:31:03 +00:00
|
|
|
AddDeadzoneSetting(&m_deadzone_setting, 50);
|
2017-02-09 03:15:43 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 10:21:27 +00:00
|
|
|
Slider::Slider(const std::string& name_) : Slider(name_, name_)
|
2017-07-23 11:11:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-07-13 15:49:05 +00:00
|
|
|
Slider::StateData Slider::GetState()
|
2017-02-09 03:15:43 +00:00
|
|
|
{
|
2019-03-27 00:31:03 +00:00
|
|
|
const ControlState deadzone = m_deadzone_setting.GetValue() / 100;
|
2017-02-09 03:15:43 +00:00
|
|
|
const ControlState state = controls[1]->control_ref->State() - controls[0]->control_ref->State();
|
|
|
|
|
2019-10-15 20:35:07 +00:00
|
|
|
return {std::clamp(ApplyDeadzone(state, deadzone), -1.0, 1.0)};
|
2017-02-09 03:15:43 +00:00
|
|
|
}
|
|
|
|
} // namespace ControllerEmu
|