2020-11-17 02:18:00 +00:00
|
|
|
use anyhow::Result;
|
|
|
|
use bevy::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2021-01-30 20:55:13 +00:00
|
|
|
.insert_resource(Message("42".to_string()))
|
2021-07-27 23:42:36 +00:00
|
|
|
.add_system(parse_message_system.chain(handler_system))
|
2020-11-17 02:18:00 +00:00
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Message(String);
|
|
|
|
|
|
|
|
// this system produces a Result<usize> output by trying to parse the Message resource
|
|
|
|
fn parse_message_system(message: Res<Message>) -> Result<usize> {
|
|
|
|
Ok(message.0.parse::<usize>()?)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This system takes a Result<usize> input and either prints the parsed value or the error message
|
2021-03-11 00:27:30 +00:00
|
|
|
// Try changing the Message resource to something that isn't an integer. You should see the error
|
|
|
|
// message printed.
|
2020-11-17 02:18:00 +00:00
|
|
|
fn handler_system(In(result): In<Result<usize>>) {
|
|
|
|
match result {
|
|
|
|
Ok(value) => println!("parsed message: {}", value),
|
|
|
|
Err(err) => println!("encountered an error: {:?}", err),
|
|
|
|
}
|
|
|
|
}
|