Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/openxr/openxr_util.h
11352 views
1
/**************************************************************************/
2
/* openxr_util.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/string/ustring.h"
34
35
#include <openxr/openxr.h>
36
#include <openxr/openxr_reflection.h>
37
38
#define XR_ENUM_CASE_STR(name, val) \
39
case name: \
40
return #name;
41
#define XR_ENUM_SWITCH(enumType, var) \
42
switch (var) { \
43
XR_LIST_ENUM_##enumType(XR_ENUM_CASE_STR) default : return "Unknown " #enumType ": " + String::num_int64(int64_t(var)); \
44
}
45
46
class OpenXRUtil {
47
public:
48
static String get_result_string(XrResult p_result);
49
static String get_view_configuration_name(XrViewConfigurationType p_view_configuration);
50
static String get_reference_space_name(XrReferenceSpaceType p_reference_space);
51
static String get_structure_type_name(XrStructureType p_structure_type);
52
static String get_session_state_name(XrSessionState p_session_state);
53
static String get_action_type_name(XrActionType p_action_type);
54
static String get_environment_blend_mode_name(XrEnvironmentBlendMode p_blend_mode);
55
static String make_xr_version_string(XrVersion p_version);
56
static String get_handle_as_hex_string(void *p_handle);
57
static String string_from_xruuid(const XrUuid &xr_uuid);
58
static XrUuid xruuid_from_string(const String &p_uuid);
59
60
// Copied from OpenXR xr_linear.h private header, so we can still link against
61
// system-provided packages without relying on our `thirdparty` code.
62
63
// Column-major, pre-multiplied. This type does not exist in the OpenXR API and is provided for convenience.
64
typedef struct XrMatrix4x4f {
65
float m[16];
66
} XrMatrix4x4f;
67
68
static void XrMatrix4x4f_CreateProjection(XrMatrix4x4f *result, const float tanAngleLeft, const float tanAngleRight,
69
const float tanAngleUp, float const tanAngleDown, const float nearZ, const float farZ);
70
static void XrMatrix4x4f_CreateProjectionFov(XrMatrix4x4f *result, const XrFovf fov, const float nearZ, const float farZ);
71
};
72
73