Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/openxr/scene/openxr_render_model_manager.h
10278 views
1
/**************************************************************************/
2
/* openxr_render_model_manager.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 "openxr_render_model.h"
34
35
#include "scene/3d/node_3d.h"
36
#include "scene/resources/packed_scene.h"
37
#include "servers/xr/xr_positional_tracker.h"
38
39
#include <openxr/openxr.h>
40
41
class OpenXRRenderModelManager : public Node3D {
42
GDCLASS(OpenXRRenderModelManager, Node3D);
43
44
public:
45
enum RenderModelTracker {
46
RENDER_MODEL_TRACKER_ANY,
47
RENDER_MODEL_TRACKER_NONE_SET,
48
RENDER_MODEL_TRACKER_LEFT_HAND,
49
RENDER_MODEL_TRACKER_RIGHT_HAND,
50
};
51
52
virtual PackedStringArray get_configuration_warnings() const override;
53
54
void set_tracker(RenderModelTracker p_tracker);
55
RenderModelTracker get_tracker() const;
56
57
void set_make_local_to_pose(const String &p_action);
58
String get_make_local_to_pose() const;
59
60
private:
61
HashMap<RID, Node3D *> render_models;
62
Node3D *container = nullptr;
63
64
bool is_dirty = false;
65
RenderModelTracker tracker = RENDER_MODEL_TRACKER_ANY;
66
String make_local_to_pose;
67
68
// cached values
69
Ref<XRPositionalTracker> positional_tracker;
70
XrPath xr_path = XR_NULL_PATH;
71
72
bool _has_filters();
73
void _on_render_model_added(RID p_render_model);
74
void _on_render_model_removed(RID p_render_model);
75
void _on_render_model_top_level_path_changed(RID p_path);
76
void _update_models();
77
78
protected:
79
static void _bind_methods();
80
81
void _notification(int p_what);
82
};
83
84
VARIANT_ENUM_CAST(OpenXRRenderModelManager::RenderModelTracker);
85
86