2023-09-20 06:56:12 +00:00
|
|
|
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
|
2022-12-04 11:03:45 +00:00
|
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
|
2020-04-29 03:59:49 +00:00
|
|
|
#pragma once
|
|
|
|
#include "controller.h"
|
|
|
|
#include <memory>
|
|
|
|
#include <optional>
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
class PlayStationMouse final : public Controller
|
|
|
|
{
|
|
|
|
public:
|
2023-09-20 06:56:12 +00:00
|
|
|
enum class Binding : u8
|
2020-04-29 03:59:49 +00:00
|
|
|
{
|
|
|
|
Left = 0,
|
|
|
|
Right = 1,
|
2023-09-20 06:56:12 +00:00
|
|
|
ButtonCount = 2,
|
|
|
|
|
|
|
|
PointerX = 2,
|
|
|
|
PointerY = 3,
|
|
|
|
BindingCount = 4,
|
2020-04-29 03:59:49 +00:00
|
|
|
};
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
static const Controller::ControllerInfo INFO;
|
|
|
|
|
|
|
|
PlayStationMouse(u32 index);
|
2020-04-29 03:59:49 +00:00
|
|
|
~PlayStationMouse() override;
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
static std::unique_ptr<PlayStationMouse> Create(u32 index);
|
2020-04-29 03:59:49 +00:00
|
|
|
|
|
|
|
ControllerType GetType() const override;
|
|
|
|
|
|
|
|
void Reset() override;
|
2020-12-16 14:09:32 +00:00
|
|
|
bool DoState(StateWrapper& sw, bool apply_input_state) override;
|
2020-04-29 03:59:49 +00:00
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
float GetBindState(u32 index) const override;
|
|
|
|
void SetBindState(u32 index, float value) override;
|
2020-04-29 03:59:49 +00:00
|
|
|
|
|
|
|
void ResetTransferState() override;
|
|
|
|
bool Transfer(const u8 data_in, u8* data_out) override;
|
|
|
|
|
2022-07-11 13:03:29 +00:00
|
|
|
void LoadSettings(SettingsInterface& si, const char* section) override;
|
2020-12-27 04:08:13 +00:00
|
|
|
|
2020-04-29 03:59:49 +00:00
|
|
|
private:
|
|
|
|
enum class TransferState : u8
|
|
|
|
{
|
|
|
|
Idle,
|
2021-02-21 23:20:31 +00:00
|
|
|
Ready,
|
2020-04-29 03:59:49 +00:00
|
|
|
IDMSB,
|
|
|
|
ButtonsLSB,
|
|
|
|
ButtonsMSB,
|
|
|
|
DeltaX,
|
|
|
|
DeltaY
|
|
|
|
};
|
|
|
|
|
2023-09-20 06:56:12 +00:00
|
|
|
float m_sensitivity_x = 1.0f;
|
|
|
|
float m_sensitivity_y = 1.0f;
|
2020-04-29 03:59:49 +00:00
|
|
|
|
|
|
|
// buttons are active low
|
|
|
|
u16 m_button_state = UINT16_C(0xFFFF);
|
2023-09-20 06:56:12 +00:00
|
|
|
float m_delta_x = 0;
|
|
|
|
float m_delta_y = 0;
|
2020-04-29 03:59:49 +00:00
|
|
|
|
|
|
|
TransferState m_transfer_state = TransferState::Idle;
|
|
|
|
};
|