diff options
| author | 2021-12-18 13:57:14 +0800 | |
|---|---|---|
| committer | 2021-12-18 13:57:14 +0800 | |
| commit | e49184e6069a9d791d2df3c1958f5c4b1187e124 (patch) | |
| tree | b776caf722e0be0e680f67b0ad0842628162ef1c /src/input_common/drivers/mouse.cpp | |
| parent | Implement convert legacy to generic (diff) | |
| parent | Merge pull request #7570 from ameerj/favorites-expanded (diff) | |
| download | yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.gz yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.xz yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.zip | |
Merge branch 'yuzu-emu:master' into convert_legacy
Diffstat (limited to 'src/input_common/drivers/mouse.cpp')
| -rw-r--r-- | src/input_common/drivers/mouse.cpp | 185 |
1 files changed, 185 insertions, 0 deletions
diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp new file mode 100644 index 000000000..aa69216c8 --- /dev/null +++ b/src/input_common/drivers/mouse.cpp | |||
| @@ -0,0 +1,185 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included | ||
| 4 | |||
| 5 | #include <stop_token> | ||
| 6 | #include <thread> | ||
| 7 | #include <fmt/format.h> | ||
| 8 | |||
| 9 | #include "common/param_package.h" | ||
| 10 | #include "common/settings.h" | ||
| 11 | #include "common/thread.h" | ||
| 12 | #include "input_common/drivers/mouse.h" | ||
| 13 | |||
| 14 | namespace InputCommon { | ||
| 15 | constexpr int mouse_axis_x = 0; | ||
| 16 | constexpr int mouse_axis_y = 1; | ||
| 17 | constexpr int wheel_axis_x = 2; | ||
| 18 | constexpr int wheel_axis_y = 3; | ||
| 19 | constexpr int touch_axis_x = 10; | ||
| 20 | constexpr int touch_axis_y = 11; | ||
| 21 | constexpr PadIdentifier identifier = { | ||
| 22 | .guid = Common::UUID{Common::INVALID_UUID}, | ||
| 23 | .port = 0, | ||
| 24 | .pad = 0, | ||
| 25 | }; | ||
| 26 | |||
| 27 | Mouse::Mouse(std::string input_engine_) : InputEngine(std::move(input_engine_)) { | ||
| 28 | PreSetController(identifier); | ||
| 29 | PreSetAxis(identifier, mouse_axis_x); | ||
| 30 | PreSetAxis(identifier, mouse_axis_y); | ||
| 31 | PreSetAxis(identifier, wheel_axis_x); | ||
| 32 | PreSetAxis(identifier, wheel_axis_y); | ||
| 33 | PreSetAxis(identifier, touch_axis_x); | ||
| 34 | PreSetAxis(identifier, touch_axis_x); | ||
| 35 | update_thread = std::jthread([this](std::stop_token stop_token) { UpdateThread(stop_token); }); | ||
| 36 | } | ||
| 37 | |||
| 38 | void Mouse::UpdateThread(std::stop_token stop_token) { | ||
| 39 | Common::SetCurrentThreadName("yuzu:input:Mouse"); | ||
| 40 | constexpr int update_time = 10; | ||
| 41 | while (!stop_token.stop_requested()) { | ||
| 42 | if (Settings::values.mouse_panning && !Settings::values.mouse_enabled) { | ||
| 43 | // Slow movement by 4% | ||
| 44 | last_mouse_change *= 0.96f; | ||
| 45 | const float sensitivity = | ||
| 46 | Settings::values.mouse_panning_sensitivity.GetValue() * 0.022f; | ||
| 47 | SetAxis(identifier, mouse_axis_x, last_mouse_change.x * sensitivity); | ||
| 48 | SetAxis(identifier, mouse_axis_y, -last_mouse_change.y * sensitivity); | ||
| 49 | } | ||
| 50 | |||
| 51 | if (mouse_panning_timout++ > 20) { | ||
| 52 | StopPanning(); | ||
| 53 | } | ||
| 54 | std::this_thread::sleep_for(std::chrono::milliseconds(update_time)); | ||
| 55 | } | ||
| 56 | } | ||
| 57 | |||
| 58 | void Mouse::MouseMove(int x, int y, f32 touch_x, f32 touch_y, int center_x, int center_y) { | ||
| 59 | // If native mouse is enabled just set the screen coordinates | ||
| 60 | if (Settings::values.mouse_enabled) { | ||
| 61 | SetAxis(identifier, mouse_axis_x, touch_x); | ||
| 62 | SetAxis(identifier, mouse_axis_y, touch_y); | ||
| 63 | return; | ||
| 64 | } | ||
| 65 | |||
| 66 | SetAxis(identifier, touch_axis_x, touch_x); | ||
| 67 | SetAxis(identifier, touch_axis_y, touch_y); | ||
| 68 | |||
| 69 | if (Settings::values.mouse_panning) { | ||
| 70 | auto mouse_change = | ||
| 71 | (Common::MakeVec(x, y) - Common::MakeVec(center_x, center_y)).Cast<float>(); | ||
| 72 | mouse_panning_timout = 0; | ||
| 73 | |||
| 74 | const auto move_distance = mouse_change.Length(); | ||
| 75 | if (move_distance == 0) { | ||
| 76 | return; | ||
| 77 | } | ||
| 78 | |||
| 79 | // Make slow movements at least 3 units on lenght | ||
| 80 | if (move_distance < 3.0f) { | ||
| 81 | // Normalize value | ||
| 82 | mouse_change /= move_distance; | ||
| 83 | mouse_change *= 3.0f; | ||
| 84 | } | ||
| 85 | |||
| 86 | // Average mouse movements | ||
| 87 | last_mouse_change = (last_mouse_change * 0.91f) + (mouse_change * 0.09f); | ||
| 88 | |||
| 89 | const auto last_move_distance = last_mouse_change.Length(); | ||
| 90 | |||
| 91 | // Make fast movements clamp to 8 units on lenght | ||
| 92 | if (last_move_distance > 8.0f) { | ||
| 93 | // Normalize value | ||
| 94 | last_mouse_change /= last_move_distance; | ||
| 95 | last_mouse_change *= 8.0f; | ||
| 96 | } | ||
| 97 | |||
| 98 | // Ignore average if it's less than 1 unit and use current movement value | ||
| 99 | if (last_move_distance < 1.0f) { | ||
| 100 | last_mouse_change = mouse_change / mouse_change.Length(); | ||
| 101 | } | ||
| 102 | |||
| 103 | return; | ||
| 104 | } | ||
| 105 | |||
| 106 | if (button_pressed) { | ||
| 107 | const auto mouse_move = Common::MakeVec<int>(x, y) - mouse_origin; | ||
| 108 | const float sensitivity = Settings::values.mouse_panning_sensitivity.GetValue() * 0.0012f; | ||
| 109 | SetAxis(identifier, mouse_axis_x, static_cast<float>(mouse_move.x) * sensitivity); | ||
| 110 | SetAxis(identifier, mouse_axis_y, static_cast<float>(-mouse_move.y) * sensitivity); | ||
| 111 | } | ||
| 112 | } | ||
| 113 | |||
| 114 | void Mouse::PressButton(int x, int y, f32 touch_x, f32 touch_y, MouseButton button) { | ||
| 115 | SetAxis(identifier, touch_axis_x, touch_x); | ||
| 116 | SetAxis(identifier, touch_axis_y, touch_y); | ||
| 117 | SetButton(identifier, static_cast<int>(button), true); | ||
| 118 | // Set initial analog parameters | ||
| 119 | mouse_origin = {x, y}; | ||
| 120 | last_mouse_position = {x, y}; | ||
| 121 | button_pressed = true; | ||
| 122 | } | ||
| 123 | |||
| 124 | void Mouse::ReleaseButton(MouseButton button) { | ||
| 125 | SetButton(identifier, static_cast<int>(button), false); | ||
| 126 | |||
| 127 | if (!Settings::values.mouse_panning && !Settings::values.mouse_enabled) { | ||
| 128 | SetAxis(identifier, mouse_axis_x, 0); | ||
| 129 | SetAxis(identifier, mouse_axis_y, 0); | ||
| 130 | } | ||
| 131 | button_pressed = false; | ||
| 132 | } | ||
| 133 | |||
| 134 | void Mouse::MouseWheelChange(int x, int y) { | ||
| 135 | wheel_position.x += x; | ||
| 136 | wheel_position.y += y; | ||
| 137 | SetAxis(identifier, wheel_axis_x, static_cast<f32>(wheel_position.x)); | ||
| 138 | SetAxis(identifier, wheel_axis_y, static_cast<f32>(wheel_position.y)); | ||
| 139 | } | ||
| 140 | |||
| 141 | void Mouse::ReleaseAllButtons() { | ||
| 142 | ResetButtonState(); | ||
| 143 | button_pressed = false; | ||
| 144 | } | ||
| 145 | |||
| 146 | void Mouse::StopPanning() { | ||
| 147 | last_mouse_change = {}; | ||
| 148 | } | ||
| 149 | |||
| 150 | std::vector<Common::ParamPackage> Mouse::GetInputDevices() const { | ||
| 151 | std::vector<Common::ParamPackage> devices; | ||
| 152 | devices.emplace_back(Common::ParamPackage{ | ||
| 153 | {"engine", GetEngineName()}, | ||
| 154 | {"display", "Keyboard/Mouse"}, | ||
| 155 | }); | ||
| 156 | return devices; | ||
| 157 | } | ||
| 158 | |||
| 159 | AnalogMapping Mouse::GetAnalogMappingForDevice( | ||
| 160 | [[maybe_unused]] const Common::ParamPackage& params) { | ||
| 161 | // Only overwrite different buttons from default | ||
| 162 | AnalogMapping mapping = {}; | ||
| 163 | Common::ParamPackage right_analog_params; | ||
| 164 | right_analog_params.Set("engine", GetEngineName()); | ||
| 165 | right_analog_params.Set("axis_x", 0); | ||
| 166 | right_analog_params.Set("axis_y", 1); | ||
| 167 | right_analog_params.Set("threshold", 0.5f); | ||
| 168 | right_analog_params.Set("range", 1.0f); | ||
| 169 | right_analog_params.Set("deadzone", 0.0f); | ||
| 170 | mapping.insert_or_assign(Settings::NativeAnalog::RStick, std::move(right_analog_params)); | ||
| 171 | return mapping; | ||
| 172 | } | ||
| 173 | |||
| 174 | Common::Input::ButtonNames Mouse::GetUIName(const Common::ParamPackage& params) const { | ||
| 175 | if (params.Has("button")) { | ||
| 176 | return Common::Input::ButtonNames::Value; | ||
| 177 | } | ||
| 178 | if (params.Has("axis")) { | ||
| 179 | return Common::Input::ButtonNames::Value; | ||
| 180 | } | ||
| 181 | |||
| 182 | return Common::Input::ButtonNames::Invalid; | ||
| 183 | } | ||
| 184 | |||
| 185 | } // namespace InputCommon | ||