Skip to content

A simple plugin to add fallible systems to Bevy game engine

License

Notifications You must be signed in to change notification settings

barsoosayque/bevy_fallible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bevy_fallible

Crates.io Docs.rs License

A simple plugin to install fallible systems to bevy

API

Library provides two main components: #[fallible_system] attribute macro and SystemErrorEvent struct. Essentially, every fallible_system will generate a SystemErrorEvent event if it results in an error, and that's about it.

For simplier usage, there is fallibleSystemPlugin to register everything you'll need to recieve error events.

Example

// Some system that might fail
#[fallible_system]
fn system(asset_server: Res<AssetServer>) -> anyhow::Result<()> {
    let handle: Handle<Texture> = asset_server.load("texture")?;
}

// Let's make another system to read every event about other
// systems failures and report !
#[derive(Default)]
struct ReportSystemState{ reader: EventReader<SystemErrorEvent> }
fn report_system(mut state: Local<ReportSystemState>, mut events: ResMut<Events<SystemErrorEvent>>) {
    for event in state.reader.iter(&mut events) {
        println!("Error in {}: {}", event.system_name, event.error); 
    }
}

fn main() {
    App::build()
        .add_plugin(fallibleSystemPlugin)
        .add_startup_system(system.system())
        .add_system(report_system.system())
        .run();
}

About

A simple plugin to add fallible systems to Bevy game engine

Topics

Resources

License

Stars

Watchers

Forks

Languages