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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
mod anim;
mod camera;
mod control;
mod data;
mod ext;
mod geom;
mod light;
mod meta;
mod scene;
mod transform;
use crate::*;
pub use {
anim::*, camera::*, control::*, data::*, ext::*, geom::*, light::*, meta::*, scene::*,
transform::*,
};
#[derive(Clone, Debug)]
pub struct Address(pub String);
pub trait ParseLibrary: XNode {
const LIBRARY: &'static str;
fn extract_element(e: &LibraryElement) -> Option<&Library<Self>>;
}
#[derive(Clone, Debug)]
pub struct Library<T> {
pub asset: Option<Box<Asset>>,
pub items: Vec<T>,
pub extra: Vec<Extra>,
}
impl<T: ParseLibrary> XNode for Library<T> {
const NAME: &'static str = T::LIBRARY;
fn parse(element: &Element) -> Result<Self> {
debug_assert_eq!(element.name(), Self::NAME);
let mut it = element.children().peekable();
Ok(Library {
asset: Asset::parse_opt_box(&mut it)?,
items: T::parse_list(&mut it)?,
extra: Extra::parse_many(it)?,
})
}
}
macro_rules! mk_libraries {
(@mkdoc $($doc:expr, $name:ident, $arg:ident,)*) => {
#[derive(Clone, Debug)]
pub enum LibraryElement {
$(#[doc = $doc] $name(Library<$arg>),)*
}
};
($($(#[derive(Traversable $($mark:literal)?)])? $name:ident($arg:ident) = $s:literal,)*) => {
$(
$(impl Traversable $($mark)? for $arg {
fn traverse<'a, E>(
doc: &'a Document,
f: impl FnMut(&'a $arg) -> Result<(), E>,
) -> Result<(), E> {
doc.iter().try_for_each(f)
}
})?
impl ParseLibrary for $arg {
const LIBRARY: &'static str = $s;
fn extract_element(e: &LibraryElement) -> Option<&Library<Self>> {
if let LibraryElement::$name(arg) = e {
Some(arg)
} else {
None
}
}
}
)*
mk_libraries! {
@mkdoc $(
concat!("Declares a module of [`", stringify!($arg), "`] elements."),
$name, $arg,
)*
}
impl LibraryElement {
pub fn parse(e: &Element) -> Result<Option<Self>> {
Ok(Some(match e.name() {
$($arg::LIBRARY => Self::$name(Library::parse(e)?),)*
_ => return Ok(None),
}))
}
}
}
}
mk_libraries! {
Animations(Animation) = "library_animations",
#[derive(Traversable)] AnimationClips(AnimationClip) = "library_animation_clips",
#[derive(Traversable)] Cameras(Camera) = "library_cameras",
#[derive(Traversable)] Controllers(Controller) = "library_controllers",
#[derive(Traversable)] Effects(Effect) = "library_effects",
#[derive(Traversable)] ForceFields(ForceField) = "library_force_fields",
#[derive(Traversable)] Geometries(Geometry) = "library_geometries",
#[derive(Traversable)] Images(Image) = "library_images",
#[derive(Traversable)] Lights(Light) = "library_lights",
#[derive(Traversable)] Materials(Material) = "library_materials",
Nodes(Node) = "library_nodes",
#[derive(Traversable)] PhysicsMaterials(PhysicsMaterial) = "library_physics_materials",
#[derive(Traversable)] PhysicsModels(PhysicsModel) = "library_physics_models",
#[derive(Traversable)] PhysicsScenes(PhysicsScene) = "library_physics_scenes",
#[derive(Traversable)] VisualScenes(VisualScene) = "library_visual_scenes",
}
#[derive(Clone, Debug)]
pub struct Instance<T: Instantiate> {
pub sid: Option<String>,
pub url: UrlRef<T>,
pub data: T::Data,
pub extra: Vec<Extra>,
}
pub trait Instantiate {
const INSTANCE: &'static str;
type Data;
fn parse_data(e: &Element, it: &mut ElementIter<'_>) -> Result<Self::Data>;
}
impl<T: Instantiate> XNode for Instance<T> {
const NAME: &'static str = T::INSTANCE;
fn parse(element: &Element) -> Result<Self> {
debug_assert_eq!(element.name(), Self::NAME);
let mut it = element.children().peekable();
Ok(Instance {
sid: element.attr("sid").map(Into::into),
url: parse_attr(element.attr("url"))?.ok_or("missing url attribute")?,
data: T::parse_data(element, &mut it)?,
extra: Extra::parse_many(it)?,
})
}
}
pub enum DefInstance<T: Instantiate> {
Def(T),
Ref(Instance<T>),
}
impl<T: Instantiate + Debug> Debug for DefInstance<T>
where
T::Data: Debug,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Def(t) => f.debug_tuple("Def").field(t).finish(),
Self::Ref(t) => f.debug_tuple("Ref").field(t).finish(),
}
}
}
impl<T: Instantiate + Clone> Clone for DefInstance<T>
where
T::Data: Clone,
{
fn clone(&self) -> Self {
match self {
Self::Def(t) => Self::Def(t.clone()),
Self::Ref(t) => Self::Ref(t.clone()),
}
}
}
impl<T: Instantiate + XNode> DefInstance<T> {
pub(crate) fn parse(e: &Element) -> Result<Option<Self>> {
Ok(if e.name() == T::NAME {
Some(Self::Def(T::parse(e)?))
} else if e.name() == T::INSTANCE {
Some(Self::Ref(Instance::parse(e)?))
} else {
None
})
}
}
macro_rules! basic_instance {
($($ty:ty => $val:expr;)*) => {
$(impl Instantiate for $ty {
const INSTANCE: &'static str = $val;
type Data = ();
fn parse_data(_: &Element, _: &mut ElementIter<'_>) -> Result<Self::Data> {
Ok(())
}
})*
}
}
basic_instance! {
Animation => "instance_animation";
Camera => "instance_camera";
ForceField => "instance_force_field";
Light => "instance_light";
Node => "instance_node";
PhysicsMaterial => "instance_physics_material";
PhysicsScene => "instance_physics_scene";
VisualScene => "instance_visual_scene";
}