-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement XR_FB_hand_tracking_aim extension wrapper
- Loading branch information
1 parent
7b04e0e
commit d637884
Showing
7 changed files
with
506 additions
and
19 deletions.
There are no files selected for viewing
88 changes: 88 additions & 0 deletions
88
common/src/main/cpp/extensions/include/openxr_fb_hand_tracking_aim_extension_wrapper.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/**************************************************************************/ | ||
/* openxr_fb_hand_tracking_aim_extension_wrapper.h */ | ||
/**************************************************************************/ | ||
/* This file is part of: */ | ||
/* GODOT XR */ | ||
/* https://godotengine.org */ | ||
/**************************************************************************/ | ||
/* Copyright (c) 2022-present Godot XR contributors (see CONTRIBUTORS.md) */ | ||
/* */ | ||
/* Original contributed implementation: */ | ||
/* Copyright (c) 2022-2023 MattaKis Consulting Kft. (Migeran) */ | ||
/* */ | ||
/* 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. */ | ||
/**************************************************************************/ | ||
|
||
#ifndef OPENXR_FB_HAND_TRACKING_AIM_EXTENSION_WRAPPER_H | ||
#define OPENXR_FB_HAND_TRACKING_AIM_EXTENSION_WRAPPER_H | ||
|
||
#include <openxr/openxr.h> | ||
#include <godot_cpp/classes/open_xr_extension_wrapper_extension.hpp> | ||
#include <godot_cpp/classes/open_xr_interface.hpp> | ||
#include <godot_cpp/classes/xr_positional_tracker.hpp> | ||
|
||
#include <map> | ||
|
||
using namespace godot; | ||
|
||
// Wrapper for the set of Facebook XR hand tracking aim extension. | ||
class OpenXRFbHandTrackingAimExtensionWrapper : public OpenXRExtensionWrapperExtension { | ||
GDCLASS(OpenXRFbHandTrackingAimExtensionWrapper, OpenXRExtensionWrapperExtension); | ||
|
||
public: | ||
using Hand = OpenXRInterface::Hand; | ||
|
||
godot::Dictionary _get_requested_extensions() override; | ||
|
||
void _on_state_ready() override; | ||
|
||
void _on_instance_destroyed() override; | ||
|
||
uint64_t _set_hand_joint_locations_and_get_next_pointer(int32_t p_hand_index, void *p_next_pointer) override; | ||
|
||
bool is_enabled() { | ||
return fb_hand_tracking_aim_ext; | ||
} | ||
|
||
void _on_process() override; | ||
|
||
static OpenXRFbHandTrackingAimExtensionWrapper *get_singleton(); | ||
|
||
OpenXRFbHandTrackingAimExtensionWrapper(); | ||
~OpenXRFbHandTrackingAimExtensionWrapper(); | ||
|
||
protected: | ||
static void _bind_methods(); | ||
|
||
private: | ||
std::map<godot::String, bool *> request_extensions; | ||
|
||
void cleanup(); | ||
|
||
static OpenXRFbHandTrackingAimExtensionWrapper *singleton; | ||
|
||
bool fb_hand_tracking_aim_ext = false; | ||
|
||
Ref<XRPositionalTracker> trackers[Hand::HAND_MAX]; | ||
|
||
XrHandTrackingAimStateFB aim_state[Hand::HAND_MAX]; | ||
}; | ||
|
||
#endif // OPENXR_FB_HAND_TRACKING_AIM_EXTENSION_WRAPPER_H |
164 changes: 164 additions & 0 deletions
164
common/src/main/cpp/extensions/openxr_fb_hand_tracking_aim_extension_wrapper.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
/**************************************************************************/ | ||
/* openxr_fb_hand_tracking_aim_extension_wrapper.cpp */ | ||
/**************************************************************************/ | ||
/* This file is part of: */ | ||
/* GODOT XR */ | ||
/* https://godotengine.org */ | ||
/**************************************************************************/ | ||
/* Copyright (c) 2022-present Godot XR contributors (see CONTRIBUTORS.md) */ | ||
/* */ | ||
/* Original contributed implementation: */ | ||
/* Copyright (c) 2022-2023 MattaKis Consulting Kft. (Migeran) */ | ||
/* */ | ||
/* 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 "include/openxr_fb_hand_tracking_aim_extension_wrapper.h" | ||
|
||
#include <godot_cpp/classes/xr_pose.hpp> | ||
#include <godot_cpp/variant/utility_functions.hpp> | ||
|
||
using namespace godot; | ||
|
||
OpenXRFbHandTrackingAimExtensionWrapper *OpenXRFbHandTrackingAimExtensionWrapper::singleton = nullptr; | ||
|
||
OpenXRFbHandTrackingAimExtensionWrapper *OpenXRFbHandTrackingAimExtensionWrapper::get_singleton() { | ||
if (singleton == nullptr) { | ||
singleton = memnew(OpenXRFbHandTrackingAimExtensionWrapper()); | ||
} | ||
return singleton; | ||
} | ||
|
||
OpenXRFbHandTrackingAimExtensionWrapper::OpenXRFbHandTrackingAimExtensionWrapper() : | ||
OpenXRExtensionWrapperExtension() { | ||
ERR_FAIL_COND_MSG(singleton != nullptr, "An OpenXRFbHandTrackingAimExtensionWrapper singleton already exists."); | ||
|
||
request_extensions[XR_FB_HAND_TRACKING_AIM_EXTENSION_NAME] = &fb_hand_tracking_aim_ext; | ||
singleton = this; | ||
} | ||
|
||
OpenXRFbHandTrackingAimExtensionWrapper::~OpenXRFbHandTrackingAimExtensionWrapper() { | ||
cleanup(); | ||
} | ||
|
||
void OpenXRFbHandTrackingAimExtensionWrapper::_bind_methods() { | ||
ClassDB::bind_method(D_METHOD("is_enabled"), &OpenXRFbHandTrackingAimExtensionWrapper::is_enabled); | ||
} | ||
|
||
void OpenXRFbHandTrackingAimExtensionWrapper::cleanup() { | ||
XRServer *xr_server = XRServer::get_singleton(); | ||
|
||
for (int i = 0; i < Hand::HAND_MAX; i++) { | ||
if (xr_server != nullptr) { | ||
xr_server->remove_tracker(trackers[i]); | ||
} | ||
trackers[i].unref(); | ||
} | ||
|
||
fb_hand_tracking_aim_ext = false; | ||
} | ||
|
||
godot::Dictionary OpenXRFbHandTrackingAimExtensionWrapper::_get_requested_extensions() { | ||
godot::Dictionary result; | ||
for (auto ext : request_extensions) { | ||
godot::String key = ext.first; | ||
uint64_t value = reinterpret_cast<uint64_t>(ext.second); | ||
result[key] = (godot::Variant)value; | ||
} | ||
return result; | ||
} | ||
|
||
void OpenXRFbHandTrackingAimExtensionWrapper::_on_state_ready() { | ||
XRServer *xr_server = XRServer::get_singleton(); | ||
|
||
if (xr_server == nullptr) { | ||
return; | ||
} | ||
|
||
trackers[Hand::HAND_LEFT].instantiate(); | ||
trackers[Hand::HAND_LEFT]->set_tracker_type(XRServer::TRACKER_CONTROLLER); | ||
trackers[Hand::HAND_LEFT]->set_tracker_name("/user/fbhandaim/left"); | ||
trackers[Hand::HAND_LEFT]->set_tracker_desc("FB Aim tracker Left"); | ||
xr_server->add_tracker(trackers[Hand::HAND_LEFT]); | ||
|
||
trackers[Hand::HAND_RIGHT].instantiate(); | ||
trackers[Hand::HAND_RIGHT]->set_tracker_type(XRServer::TRACKER_CONTROLLER); | ||
trackers[Hand::HAND_RIGHT]->set_tracker_name("/user/fbhandaim/right"); | ||
trackers[Hand::HAND_RIGHT]->set_tracker_desc("FB Aim tracker Right"); | ||
xr_server->add_tracker(trackers[Hand::HAND_RIGHT]); | ||
} | ||
|
||
void OpenXRFbHandTrackingAimExtensionWrapper::_on_instance_destroyed() { | ||
cleanup(); | ||
} | ||
|
||
uint64_t OpenXRFbHandTrackingAimExtensionWrapper::_set_hand_joint_locations_and_get_next_pointer(int32_t p_hand_index, void *p_next_pointer) { | ||
if (!fb_hand_tracking_aim_ext) { | ||
return reinterpret_cast<uint64_t>(p_next_pointer); | ||
} | ||
|
||
aim_state[p_hand_index].type = XR_TYPE_HAND_TRACKING_AIM_STATE_FB; | ||
aim_state[p_hand_index].next = p_next_pointer; | ||
aim_state[p_hand_index].status = 0; | ||
|
||
return reinterpret_cast<uint64_t>(&aim_state[p_hand_index]); | ||
} | ||
|
||
void OpenXRFbHandTrackingAimExtensionWrapper::_on_process() { | ||
if (!is_enabled()) { | ||
return; | ||
} | ||
|
||
for (int i = 0; i < Hand::HAND_MAX; i++) { | ||
if (!trackers[i].is_valid()) { | ||
continue; | ||
} | ||
|
||
XrPosef aim_pose = aim_state[i].aimPose; | ||
XrQuaternionf aim_quat = aim_pose.orientation; | ||
XrVector3f aim_position = aim_pose.position; | ||
Quaternion quat = Quaternion(aim_quat.x, aim_quat.y, aim_quat.z, aim_quat.w); | ||
Vector3 origin = Vector3(aim_position.x, aim_position.y, aim_position.z); | ||
|
||
Transform3D transform = Transform3D(quat, origin); | ||
Vector3 linear_velocity = Vector3(0.0, 0.0, 0.0); | ||
Vector3 angular_velocity = Vector3(0.0, 0.0, 0.0); | ||
XRPose::TrackingConfidence confidence = XRPose::TrackingConfidence::XR_TRACKING_CONFIDENCE_LOW; | ||
|
||
if (!(aim_state[i].status & XR_HAND_TRACKING_AIM_VALID_BIT_FB)) { | ||
confidence = XRPose::TrackingConfidence::XR_TRACKING_CONFIDENCE_NONE; | ||
} else if (aim_state[i].status & XR_HAND_TRACKING_AIM_COMPUTED_BIT_FB) { | ||
confidence = XRPose::TrackingConfidence::XR_TRACKING_CONFIDENCE_HIGH; | ||
} | ||
|
||
trackers[i]->set_pose("default", transform, linear_velocity, angular_velocity, confidence); | ||
trackers[i]->set_input("index_pinch", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_INDEX_PINCHING_BIT_FB)); | ||
trackers[i]->set_input("middle_pinch", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_MIDDLE_PINCHING_BIT_FB)); | ||
trackers[i]->set_input("ring_pinch", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_RING_PINCHING_BIT_FB)); | ||
trackers[i]->set_input("little_pinch", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_LITTLE_PINCHING_BIT_FB)); | ||
trackers[i]->set_input("index_pinch_strength", aim_state[i].pinchStrengthIndex); | ||
trackers[i]->set_input("middle_pinch_strength", aim_state[i].pinchStrengthMiddle); | ||
trackers[i]->set_input("ring_pinch_strength", aim_state[i].pinchStrengthRing); | ||
trackers[i]->set_input("little_pinch_strength", aim_state[i].pinchStrengthLittle); | ||
trackers[i]->set_input("system_gesture", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_SYSTEM_GESTURE_BIT_FB)); | ||
trackers[i]->set_input("menu_gesture", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_MENU_PRESSED_BIT_FB)); | ||
trackers[i]->set_input("dominant_hand", (bool)(aim_state[i].status & XR_HAND_TRACKING_AIM_DOMINANT_HAND_BIT_FB)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.