9 releases

new 0.3.1 Apr 27, 2025
0.3.0 Apr 27, 2025
0.2.6 Nov 30, 2024
0.2.5 Jul 21, 2024
0.1.0 Mar 9, 2024

#1549 in Game dev

Download history 64/week @ 2025-01-04 35/week @ 2025-01-11 28/week @ 2025-01-18 11/week @ 2025-01-25 20/week @ 2025-02-01 33/week @ 2025-02-08 28/week @ 2025-02-15 46/week @ 2025-02-22 35/week @ 2025-03-01 32/week @ 2025-03-08 40/week @ 2025-03-15 10/week @ 2025-03-22 10/week @ 2025-03-29 22/week @ 2025-04-05 32/week @ 2025-04-12 23/week @ 2025-04-19

88 downloads per month
Used in 10 crates (4 directly)

MIT license

39KB
450 lines

🛠️ Moonshine Utilities

crates.io downloads docs.rs license stars

Collection of utilities for Bevy.

Features

Expect<T>

A decorator for QueryData which panics if it doesn't match.

This helps avoid silent failures in systems due to missing components:

use bevy::prelude::*;
use moonshine_util::prelude::*;

#[derive(Component)]
struct A;

#[derive(Component)]
struct B;

#[derive(Bundle)]
struct AB {
    a: A, // Every `A` is expected to have a `B`
    b: B,
}

fn bad_system(mut commands: Commands) {
    commands.spawn(A); // BUG: Spawn A witout B!
}

fn unsafe_system(mut query: Query<(&A, &B)>) {
    for (a, b) in query.iter() {
        // An instance of `A` does exist, but this system skips over it silently!
    }
}

fn safe_system(mut query: Query<(&A, Expect<&B>)>) {
    for (a, b) in query.iter() {
        // This system will panic if an `A` instance is missing a `B`!
    }
}

Normally, expected components would just be added as required components. However, in some cases it may not be possible to add the required components, such as when dealing with third party crates or generic code.

Note that Expect<T> may also be used as a required component:

use bevy::prelude::*;
use moonshine_util::prelude::*;

#[derive(Component)]
struct A;

#[derive(Component)]
#[require(Expect<A>)] // Expect `A` to be present
struct B;

In this context, Expect<T> will panic if B is ever inserted into an entity without A.

Get<T> and FromQuery

An ergonomic and generic way to process repetitive query patterns:

use bevy::prelude::*;
use moonshine_util::prelude::*;

struct Height(f32);

impl FromQuery for Height {
    type Query = &'static GlobalTransform;

    fn map(data: &GlobalTransform) -> Self {
        Self(data.translation().y)
    }
}

fn average_height(query: Query<Get<Height>>) -> Height {
    // Transforms are so yesterday!
    let mut total_height = 0.0;
    let mut count = 0;
    for Height(h) in query.iter() {
        total_height += h;
        count += 1;
    }

    Height(total_height / count as f32)
}

HierarchyQuery

A convenient SystemParam for traversing and querying entity hierarchies:

use bevy::prelude::*;
use moonshine_util::hierarchy::HierarchyQuery;

#[derive(Component)]
struct Needle;

#[derive(Component)]
struct Haystack;

fn spawn_haystack(mut commands: Commands) {
    // A complex hierarchy ...
    commands.spawn(Haystack).with_children(|x| {
        x.spawn_empty().with_children(|y| {
            y.spawn_empty().with_children(|z| {
                z.spawn(Needle);
            });
        });
    });
}

fn find_needle(
    haystack: Query<Entity, With<Haystack>>,
    needle_query: Query<Entity, With<Needle>>,
    hierarchy: HierarchyQuery
) {
    let haystack = haystack.single().unwrap();
    for needle in hierarchy.descendants_deep(haystack) {
        // ...
    }
}

Some useful functions include:

  • fn parent(&self, Entity) -> Option<Entity>
  • fn children(&self, Entity) -> Iterator<Item = Entity>
  • fn ancestors(&self, Entity) -> Iterator<Item = Entity>
  • fn descendants_wide(&self, Entity) -> Iterator<Item = Entity>
  • fn descendants_deep(&self, Entity) -> Iterator<Item = Entity>

See documentation for details.

For even more convenient hierarchy traversal, check out 🌴 Moonshine Object.

RunSystemLoop

A trait similar to RunSystemOnce which allows you to run a system loop for testing purposes:

use bevy::prelude::*;
use moonshine_util::diagnostics::RunSystemLoop;

let mut world = World::new();
let outputs = world.run_system_loop(2, |mut commands: Commands| {
    commands.spawn_empty().id()
});

assert_eq!(outputs.len(), 2);

assert!(world.get_entity(outputs[0]).is_ok());
assert!(world.get_entity(outputs[1]).is_ok());

Utility Systems

A growing collection of simple and generic systems useful for constructing larger system pipelines:

  • has_event<T: Event>
  • has_resource<T: Resource>
  • remove_resource<T: Resource>
  • remove_resource_immediate<T: Resource>
  • remove_all_components<T: Component>

See documentation for details and usage examples.

Installation

Add the following to your Cargo.toml:

[dependencies]
moonshine-util = "0.2.7"

This crate is also included as part of 🍸 Moonshine Core.

Support

Please post an issue for any bugs, questions, or suggestions.

You may also contact me on the official Bevy Discord server as @Zeenobit.

Dependencies

~10–16MB
~223K SLoC