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, right hand, and gamepad roles.
135 *
136 * @ingroup aux_util
137 */
138void
140 struct xrt_device **xdevs, size_t xdev_count, int *head, int *left, int *right, int *gamepad);
141
142/*!
143 * Helper function for `get_view_pose` in an HMD driver.
144 *
145 * Takes in a translation from the left to right eye, and returns a center to left or right eye transform that assumes
146 * the eye relation is symmetrical around the tracked point ("center eye"). Knowing IPD is a subset of this: If you know
147 * IPD better than the overall Monado system, copy @p eye_relation and put your known IPD in @p real_eye_relation->x
148 *
149 * If you have rotation, apply it after calling this function.
150 *
151 * @param eye_relation 3D translation from left eye to right eye.
152 * @param view_index 0 for left, 1 for right.
153 * @param out_pose The output pose to populate. Will receive translation, with an identity rotation.
154 */
155void
156u_device_get_view_pose(const struct xrt_vec3 *eye_relation, uint32_t view_index, struct xrt_pose *out_pose);
157
158
159/*
160 *
161 * Default implementation of functions.
162 *
163 */
164
165/*!
166 * Helper function to implement @ref xrt_device::get_view_poses in a HMD driver.
167 *
168 * The field @ref xrt_device::hmd needs to be set and valid.
169 */
172 const struct xrt_vec3 *default_eye_relation,
173 int64_t at_timestamp_ns,
174 uint32_t view_count,
175 struct xrt_space_relation *out_head_relation,
176 struct xrt_fov *out_fovs,
177 struct xrt_pose *out_poses);
178
179/*!
180 * Helper function to implement @ref xrt_device::get_visibility_mask in a HMD driver.
181 *
182 * The field @ref xrt_device::hmd needs to be set and valid.
183 */
186 enum xrt_visibility_mask_type type,
187 uint32_t view_index,
188 struct xrt_visibility_mask **out_mask);
189
190/*
191 *
192 * No-op implementation of functions.
193 *
194 */
195
196/*!
197 * Noop function for @ref xrt_device::update_inputs,
198 * should only be used from a device with any inputs.
199 *
200 * @ingroup aux_util
201 */
204
205
206/*
207 *
208 * Not implemented function helpers.
209 *
210 */
211
212/*!
213 * Not implemented function for @ref xrt_device::get_hand_tracking.
214 *
215 * @ingroup aux_util
216 */
219 enum xrt_input_name name,
220 int64_t desired_timestamp_ns,
221 struct xrt_hand_joint_set *out_value,
222 int64_t *out_timestamp_ns);
223
224/*!
225 * Not implemented function for @ref xrt_device::set_output.
226 *
227 * @ingroup aux_util
228 */
230u_device_ni_set_output(struct xrt_device *xdev, enum xrt_output_name name, const struct xrt_output_value *value);
231
232/*!
233 * Not implemented function for @ref xrt_device::get_view_poses.
234 *
235 * @ingroup aux_util
236 */
239 const struct xrt_vec3 *default_eye_relation,
240 int64_t at_timestamp_ns,
241 uint32_t view_count,
242 struct xrt_space_relation *out_head_relation,
243 struct xrt_fov *out_fovs,
244 struct xrt_pose *out_poses);
245
246/*!
247 * Not implemented function for @ref xrt_device::compute_distortion.
248 *
249 * @ingroup aux_util
250 */
251bool
253 struct xrt_device *xdev, uint32_t view, float u, float v, struct xrt_uv_triplet *out_result);
254
255/*!
256 * Not implemented function for @ref xrt_device::get_visibility_mask.
257 *
258 * @ingroup aux_util
259 */
262 enum xrt_visibility_mask_type type,
263 uint32_t view_index,
264 struct xrt_visibility_mask **out_mask);
265
266/*!
267 * Not implemented function for @ref xrt_device::is_form_factor_available.
268 *
269 * @ingroup aux_util
270 */
271bool
273
274/*!
275 * Not implemented function for @ref xrt_device::get_battery_status.
276 *
277 * @ingroup aux_util
278 */
280u_device_ni_get_battery_status(struct xrt_device *xdev, bool *out_present, bool *out_charging, float *out_charge);
281
282
283#ifdef __cplusplus
284}
285#endif
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_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:576
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
void u_device_assign_xdev_roles(struct xrt_device **xdevs, size_t xdev_count, int *head, int *left, int *right, int *gamepad)
Helper function to assign head, left hand, right hand, and gamepad roles.
Definition: u_device.c:363
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:559
xrt_result_t u_device_ni_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)
Not implemented function for xrt_device::get_hand_tracking.
Definition: u_device.c:520
xrt_result_t 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:538
xrt_result_t u_device_ni_set_output(struct xrt_device *xdev, enum xrt_output_name name, const struct xrt_output_value *value)
Not implemented function for xrt_device::set_output.
Definition: u_device.c:531
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:569
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:551
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:504
xrt_visibility_mask_type
Visibility mask, mirror of XrVisibilityMaskKHR.
Definition: xrt_defines.h:2108
xrt_form_factor
What form factor is this device, mostly maps onto OpenXR's XrFormFactor.
Definition: xrt_defines.h:2058
xrt_input_name
Every internal input source known to monado with a baked in type.
Definition: xrt_defines.h:1306
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:1919
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:281
Describes a projection matrix fov.
Definition: xrt_defines.h:488
Joint set type used for hand tracking.
Definition: xrt_defines.h:1405
A tightly packed 2x2 matrix of floats.
Definition: xrt_defines.h:515
A union of all output types.
Definition: xrt_defines.h:2035
A pose composed of a position and orientation.
Definition: xrt_defines.h:467
A relation with two spaces, includes velocity and acceleration.
Definition: xrt_defines.h:659
Represents a uv triplet for distortion, basically just three xrt_vec2.
Definition: xrt_defines.h:263
A 3 element vector with single floats.
Definition: xrt_defines.h:273
Visibility mask helper, the indices and vertices are tightly packed after this struct.
Definition: xrt_visibility_mask.h:25
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:487
xrt_result_t 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:461
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:430
Header holding common defines.
Header defining an xrt display or controller device.
Header defining the tracking system integration in Monado.