Monado OpenXR Runtime
Loading...
Searching...
No Matches
device.hpp
Go to the documentation of this file.
1// Copyright 2023, Shawn Wallace
2// SPDX-License-Identifier: BSL-1.0
3/*!
4 * @file
5 * @brief SteamVR driver device header - inherits xrt_device.
6 * @author Shawn Wallace <yungwallace@live.com>
7 * @ingroup drv_steamvr_lh
8 */
9
11
13
15#include "xrt/xrt_device.h"
16
17#include "vive/vive_common.h"
18
19#include "vp2/vp2_hid.h"
20
21#include "openvr_driver.h"
22
23#include <string>
24#include <vector>
25#include <memory>
26#include <unordered_map>
27#include <span>
28#include <array>
29#include <optional>
30
31#include <condition_variable>
32#include <mutex>
33
34class Context;
35struct InputClass;
36
38{
39 using ContextPtr = std::shared_ptr<Context>;
40 ContextPtr ctx;
41 vr::ITrackedDeviceServerDriver *driver;
42 const char *serial;
43 const std::string &steam_install;
44
45 DeviceBuilder(const ContextPtr &p_ctx,
46 vr::ITrackedDeviceServerDriver *p_driver,
47 const char *p_serial,
48 const std::string &p_stream_install)
49 : ctx{p_ctx}, driver{p_driver}, serial{p_serial}, steam_install{p_stream_install}
50 {}
51
52 // no copies!
53 DeviceBuilder(const DeviceBuilder &) = delete;
55 operator=(const DeviceBuilder &) = delete;
56};
57
59{
60public:
61 Property(vr::PropertyTypeTag_t tag, void *buffer, uint32_t bufferSize);
62
63 vr::PropertyTypeTag_t tag;
64 std::vector<uint8_t> buffer;
65};
66
67class Device : public xrt_device
68{
69
70public:
71 m_relation_history *relation_hist;
72
73 virtual ~Device();
74
75 xrt_input *
76 get_input_from_name(std::string_view name);
77
78 void
79 update_pose(const vr::DriverPose_t &newPose) const;
80
81 //! Helper to use the @ref m_relation_history member.
82 void
83 get_pose(uint64_t at_timestamp_ns, xrt_space_relation *out_relation);
84
85 vr::ETrackedPropertyError
86 handle_properties(const vr::PropertyWrite_t *batch, uint32_t count);
87
88 vr::ETrackedPropertyError
89 handle_read_properties(vr::PropertyRead_t *batch, uint32_t count);
90
91 //! Maps to @ref xrt_device::get_tracked_pose.
92 virtual xrt_result_t
93 get_tracked_pose(xrt_input_name name, uint64_t at_timestamp_ns, xrt_space_relation *out_relation) = 0;
94
96 get_battery_status(bool *out_present, bool *out_charging, float *out_charge);
97
98protected:
99 Device(const DeviceBuilder &builder);
100 std::shared_ptr<Context> ctx;
101 vr::PropertyContainerHandle_t container_handle{0};
102 std::unordered_map<vr::ETrackedDeviceProperty, Property> properties;
103 std::unordered_map<std::string_view, xrt_input *> inputs_map;
104 std::vector<xrt_input> inputs_vec;
105 inline static xrt_pose chaperone = XRT_POSE_IDENTITY;
106 const InputClass *input_class;
107 std::string manufacturer;
108 std::string model;
109 float vsync_to_photon_ns{0.f};
110 bool provides_battery_status{false};
111 bool charging{false};
112 float charge{1.0F};
113
114 vr::ETrackedPropertyError
115 handle_generic_property_write(const vr::PropertyWrite_t &prop);
116 vr::ETrackedPropertyError
117 handle_generic_property_read(vr::PropertyRead_t &prop);
118
119 virtual vr::ETrackedPropertyError
120 handle_property_write(const vr::PropertyWrite_t &prop);
121
122private:
123 vr::ITrackedDeviceServerDriver *driver;
124
125 void
126 init_chaperone(const std::string &steam_install);
127};
128
130{
131 vp2_hid *hid{nullptr};
132
134 {
135 if (hid != nullptr) {
136 vp2_hid_destroy(hid);
137 hid = nullptr;
138 }
139 }
140};
141
142class HmdDevice : public Device
143{
144public:
145 VIVE_VARIANT variant{VIVE_UNKNOWN};
146 xrt_pose eye[2] = {XRT_POSE_IDENTITY, XRT_POSE_IDENTITY};
147 float ipd{0.063}; // meters
148 struct Parts
149 {
150 xrt_hmd_parts base;
151 vr::IVRDisplayComponent *display;
152 };
153
155 {
156 float min{0.1f};
157 float max{1.0f};
158 };
159
161 {
162 };
163
164 HmdDevice(const DeviceBuilder &builder);
165
167 get_tracked_pose(xrt_input_name name, uint64_t at_timestamp_ns, xrt_space_relation *out_relation) override;
168
169 void
170 SetDisplayEyeToHead(uint32_t unWhichDevice,
171 const vr::HmdMatrix34_t &eyeToHeadLeft,
172 const vr::HmdMatrix34_t &eyeToHeadRight);
173
175 get_view_poses(const xrt_vec3 *default_eye_relation,
176 uint64_t at_timestamp_ns,
177 xrt_view_type view_type,
178 uint32_t view_count,
179 xrt_space_relation *out_head_relation,
180 xrt_fov *out_fovs,
181 xrt_pose *out_poses);
182
184 compute_distortion(uint32_t view, float u, float v, xrt_uv_triplet *out_result);
185
186 void
187 set_hmd_parts(std::unique_ptr<Parts> parts);
188
189 inline float
190 get_ipd() const
191 {
192 return ipd;
193 }
194
196 get_brightness(float *out_brightness);
198 set_brightness(float brightness, bool relative);
199
202
203 bool
204 init_vive_pro_2(struct xrt_prober *xp);
205
206private:
207 std::unique_ptr<Parts> hmd_parts{nullptr};
208
209 vr::ETrackedPropertyError
210 handle_property_write(const vr::PropertyWrite_t &prop) override;
211
212 void
213 set_nominal_frame_interval(uint64_t interval_ns);
214
215 std::condition_variable hmd_parts_cv;
216 std::mutex hmd_parts_mut;
217 float brightness{1.0f};
218 AnalogGainRange analog_gain_range{};
219};
220
222{
223public:
224 ControllerDevice(vr::PropertyContainerHandle_t container_handle, const DeviceBuilder &builder);
225
227 set_output(xrt_output_name name, const xrt_output_value *value);
228
229 void
230 set_haptic_handle(vr::VRInputComponentHandle_t handle);
231
233 get_tracked_pose(xrt_input_name name, uint64_t at_timestamp_ns, xrt_space_relation *out_relation) override;
234
237 int64_t desired_timestamp_ns,
238 struct xrt_hand_joint_set *out_value,
239 int64_t *out_timestamp_ns);
240
242 get_xrt_hand();
243
244 void
245 update_skeleton_transforms(std::span<const vr::VRBoneTransform_t> bones);
246
247 void
248 set_skeleton(std::span<const vr::VRBoneTransform_t> bones, xrt_hand hand, bool is_simulated, const char *path);
249
250 void
251 set_active_hand(xrt_hand hand);
252
253protected:
254 void
255 set_input_class(const InputClass *input_class);
256
257 void
258 generate_palm_pose_offset(std::span<const vr::VRBoneTransform_t> bones, xrt_hand hand);
259
260private:
261 vr::VRInputComponentHandle_t haptic_handle{0};
262 size_t latest_haptic_event{0};
263 std::unique_ptr<xrt_output> output{nullptr};
264 bool has_hand_tracking{false};
265 xrt_hand skeleton_hand = XRT_HAND_LEFT;
266 std::array<std::optional<xrt_pose>, 2> palm_offsets;
267 std::array<xrt_input, 2> hand_tracking_inputs{};
268
269 struct JointsWithTimestamp
270 {
271 xrt_hand_joint_set joint_set;
272 int64_t timestamp{0};
273 };
275
276 vr::ETrackedPropertyError
277 handle_property_write(const vr::PropertyWrite_t &prop) override;
278};
Definition context.hpp:44
Definition device.hpp:222
Definition device.hpp:68
void get_pose(uint64_t at_timestamp_ns, xrt_space_relation *out_relation)
Helper to use the m_relation_history member.
Definition device.cpp:737
virtual xrt_result_t get_tracked_pose(xrt_input_name name, uint64_t at_timestamp_ns, xrt_space_relation *out_relation)=0
Maps to xrt_device::get_tracked_pose.
Definition device.hpp:143
Definition device.hpp:59
Stores some number of values in a ring buffer, overwriting the earliest-pushed-remaining element if o...
Definition u_template_historybuf.hpp:38
SteamVR driver context - implements xrt_tracking_origin and IVRDriverContext.
VIVE_VARIANT
Headset variant.
Definition vive_common.h:44
xrt_hand
Enumeration for left and right hand.
Definition xrt_defines.h:1478
xrt_input_name
Every internal input source known to monado with a baked in type.
Definition xrt_defines.h:930
enum xrt_result xrt_result_t
Result type used across Monado.
xrt_output_name
Name of a output with a baked in type.
Definition xrt_defines.h:1612
Small utility for keeping track of the history of an xrt_space_relation, ie.
Definition device.hpp:38
Definition device.hpp:155
Definition device.hpp:149
Definition device.hpp:161
Definition device.cpp:59
Definition device.hpp:130
Definition m_relation_history.cpp:49
Definition vp2_hid.c:40
Compositor information for a device.
Definition xrt_device.h:110
Compositor mode information for a device.
Definition xrt_device.h:126
A single HMD or input device.
Definition xrt_device.h:340
xrt_result_t(* set_output)(struct xrt_device *xdev, enum xrt_output_name name, const struct xrt_output_value *value)
Set a output value.
Definition xrt_device.h:543
xrt_result_t(* compute_distortion)(struct xrt_device *xdev, uint32_t view, float u, float v, struct xrt_uv_triplet *out_result)
Compute the distortion at a single point.
Definition xrt_device.h:671
xrt_result_t(* get_hand_tracking)(struct xrt_device *xdev, enum xrt_input_name name, int64_t desired_timestamp_ns, struct xrt_hand_joint_set *out_value, int64_t *out_timestamp_ns)
Get relationship of hand joints to the tracking origin space as the base space.
Definition xrt_device.h:444
xrt_result_t(* set_brightness)(struct xrt_device *xdev, float brightness, bool relative)
Set the display brightness.
Definition xrt_device.h:751
xrt_result_t(* get_battery_status)(struct xrt_device *xdev, bool *out_present, bool *out_charging, float *out_charge)
Get battery status information.
Definition xrt_device.h:727
xrt_result_t(* get_brightness)(struct xrt_device *xdev, float *out_brightness)
Get the current display brightness.
Definition xrt_device.h:739
xrt_result_t(* get_compositor_info)(struct xrt_device *xdev, const struct xrt_device_compositor_mode *mode, struct xrt_device_compositor_info *out_info)
Gets the compositor info for a device for the given mode.
Definition xrt_device.h:762
xrt_result_t(* get_view_poses)(struct xrt_device *xdev, const struct xrt_vec3 *default_eye_relation, int64_t at_timestamp_ns, enum xrt_view_type view_type, uint32_t view_count, struct xrt_space_relation *out_head_relation, struct xrt_fov *out_fovs, struct xrt_pose *out_poses)
Get the per-view pose in relation to the view space.
Definition xrt_device.h:648
xrt_result_t(* get_tracked_pose)(struct xrt_device *xdev, enum xrt_input_name name, int64_t at_timestamp_ns, struct xrt_space_relation *out_relation)
Get relationship of a tracked device to the tracking origin space as the base space.
Definition xrt_device.h:416
Describes a projection matrix fov.
Definition xrt_defines.h:512
Joint set type used for hand tracking.
Definition xrt_defines.h:1521
All of the device components that deals with interfacing to a users head.
Definition xrt_device.h:139
A single named input, that sits on a xrt_device.
Definition xrt_device.h:210
A union of all output types.
Definition xrt_defines.h:2386
A pose composed of a position and orientation.
Definition xrt_defines.h:492
The main prober that probes and manages found but not opened HMD devices that are connected to the sy...
Definition xrt_prober.h:135
A relation with two spaces, includes velocity and acceleration.
Definition xrt_defines.h:683
Represents a uv triplet for distortion, basically just three xrt_vec2.
Definition xrt_defines.h:279
A 3 element vector with single floats.
Definition xrt_defines.h:289
Ringbuffer implementation for keeping track of the past state of things.
Common things like defines for Vive and Index.
Implementation of the Vive Pro 2 HID interface.
xrt_view_type
View type to be rendered to by the compositor.
Definition xrt_defines.h:2417
Header defining an xrt display or controller device.