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