An implementation of trait queries for the bevy game engine.
Before using this crate, you should be familiar with bevy: https://bevyengine.org/. The current published version depends on bevy 0.8, although there is a branch on github that supports the upcoming version.
This crate is implementation of the following RFC: https://github.com/bevyengine/rfcs/pull/39.
This crate is experimental, and not battle-tested. It seems to work in my personal testing, but it very well could contain undefined behavior. Use with caution (and miri!).
If you find a bug, please open an issue.
bevy-trait-query
extends the capabilities of bevy
by allowing you to query for components implementing a trait.
```rust use bevy::prelude::*; use bevytraitquery::{impltraitquery, RegisterExt};
// Some trait that we wish to use in queries. pub trait Tooltip: 'static { fn tooltip(&self) -> &str; }
// Add the necessary impls for querying. impltraitquery!(Tooltip);
struct Person(String);
impl Tooltip for Person { fn tooltip(&self) -> &str { &self.0 } }
struct Monster;
impl Tooltip for Monster { fn tooltip(&self) -> &str { "Run!" } }
fn main() {
App::new()
// We must register each trait impl, otherwise they are invisible to the game engine.
.registercomponentas::
fn setup(mut commands: Commands) { commands.spawn().insert(Person("Fourier".to_owned())); commands.spawn().insert(Monster); }
use bevytraitquery::One;
fn showtooltip(
// Query for entities with exactly one component implementing the trait.
query: Query
use bevytraitquery::All;
fn showalltooltips(
// Query that returns all trait impls for each entity.
query: Query
The performance of trait queries is quite competitive. Here are some benchmarks for simple cases:
| | Concrete type | One
On the nightly branch, performance is comparable to concrete queries:
| | Concrete type | One
MIT or APACHE-2.0