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

50 lines
1.2 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 "common/common_types.h"
#include "common/swap.h"
namespace Core::Timing {
class CoreTiming;
}
namespace Core::HID {
class HIDCore;
2019-09-21 10:43:43 +02:00
}
2018-10-05 16:23:21 +02:00
namespace Service::HID {
class ControllerBase {
public:
explicit ControllerBase(Core::HID::HIDCore& hid_core_);
virtual ~ControllerBase();
2018-10-05 16:23:21 +02:00
// Called when the controller is initialized
2019-09-22 08:41:34 +02:00
virtual void OnInit() = 0;
2018-10-05 16:23:21 +02:00
// When the controller is released
virtual void OnRelease() = 0;
// When the controller is requesting an update for the shared memory
virtual void OnUpdate(const Core::Timing::CoreTiming& core_timing, u8* data,
std::size_t size) = 0;
2018-10-05 16:23:21 +02:00
2020-09-24 00:51:09 +02:00
// When the controller is requesting a motion update for the shared memory
virtual void OnMotionUpdate(const Core::Timing::CoreTiming& core_timing, u8* data,
std::size_t size) {}
2019-09-22 08:41:34 +02:00
void ActivateController();
2018-10-05 16:23:21 +02:00
void DeactivateController();
bool IsControllerActivated() const;
protected:
bool is_activated{false};
Core::HID::HIDCore& hid_core;
2018-10-05 16:23:21 +02:00
};
2018-10-06 05:14:42 +02:00
} // namespace Service::HID