mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-11 01:15:30 +00:00
3e6ec47296
All at least visually inspected, some revised from the auto-fixit
439 lines
15 KiB
C
439 lines
15 KiB
C
// Copyright 2018-2022, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
/*!
|
|
* @file
|
|
* @brief Holds instance related functions.
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
* @ingroup oxr_main
|
|
*/
|
|
|
|
#include "xrt/xrt_config_os.h"
|
|
#include "xrt/xrt_config_build.h"
|
|
#include "xrt/xrt_instance.h"
|
|
|
|
#include "math/m_mathinclude.h"
|
|
#include "util/u_var.h"
|
|
#include "util/u_time.h"
|
|
#include "util/u_misc.h"
|
|
#include "util/u_debug.h"
|
|
#include "util/u_git_tag.h"
|
|
|
|
#ifdef XRT_OS_ANDROID
|
|
#include "android/android_globals.h"
|
|
#include "android/android_looper.h"
|
|
#endif
|
|
|
|
#include "oxr_objects.h"
|
|
#include "oxr_logger.h"
|
|
#include "oxr_handle.h"
|
|
#include "oxr_extension_support.h"
|
|
#include "oxr_subaction.h"
|
|
#include "oxr_chain.h"
|
|
|
|
#include <sys/types.h>
|
|
#ifdef XRT_OS_UNIX
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
DEBUG_GET_ONCE_BOOL_OPTION(debug_views, "OXR_DEBUG_VIEWS", false)
|
|
DEBUG_GET_ONCE_BOOL_OPTION(debug_spaces, "OXR_DEBUG_SPACES", false)
|
|
DEBUG_GET_ONCE_BOOL_OPTION(debug_bindings, "OXR_DEBUG_BINDINGS", false)
|
|
DEBUG_GET_ONCE_BOOL_OPTION(lifecycle_verbose, "OXR_LIFECYCLE_VERBOSE", false)
|
|
|
|
DEBUG_GET_ONCE_FLOAT_OPTION(tracking_origin_offset_x, "OXR_TRACKING_ORIGIN_OFFSET_X", 0.0f)
|
|
DEBUG_GET_ONCE_FLOAT_OPTION(tracking_origin_offset_y, "OXR_TRACKING_ORIGIN_OFFSET_Y", 0.0f)
|
|
DEBUG_GET_ONCE_FLOAT_OPTION(tracking_origin_offset_z, "OXR_TRACKING_ORIGIN_OFFSET_Z", 0.0f)
|
|
|
|
/* ---- HACK ---- */
|
|
extern int
|
|
oxr_sdl2_hack_create(void **out_hack);
|
|
|
|
extern void
|
|
oxr_sdl2_hack_start(void *hack, struct xrt_instance *xinst, struct xrt_device **xdevs);
|
|
|
|
extern void
|
|
oxr_sdl2_hack_stop(void **hack_ptr);
|
|
/* ---- HACK ---- */
|
|
|
|
static XrResult
|
|
oxr_instance_destroy(struct oxr_logger *log, struct oxr_handle_base *hb)
|
|
{
|
|
struct oxr_instance *inst = (struct oxr_instance *)hb;
|
|
|
|
// Does a null-ptr check.
|
|
xrt_syscomp_destroy(&inst->system.xsysc);
|
|
|
|
u_var_remove_root((void *)inst);
|
|
|
|
oxr_binding_destroy_all(log, inst);
|
|
|
|
oxr_path_destroy(log, inst);
|
|
|
|
u_hashset_destroy(&inst->action_sets.name_store);
|
|
u_hashset_destroy(&inst->action_sets.loc_store);
|
|
|
|
for (size_t i = 0; i < inst->system.xdev_count; i++) {
|
|
oxr_xdev_destroy(&inst->system.xdevs[i]);
|
|
}
|
|
|
|
/* ---- HACK ---- */
|
|
oxr_sdl2_hack_stop(&inst->hack);
|
|
/* ---- HACK ---- */
|
|
|
|
xrt_instance_destroy(&inst->xinst);
|
|
|
|
// Does null checking and sets to null.
|
|
time_state_destroy(&inst->timekeeping);
|
|
|
|
// Mutex goes last.
|
|
os_mutex_destroy(&inst->event.mutex);
|
|
|
|
free(inst);
|
|
|
|
return XR_SUCCESS;
|
|
}
|
|
|
|
static void
|
|
cache_path(struct oxr_logger *log, struct oxr_instance *inst, const char *str, XrPath *out_path)
|
|
{
|
|
oxr_path_get_or_create(log, inst, str, strlen(str), out_path);
|
|
}
|
|
|
|
#define NUM_XDEVS 16
|
|
|
|
static inline size_t
|
|
min_size_t(size_t a, size_t b)
|
|
{
|
|
return a < b ? a : b;
|
|
}
|
|
|
|
static bool
|
|
starts_with(const char *with, const char *string)
|
|
{
|
|
assert(with != NULL);
|
|
|
|
if (string == NULL) {
|
|
return false;
|
|
}
|
|
|
|
for (uint32_t i = 0; with[i] != 0; i++) {
|
|
if (string[i] != with[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void
|
|
debug_print_devices(struct oxr_logger *log, struct oxr_system *sys)
|
|
{
|
|
struct xrt_device *h = GET_XDEV_BY_ROLE(sys, head);
|
|
struct xrt_device *l = GET_XDEV_BY_ROLE(sys, left);
|
|
struct xrt_device *r = GET_XDEV_BY_ROLE(sys, right);
|
|
|
|
oxr_log(log, "Selected devices\n\tHead: '%s' (%i)\n\tLeft: '%s' (%i)\n\tRight: '%s' (%i)", //
|
|
h ? h->str : "<none>", sys->role.head, //
|
|
l ? l->str : "<none>", sys->role.left, //
|
|
r ? r->str : "<none>", sys->role.right); //
|
|
}
|
|
|
|
static void
|
|
detect_engine(struct oxr_logger *log, struct oxr_instance *inst, const XrInstanceCreateInfo *createInfo)
|
|
{
|
|
if (starts_with("UnrealEngine4", createInfo->applicationInfo.engineName)) {
|
|
inst->appinfo.detected.engine.name = "UnrealEngine";
|
|
inst->appinfo.detected.engine.major = 4;
|
|
inst->appinfo.detected.engine.minor = (createInfo->applicationInfo.engineVersion >> 16) & 0xffff;
|
|
inst->appinfo.detected.engine.patch = createInfo->applicationInfo.engineVersion & 0xffff;
|
|
}
|
|
|
|
if (starts_with("UnrealEngine5", createInfo->applicationInfo.engineName)) {
|
|
inst->appinfo.detected.engine.name = "UnrealEngine";
|
|
inst->appinfo.detected.engine.major = 5;
|
|
inst->appinfo.detected.engine.minor = (createInfo->applicationInfo.engineVersion >> 16) & 0xffff;
|
|
inst->appinfo.detected.engine.patch = createInfo->applicationInfo.engineVersion & 0xffff;
|
|
}
|
|
}
|
|
|
|
static void
|
|
apply_quirks(struct oxr_logger *log, struct oxr_instance *inst)
|
|
{
|
|
#if 0
|
|
// This is no longer needed.
|
|
if (starts_with("UnrealEngine", inst->appinfo.detected.engine.name) && //
|
|
inst->appinfo.detected.engine.major == 4 && //
|
|
inst->appinfo.detected.engine.minor <= 27 && //
|
|
inst->appinfo.detected.engine.patch <= 0) {
|
|
inst->quirks.disable_vulkan_format_depth_stencil = true;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
XrResult
|
|
oxr_instance_create(struct oxr_logger *log,
|
|
const XrInstanceCreateInfo *createInfo,
|
|
const struct oxr_extension_status *extensions,
|
|
struct oxr_instance **out_instance)
|
|
{
|
|
struct oxr_instance *inst = NULL;
|
|
struct xrt_device *xdevs[NUM_XDEVS] = {0};
|
|
int xinst_ret;
|
|
int m_ret;
|
|
int h_ret;
|
|
xrt_result_t xret;
|
|
XrResult ret;
|
|
|
|
OXR_ALLOCATE_HANDLE_OR_RETURN(log, inst, OXR_XR_DEBUG_INSTANCE, oxr_instance_destroy, NULL);
|
|
|
|
inst->lifecycle_verbose = debug_get_bool_option_lifecycle_verbose();
|
|
inst->debug_spaces = debug_get_bool_option_debug_spaces();
|
|
inst->debug_views = debug_get_bool_option_debug_views();
|
|
inst->debug_bindings = debug_get_bool_option_debug_bindings();
|
|
|
|
m_ret = os_mutex_init(&inst->event.mutex);
|
|
if (m_ret < 0) {
|
|
ret = oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to init mutex");
|
|
return ret;
|
|
}
|
|
|
|
/* ---- HACK ---- */
|
|
oxr_sdl2_hack_create(&inst->hack);
|
|
/* ---- HACK ---- */
|
|
|
|
ret = oxr_path_init(log, inst);
|
|
if (ret != XR_SUCCESS) {
|
|
return ret;
|
|
}
|
|
|
|
h_ret = u_hashset_create(&inst->action_sets.name_store);
|
|
if (h_ret != 0) {
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to create name_store hashset");
|
|
}
|
|
|
|
h_ret = u_hashset_create(&inst->action_sets.loc_store);
|
|
if (h_ret != 0) {
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to create loc_store hashset");
|
|
}
|
|
|
|
|
|
// Cache certain often looked up paths.
|
|
|
|
|
|
#define CACHE_SUBACTION_PATHS(NAME, NAME_CAPS, PATH) cache_path(log, inst, PATH, &inst->path_cache.NAME);
|
|
OXR_FOR_EACH_SUBACTION_PATH_DETAILED(CACHE_SUBACTION_PATHS)
|
|
|
|
#undef CACHE_SUBACTION_PATHS
|
|
// clang-format off
|
|
|
|
cache_path(log, inst, "/interaction_profiles/khr/simple_controller", &inst->path_cache.khr_simple_controller);
|
|
cache_path(log, inst, "/interaction_profiles/google/daydream_controller", &inst->path_cache.google_daydream_controller);
|
|
cache_path(log, inst, "/interaction_profiles/htc/vive_controller", &inst->path_cache.htc_vive_controller);
|
|
cache_path(log, inst, "/interaction_profiles/htc/vive_pro", &inst->path_cache.htc_vive_pro);
|
|
cache_path(log, inst, "/interaction_profiles/microsoft/motion_controller", &inst->path_cache.microsoft_motion_controller);
|
|
cache_path(log, inst, "/interaction_profiles/microsoft/xbox_controller", &inst->path_cache.microsoft_xbox_controller);
|
|
cache_path(log, inst, "/interaction_profiles/oculus/go_controller", &inst->path_cache.oculus_go_controller);
|
|
cache_path(log, inst, "/interaction_profiles/oculus/touch_controller", &inst->path_cache.oculus_touch_controller);
|
|
cache_path(log, inst, "/interaction_profiles/valve/index_controller", &inst->path_cache.valve_index_controller);
|
|
cache_path(log, inst, "/interaction_profiles/mndx/ball_on_a_stick_controller", &inst->path_cache.mndx_ball_on_a_stick_controller);
|
|
cache_path(log, inst, "/interaction_profiles/microsoft/hand_interaction", &inst->path_cache.msft_hand_interaction);
|
|
|
|
// clang-format on
|
|
|
|
// fill in our application info - @todo - replicate all createInfo
|
|
// fields?
|
|
|
|
struct xrt_instance_info i_info = {0};
|
|
snprintf(i_info.application_name, sizeof(inst->xinst->instance_info.application_name), "%s",
|
|
createInfo->applicationInfo.applicationName);
|
|
|
|
#ifdef XRT_OS_ANDROID
|
|
XrInstanceCreateInfoAndroidKHR const *create_info_android = OXR_GET_INPUT_FROM_CHAIN(
|
|
createInfo, XR_TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR, XrInstanceCreateInfoAndroidKHR);
|
|
android_globals_store_vm_and_activity((struct _JavaVM *)create_info_android->applicationVM,
|
|
create_info_android->applicationActivity);
|
|
// Trick to avoid deadlock on main thread. Only works for NativeActivity with app-glue.
|
|
android_looper_poll_until_activity_resumed();
|
|
#endif
|
|
|
|
xinst_ret = xrt_instance_create(&i_info, &inst->xinst);
|
|
if (xinst_ret != 0) {
|
|
ret = oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to create prober");
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return ret;
|
|
}
|
|
|
|
|
|
xinst_ret = xrt_instance_select(inst->xinst, xdevs, NUM_XDEVS);
|
|
if (xinst_ret != 0) {
|
|
ret = oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to select device(s)");
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return ret;
|
|
}
|
|
|
|
struct oxr_system *sys = &inst->system;
|
|
|
|
#define POPULATE_ROLES(X) sys->role.X = XRT_DEVICE_ROLE_UNASSIGNED;
|
|
OXR_FOR_EACH_VALID_SUBACTION_PATH(POPULATE_ROLES)
|
|
#undef POPULATE_ROLES
|
|
|
|
sys->xdev_count = min_size_t(ARRAY_SIZE(sys->xdevs), NUM_XDEVS);
|
|
|
|
for (uint32_t i = 0; i < sys->xdev_count; i++) {
|
|
sys->xdevs[i] = xdevs[i];
|
|
}
|
|
for (size_t i = sys->xdev_count; i < NUM_XDEVS; i++) {
|
|
oxr_xdev_destroy(&xdevs[i]);
|
|
}
|
|
|
|
u_device_assign_xdev_roles(xdevs, NUM_XDEVS, &sys->role.head, &sys->role.left, &sys->role.right);
|
|
|
|
// Did we find any HMD
|
|
// @todo Headless with only controllers?
|
|
struct xrt_device *dev = GET_XDEV_BY_ROLE(sys, head);
|
|
if (dev == NULL) {
|
|
ret = oxr_error(log, XR_ERROR_RUNTIME_FAILURE, "Failed to find any HMD device");
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return ret;
|
|
}
|
|
|
|
struct xrt_vec3 global_tracking_origin_offset = {debug_get_float_option_tracking_origin_offset_x(),
|
|
debug_get_float_option_tracking_origin_offset_y(),
|
|
debug_get_float_option_tracking_origin_offset_z()};
|
|
|
|
u_device_setup_tracking_origins(dev, GET_XDEV_BY_ROLE(sys, left), GET_XDEV_BY_ROLE(sys, right),
|
|
&global_tracking_origin_offset);
|
|
|
|
// Sets the enabled extensions, this is where we should do any extra validation.
|
|
inst->extensions = *extensions;
|
|
|
|
// Create the compositor, if we are not headless.
|
|
if (!inst->extensions.MND_headless) {
|
|
xret = xrt_instance_create_system_compositor(inst->xinst, dev, &sys->xsysc);
|
|
if (ret < 0 || sys->xsysc == NULL) {
|
|
ret = oxr_error(log, XR_ERROR_INITIALIZATION_FAILED,
|
|
"Failed to create the system compositor '%i'", xret);
|
|
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
ret = oxr_system_fill_in(log, inst, 1, &inst->system);
|
|
if (ret != XR_SUCCESS) {
|
|
oxr_instance_destroy(log, &inst->handle);
|
|
return ret;
|
|
}
|
|
|
|
inst->timekeeping = time_state_create();
|
|
|
|
//! @todo check if this (and other creates) failed?
|
|
|
|
// Detect game engine.
|
|
detect_engine(log, inst, createInfo);
|
|
|
|
// Apply any quirks
|
|
apply_quirks(log, inst);
|
|
|
|
u_var_add_root((void *)inst, "XrInstance", true);
|
|
|
|
/* ---- HACK ---- */
|
|
oxr_sdl2_hack_start(inst->hack, inst->xinst, sys->xdevs);
|
|
/* ---- HACK ---- */
|
|
|
|
oxr_log(log,
|
|
"Instance created\n"
|
|
"\tcreateInfo->applicationInfo.applicationName: %s\n"
|
|
"\tcreateInfo->applicationInfo.applicationVersion: %i\n"
|
|
"\tcreateInfo->applicationInfo.engineName: %s\n"
|
|
"\tcreateInfo->applicationInfo.engineVersion: %i\n"
|
|
"\tappinfo.detected.engine.name: %s\n"
|
|
"\tappinfo.detected.engine.version: %i.%i.%i\n"
|
|
"\tquirks.disable_vulkan_format_depth_stencil: %s",
|
|
createInfo->applicationInfo.applicationName, //
|
|
createInfo->applicationInfo.applicationVersion, //
|
|
createInfo->applicationInfo.engineName, //
|
|
createInfo->applicationInfo.engineVersion, //
|
|
inst->appinfo.detected.engine.name, //
|
|
inst->appinfo.detected.engine.major, //
|
|
inst->appinfo.detected.engine.minor, //
|
|
inst->appinfo.detected.engine.patch, //
|
|
inst->quirks.disable_vulkan_format_depth_stencil ? "true" : "false"); //
|
|
|
|
debug_print_devices(log, sys);
|
|
|
|
|
|
#ifdef XRT_FEATURE_RENDERDOC
|
|
|
|
#ifdef XRT_OS_LINUX
|
|
void *mod = dlopen("librenderdoc.so", RTLD_NOW | RTLD_NOLOAD);
|
|
if (mod) {
|
|
pRENDERDOC_GetAPI RENDERDOC_GetAPI = (pRENDERDOC_GetAPI)dlsym(mod, "RENDERDOC_GetAPI");
|
|
int ret = RENDERDOC_GetAPI(eRENDERDOC_API_Version_1_5_0, (void **)&inst->rdoc_api);
|
|
assert(ret == 1);
|
|
}
|
|
#endif
|
|
#ifdef XRT_OS_ANDROID
|
|
void *mod = dlopen("libVkLayer_GLES_RenderDoc.so", RTLD_NOW | RTLD_NOLOAD);
|
|
if (mod) {
|
|
pRENDERDOC_GetAPI RENDERDOC_GetAPI = (pRENDERDOC_GetAPI)dlsym(mod, "RENDERDOC_GetAPI");
|
|
int ret = RENDERDOC_GetAPI(eRENDERDOC_API_Version_1_5_0, (void **)&inst->rdoc_api);
|
|
assert(ret == 1);
|
|
}
|
|
#endif
|
|
#ifdef XRT_OS_WINDOWS
|
|
HMODULE mod = GetModuleHandleA("renderdoc.dll");
|
|
if (mod) {
|
|
pRENDERDOC_GetAPI RENDERDOC_GetAPI = (pRENDERDOC_GetAPI)GetProcAddress(mod, "RENDERDOC_GetAPI");
|
|
int ret = RENDERDOC_GetAPI(eRENDERDOC_API_Version_1_5_0, (void **)&rdoc_api);
|
|
assert(ret == 1);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
*out_instance = inst;
|
|
|
|
return XR_SUCCESS;
|
|
}
|
|
|
|
|
|
XrResult
|
|
oxr_instance_get_properties(struct oxr_logger *log, struct oxr_instance *inst, XrInstanceProperties *instanceProperties)
|
|
{
|
|
instanceProperties->runtimeVersion = XR_MAKE_VERSION(21, 0, 0);
|
|
snprintf(instanceProperties->runtimeName, XR_MAX_RUNTIME_NAME_SIZE - 1, "Monado(XRT) by Collabora et al '%s'",
|
|
u_git_tag);
|
|
|
|
return XR_SUCCESS;
|
|
}
|
|
|
|
#ifdef XR_USE_TIMESPEC
|
|
|
|
XrResult
|
|
oxr_instance_convert_time_to_timespec(struct oxr_logger *log,
|
|
struct oxr_instance *inst,
|
|
XrTime time,
|
|
struct timespec *timespecTime)
|
|
{
|
|
time_state_to_timespec(inst->timekeeping, time, timespecTime);
|
|
return XR_SUCCESS;
|
|
}
|
|
|
|
XrResult
|
|
oxr_instance_convert_timespec_to_time(struct oxr_logger *log,
|
|
struct oxr_instance *inst,
|
|
const struct timespec *timespecTime,
|
|
XrTime *time)
|
|
{
|
|
*time = time_state_from_timespec(inst->timekeeping, timespecTime);
|
|
return XR_SUCCESS;
|
|
}
|
|
#endif // XR_USE_TIMESPEC
|