forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ParallelCommands system parameter (bevyengine#4749)
(follow-up to bevyengine#4423) # Objective Currently, it isn't possible to easily fire commands from within par_for_each blocks. This PR allows for issuing commands from within parallel scopes.
- Loading branch information
1 parent
670f874
commit 3d00402
Showing
4 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
use std::cell::Cell; | ||
|
||
use thread_local::ThreadLocal; | ||
|
||
use crate::{ | ||
entity::Entities, | ||
prelude::World, | ||
system::{SystemParam, SystemParamFetch, SystemParamState}, | ||
}; | ||
|
||
use super::{CommandQueue, Commands}; | ||
|
||
#[doc(hidden)] | ||
#[derive(Default)] | ||
/// The internal [`SystemParamState`] of the [`ParallelCommands`] type | ||
pub struct ParallelCommandsState { | ||
thread_local_storage: ThreadLocal<Cell<CommandQueue>>, | ||
} | ||
|
||
/// An alternative to [`Commands`] that can be used in parallel contexts, such as those in [`Query::par_for_each`](crate::system::Query::par_for_each) | ||
/// | ||
/// Note: Because command application order will depend on how many threads are ran, non-commutative commands may result in non-deterministic results. | ||
/// | ||
/// Example: | ||
/// ``` | ||
/// # use bevy_ecs::prelude::*; | ||
/// # use bevy_tasks::ComputeTaskPool; | ||
/// # | ||
/// # #[derive(Component)] | ||
/// # struct Velocity; | ||
/// # impl Velocity { fn magnitude(&self) -> f32 { 42.0 } } | ||
/// fn parallel_command_system( | ||
/// mut query: Query<(Entity, &Velocity)>, | ||
/// par_commands: ParallelCommands | ||
/// ) { | ||
/// query.par_for_each(32, |(entity, velocity)| { | ||
/// if velocity.magnitude() > 10.0 { | ||
/// par_commands.command_scope(|mut commands| { | ||
/// commands.entity(entity).despawn(); | ||
/// }); | ||
/// } | ||
/// }); | ||
/// } | ||
/// # bevy_ecs::system::assert_is_system(parallel_command_system); | ||
///``` | ||
pub struct ParallelCommands<'w, 's> { | ||
state: &'s mut ParallelCommandsState, | ||
entities: &'w Entities, | ||
} | ||
|
||
impl SystemParam for ParallelCommands<'_, '_> { | ||
type Fetch = ParallelCommandsState; | ||
} | ||
|
||
impl<'w, 's> SystemParamFetch<'w, 's> for ParallelCommandsState { | ||
type Item = ParallelCommands<'w, 's>; | ||
|
||
unsafe fn get_param( | ||
state: &'s mut Self, | ||
_: &crate::system::SystemMeta, | ||
world: &'w World, | ||
_: u32, | ||
) -> Self::Item { | ||
ParallelCommands { | ||
state, | ||
entities: world.entities(), | ||
} | ||
} | ||
} | ||
|
||
// SAFE: no component or resource access to report | ||
unsafe impl SystemParamState for ParallelCommandsState { | ||
fn init(_: &mut World, _: &mut crate::system::SystemMeta) -> Self { | ||
Self::default() | ||
} | ||
|
||
fn apply(&mut self, world: &mut World) { | ||
for cq in self.thread_local_storage.iter_mut() { | ||
cq.get_mut().apply(world); | ||
} | ||
} | ||
} | ||
|
||
impl<'w, 's> ParallelCommands<'w, 's> { | ||
pub fn command_scope<R>(&self, f: impl FnOnce(Commands) -> R) -> R { | ||
let store = &self.state.thread_local_storage; | ||
let command_queue_cell = store.get_or_default(); | ||
let mut command_queue = command_queue_cell.take(); | ||
|
||
let r = f(Commands::new_from_entities( | ||
&mut command_queue, | ||
self.entities, | ||
)); | ||
|
||
command_queue_cell.set(command_queue); | ||
r | ||
} | ||
} |