2022-12-04 11:03:45 +00:00
|
|
|
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com> and contributors.
|
|
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
|
2020-05-30 04:33:55 +00:00
|
|
|
#include "negcon.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/log.h"
|
2022-07-11 13:03:29 +00:00
|
|
|
#include "host.h"
|
|
|
|
#include "system.h"
|
2022-07-08 12:43:38 +00:00
|
|
|
#include "util/state_wrapper.h"
|
2020-05-30 04:33:55 +00:00
|
|
|
#include <array>
|
|
|
|
#include <cmath>
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
// Mapping of Button to index of corresponding bit in m_button_state
|
|
|
|
static constexpr std::array<u8, static_cast<size_t>(NeGcon::Button::Count)> s_button_indices = {3, 4, 5, 6,
|
|
|
|
7, 11, 12, 13};
|
|
|
|
NeGcon::NeGcon(u32 index) : Controller(index)
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
|
|
|
m_axis_state.fill(0x00);
|
|
|
|
m_axis_state[static_cast<u8>(Axis::Steering)] = 0x80;
|
|
|
|
}
|
|
|
|
|
|
|
|
NeGcon::~NeGcon() = default;
|
|
|
|
|
|
|
|
ControllerType NeGcon::GetType() const
|
|
|
|
{
|
|
|
|
return ControllerType::NeGcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NeGcon::Reset()
|
|
|
|
{
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
}
|
|
|
|
|
2020-12-16 14:09:32 +00:00
|
|
|
bool NeGcon::DoState(StateWrapper& sw, bool apply_input_state)
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
2020-12-16 14:09:32 +00:00
|
|
|
if (!Controller::DoState(sw, apply_input_state))
|
2020-05-30 04:33:55 +00:00
|
|
|
return false;
|
|
|
|
|
2020-12-16 14:09:32 +00:00
|
|
|
u16 button_state = m_button_state;
|
|
|
|
sw.Do(&button_state);
|
|
|
|
if (apply_input_state)
|
|
|
|
m_button_state = button_state;
|
|
|
|
|
2020-05-30 04:33:55 +00:00
|
|
|
sw.Do(&m_transfer_state);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
float NeGcon::GetBindState(u32 index) const
|
2021-04-03 17:51:08 +00:00
|
|
|
{
|
2022-07-11 13:03:29 +00:00
|
|
|
if (index == (static_cast<u32>(Button::Count) + static_cast<u32>(HalfAxis::SteeringLeft)) ||
|
|
|
|
index == (static_cast<u32>(Button::Count) + static_cast<u32>(HalfAxis::SteeringRight)))
|
|
|
|
{
|
|
|
|
return static_cast<float>(m_half_axis_state[index - static_cast<u32>(Button::Count)]) * (1.0f / 255.0f);
|
|
|
|
}
|
|
|
|
else if (index >= static_cast<u32>(Button::Count))
|
|
|
|
{
|
|
|
|
// less one because of the two steering axes
|
|
|
|
const u32 sub_index = index - (static_cast<u32>(Button::Count) + 1);
|
|
|
|
if (sub_index >= m_axis_state.size())
|
|
|
|
return 0.0f;
|
2021-04-03 17:51:08 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
return static_cast<float>(m_axis_state[sub_index]) * (1.0f / 255.0f);
|
|
|
|
}
|
2021-07-03 05:04:33 +00:00
|
|
|
else
|
2022-07-11 13:03:29 +00:00
|
|
|
{
|
|
|
|
const u32 bit = s_button_indices[index];
|
|
|
|
return static_cast<float>(((m_button_state >> bit) & 1u) ^ 1u);
|
|
|
|
}
|
2021-04-03 17:51:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
void NeGcon::SetBindState(u32 index, float value)
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
|
|
|
// Steering Axis: -1..1 -> 0..255
|
2022-07-11 13:03:29 +00:00
|
|
|
if (index == (static_cast<u32>(Button::Count) + static_cast<u32>(HalfAxis::SteeringLeft)) ||
|
|
|
|
index == (static_cast<u32>(Button::Count) + static_cast<u32>(HalfAxis::SteeringRight)))
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
2022-10-21 11:14:27 +00:00
|
|
|
value *= m_steering_sensitivity;
|
|
|
|
if (value < m_steering_deadzone)
|
|
|
|
value = 0.0f;
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
m_half_axis_state[index - static_cast<u32>(Button::Count)] =
|
|
|
|
static_cast<u8>(std::clamp(value * 255.0f, 0.0f, 255.0f));
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
// Merge left/right. Seems to be inverted.
|
|
|
|
m_axis_state[static_cast<u32>(Axis::Steering)] =
|
|
|
|
((m_half_axis_state[1] != 0) ? (127u + ((m_half_axis_state[1] + 1u) / 2u)) :
|
|
|
|
(127u - (m_half_axis_state[0] / 2u)));
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
2022-07-11 13:03:29 +00:00
|
|
|
else if (index >= static_cast<u32>(Button::Count))
|
|
|
|
{
|
|
|
|
// less one because of the two steering axes
|
|
|
|
const u32 sub_index = index - (static_cast<u32>(Button::Count) + 1);
|
|
|
|
if (sub_index >= m_axis_state.size())
|
|
|
|
return;
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
m_axis_state[sub_index] = static_cast<u8>(std::clamp(value * 255.0f, 0.0f, 255.0f));
|
|
|
|
}
|
|
|
|
else if (index < static_cast<u32>(Button::Count))
|
|
|
|
{
|
|
|
|
const u16 bit = u16(1) << s_button_indices[static_cast<u8>(index)];
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
if (value >= 0.5f)
|
|
|
|
{
|
|
|
|
if (m_button_state & bit)
|
|
|
|
System::SetRunaheadReplayFlag();
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
m_button_state &= ~bit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(m_button_state & bit))
|
|
|
|
System::SetRunaheadReplayFlag();
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
m_button_state |= bit;
|
|
|
|
}
|
|
|
|
}
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 06:54:16 +00:00
|
|
|
u32 NeGcon::GetButtonStateBits() const
|
|
|
|
{
|
|
|
|
return m_button_state ^ 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<u32> NeGcon::GetAnalogInputBytes() const
|
|
|
|
{
|
|
|
|
return m_axis_state[static_cast<size_t>(Axis::L)] << 24 | m_axis_state[static_cast<size_t>(Axis::II)] << 16 |
|
|
|
|
m_axis_state[static_cast<size_t>(Axis::I)] << 8 | m_axis_state[static_cast<size_t>(Axis::Steering)];
|
|
|
|
}
|
|
|
|
|
2020-05-30 04:33:55 +00:00
|
|
|
void NeGcon::ResetTransferState()
|
|
|
|
{
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NeGcon::Transfer(const u8 data_in, u8* data_out)
|
|
|
|
{
|
|
|
|
static constexpr u16 ID = 0x5A23;
|
|
|
|
|
|
|
|
switch (m_transfer_state)
|
|
|
|
{
|
|
|
|
case TransferState::Idle:
|
2021-02-21 23:20:31 +00:00
|
|
|
{
|
|
|
|
*data_out = 0xFF;
|
|
|
|
|
|
|
|
if (data_in == 0x01)
|
|
|
|
{
|
|
|
|
m_transfer_state = TransferState::Ready;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::Ready:
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
|
|
|
if (data_in == 0x42)
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(ID);
|
|
|
|
m_transfer_state = TransferState::IDMSB;
|
|
|
|
return true;
|
|
|
|
}
|
2021-02-21 23:20:31 +00:00
|
|
|
|
|
|
|
*data_out = 0xFF;
|
|
|
|
return false;
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::IDMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(ID >> 8);
|
|
|
|
m_transfer_state = TransferState::ButtonsLSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::ButtonsLSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_button_state);
|
|
|
|
m_transfer_state = TransferState::ButtonsMSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::ButtonsMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_button_state >> 8);
|
|
|
|
m_transfer_state = TransferState::AnalogSteering;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::AnalogSteering:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_axis_state[static_cast<u8>(Axis::Steering)]);
|
|
|
|
m_transfer_state = TransferState::AnalogI;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::AnalogI:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_axis_state[static_cast<u8>(Axis::I)]);
|
|
|
|
m_transfer_state = TransferState::AnalogII;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::AnalogII:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_axis_state[static_cast<u8>(Axis::II)]);
|
|
|
|
m_transfer_state = TransferState::AnalogL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::AnalogL:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_axis_state[static_cast<u8>(Axis::L)]);
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
UnreachableCode();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
std::unique_ptr<NeGcon> NeGcon::Create(u32 index)
|
2020-05-30 04:33:55 +00:00
|
|
|
{
|
2022-07-11 13:03:29 +00:00
|
|
|
return std::make_unique<NeGcon>(index);
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
static const Controller::ControllerBindingInfo s_binding_info[] = {
|
|
|
|
#define BUTTON(name, display_name, button, genb) \
|
2020-05-30 04:33:55 +00:00
|
|
|
{ \
|
2023-01-15 04:00:51 +00:00
|
|
|
name, display_name, static_cast<u32>(button), InputBindingInfo::Type::Button, genb \
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
2022-07-11 13:03:29 +00:00
|
|
|
#define AXIS(name, display_name, halfaxis, genb) \
|
2020-05-30 04:33:55 +00:00
|
|
|
{ \
|
2022-07-11 13:03:29 +00:00
|
|
|
name, display_name, static_cast<u32>(NeGcon::Button::Count) + static_cast<u32>(halfaxis), \
|
2023-01-15 04:00:51 +00:00
|
|
|
InputBindingInfo::Type::HalfAxis, genb \
|
2020-05-30 04:33:55 +00:00
|
|
|
}
|
|
|
|
|
2023-08-19 14:15:53 +00:00
|
|
|
// clang-format off
|
|
|
|
BUTTON("Up", TRANSLATE_NOOP("NeGcon", "D-Pad Up"), NeGcon::Button::Up, GenericInputBinding::DPadUp),
|
|
|
|
BUTTON("Right", TRANSLATE_NOOP("NeGcon", "D-Pad Right"), NeGcon::Button::Right, GenericInputBinding::DPadRight),
|
|
|
|
BUTTON("Down", TRANSLATE_NOOP("NeGcon", "D-Pad Down"), NeGcon::Button::Down, GenericInputBinding::DPadDown),
|
|
|
|
BUTTON("Left", TRANSLATE_NOOP("NeGcon", "D-Pad Left"), NeGcon::Button::Left, GenericInputBinding::DPadLeft),
|
|
|
|
BUTTON("Start", TRANSLATE_NOOP("NeGcon", "Start"), NeGcon::Button::Start, GenericInputBinding::Start),
|
|
|
|
BUTTON("A", TRANSLATE_NOOP("NeGcon", "A Button"), NeGcon::Button::A, GenericInputBinding::Circle),
|
|
|
|
BUTTON("B", TRANSLATE_NOOP("NeGcon", "B Button"), NeGcon::Button::B, GenericInputBinding::Triangle),
|
|
|
|
AXIS("I", TRANSLATE_NOOP("NeGcon", "I Button"), NeGcon::HalfAxis::I, GenericInputBinding::R2),
|
|
|
|
AXIS("II", TRANSLATE_NOOP("NeGcon", "II Button"), NeGcon::HalfAxis::II, GenericInputBinding::L2),
|
|
|
|
AXIS("L", TRANSLATE_NOOP("NeGcon", "Left Trigger"), NeGcon::HalfAxis::L, GenericInputBinding::L1),
|
|
|
|
BUTTON("R", TRANSLATE_NOOP("NeGcon", "Right Trigger"), NeGcon::Button::R, GenericInputBinding::R1),
|
|
|
|
AXIS("SteeringLeft", TRANSLATE_NOOP("NeGcon", "Steering (Twist) Left"), NeGcon::HalfAxis::SteeringLeft, GenericInputBinding::LeftStickLeft),
|
|
|
|
AXIS("SteeringRight", TRANSLATE_NOOP("NeGcon", "Steering (Twist) Right"), NeGcon::HalfAxis::SteeringRight, GenericInputBinding::LeftStickRight),
|
|
|
|
// clang-format on
|
2020-05-30 04:33:55 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
#undef AXIS
|
2020-05-30 04:33:55 +00:00
|
|
|
#undef BUTTON
|
2022-07-11 13:03:29 +00:00
|
|
|
};
|
|
|
|
|
2022-10-21 11:14:27 +00:00
|
|
|
static const SettingInfo s_settings[] = {
|
2023-08-19 13:43:37 +00:00
|
|
|
{SettingInfo::Type::Float, "SteeringDeadzone", TRANSLATE_NOOP("NeGcon", "Steering Axis Deadzone"),
|
|
|
|
TRANSLATE_NOOP("NeGcon", "Sets deadzone size for steering axis."), "0.00f", "0.00f", "0.99f", "0.01f", "%.0f%%",
|
2022-10-21 11:14:27 +00:00
|
|
|
nullptr, 100.0f},
|
2023-08-19 13:43:37 +00:00
|
|
|
{SettingInfo::Type::Float, "SteeringSensitivity", TRANSLATE_NOOP("NeGcon", "Steering Axis Sensitivity"),
|
|
|
|
TRANSLATE_NOOP("NeGcon", "Sets the steering axis scaling factor."), "1.00f", "0.01f", "2.00f", "0.01f", "%.0f%%",
|
2022-10-21 11:14:27 +00:00
|
|
|
nullptr, 100.0f},
|
|
|
|
};
|
2022-07-11 13:03:29 +00:00
|
|
|
|
|
|
|
const Controller::ControllerInfo NeGcon::INFO = {ControllerType::NeGcon,
|
|
|
|
"NeGcon",
|
2023-08-19 13:43:37 +00:00
|
|
|
TRANSLATE_NOOP("ControllerType", "NeGcon"),
|
2022-07-11 13:03:29 +00:00
|
|
|
s_binding_info,
|
|
|
|
s_settings,
|
|
|
|
Controller::VibrationCapabilities::NoVibration};
|
|
|
|
|
|
|
|
void NeGcon::LoadSettings(SettingsInterface& si, const char* section)
|
2020-11-01 06:52:00 +00:00
|
|
|
{
|
2022-07-11 13:03:29 +00:00
|
|
|
Controller::LoadSettings(si, section);
|
|
|
|
m_steering_deadzone = si.GetFloatValue(section, "SteeringDeadzone", 0.10f);
|
2022-10-21 11:14:27 +00:00
|
|
|
m_steering_sensitivity = si.GetFloatValue(section, "SteeringSensitivity", 1.00f);
|
2020-11-01 06:52:00 +00:00
|
|
|
}
|