Create entities in the Bevy game engine with a simple config file.
yaml
name: "Simple Enemy"
template: Creature
components:
- type: Enemy
- type: Attack
value:
damage: 10
- type: Armed
value:
weapons: [ "laser sword", "ray-blaster" ]
primary: "laser sword"
Define entities easily with config files:
```yaml name: Player components:
- type: Controllable
- type: Health value: max: 20 ```
Inherit functionality from other prototypes:
yaml name: Skeleton templates: Enemy, Creature components: # ...
Include assets to be loaded:
```yaml name: Bullet components:
- type: CustomSprite value: texture: "path/to/texture.png" ```
toml
[dependencies]
bevy_proto = "0.2.0"
Then add it to your app like so:
```rust use bevy_proto::ProtoPlugin;
fn main() { App::build() .addplugins(DefaultPlugins) // add dependent plugins, resources, etc. here // ... // Add this plugin after any other plugins/resources needed for prototype preparation .addplugin(ProtoPlugin::default()) // other plugins, resources, not needed by ProtoPlugin // ... .run(); } ```
Before you install it into your project, please understand the limitations of this crate. While it makes working with some entities easier, it may come at a bit of a performance cost depending on your project.
According to the bench
example, spawning a Prototype can be about 1.8x slower than defining the
entity in the system manually (this may vary depending on the data being loaded). This difference becomes much smaller for release builds, but is still a tad slower. For some projects,— except maybe for those that are really intensive or
spawn lots of entities very frequently,— this may not be a problem.
Still, it's good to consider the drawbacks of using this system and see if it's right for your own project. Here's a breakdown of the top current/potential issues:
Dynamic Dispatch - This crate uses dynamic trait objects to add or remove any component on a Prototype. However, this comes at a cost since the compiler can no longer know the types in advance, preventing things like static dispatch, monomorphization, etc.
Load Time - This is likely not noticeable for smaller projects (although I haven't tested with hundreds of Prototypes myself), but the crate currently does need to load all Prototypes at startup. This is so it can prepare any other needed resources and assets in order to spawn the Prototype.
Assets - This crate also (currently) stores all required assets in its own resource ProtoData
. This means that
resources that may only be needed once will be kept loaded during the entire lifetime of the application, since it
holds onto the handle. This can be prevented by hosting the asset on a separate component and manually creating the handles when spawning that Prototype:
rust
// Attach fictional OtherComponent with asset "my_asset" which should unload when despawned
prototype.spawn(...).insert(OtherComponent(my_asset));
With all of that said, this package is meant to speed up development and make changes to entity archetypes easier for humans (especially non-programmers) to interact with. If the performance hit is too much for your project, you are better off sticking with the standard methods of defining entities.
Check out these examples for more details as to how to use this crate:
First, create a struct that implements ProtoComponent
. This can be done one of two ways:
For simple components, ProtoComponent
may be derived:
```rust use bevy_proto::ProtoComponent;
struct Movement { #[proto_comp(Copy)] speed: u16 }
// Also works on tuple structs:
struct Inventory (
// Optional: #[proto_comp(Clone)]
Option
By default, the fields of a
ProtoComponent
are cloned into spawned entities. This can be somewhat controlled via theproto_comp
attribute, which can tell the compiler to use theCopy
trait instead.
Otherwise, you can define them manually (the two attributes are required with this method):
```rust use bevy_proto::{ProtoComponent, ProtoCommands}; use bevy::ecs::system::EntityCommands; use bevy::prelude::*; use serde::{Deserialize, Serialize};
struct Inventory(Option
impl ProtoComponent for Inventory {
// Required
fn insertself(&self, commands: &mut ProtoCommands, assetserver: &Res
A
ProtoComponent
does not need to be a component itself. It can be used purely as a DTO to generate other components or bundles. You have full access to theEntityCommands
so you can insert bundles or even multiple components at once.
Define the Prototype in a config file. By default YAML (and by extension, valid JSON) files are supported:
```yaml
name: "Adventurer" components: - type: Inventory value: ["sword"] - type: Movement value: speed: 10 ```
By default, all
.yaml
and.json
files in theassets/prototypes/
directory are processed as Prototypes.
A Prototype can also include a template. A template can be any Prototype and is used to define common components that should be inserted into its inheritors. This is helpful for reducing duplicate markup and quickly refactoring collections of Prototypes.
First, define the template:
```yaml
name: "NPC" components: - type: Inventory value: ~ - type: Movement value: speed: 10 ```
Then inherit the template in another Prototype:
```yaml
name: "Peasant" template: NPC ```
You can also override template components:
```yaml
name: "Adventurer" template: NPC components: - type: Inventory value: ["sword"] ```
Multiple templates can be specified as well. However, conflicting components will be overridden in reverse order (templates listed first can override templates listed last):
```yaml
name: "Fast Adventurer" templates: Speedy, NPC # "Speedy" may override "NPC" components: - type: Inventory value: ["sword"] ```
Templates can be specified as a standard YAML list or as a comma-separated string (like in the example above). Additionally,
templates
is an alias fortemplate
, so either one may be used.
To spawn a prototype, add a system that has access to:
mut Commands
Res<ProtoData>
Res<AssetServer>
Then write something like the following:
```rust
fn spawnadventurer(mut commands: Commands, data: Res
// Spawns in our "Adventurer" Prototype
proto.spawn(&mut commands, &data, &asset_server);
} ```
The spawn(...)
method returns the EntityCommands
used to create the entity. This allows you to add additional
components, bundles, etc.:
rust
let adventurer: Entity = proto
.spawn( & mut commands, & data, & asset_server)
.insert(Friendly)
.insert(Named("Bob".to_string()))
.id();
For Prototypes that need access to assets, you can get access one of two ways:
The first is by loading the asset when being spawned in. This is preferred because it means the asset can be unloaded when no longer needed.
```rust use bevy::ecs::system::EntityCommands; use bevy::prelude::*; use serde::{Deserialize, Serialize}; use bevy_proto::{HandlePath, ProtoComponent, ProtoCommands};
struct Renderable { pub texture_path: HandlePath }
impl ProtoComponent for Creature {
// Required
fn insertself(&self, commands: &mut ProtoCommands, assetserver: &Res
entity.insert(SomeTexture {
texture_handle: handle
});
}
} ```
The second, is by preparing the asset for later use. This retains the asset in the ProtoData
resource, which then must
be disposed of manually when no longer needed. Setting up an asset is done via the prepare
method:
```rust use bevy::ecs::system::EntityCommands; use bevy::prelude::*; use serde::{Deserialize, Serialize}; use bevy_proto::{HandlePath, ProtoComponent, ProtoCommands, Prototypical};
struct Renderable { pub texture_path: HandlePath }
impl ProtoComponent for Creature {
// Required
fn insertself(&self, commands: &mut ProtoCommands, assetserver: &Res
entity.insert_bundle(SpriteBundle {
material,
..Default::default()
});
}
fn prepare(
&self,
world: &mut World,
prototype: &Box<dyn Prototypical>,
data: &mut ProtoData
) {
// === Load Handles === //
let asset_server = world.get_resource::<AssetServer>().unwrap();
let texture: Handle<Texture> = asset_server.load(self.texture_path.as_str());
// === Transform Handles === //
let mut mat_res = world.get_resource_mut::<Assets<ColorMaterial>>().unwrap();
let mat = mat_res.add(texture.into());
// === Save Handles === //
data.insert_handle(prototype, self, &self.texture_path, mat);
}
} ```
The default Prototype object looks like this:
```rust
pub struct Prototype {
/// The name of this prototype
pub name: String,
/// The names of this prototype's templates (if any)
pub templates: Vec
However, you can use your own Prototype object. Any struct that implements Prototypical
can be used in place of the default Prototype. Then you just have to supply your own deserializer to the ProtoPlugin
object.
```rust use bevy_proto::{ProtoDataOptions, ProtoDeserializer, ProtoPlugin, Prototypical};
struct CustomProtoDeserializer;
impl ProtoDeserializer for CustomProtoDeserializer {
fn deserialize(&self, data: &str) -> Option
fn main() { App::build() .addplugins(DefaultPlugins) // ... .addplugin(ProtoPlugin { options: ProtoDataOptions { // Specify your custom deserializer deserializer: Box::new(CustomProtoDeserializer),
// You can also change the prototype directories here
directories: vec![String::from("assets/prototypes")],
// And specify whether you want the prototype files to be recursively loaded
recursive_loading: false,
// You can also update the allowed extensions within those directories
extensions: Some(vec!["yaml", "json"]),
}
})
// other plugins, resources, not needed by ProtoPlugin
// ...
.run();
} ```
All fields in
ProtoDataOptions
must be specified if you wish to use a custom deserializer. Even if you want to continue using the defaults, you must still specify them. The additional fields shown above are also the defaults if you wish to copy them.