Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/servers/xr/xr_interface.h
10277 views
1
/**************************************************************************/
2
/* xr_interface.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/math/projection.h"
34
#include "core/os/thread_safe.h"
35
#include "servers/xr_server.h"
36
#include "xr_vrs.h"
37
38
// forward declaration
39
struct BlitToScreen;
40
41
/**
42
The XR interface is a template class on top of which we build interface to different AR, VR and tracking SDKs.
43
The idea is that we subclass this class, implement the logic, and then instantiate a singleton of each interface
44
when Godot starts. These instances do not initialize themselves but register themselves with the AR/VR server.
45
46
If the user wants to enable AR/VR, they can choose the interface they want to use and initialize it.
47
48
Note that we may make this into a fully instantiable class for GDExtension support.
49
*/
50
51
class XRInterface : public RefCounted {
52
GDCLASS(XRInterface, RefCounted);
53
54
public:
55
enum Capabilities { /* purely metadata, provides some info about what this interface supports */
56
XR_NONE = 0, /* no capabilities */
57
XR_MONO = 1, /* can be used with mono output */
58
XR_STEREO = 2, /* can be used with stereo output */
59
XR_QUAD = 4, /* can be used with quad output (not currently supported) */
60
XR_VR = 8, /* offers VR support */
61
XR_AR = 16, /* offers AR support */
62
XR_EXTERNAL = 32 /* renders to external device */
63
};
64
65
enum TrackingStatus { /* tracking status currently based on AR but we can start doing more with this for VR as well */
66
XR_NORMAL_TRACKING,
67
XR_EXCESSIVE_MOTION,
68
XR_INSUFFICIENT_FEATURES,
69
XR_UNKNOWN_TRACKING,
70
XR_NOT_TRACKING
71
};
72
73
enum PlayAreaMode { /* defines the mode used by the XR interface for tracking */
74
XR_PLAY_AREA_UNKNOWN, /* Area mode not set or not available */
75
XR_PLAY_AREA_3DOF, /* Only support orientation tracking, no positional tracking, area will center around player */
76
XR_PLAY_AREA_SITTING, /* Player is in seated position, limited positional tracking, fixed guardian around player */
77
XR_PLAY_AREA_ROOMSCALE, /* Player is free to move around, full positional tracking */
78
XR_PLAY_AREA_STAGE, /* Same as roomscale but origin point is fixed to the center of the physical space */
79
XR_PLAY_AREA_CUSTOM = 0x7FFFFFFF, /* Used to denote that a custom, possibly non-standard, play area is being used */
80
};
81
82
enum EnvironmentBlendMode {
83
XR_ENV_BLEND_MODE_OPAQUE, /* You cannot see the real world, VR like */
84
XR_ENV_BLEND_MODE_ADDITIVE, /* You can see the real world, AR like */
85
XR_ENV_BLEND_MODE_ALPHA_BLEND, /* Real world is passed through where alpha channel is 0.0 and gradually blends to opaque for value 1.0. */
86
};
87
88
enum VRSTextureFormat {
89
XR_VRS_TEXTURE_FORMAT_UNIFIED,
90
XR_VRS_TEXTURE_FORMAT_FRAGMENT_SHADING_RATE,
91
XR_VRS_TEXTURE_FORMAT_FRAGMENT_DENSITY_MAP,
92
};
93
94
protected:
95
_THREAD_SAFE_CLASS_
96
97
static void _bind_methods();
98
99
public:
100
/** general interface information **/
101
virtual StringName get_name() const = 0;
102
virtual uint32_t get_capabilities() const = 0;
103
104
bool is_primary();
105
void set_primary(bool p_is_primary);
106
107
virtual bool is_initialized() const = 0; /* returns true if we've initialized this interface */
108
virtual bool initialize() = 0; /* initialize this interface, if this has an HMD it becomes the primary interface */
109
virtual void uninitialize() = 0; /* deinitialize this interface */
110
virtual Dictionary get_system_info() = 0; /* return a dictionary with info about our system */
111
112
/** input and output **/
113
114
virtual PackedStringArray get_suggested_tracker_names() const; /* return a list of likely/suggested tracker names */
115
virtual PackedStringArray get_suggested_pose_names(const StringName &p_tracker_name) const; /* return a list of likely/suggested action names for this tracker */
116
virtual TrackingStatus get_tracking_status() const; /* get the status of our current tracking */
117
virtual void trigger_haptic_pulse(const String &p_action_name, const StringName &p_tracker_name, double p_frequency, double p_amplitude, double p_duration_sec, double p_delay_sec = 0); /* trigger a haptic pulse */
118
119
/** specific to VR **/
120
virtual bool supports_play_area_mode(XRInterface::PlayAreaMode p_mode); /* query if this interface supports this play area mode */
121
virtual XRInterface::PlayAreaMode get_play_area_mode() const; /* get the current play area mode */
122
virtual bool set_play_area_mode(XRInterface::PlayAreaMode p_mode); /* change the play area mode, note that this should return false if the mode is not available */
123
virtual PackedVector3Array get_play_area() const; /* if available, returns an array of vectors denoting the play area the player can move around in */
124
125
/** specific to AR **/
126
virtual bool get_anchor_detection_is_enabled() const;
127
virtual void set_anchor_detection_is_enabled(bool p_enable);
128
virtual int get_camera_feed_id();
129
130
/** rendering and internal **/
131
132
// These methods are called from the main thread.
133
virtual Transform3D get_camera_transform() = 0; /* returns the position of our camera, only used for updating reference frame. For monoscopic this is equal to the views transform, for stereoscopic this should be an average */
134
virtual void process() = 0;
135
136
// These methods can be called from both main and render thread.
137
virtual Size2 get_render_target_size() = 0; /* returns the recommended render target size per eye for this device */
138
virtual uint32_t get_view_count() = 0; /* returns the view count we need (1 is monoscopic, 2 is stereoscopic but can be more) */
139
140
// These methods are called from the rendering thread.
141
virtual Transform3D get_transform_for_view(uint32_t p_view, const Transform3D &p_cam_transform) = 0; /* get each views transform */
142
virtual Projection get_projection_for_view(uint32_t p_view, double p_aspect, double p_z_near, double p_z_far) = 0; /* get each view projection matrix */
143
virtual RID get_color_texture(); /* obtain color output texture (if applicable) */
144
virtual RID get_depth_texture(); /* obtain depth output texture (if applicable, used for reprojection) */
145
virtual RID get_velocity_texture(); /* obtain velocity output texture (if applicable, used for spacewarp) */
146
virtual RID get_velocity_depth_texture();
147
virtual Size2i get_velocity_target_size();
148
virtual Rect2i get_render_region();
149
virtual void pre_render() {}
150
virtual bool pre_draw_viewport(RID p_render_target) { return true; } /* inform XR interface we are about to start our viewport draw process */
151
virtual Vector<BlitToScreen> post_draw_viewport(RID p_render_target, const Rect2 &p_screen_rect) = 0; /* inform XR interface we finished our viewport draw process */
152
virtual void end_frame() {}
153
154
/** passthrough **/
155
156
virtual bool is_passthrough_supported() { return false; }
157
virtual bool is_passthrough_enabled() { return false; }
158
virtual bool start_passthrough() { return false; }
159
virtual void stop_passthrough() {}
160
161
/** environment blend mode **/
162
virtual Array get_supported_environment_blend_modes();
163
virtual XRInterface::EnvironmentBlendMode get_environment_blend_mode() const { return XR_ENV_BLEND_MODE_OPAQUE; }
164
virtual bool set_environment_blend_mode(EnvironmentBlendMode mode) { return false; }
165
166
/** VRS **/
167
virtual RID get_vrs_texture(); /* obtain VRS texture */
168
virtual VRSTextureFormat get_vrs_texture_format() { return XR_VRS_TEXTURE_FORMAT_UNIFIED; }
169
170
XRInterface();
171
~XRInterface();
172
};
173
174
VARIANT_ENUM_CAST(XRInterface::Capabilities);
175
VARIANT_ENUM_CAST(XRInterface::TrackingStatus);
176
VARIANT_ENUM_CAST(XRInterface::PlayAreaMode);
177
VARIANT_ENUM_CAST(XRInterface::EnvironmentBlendMode);
178
VARIANT_ENUM_CAST(XRInterface::VRSTextureFormat);
179
180