//! How to use an external thread to run an infinite task and communicate with a channel. use bevy::prelude::*; // Using crossbeam_channel instead of std as std `Receiver` is `!Sync` use crossbeam_channel::{bounded, Receiver}; use rand::{Rng, SeedableRng}; use rand_chacha::ChaCha8Rng; fn main() { App::new() .add_event::() .add_plugins(DefaultPlugins) .add_systems(Startup, setup) .add_systems(Update, (spawn_text, move_text)) .add_systems(FixedUpdate, read_stream) .insert_resource(Time::::from_seconds(0.5)) .run(); } #[derive(Resource, Deref)] struct StreamReceiver(Receiver); #[derive(Event)] struct StreamEvent(u32); fn setup(mut commands: Commands) { commands.spawn(Camera2d); let (tx, rx) = bounded::(1); std::thread::spawn(move || { // We're seeding the PRNG here to make this example deterministic for testing purposes. // This isn't strictly required in practical use unless you need your app to be deterministic. let mut rng = ChaCha8Rng::seed_from_u64(19878367467713); loop { // Everything here happens in another thread // This is where you could connect to an external data source // This will block until the previous value has been read in system `read_stream` tx.send(rng.gen_range(0..2000)).unwrap(); } }); commands.insert_resource(StreamReceiver(rx)); } // This system reads from the receiver and sends events to Bevy fn read_stream(receiver: Res, mut events: EventWriter) { for from_stream in receiver.try_iter() { events.send(StreamEvent(from_stream)); } } fn spawn_text(mut commands: Commands, mut reader: EventReader) { for (per_frame, event) in reader.read().enumerate() { commands.spawn(( Text2d::new(event.0.to_string()), TextLayout::new_with_justify(JustifyText::Center), Transform::from_xyz(per_frame as f32 * 100.0, 300.0, 0.0), )); } } fn move_text( mut commands: Commands, mut texts: Query<(Entity, &mut Transform), With>, time: Res