aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/xrjointspace.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-04-24 12:25:16 -0700
committerManish Goregaokar <manishsmail@gmail.com>2020-04-27 17:35:48 -0700
commit89fac8be5cca24b1d67259d8f27bd829e188a632 (patch)
tree30f5c8eca3cf1cda3bec58755010b9d3bffaa849 /components/script/dom/xrjointspace.rs
parentc89dc821ba8c5aa696024ac0fd41816ad5c3b68b (diff)
downloadservo-89fac8be5cca24b1d67259d8f27bd829e188a632.tar.gz
servo-89fac8be5cca24b1d67259d8f27bd829e188a632.zip
Add XRJointSpace
Diffstat (limited to 'components/script/dom/xrjointspace.rs')
-rw-r--r--components/script/dom/xrjointspace.rs60
1 files changed, 60 insertions, 0 deletions
diff --git a/components/script/dom/xrjointspace.rs b/components/script/dom/xrjointspace.rs
new file mode 100644
index 00000000000..4b31b0bc6a2
--- /dev/null
+++ b/components/script/dom/xrjointspace.rs
@@ -0,0 +1,60 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
+
+use crate::dom::bindings::reflector::reflect_dom_object;
+use crate::dom::bindings::root::DomRoot;
+use crate::dom::globalscope::GlobalScope;
+use crate::dom::xrsession::{ApiPose, XRSession};
+use crate::dom::xrspace::XRSpace;
+use dom_struct::dom_struct;
+use euclid::RigidTransform3D;
+use webxr_api::{BaseSpace, Frame, InputId, Joint, JointFrame, Space};
+
+#[dom_struct]
+pub struct XRJointSpace {
+ xrspace: XRSpace,
+ #[ignore_malloc_size_of = "defined in rust-webxr"]
+ input: InputId,
+ #[ignore_malloc_size_of = "defined in rust-webxr"]
+ joint: Joint,
+}
+
+impl XRJointSpace {
+ pub fn new_inherited(session: &XRSession, input: InputId, joint: Joint) -> XRJointSpace {
+ XRJointSpace {
+ xrspace: XRSpace::new_inherited(session),
+ input,
+ joint,
+ }
+ }
+
+ #[allow(unused)]
+ pub fn new(
+ global: &GlobalScope,
+ session: &XRSession,
+ input: InputId,
+ joint: Joint,
+ ) -> DomRoot<XRJointSpace> {
+ reflect_dom_object(Box::new(Self::new_inherited(session, input, joint)), global)
+ }
+
+ pub fn space(&self) -> Space {
+ let base = BaseSpace::Joint(self.input, self.joint);
+ let offset = RigidTransform3D::identity();
+ Space { base, offset }
+ }
+
+ pub fn frame<'a>(&self, frame: &'a Frame) -> Option<&'a JointFrame> {
+ frame
+ .inputs
+ .iter()
+ .find(|i| i.id == self.input)
+ .and_then(|i| i.hand.as_ref())
+ .and_then(|h| h.get(self.joint))
+ }
+
+ pub fn get_pose(&self, frame: &Frame) -> Option<ApiPose> {
+ self.frame(frame).map(|f| f.pose).map(|t| t.cast_unit())
+ }
+}