InputCommon: Move FullAnalogSurface class definition out of header file.
This commit is contained in:
parent
2f1390e9f9
commit
346a9e0f97
|
@ -130,28 +130,27 @@ bool Device::Control::IsHidden() const
|
|||
return false;
|
||||
}
|
||||
|
||||
ControlState Device::FullAnalogSurface::GetState() const
|
||||
class FullAnalogSurface final : public Device::Input
|
||||
{
|
||||
public:
|
||||
FullAnalogSurface(Input* low, Input* high) : m_low(*low), m_high(*high) {}
|
||||
|
||||
ControlState GetState() const override
|
||||
{
|
||||
return (1 + std::max(0.0, m_high.GetState()) - std::max(0.0, m_low.GetState())) / 2;
|
||||
}
|
||||
|
||||
std::string Device::FullAnalogSurface::GetName() const
|
||||
std::string GetName() const override
|
||||
{
|
||||
// E.g. "Full Axis X+"
|
||||
return "Full " + m_high.GetName();
|
||||
}
|
||||
|
||||
bool Device::FullAnalogSurface::IsDetectable() const
|
||||
{
|
||||
return m_low.IsDetectable() && m_high.IsDetectable();
|
||||
}
|
||||
bool IsDetectable() const override { return m_low.IsDetectable() && m_high.IsDetectable(); }
|
||||
|
||||
bool Device::FullAnalogSurface::IsHidden() const
|
||||
{
|
||||
return m_low.IsHidden() && m_high.IsHidden();
|
||||
}
|
||||
bool IsHidden() const override { return m_low.IsHidden() && m_high.IsHidden(); }
|
||||
|
||||
bool Device::FullAnalogSurface::IsMatchingName(std::string_view name) const
|
||||
bool IsMatchingName(std::string_view name) const override
|
||||
{
|
||||
if (Control::IsMatchingName(name))
|
||||
return true;
|
||||
|
@ -164,6 +163,11 @@ bool Device::FullAnalogSurface::IsMatchingName(std::string_view name) const
|
|||
return old_name == name;
|
||||
}
|
||||
|
||||
private:
|
||||
Input& m_low;
|
||||
Input& m_high;
|
||||
};
|
||||
|
||||
void Device::AddFullAnalogSurfaceInputs(Input* low, Input* high)
|
||||
{
|
||||
AddInput(low);
|
||||
|
|
|
@ -163,21 +163,6 @@ protected:
|
|||
void AddInput(Input* const i);
|
||||
void AddOutput(Output* const o);
|
||||
|
||||
class FullAnalogSurface final : public Input
|
||||
{
|
||||
public:
|
||||
FullAnalogSurface(Input* low, Input* high) : m_low(*low), m_high(*high) {}
|
||||
ControlState GetState() const override;
|
||||
std::string GetName() const override;
|
||||
bool IsDetectable() const override;
|
||||
bool IsHidden() const override;
|
||||
bool IsMatchingName(std::string_view name) const override;
|
||||
|
||||
private:
|
||||
Input& m_low;
|
||||
Input& m_high;
|
||||
};
|
||||
|
||||
// Pass Inputs for center-neutral (- and +) directions of some axis.
|
||||
// This function adds those Inputs and also a FullAnalogSurface Input for each direction.
|
||||
// This is only needed when it's not known if the particular axis is neutral in the center
|
||||
|
|
Loading…
Reference in New Issue