godot/servers/xr_server.cpp

/**************************************************************************/
/*  xr_server.cpp                                                         */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "xr_server.h"
#include "core/config/project_settings.h"
#include "xr/xr_body_tracker.h"
#include "xr/xr_face_tracker.h"
#include "xr/xr_hand_tracker.h"
#include "xr/xr_interface.h"
#include "xr/xr_positional_tracker.h"
#include "xr_server.compat.inc"

XRServer::XRMode XRServer::xr_mode =;

XRServer::XRMode XRServer::get_xr_mode() {}

void XRServer::set_xr_mode(XRServer::XRMode p_mode) {}

XRServer *XRServer::singleton =;

XRServer *XRServer::get_singleton() {}

void XRServer::_bind_methods() {}

double XRServer::get_world_scale() const {}

void XRServer::set_world_scale(double p_world_scale) {}

void XRServer::_set_render_world_scale(double p_world_scale) {}

Transform3D XRServer::get_world_origin() const {}

void XRServer::set_world_origin(const Transform3D &p_world_origin) {}

void XRServer::_set_render_world_origin(const Transform3D &p_world_origin) {}

Transform3D XRServer::get_reference_frame() const {}

void XRServer::center_on_hmd(RotationMode p_rotation_mode, bool p_keep_height) {}

void XRServer::clear_reference_frame() {}

void XRServer::_set_render_reference_frame(const Transform3D &p_reference_frame) {}

Transform3D XRServer::get_hmd_transform() {}

void XRServer::add_interface(const Ref<XRInterface> &p_interface) {}

void XRServer::remove_interface(const Ref<XRInterface> &p_interface) {}

int XRServer::get_interface_count() const {}

Ref<XRInterface> XRServer::get_interface(int p_index) const {}

Ref<XRInterface> XRServer::find_interface(const String &p_name) const {}

TypedArray<Dictionary> XRServer::get_interfaces() const {}

Ref<XRInterface> XRServer::get_primary_interface() const {}

void XRServer::set_primary_interface(const Ref<XRInterface> &p_primary_interface) {}

void XRServer::add_tracker(const Ref<XRTracker> &p_tracker) {}

void XRServer::remove_tracker(const Ref<XRTracker> &p_tracker) {}

Dictionary XRServer::get_trackers(int p_tracker_types) {}

Ref<XRTracker> XRServer::get_tracker(const StringName &p_name) const {}

PackedStringArray XRServer::get_suggested_tracker_names() const {}

PackedStringArray XRServer::get_suggested_pose_names(const StringName &p_tracker_name) const {}

void XRServer::_process() {}

void XRServer::pre_render() {}

void XRServer::end_frame() {}

XRServer::XRServer() {}

XRServer::~XRServer() {}