summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/debug_mouse.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-01 21:02:13 +0100
committerGitHub <noreply@github.com>2024-01-01 21:02:13 +0100
commit59d81ae614a42588dbd7eaf4b7e029ab168886c9 (patch)
treea5d636853c0871b700ebccf1c5d4fc6726046a31 /src/core/hle/service/hid/controllers/debug_mouse.h
parentMerge pull request #12518 from t895/theme-settings (diff)
parentservice: hid: Use applet resource to get latest shared memory handle (diff)
downloadyuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.gz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.bz2
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.lz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.xz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.zst
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.zip
Diffstat (limited to 'src/core/hle/service/hid/controllers/debug_mouse.h')
-rw-r--r--src/core/hle/service/hid/controllers/debug_mouse.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/debug_mouse.h b/src/core/hle/service/hid/controllers/debug_mouse.h
new file mode 100644
index 000000000..ec939fa9f
--- /dev/null
+++ b/src/core/hle/service/hid/controllers/debug_mouse.h
@@ -0,0 +1,34 @@
+// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/hid/controllers/controller_base.h"
+
+namespace Core::HID {
+class EmulatedDevices;
+struct MouseState;
+struct AnalogStickState;
+} // namespace Core::HID
+
+namespace Service::HID {
+class DebugMouse final : public ControllerBase {
+public:
+ explicit DebugMouse(Core::HID::HIDCore& hid_core_);
+ ~DebugMouse() 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