diff options
author | Narr the Reg <[email protected]> | 2024-01-04 20:37:43 -0600 |
---|---|---|
committer | Narr the Reg <[email protected]> | 2024-01-05 11:41:15 -0600 |
commit | ee847f8ff0b1b0aec39c1b78c010bc0c08a0a613 (patch) | |
tree | 3b95cbb74be05f0ce7a007353f1f9f95e1ed3901 /src/hid_core/resources/mouse/mouse.h | |
parent | 92a331af76cba638f01490eeb0045ca4d6d27df7 (diff) | |
download | yuzu-mainline-ee847f8ff0b1b0aec39c1b78c010bc0c08a0a613.tar.gz yuzu-mainline-ee847f8ff0b1b0aec39c1b78c010bc0c08a0a613.zip |
hid_core: Move hid to it's own subproject
Diffstat (limited to 'src/hid_core/resources/mouse/mouse.h')
-rw-r--r-- | src/hid_core/resources/mouse/mouse.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/hid_core/resources/mouse/mouse.h b/src/hid_core/resources/mouse/mouse.h new file mode 100644 index 000000000..e9ac6ad36 --- /dev/null +++ b/src/hid_core/resources/mouse/mouse.h @@ -0,0 +1,34 @@ +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "hid_core/hid_types.h" +#include "hid_core/resources/controller_base.h" + +namespace Core::HID { +class HIDCore; +class EmulatedDevices; +} // namespace Core::HID + +namespace Service::HID { +class Mouse final : public ControllerBase { +public: + explicit Mouse(Core::HID::HIDCore& hid_core_); + ~Mouse() override; + + // Called when the controller is initialized + void OnInit() override; + + // 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) override; + +private: + Core::HID::MouseState next_state{}; + Core::HID::AnalogStickState last_mouse_wheel_state{}; + Core::HID::EmulatedDevices* emulated_devices = nullptr; +}; +} // namespace Service::HID |