yuzu/src/core/hle/service/hid/controllers/debug_pad.h

65 lines
1.9 KiB
C++
Raw Normal View History

2018-10-05 16:23:21 +02:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2018-10-06 05:14:42 +02:00
2018-10-05 16:23:21 +02:00
#include <array>
2018-10-18 13:01:55 +02:00
#include "common/bit_field.h"
2018-10-05 16:23:21 +02:00
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "common/settings.h"
2018-10-05 16:23:21 +02:00
#include "common/swap.h"
#include "core/hle/service/hid/controllers/controller_base.h"
#include "core/hle/service/hid/ring_lifo.h"
namespace Core::HID {
class EmulatedController;
struct DebugPadButton;
struct AnalogStickState;
} // namespace Core::HID
2018-10-05 16:23:21 +02:00
namespace Service::HID {
class Controller_DebugPad final : public ControllerBase {
public:
explicit Controller_DebugPad(Core::System& system_);
~Controller_DebugPad() override;
2018-10-05 16:23:21 +02:00
// Called when the controller is initialized
2019-09-22 08:41:34 +02:00
void OnInit() override;
2018-10-05 16:23:21 +02:00
// When the controller is released
void OnRelease() override;
// When the controller is requesting an update for the shared memory
void OnUpdate(const Core::Timing::CoreTiming& core_timing, u8* data, std::size_t size) override;
2018-10-05 16:23:21 +02:00
private:
// This is nn::hid::DebugPadAttribute
struct DebugPadAttribute {
2018-10-18 13:01:55 +02:00
union {
u32_le raw{};
BitField<0, 1, u32> connected;
2018-10-18 13:01:55 +02:00
};
};
static_assert(sizeof(DebugPadAttribute) == 0x4, "DebugPadAttribute is an invalid size");
2018-10-18 13:01:55 +02:00
// This is nn::hid::DebugPadState
struct DebugPadState {
2018-10-05 16:23:21 +02:00
s64_le sampling_number;
DebugPadAttribute attribute;
Core::HID::DebugPadButton pad_state;
Core::HID::AnalogStickState r_stick;
Core::HID::AnalogStickState l_stick;
2018-10-05 16:23:21 +02:00
};
static_assert(sizeof(DebugPadState) == 0x20, "DebugPadState is an invalid state");
2018-10-05 16:23:21 +02:00
// This is nn::hid::detail::DebugPadLifo
Lifo<DebugPadState> debug_pad_lifo{};
static_assert(sizeof(debug_pad_lifo) == 0x2C8, "debug_pad_lifo is an invalid size");
DebugPadState next_state{};
Core::HID::EmulatedController* controller;
2018-10-05 16:23:21 +02:00
};
2018-10-06 05:14:42 +02:00
} // namespace Service::HID