123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /**************************************************************************/
- /* xr_pose.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_pose.h"
- #include "servers/xr_server.h"
- void XRPose::_bind_methods() {
- BIND_ENUM_CONSTANT(XR_TRACKING_CONFIDENCE_NONE);
- BIND_ENUM_CONSTANT(XR_TRACKING_CONFIDENCE_LOW);
- BIND_ENUM_CONSTANT(XR_TRACKING_CONFIDENCE_HIGH);
- ClassDB::bind_method(D_METHOD("set_has_tracking_data", "has_tracking_data"), &XRPose::set_has_tracking_data);
- ClassDB::bind_method(D_METHOD("get_has_tracking_data"), &XRPose::get_has_tracking_data);
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "has_tracking_data"), "set_has_tracking_data", "get_has_tracking_data");
- ClassDB::bind_method(D_METHOD("set_name", "name"), &XRPose::set_name);
- ClassDB::bind_method(D_METHOD("get_name"), &XRPose::get_name);
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "name"), "set_name", "get_name");
- ClassDB::bind_method(D_METHOD("set_transform", "transform"), &XRPose::set_transform);
- ClassDB::bind_method(D_METHOD("get_transform"), &XRPose::get_transform);
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "transform"), "set_transform", "get_transform");
- ClassDB::bind_method(D_METHOD("get_adjusted_transform"), &XRPose::get_adjusted_transform);
- ClassDB::bind_method(D_METHOD("set_linear_velocity", "velocity"), &XRPose::set_linear_velocity);
- ClassDB::bind_method(D_METHOD("get_linear_velocity"), &XRPose::get_linear_velocity);
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "linear_velocity"), "set_linear_velocity", "get_linear_velocity");
- ClassDB::bind_method(D_METHOD("set_angular_velocity", "velocity"), &XRPose::set_angular_velocity);
- ClassDB::bind_method(D_METHOD("get_angular_velocity"), &XRPose::get_angular_velocity);
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "angular_velocity"), "set_angular_velocity", "get_angular_velocity");
- ClassDB::bind_method(D_METHOD("set_tracking_confidence", "tracking_confidence"), &XRPose::set_tracking_confidence);
- ClassDB::bind_method(D_METHOD("get_tracking_confidence"), &XRPose::get_tracking_confidence);
- ADD_PROPERTY(PropertyInfo(Variant::INT, "tracking_confidence"), "set_tracking_confidence", "get_tracking_confidence");
- }
- void XRPose::set_has_tracking_data(const bool p_has_tracking_data) {
- has_tracking_data = p_has_tracking_data;
- }
- bool XRPose::get_has_tracking_data() const {
- return has_tracking_data;
- }
- void XRPose::set_name(const StringName &p_name) {
- name = p_name;
- }
- StringName XRPose::get_name() const {
- return name;
- }
- void XRPose::set_transform(const Transform3D p_transform) {
- transform = p_transform;
- }
- Transform3D XRPose::get_transform() const {
- return transform;
- }
- Transform3D XRPose::get_adjusted_transform() const {
- Transform3D adjusted_transform = transform;
- XRServer *xr_server = XRServer::get_singleton();
- ERR_FAIL_NULL_V(xr_server, transform);
- // apply world scale
- adjusted_transform.origin *= xr_server->get_world_scale();
- // apply reference frame
- adjusted_transform = xr_server->get_reference_frame() * adjusted_transform;
- return adjusted_transform;
- }
- void XRPose::set_linear_velocity(const Vector3 p_velocity) {
- linear_velocity = p_velocity;
- }
- Vector3 XRPose::get_linear_velocity() const {
- return linear_velocity;
- }
- void XRPose::set_angular_velocity(const Vector3 p_velocity) {
- angular_velocity = p_velocity;
- }
- Vector3 XRPose::get_angular_velocity() const {
- return angular_velocity;
- }
- void XRPose::set_tracking_confidence(const XRPose::TrackingConfidence p_tracking_confidence) {
- tracking_confidence = p_tracking_confidence;
- }
- XRPose::TrackingConfidence XRPose::get_tracking_confidence() const {
- return tracking_confidence;
- }
|