Duckstation/src/core/digital_controller.h
Connor McLaughlin b0c492fd43 DigitalController: Fix broken input due to 0x01 handling
Fixes THPS among others.
2019-10-26 22:33:25 +10:00

52 lines
872 B
C++

#pragma once
#include "pad_device.h"
#include <memory>
class DigitalController final : public PadDevice
{
public:
enum class Button : u8
{
Select = 0,
L3 = 1,
R3 = 2,
Start = 3,
Up = 4,
Right = 5,
Down = 6,
Left = 7,
L2 = 8,
R2 = 9,
L1 = 10,
R1 = 11,
Triangle = 12,
Circle = 13,
Cross = 14,
Square = 15
};
DigitalController();
~DigitalController() override;
static std::shared_ptr<DigitalController> Create();
void SetButtonState(Button button, bool pressed);
void ResetTransferState() override;
bool Transfer(const u8 data_in, u8* data_out) override;
private:
enum class TransferState : u8
{
Idle,
IDMSB,
ButtonsLSB,
ButtonsMSB
};
// buttons are active low
u16 m_button_state = UINT16_C(0xFFFF);
TransferState m_transfer_state = TransferState::Idle;
};