From a4004908154d9e0167f2d0f6ed0a08e145ceebc9 Mon Sep 17 00:00:00 2001 From: Lubosz Sarnecki Date: Sun, 17 Mar 2024 14:10:00 +0100 Subject: [PATCH] OpenXrInputPlugin: Improve haptic feedback mapping. --- plugins/openxr/src/OpenXrInputPlugin.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/plugins/openxr/src/OpenXrInputPlugin.cpp b/plugins/openxr/src/OpenXrInputPlugin.cpp index 58ab880814..04582ae92f 100644 --- a/plugins/openxr/src/OpenXrInputPlugin.cpp +++ b/plugins/openxr/src/OpenXrInputPlugin.cpp @@ -115,8 +115,15 @@ bool OpenXrInputPlugin::InputDevice::triggerHapticPulse(float strength, float du std::unique_lock locker(_lock); - // TODO: convert duration and strength to openxr values. - if (!_actions.at("/output/haptic")->applyHaptic(0, XR_MIN_HAPTIC_DURATION, XR_FREQUENCY_UNSPECIFIED, 0.5f)) { + // TODO: Haptic values in overte are always strengh 1.0 and duration only 13.0 or 16.0. So it's not really used. + // The duration does not seem to map to a time unit. 16ms seems quite short for a haptic vibration. + // Let's assume the duration is in 10 milliseconds. + // Let's also assume strength 1.0 is the middle value, which is 0.5 in OpenXR. + using namespace std::chrono; + nanoseconds durationNs = duration_cast(milliseconds(static_cast(duration * 10.0f))); + XrDuration xrDuration = durationNs.count(); + + if (!_actions.at("/output/haptic")->applyHaptic(index, xrDuration, XR_FREQUENCY_UNSPECIFIED, 0.5f * strength)) { qCCritical(xr_input_cat, "Failed to apply haptic feedback!"); }