Monado OpenXR Runtime
u_device.h
Go to the documentation of this file.
1// Copyright 2019-2025, Collabora, Ltd.
2// SPDX-License-Identifier: BSL-1.0
3/*!
4 * @file
5 * @brief Misc helpers for device drivers.
6 * @author Jakob Bornecrantz <jakob@collabora.com>
7 * @author Rylie Pavlik <rylie.pavlik@collabora.com>
8 * @author Moshi Turner <moshiturner@protonmail.com>
9 * @author Simon Zeni <simon.zeni@collabora.com>
10 * @ingroup aux_util
11 */
12
13#pragma once
14
15#include "xrt/xrt_compiler.h"
16#include "xrt/xrt_device.h"
17#include "xrt/xrt_tracking.h"
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23
24extern const struct xrt_matrix_2x2 u_device_rotation_right;
25extern const struct xrt_matrix_2x2 u_device_rotation_left;
26extern const struct xrt_matrix_2x2 u_device_rotation_ident;
27extern const struct xrt_matrix_2x2 u_device_rotation_180;
28
29enum u_device_alloc_flags
30{
31 // clang-format off
32 U_DEVICE_ALLOC_NO_FLAGS = 0,
33 U_DEVICE_ALLOC_HMD = 1u << 0u,
34 U_DEVICE_ALLOC_TRACKING_NONE = 1u << 1u,
35 // clang-format on
36};
37
38/*!
39 *
40 * Info to describe 2D extents of a device's screen
41 *
42 */
44{
45 uint32_t w_pixels; // Width of entire screen in pixels
46 uint32_t h_pixels; // Height of entire screen
47};
48
49/*!
50 *
51 * Info to describe a very simple headset with diffractive lens optics.
52 *
53 */
55{
56 struct
57 {
58 uint32_t w_pixels;
59 uint32_t h_pixels;
60 float w_meters;
61 float h_meters;
62 } display;
63
64 float lens_horizontal_separation_meters;
65 float lens_vertical_position_meters;
66
67 float fov[XRT_MAX_VIEWS];
68};
69
70/*!
71 * Setup the device information given a very simple info struct.
72 *
73 * @return true on success.
74 * @ingroup aux_util
75 */
76bool
77u_device_setup_one_eye(struct xrt_device *xdev, const struct u_device_simple_info *info);
78
79/*!
80 * Setup the device information given a very simple info struct.
81 *
82 * @return true on success.
83 * @ingroup aux_util
84 */
85bool
87
88/*!
89 * Setup the device's display's 2D extents.
90 * Good for headsets without traditional VR optics.
91 *
92 * @return true on success.
93 * @ingroup aux_util
94 */
95bool
96u_extents_2d_split_side_by_side(struct xrt_device *xdev, const struct u_extents_2d *extents);
97
98
99/*!
100 * Dump the device config to stderr.
101 *
102 * @ingroup aux_util
103 */
104void
105u_device_dump_config(struct xrt_device *xdev, const char *prefix, const char *prod);
106
107#define U_DEVICE_ALLOCATE(type, flags, input_count, output_count) \
108 ((type *)u_device_allocate(flags, sizeof(type), input_count, output_count))
109
110
111/*!
112 * Helper function to allocate a device plus inputs in the same allocation
113 * placed after the device in memory.
114 *
115 * Will setup any pointers and num values.
116 *
117 * @ingroup aux_util
118 */
119void *
120u_device_allocate(enum u_device_alloc_flags flags, size_t size, size_t input_count, size_t output_count);
121
122/*!
123 * Helper function to free a device and any data hanging of it.
124 *
125 * @ingroup aux_util
126 */
127void
128u_device_free(struct xrt_device *xdev);
129
130
131#define XRT_DEVICE_ROLE_UNASSIGNED (-1)
132
133/*!
134 * Helper function to assign head, left hand and right hand roles.
135 *
136 * @ingroup aux_util
137 */
138void
139u_device_assign_xdev_roles(struct xrt_device **xdevs, size_t xdev_count, int *head, int *left, int *right);
140
141/*!
142 * Helper function for `get_view_pose` in an HMD driver.
143 *
144 * Takes in a translation from the left to right eye, and returns a center to left or right eye transform that assumes
145 * the eye relation is symmetrical around the tracked point ("center eye"). Knowing IPD is a subset of this: If you know
146 * IPD better than the overall Monado system, copy @p eye_relation and put your known IPD in @p real_eye_relation->x
147 *
148 * If you have rotation, apply it after calling this function.
149 *
150 * @param eye_relation 3D translation from left eye to right eye.
151 * @param view_index 0 for left, 1 for right.
152 * @param out_pose The output pose to populate. Will receive translation, with an identity rotation.
153 */
154void
155u_device_get_view_pose(const struct xrt_vec3 *eye_relation, uint32_t view_index, struct xrt_pose *out_pose);
156
157
158/*
159 *
160 * Default implementation of functions.
161 *
162 */
163
164/*!
165 * Helper function to implement @ref xrt_device::get_view_poses in a HMD driver.
166 *
167 * The field @ref xrt_device::hmd needs to be set and valid.
168 */
169void
171 const struct xrt_vec3 *default_eye_relation,
172 int64_t at_timestamp_ns,
173 uint32_t view_count,
174 struct xrt_space_relation *out_head_relation,
175 struct xrt_fov *out_fovs,
176 struct xrt_pose *out_poses);
177
178/*!
179 * Helper function to implement @ref xrt_device::get_visibility_mask in a HMD driver.
180 *
181 * The field @ref xrt_device::hmd needs to be set and valid.
182 */
185 enum xrt_visibility_mask_type type,
186 uint32_t view_index,
187 struct xrt_visibility_mask **out_mask);
188
189/*
190 *
191 * No-op implementation of functions.
192 *
193 */
194
195/*!
196 * Noop function for @ref xrt_device::update_inputs,
197 * should only be used from a device with any inputs.
198 *
199 * @ingroup aux_util
200 */
203
204
205/*
206 *
207 * Not implemented function helpers.
208 *
209 */
210
211/*!
212 * Not implemented function for @ref xrt_device::get_hand_tracking.
213 *
214 * @ingroup aux_util
215 */
216void
218 enum xrt_input_name name,
219 uint64_t desired_timestamp_ns,
220 struct xrt_hand_joint_set *out_value,
221 uint64_t *out_timestamp_ns);
222
223/*!
224 * Not implemented function for @ref xrt_device::set_output.
225 *
226 * @ingroup aux_util
227 */
228void
229u_device_ni_set_output(struct xrt_device *xdev, enum xrt_output_name name, const union xrt_output_value *value);
230
231/*!
232 * Not implemented function for @ref xrt_device::get_view_poses.
233 *
234 * @ingroup aux_util
235 */
236void
238 const struct xrt_vec3 *default_eye_relation,
239 int64_t at_timestamp_ns,
240 uint32_t view_count,
241 struct xrt_space_relation *out_head_relation,
242 struct xrt_fov *out_fovs,
243 struct xrt_pose *out_poses);
244
245/*!
246 * Not implemented function for @ref xrt_device::compute_distortion.
247 *
248 * @ingroup aux_util
249 */
250bool
252 struct xrt_device *xdev, uint32_t view, float u, float v, struct xrt_uv_triplet *out_result);
253
254/*!
255 * Not implemented function for @ref xrt_device::get_visibility_mask.
256 *
257 * @ingroup aux_util
258 */
261 enum xrt_visibility_mask_type type,
262 uint32_t view_index,
263 struct xrt_visibility_mask **out_mask);
264
265/*!
266 * Not implemented function for @ref xrt_device::is_form_factor_available.
267 *
268 * @ingroup aux_util
269 */
270bool
272
273/*!
274 * Not implemented function for @ref xrt_device::get_battery_status.
275 *
276 * @ingroup aux_util
277 */
279u_device_ni_get_battery_status(struct xrt_device *xdev, bool *out_present, bool *out_charging, float *out_charge);
280
281
282#ifdef __cplusplus
283}
284#endif
void u_device_ni_get_view_poses(struct xrt_device *xdev, const struct xrt_vec3 *default_eye_relation, int64_t at_timestamp_ns, uint32_t view_count, struct xrt_space_relation *out_head_relation, struct xrt_fov *out_fovs, struct xrt_pose *out_poses)
Not implemented function for xrt_device::get_view_poses.
Definition: u_device.c:524
bool u_device_setup_split_side_by_side(struct xrt_device *xdev, const struct u_device_simple_info *info)
Setup the device information given a very simple info struct.
Definition: u_device.c:206
void u_device_assign_xdev_roles(struct xrt_device **xdevs, size_t xdev_count, int *head, int *left, int *right)
Helper function to assign head, left hand and right hand roles.
Definition: u_device.c:363
void u_device_free(struct xrt_device *xdev)
Helper function to free a device and any data hanging of it.
Definition: u_device.c:333
bool u_extents_2d_split_side_by_side(struct xrt_device *xdev, const struct u_extents_2d *extents)
Setup the device's display's 2D extents.
Definition: u_device.c:133
xrt_result_t u_device_ni_get_battery_status(struct xrt_device *xdev, bool *out_present, bool *out_charging, float *out_charge)
Not implemented function for xrt_device::get_battery_status.
Definition: u_device.c:561
void u_device_ni_set_output(struct xrt_device *xdev, enum xrt_output_name name, const union xrt_output_value *value)
Not implemented function for xrt_device::set_output.
Definition: u_device.c:518
void u_device_dump_config(struct xrt_device *xdev, const char *prefix, const char *prod)
Dump the device config to stderr.
Definition: u_device.c:89
bool u_device_setup_one_eye(struct xrt_device *xdev, const struct u_device_simple_info *info)
Setup the device information given a very simple info struct.
Definition: u_device.c:162
xrt_result_t u_device_ni_get_visibility_mask(struct xrt_device *xdev, enum xrt_visibility_mask_type type, uint32_t view_index, struct xrt_visibility_mask **out_mask)
Not implemented function for xrt_device::get_visibility_mask.
Definition: u_device.c:544
void u_device_ni_get_hand_tracking(struct xrt_device *xdev, enum xrt_input_name name, uint64_t desired_timestamp_ns, struct xrt_hand_joint_set *out_value, uint64_t *out_timestamp_ns)
Not implemented function for xrt_device::get_hand_tracking.
Definition: u_device.c:508
bool u_device_ni_is_form_factor_available(struct xrt_device *xdev, enum xrt_form_factor form_factor)
Not implemented function for xrt_device::is_form_factor_available.
Definition: u_device.c:554
void * u_device_allocate(enum u_device_alloc_flags flags, size_t size, size_t input_count, size_t output_count)
Helper function to allocate a device plus inputs in the same allocation placed after the device in me...
Definition: u_device.c:274
bool u_device_ni_compute_distortion(struct xrt_device *xdev, uint32_t view, float u, float v, struct xrt_uv_triplet *out_result)
Not implemented function for xrt_device::compute_distortion.
Definition: u_device.c:536
xrt_result_t u_device_noop_update_inputs(struct xrt_device *xdev)
Noop function for xrt_device::update_inputs, should only be used from a device with any inputs.
Definition: u_device.c:492
xrt_visibility_mask_type
Visibility mask, mirror of XrVisibilityMaskKHR.
Definition: xrt_defines.h:1968
xrt_form_factor
What form factor is this device, mostly maps onto OpenXR's XrFormFactor.
Definition: xrt_defines.h:1918
xrt_input_name
Every internal input source known to monado with a baked in type.
Definition: xrt_defines.h:1301
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:1804
Definition: m_space.cpp:87
Info to describe a very simple headset with diffractive lens optics.
Definition: u_device.h:55
Info to describe 2D extents of a device's screen.
Definition: u_device.h:44
A single HMD or input device.
Definition: xrt_device.h:244
Describes a projection matrix fov.
Definition: xrt_defines.h:486
Joint set type used for hand tracking.
Definition: xrt_defines.h:1400
A tightly packed 2x2 matrix of floats.
Definition: xrt_defines.h:513
A pose composed of a position and orientation.
Definition: xrt_defines.h:465
A relation with two spaces, includes velocity and acceleration.
Definition: xrt_defines.h:657
Represents a uv triplet for distortion, basically just three xrt_vec2.
Definition: xrt_defines.h:261
A 3 element vector with single floats.
Definition: xrt_defines.h:271
Visibility mask helper, the indices and vertices are tightly packed after this struct.
Definition: xrt_visibility_mask.h:25
void u_device_get_view_poses(struct xrt_device *xdev, const struct xrt_vec3 *default_eye_relation, int64_t at_timestamp_ns, uint32_t view_count, struct xrt_space_relation *out_head_relation, struct xrt_fov *out_fovs, struct xrt_pose *out_poses)
Helper function to implement xrt_device::get_view_poses in a HMD driver.
Definition: u_device.c:455
xrt_result_t u_device_get_visibility_mask(struct xrt_device *xdev, enum xrt_visibility_mask_type type, uint32_t view_index, struct xrt_visibility_mask **out_mask)
Helper function to implement xrt_device::get_visibility_mask in a HMD driver.
Definition: u_device.c:475
void u_device_get_view_pose(const struct xrt_vec3 *eye_relation, uint32_t view_index, struct xrt_pose *out_pose)
Helper function for get_view_pose in an HMD driver.
Definition: u_device.c:424
A union of all output types.
Definition: xrt_defines.h:1890
Header holding common defines.
Header defining an xrt display or controller device.
Header defining the tracking system integration in Monado.