summaryrefslogtreecommitdiffstats
path: root/modules/openxr/openxr_interface.h
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2023-10-03 18:41:01 +1100
committerBastiaan Olij <mux213@gmail.com>2023-10-05 13:37:26 +1100
commit50693a54201eeb6abef5702143cc88b8706dee92 (patch)
tree6b4a6f89f2b4c81468da2e003ae90b276ea2d632 /modules/openxr/openxr_interface.h
parentbfd78bb917887cfc1fd842ba23570394cad8bedb (diff)
downloadredot-engine-50693a54201eeb6abef5702143cc88b8706dee92.tar.gz
OpenXR - add access to hand joint validity flags
Diffstat (limited to 'modules/openxr/openxr_interface.h')
-rw-r--r--modules/openxr/openxr_interface.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/openxr/openxr_interface.h b/modules/openxr/openxr_interface.h
index 8e24c8dce9..51ef4ea228 100644
--- a/modules/openxr/openxr_interface.h
+++ b/modules/openxr/openxr_interface.h
@@ -111,6 +111,7 @@ public:
virtual PackedStringArray get_suggested_tracker_names() const override;
virtual TrackingStatus get_tracking_status() const override;
+ bool is_hand_tracking_supported();
bool is_eye_gaze_interaction_supported();
bool initialize_on_startup() const;
@@ -222,6 +223,17 @@ public:
HAND_JOINT_MAX = 26,
};
+ enum HandJointFlags {
+ HAND_JOINT_NONE = 0,
+ HAND_JOINT_ORIENTATION_VALID = 1,
+ HAND_JOINT_ORIENTATION_TRACKED = 2,
+ HAND_JOINT_POSITION_VALID = 4,
+ HAND_JOINT_POSITION_TRACKED = 8,
+ HAND_JOINT_LINEAR_VELOCITY_VALID = 16,
+ HAND_JOINT_ANGULAR_VELOCITY_VALID = 32,
+ };
+
+ BitField<HandJointFlags> get_hand_joint_flags(Hand p_hand, HandJoints p_joint) const;
Quaternion get_hand_joint_rotation(Hand p_hand, HandJoints p_joint) const;
Vector3 get_hand_joint_position(Hand p_hand, HandJoints p_joint) const;
float get_hand_joint_radius(Hand p_hand, HandJoints p_joint) const;
@@ -236,5 +248,6 @@ public:
VARIANT_ENUM_CAST(OpenXRInterface::Hand)
VARIANT_ENUM_CAST(OpenXRInterface::HandMotionRange)
VARIANT_ENUM_CAST(OpenXRInterface::HandJoints)
+VARIANT_BITFIELD_CAST(OpenXRInterface::HandJointFlags)
#endif // OPENXR_INTERFACE_H