1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* 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 euclid::{Point2D, Rect, RigidTransform3D, Transform3D};
#[cfg(feature = "ipc")]
use serde::{Deserialize, Serialize};
use crate::{
DiscoveryAPI, Display, EntityType, Error, Floor, Handedness, Input, InputId, InputSource,
LeftEye, Native, RightEye, SelectEvent, SelectKind, TargetRayMode, Triangle, Viewer, Viewport,
Visibility, WebXrReceiver, WebXrSender,
};
/// A trait for discovering mock XR devices
pub trait MockDiscoveryAPI<GL>: 'static {
fn simulate_device_connection(
&mut self,
init: MockDeviceInit,
receiver: WebXrReceiver<MockDeviceMsg>,
) -> Result<Box<dyn DiscoveryAPI<GL>>, Error>;
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockDeviceInit {
pub floor_origin: Option<RigidTransform3D<f32, Floor, Native>>,
pub supports_inline: bool,
pub supports_vr: bool,
pub supports_ar: bool,
pub viewer_origin: Option<RigidTransform3D<f32, Viewer, Native>>,
pub views: MockViewsInit,
pub supported_features: Vec<String>,
pub world: Option<MockWorld>,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockViewInit<Eye> {
pub transform: RigidTransform3D<f32, Viewer, Eye>,
pub projection: Transform3D<f32, Eye, Display>,
pub viewport: Rect<i32, Viewport>,
/// field of view values, in radians
pub fov: Option<(f32, f32, f32, f32)>,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub enum MockViewsInit {
Mono(MockViewInit<Viewer>),
Stereo(MockViewInit<LeftEye>, MockViewInit<RightEye>),
}
#[derive(Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub enum MockDeviceMsg {
SetViewerOrigin(Option<RigidTransform3D<f32, Viewer, Native>>),
SetFloorOrigin(Option<RigidTransform3D<f32, Floor, Native>>),
SetViews(MockViewsInit),
AddInputSource(MockInputInit),
MessageInputSource(InputId, MockInputMsg),
VisibilityChange(Visibility),
SetWorld(MockWorld),
ClearWorld,
Disconnect(WebXrSender<()>),
SetBoundsGeometry(Vec<Point2D<f32, Floor>>),
SimulateResetPose,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockInputInit {
pub source: InputSource,
pub pointer_origin: Option<RigidTransform3D<f32, Input, Native>>,
pub grip_origin: Option<RigidTransform3D<f32, Input, Native>>,
pub supported_buttons: Vec<MockButton>,
}
#[derive(Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub enum MockInputMsg {
SetHandedness(Handedness),
SetTargetRayMode(TargetRayMode),
SetProfiles(Vec<String>),
SetPointerOrigin(Option<RigidTransform3D<f32, Input, Native>>),
SetGripOrigin(Option<RigidTransform3D<f32, Input, Native>>),
/// Note: SelectEvent::Select here refers to a complete Select event,
/// not just the end event, i.e. it refers to
/// <https://immersive-web.github.io/webxr-test-api/#dom-fakexrinputcontroller-simulateselect>
TriggerSelect(SelectKind, SelectEvent),
Disconnect,
Reconnect,
SetSupportedButtons(Vec<MockButton>),
UpdateButtonState(MockButton),
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockRegion {
pub faces: Vec<Triangle>,
pub ty: EntityType,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockWorld {
pub regions: Vec<MockRegion>,
}
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub enum MockButtonType {
Grip,
Touchpad,
Thumbstick,
OptionalButton,
OptionalThumbstick,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "ipc", derive(Serialize, Deserialize))]
pub struct MockButton {
pub button_type: MockButtonType,
pub pressed: bool,
pub touched: bool,
pub pressed_value: f32,
pub x_value: f32,
pub y_value: f32,
}
|