Skip to content

Commit aefe1f0

Browse files
carthymm
andauthored
Schedule-First: the new and improved add_systems (bevyengine#8079)
Co-authored-by: Mike <[email protected]>
1 parent bca4b36 commit aefe1f0

File tree

258 files changed

+2120
-2741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+2120
-2741
lines changed

benches/benches/bevy_ecs/components/archetype_updates.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn setup(system_count: usize) -> (World, Schedule) {
99
fn empty() {}
1010
let mut schedule = Schedule::new();
1111
for _ in 0..system_count {
12-
schedule.add_system(empty);
12+
schedule.add_systems(empty);
1313
}
1414
schedule.run(&mut world);
1515
(world, schedule)

benches/benches/bevy_ecs/empty_archetypes.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ fn empty_archetypes(criterion: &mut Criterion) {
154154
let mut group = criterion.benchmark_group("empty_archetypes");
155155
for archetype_count in [10, 100, 500, 1000, 2000, 5000, 10000] {
156156
let (mut world, mut schedule) = setup(true, |schedule| {
157-
schedule.add_system(iter);
157+
schedule.add_systems(iter);
158158
});
159159
add_archetypes(&mut world, archetype_count);
160160
world.clear_entities();
@@ -185,7 +185,7 @@ fn empty_archetypes(criterion: &mut Criterion) {
185185
}
186186
for archetype_count in [10, 100, 500, 1000, 2000, 5000, 10000] {
187187
let (mut world, mut schedule) = setup(true, |schedule| {
188-
schedule.add_system(for_each);
188+
schedule.add_systems(for_each);
189189
});
190190
add_archetypes(&mut world, archetype_count);
191191
world.clear_entities();
@@ -216,7 +216,7 @@ fn empty_archetypes(criterion: &mut Criterion) {
216216
}
217217
for archetype_count in [10, 100, 500, 1000, 2000, 5000, 10000] {
218218
let (mut world, mut schedule) = setup(true, |schedule| {
219-
schedule.add_system(par_for_each);
219+
schedule.add_systems(par_for_each);
220220
});
221221
add_archetypes(&mut world, archetype_count);
222222
world.clear_entities();

benches/benches/bevy_ecs/scheduling/run_condition.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn run_condition_yes(criterion: &mut Criterion) {
1919
fn empty() {}
2020
for amount in 0..21 {
2121
let mut schedule = Schedule::new();
22-
schedule.add_system(empty.run_if(yes));
22+
schedule.add_systems(empty.run_if(yes));
2323
for _ in 0..amount {
2424
schedule.add_systems((empty, empty, empty, empty, empty).distributive_run_if(yes));
2525
}
@@ -42,7 +42,7 @@ pub fn run_condition_no(criterion: &mut Criterion) {
4242
fn empty() {}
4343
for amount in 0..21 {
4444
let mut schedule = Schedule::new();
45-
schedule.add_system(empty.run_if(no));
45+
schedule.add_systems(empty.run_if(no));
4646
for _ in 0..amount {
4747
schedule.add_systems((empty, empty, empty, empty, empty).distributive_run_if(no));
4848
}
@@ -72,7 +72,7 @@ pub fn run_condition_yes_with_query(criterion: &mut Criterion) {
7272
}
7373
for amount in 0..21 {
7474
let mut schedule = Schedule::new();
75-
schedule.add_system(empty.run_if(yes_with_query));
75+
schedule.add_systems(empty.run_if(yes_with_query));
7676
for _ in 0..amount {
7777
schedule.add_systems(
7878
(empty, empty, empty, empty, empty).distributive_run_if(yes_with_query),
@@ -101,7 +101,7 @@ pub fn run_condition_yes_with_resource(criterion: &mut Criterion) {
101101
}
102102
for amount in 0..21 {
103103
let mut schedule = Schedule::new();
104-
schedule.add_system(empty.run_if(yes_with_resource));
104+
schedule.add_systems(empty.run_if(yes_with_resource));
105105
for _ in 0..amount {
106106
schedule.add_systems(
107107
(empty, empty, empty, empty, empty).distributive_run_if(yes_with_resource),

benches/benches/bevy_ecs/scheduling/running_systems.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn empty_systems(criterion: &mut Criterion) {
2323
for amount in 0..5 {
2424
let mut schedule = Schedule::new();
2525
for _ in 0..amount {
26-
schedule.add_system(empty);
26+
schedule.add_systems(empty);
2727
}
2828
schedule.run(&mut world);
2929
group.bench_function(&format!("{:03}_systems", amount), |bencher| {

benches/benches/bevy_ecs/scheduling/schedule.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bevy_app::App;
1+
use bevy_app::{App, Update};
22
use bevy_ecs::prelude::*;
33
use criterion::Criterion;
44

@@ -72,7 +72,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
7272
group.measurement_time(std::time::Duration::from_secs(15));
7373

7474
// Method: generate a set of `graph_size` systems which have a One True Ordering.
75-
// Add system to the schedule with full constraints. Hopefully this should be maximimally
75+
// Add system to the schedule with full constraints. Hopefully this should be maximally
7676
// difficult for bevy to figure out.
7777
let labels: Vec<_> = (0..1000).map(|i| NumSet(i)).collect();
7878

@@ -83,7 +83,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
8383
bencher.iter(|| {
8484
let mut app = App::new();
8585
for _ in 0..graph_size {
86-
app.add_system(empty_system);
86+
app.add_systems(Update, empty_system);
8787
}
8888
app.update();
8989
});
@@ -93,7 +93,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
9393
group.bench_function(format!("{graph_size}_schedule"), |bencher| {
9494
bencher.iter(|| {
9595
let mut app = App::new();
96-
app.add_system(empty_system.in_set(DummySet));
96+
app.add_systems(Update, empty_system.in_set(DummySet));
9797

9898
// Build a fully-connected dependency graph describing the One True Ordering.
9999
// Not particularly realistic but this can be refined later.
@@ -105,7 +105,7 @@ pub fn build_schedule(criterion: &mut Criterion) {
105105
for label in &labels[i + 1..graph_size] {
106106
sys = sys.before(*label);
107107
}
108-
app.add_system(sys);
108+
app.add_systems(Update, sys);
109109
}
110110
// Run the app for a single frame.
111111
// This is necessary since dependency resolution does not occur until the game runs.

crates/bevy_animation/src/lib.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use std::ops::Deref;
66
use std::time::Duration;
77

8-
use bevy_app::{App, CoreSet, Plugin};
8+
use bevy_app::{App, Plugin, PostUpdate};
99
use bevy_asset::{AddAsset, Assets, Handle};
1010
use bevy_core::Name;
1111
use bevy_ecs::prelude::*;
@@ -550,10 +550,9 @@ impl Plugin for AnimationPlugin {
550550
app.add_asset::<AnimationClip>()
551551
.register_asset_reflect::<AnimationClip>()
552552
.register_type::<AnimationPlayer>()
553-
.add_system(
554-
animation_player
555-
.in_base_set(CoreSet::PostUpdate)
556-
.before(TransformSystem::TransformPropagate),
553+
.add_systems(
554+
PostUpdate,
555+
animation_player.before(TransformSystem::TransformPropagate),
557556
);
558557
}
559558
}

0 commit comments

Comments
 (0)