bevy_defer 0.18.0

A simple asynchronous runtime for executing async coroutines.
Documentation
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
use crate::{access::AsyncEntity, AccessError, AccessResult, OwnedReadonlyQueryState};
use bevy::ecs::{
    entity::Entity,
    hierarchy::{ChildOf, Children},
    name::Name,
    query::QueryFilter,
    relationship::{Relationship, RelationshipTarget},
    world::World,
};
use std::{any::type_name, marker::PhantomData};

/// An [`Entity`] or a descriptor of an `Entity` that may or may not exist in the `World`.
pub trait VirtualEntity {
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity>;
}

impl VirtualEntity for Entity {
    fn try_get_entity(&self, _: &World) -> AccessResult<Entity> {
        Ok(*self)
    }
}

#[derive(Debug)]
pub struct FilterChild<E: VirtualEntity, F: QueryFilter + 'static, R: RelationshipTarget = Children>
{
    inner: E,
    p: PhantomData<(F, R)>,
}

impl<E: VirtualEntity + Clone, F: QueryFilter + 'static, R: RelationshipTarget> Clone
    for FilterChild<E, F, R>
{
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Copy, F: QueryFilter + 'static, R: RelationshipTarget> Copy
    for FilterChild<E, F, R>
{
}

impl<E: VirtualEntity, F: QueryFilter + 'static, R: RelationshipTarget> FilterChild<E, F, R> {
    pub fn new(entity: E) -> Self {
        Self {
            inner: entity,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity, F: QueryFilter + 'static, R: RelationshipTarget> VirtualEntity
    for FilterChild<E, F, R>
{
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity> {
        let parent = self.inner.try_get_entity(world)?;
        let Some(children) = world.get::<R>(parent) else {
            return Err(AccessError::TypedChildNotFound {
                query: type_name::<F>(),
            });
        };
        let mut query = OwnedReadonlyQueryState::<Entity, F>::new(world);
        let mut q = query.iter_many(children.iter());
        match q.next() {
            Some(entity) => Ok(entity),
            None => Err(AccessError::TypedChildNotFound {
                query: type_name::<F>(),
            }),
        }
    }
}

#[derive(Debug)]
pub struct IndexedChild<E: VirtualEntity, R: RelationshipTarget = Children> {
    inner: E,
    index: usize,
    p: PhantomData<R>,
}

impl<E: VirtualEntity, R: RelationshipTarget> IndexedChild<E, R> {
    pub fn new(entity: E, index: usize) -> Self {
        Self {
            inner: entity,
            index,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Clone, R: RelationshipTarget> Clone for IndexedChild<E, R> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            index: self.index,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Copy, R: RelationshipTarget> Copy for IndexedChild<E, R> {}

impl<E: VirtualEntity, R: RelationshipTarget> VirtualEntity for IndexedChild<E, R> {
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity> {
        let parent = self.inner.try_get_entity(world)?;
        if let Some(children) = world.get::<R>(parent) {
            children
                .iter()
                .nth(self.index)
                .ok_or(AccessError::ChildNotFound { index: self.index })
        } else {
            Err(AccessError::ChildNotFound { index: self.index })
        }
    }
}

#[derive(Debug)]
pub struct NamedChild<'t, E: VirtualEntity, R: RelationshipTarget = Children> {
    inner: E,
    name: &'t str,
    p: PhantomData<R>,
}

impl<'t, E: VirtualEntity, R: RelationshipTarget> NamedChild<'t, E, R> {
    pub fn new(entity: E, name: &'t str) -> Self {
        Self {
            inner: entity,
            name,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Clone, R: RelationshipTarget> Clone for NamedChild<'_, E, R> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            name: self.name,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Copy, R: RelationshipTarget> Copy for NamedChild<'_, E, R> {}

impl<E: VirtualEntity, R: RelationshipTarget> VirtualEntity for NamedChild<'_, E, R> {
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity> {
        let parent = self.inner.try_get_entity(world)?;
        if let Some(children) = world.get::<R>(parent) {
            for child in children.iter() {
                if world
                    .get::<Name>(child)
                    .is_some_and(|x| x.as_str() == self.name)
                {
                    return Ok(child);
                }
            }
        }
        Err(AccessError::NamedChildNotFound)
    }
}

#[derive(Debug)]
pub struct GetParent<E: VirtualEntity, R: Relationship = ChildOf> {
    inner: E,
    p: PhantomData<R>,
}

impl<E: VirtualEntity + Clone, R: Relationship> Clone for GetParent<E, R> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Copy, R: Relationship> Copy for GetParent<E, R> {}

impl<E: VirtualEntity, R: Relationship> GetParent<E, R> {
    pub fn new(entity: E) -> Self {
        Self {
            inner: entity,
            p: PhantomData,
        }
    }
}

#[derive(Debug)]
pub struct NamedDescendant<'t, E: VirtualEntity, R: RelationshipTarget = Children> {
    inner: E,
    name: &'t str,
    p: PhantomData<R>,
}

impl<'t, E: VirtualEntity, R: RelationshipTarget> NamedDescendant<'t, E, R> {
    pub fn new(entity: E, name: &'t str) -> Self {
        Self {
            inner: entity,
            name,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Clone, R: RelationshipTarget> Clone for NamedDescendant<'_, E, R> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            name: self.name,
            p: PhantomData,
        }
    }
}

impl<E: VirtualEntity + Copy, R: RelationshipTarget> Copy for NamedDescendant<'_, E, R> {}

fn get_descendant_recursive<R: RelationshipTarget>(
    world: &World,
    entity: Entity,
    f: &mut impl FnMut(&World, Entity) -> bool,
) -> Option<Entity> {
    if let Some(children) = world.get::<R>(entity) {
        for child in children.iter() {
            if f(world, child) {
                return Some(child);
            }
            if let Some(result) = get_descendant_recursive::<R>(world, child, f) {
                return Some(result);
            }
        }
    }
    None
}

impl<E: VirtualEntity, R: RelationshipTarget> VirtualEntity for NamedDescendant<'_, E, R> {
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity> {
        let entity = self.inner.try_get_entity(world)?;
        get_descendant_recursive::<R>(world, entity, &mut |world, entity| {
            world
                .get::<Name>(entity)
                .is_some_and(|x| x.as_str() == self.name)
        })
        .ok_or(AccessError::NamedChildNotFound)
    }
}

impl<E: VirtualEntity, R: Relationship> VirtualEntity for GetParent<E, R> {
    fn try_get_entity(&self, world: &World) -> AccessResult<Entity> {
        let parent = self.inner.try_get_entity(world)?;
        let Some(parent) = world.get::<R>(parent) else {
            return Err(AccessError::TypedParentNotFound {
                query: type_name::<R>(),
            });
        };
        Ok(parent.get())
    }
}

impl<E: VirtualEntity> AsyncEntity<E> {
    /// Obtain a child entity by index.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// # assert_eq!(
    /// entity.child(0)
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn child(self, index: usize) -> AsyncEntity<IndexedChild<E>> {
        AsyncEntity(IndexedChild::new(self.0, index))
    }

    /// Obtain a child entity by [`Name`].
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Name::new("bevy")).unwrap();
    /// # assert_eq!(
    /// entity.child_by_name("bevy")
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn child_by_name<'t>(self, name: &'t str) -> AsyncEntity<NamedChild<'t, E>> {
        AsyncEntity(NamedChild::new(self.0, name))
    }

    /// Obtain the first child that satisfies a filter.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// # assert_eq!(
    /// entity.child_by_filter::<With<Int>>()
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn child_by_filter<F: QueryFilter + 'static>(self) -> AsyncEntity<FilterChild<E, F>> {
        AsyncEntity(FilterChild::new(self.0))
    }

    /// Obtain a related entity by index.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// # assert_eq!(
    /// entity.related::<Children>(0)
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn related<R: RelationshipTarget>(self, index: usize) -> AsyncEntity<IndexedChild<E, R>> {
        AsyncEntity(IndexedChild::new(self.0, index))
    }

    /// Obtain a related entity by [`Name`].
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Name::new("bevy")).unwrap();
    /// # assert_eq!(
    /// entity.related_by_name::<Children>("bevy")
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn related_by_name<'t, R: RelationshipTarget>(
        self,
        name: &'t str,
    ) -> AsyncEntity<NamedChild<'t, E, R>> {
        AsyncEntity(NamedChild::new(self.0, name))
    }

    /// Obtain the first related entity that satisfies a filter.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// # assert_eq!(
    /// entity.related_by_filter::<With<Int>, Children>()
    /// # .realize_entity().unwrap().id(), child.id());
    /// # });
    /// ```
    pub fn related_by_filter<F: QueryFilter + 'static, R: RelationshipTarget>(
        self,
    ) -> AsyncEntity<FilterChild<E, F, R>> {
        AsyncEntity(FilterChild::new(self.0))
    }

    /// Obtain parent of an entity.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// #  assert_eq!(
    /// child.parent()
    /// # .realize_entity().unwrap().id(), entity.id());
    /// # });
    /// ```
    pub fn parent(self) -> AsyncEntity<GetParent<E>> {
        AsyncEntity(GetParent::new(self.0))
    }

    /// Obtain a related parent of an entity.
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child = entity.spawn_child(Int(1)).unwrap();
    /// # assert_eq!(
    /// child.related_parent::<ChildOf>()
    /// # .realize_entity().unwrap().id(), entity.id());
    /// # });
    /// ```
    pub fn related_parent<R: Relationship>(self) -> AsyncEntity<GetParent<E, R>> {
        AsyncEntity(GetParent::new(self.0))
    }

    /// Obtain a descendant entity by [`Name`].
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child1 = entity.spawn_child(Name::new("aaa")).unwrap();
    /// # let child2 = child1.spawn_child(Name::new("bevy")).unwrap();
    /// # assert_eq!(
    /// entity.descendant_by_name("bevy")
    /// # .realize_entity().unwrap().id(), child2.id());
    /// # });
    /// ```
    pub fn descendant_by_name<'t>(self, name: &'t str) -> AsyncEntity<NamedDescendant<'t, E>> {
        AsyncEntity(NamedDescendant::new(self.0, name))
    }

    /// Obtain a descendant entity by [`Name`].
    ///
    /// # Example
    ///
    /// ```
    /// # bevy_defer::test_spawn!({
    /// # let entity = AsyncWorld.spawn_bundle(Int(1));
    /// # let child1 = entity.spawn_child(Name::new("aaa")).unwrap();
    /// # let child2 = child1.spawn_child(Name::new("bevy")).unwrap();
    /// # assert_eq!(
    /// entity.related_descendant_by_name::<Children>("bevy")
    /// # .realize_entity().unwrap().id(), child2.id());
    /// # });
    /// ```
    pub fn related_descendant_by_name<'t, R: RelationshipTarget>(
        self,
        name: &'t str,
    ) -> AsyncEntity<NamedDescendant<'t, E, R>> {
        AsyncEntity(NamedDescendant::new(self.0, name))
    }
}