diff --git a/Cargo.toml b/Cargo.toml index 957e4e7a7e..6a20f08160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2750,6 +2750,17 @@ description = "Test rendering of many cameras and lights" category = "Stress Tests" wasm = true +[[example]] +name = "many_components" +path = "examples/stress_tests/many_components.rs" +doc-scrape-examples = true + +[package.metadata.example.many_components] +name = "Many Components (and Entities and Systems)" +description = "Test large ECS systems" +category = "Stress Tests" +wasm = false + [[example]] name = "many_cubes" path = "examples/stress_tests/many_cubes.rs" diff --git a/examples/README.md b/examples/README.md index af1df35e07..bf4e04d0f5 100644 --- a/examples/README.md +++ b/examples/README.md @@ -463,6 +463,7 @@ Example | Description [Many Animated Sprites](../examples/stress_tests/many_animated_sprites.rs) | Displays many animated sprites in a grid arrangement with slight offsets to their animation timers. Used for performance testing. [Many Buttons](../examples/stress_tests/many_buttons.rs) | Test rendering of many UI elements [Many Cameras & Lights](../examples/stress_tests/many_cameras_lights.rs) | Test rendering of many cameras and lights +[Many Components (and Entities and Systems)](../examples/stress_tests/many_components.rs) | Test large ECS systems [Many Cubes](../examples/stress_tests/many_cubes.rs) | Simple benchmark to test per-entity draw overhead. Run with the `sphere` argument to test frustum culling [Many Foxes](../examples/stress_tests/many_foxes.rs) | Loads an animated fox model and spawns lots of them. Good for testing skinned mesh performance. Takes an unsigned integer argument for the number of foxes to spawn. Defaults to 1000 [Many Gizmos](../examples/stress_tests/many_gizmos.rs) | Test rendering of many gizmos diff --git a/examples/stress_tests/many_components.rs b/examples/stress_tests/many_components.rs new file mode 100644 index 0000000000..4bb87d322d --- /dev/null +++ b/examples/stress_tests/many_components.rs @@ -0,0 +1,196 @@ +//! Stress test for large ECS worlds. +//! +//! Running this example: +//! +//! ``` +//! cargo run --profile stress-test --example many_components [] [] [] +//! ``` +//! +//! `num_entities`: The number of entities in the world (must be nonnegative) +//! `num_components`: the number of components in the world (must be at least 10) +//! `num_systems`: the number of systems in the world (must be nonnegative) +//! +//! If no valid number is provided, for each argument there's a reasonable default. + +use bevy::{ + diagnostic::{ + DiagnosticPath, DiagnosticsPlugin, FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin, + }, + ecs::{ + component::{ComponentDescriptor, ComponentId, StorageType}, + system::QueryParamBuilder, + world::FilteredEntityMut, + }, + log::LogPlugin, + prelude::{App, In, IntoSystem, Query, Schedule, SystemParamBuilder, Update}, + ptr::OwningPtr, + MinimalPlugins, +}; + +use rand::prelude::{Rng, SeedableRng, SliceRandom}; +use rand_chacha::ChaCha8Rng; +use std::{alloc::Layout, num::Wrapping}; + +// A simple system that matches against several components and does some menial calculation to create +// some non-trivial load. +fn base_system(access_components: In>, mut query: Query) { + for mut filtered_entity in &mut query { + // We calculate Faulhaber's formula mod 256 with n = value and p = exponent. + // See https://en.wikipedia.org/wiki/Faulhaber%27s_formula + // The time is takes to compute this depends on the number of entities and the values in + // each entity. This is to ensure that each system takes a different amount of time. + let mut total: Wrapping = Wrapping(0); + let mut exponent: u32 = 1; + for component_id in &access_components.0 { + // find the value of the component + let ptr = filtered_entity.get_by_id(*component_id).unwrap(); + + #[expect(unsafe_code)] + // SAFETY: All components have a u8 layout + let value: u8 = unsafe { *ptr.deref::() }; + + for i in 0..=value { + let mut product = Wrapping(1); + for _ in 1..=exponent { + product *= Wrapping(i); + } + total += product; + } + exponent += 1; + } + + // we assign this value to all the components we can write to + for component_id in &access_components.0 { + if let Some(ptr) = filtered_entity.get_mut_by_id(*component_id) { + #[expect(unsafe_code)] + // SAFETY: All components have a u8 layout + unsafe { + let mut value = ptr.with_type::(); + *value = total.0; + } + } + } + } +} + +fn stress_test(num_entities: u32, num_components: u32, num_systems: u32) { + let mut rng = ChaCha8Rng::seed_from_u64(42); + let mut app = App::default(); + let world = app.world_mut(); + + // register a bunch of components + let component_ids: Vec = (1..=num_components) + .map(|i| { + world.register_component_with_descriptor( + #[allow(unsafe_code)] + // SAFETY: + // we don't implement a drop function + // u8 is Sync and Send + unsafe { + ComponentDescriptor::new_with_layout( + format!("Component{}", i).to_string(), + StorageType::Table, + Layout::new::(), + None, + true, // is mutable + ) + }, + ) + }) + .collect(); + + // fill the schedule with systems + let mut schedule = Schedule::new(Update); + for _ in 1..=num_systems { + let num_access_components = rng.gen_range(1..10); + let access_components: Vec = component_ids + .choose_multiple(&mut rng, num_access_components) + .copied() + .collect(); + let system = (QueryParamBuilder::new(|builder| { + for &access_component in &access_components { + if rand::random::() { + builder.mut_id(access_component); + } else { + builder.ref_id(access_component); + } + } + }),) + .build_state(world) + .build_any_system(base_system); + schedule.add_systems((move || access_components.clone()).pipe(system)); + } + + // spawn a bunch of entities + for _ in 1..=num_entities { + let num_components = rng.gen_range(1..10); + let components = component_ids.choose_multiple(&mut rng, num_components); + + let mut entity = world.spawn_empty(); + for &component_id in components { + let value: u8 = rng.gen_range(0..255); + OwningPtr::make(value, |ptr| { + #[allow(unsafe_code)] + // SAFETY: + // component_id is from the same world + // value is u8, so ptr is a valid reference for component_id + unsafe { + entity.insert_by_id(component_id, ptr); + } + }); + } + } + + // overwrite Update schedule in the app + app.add_schedule(schedule); + app.add_plugins(MinimalPlugins) + .add_plugins(DiagnosticsPlugin) + .add_plugins(LogPlugin::default()) + .add_plugins(FrameTimeDiagnosticsPlugin) + .add_plugins(LogDiagnosticsPlugin::filtered(vec![DiagnosticPath::new( + "fps", + )])); + app.run(); +} + +#[expect(missing_docs)] +pub fn main() { + const DEFAULT_NUM_ENTITIES: u32 = 50000; + const DEFAULT_NUM_COMPONENTS: u32 = 1000; + const DEFAULT_NUM_SYSTEMS: u32 = 800; + + // take input + let num_entities = std::env::args() + .nth(1) + .and_then(|string| string.parse::().ok()) + .unwrap_or_else(|| { + println!( + "No valid number of entities provided, using default {}", + DEFAULT_NUM_ENTITIES + ); + DEFAULT_NUM_ENTITIES + }); + let num_components = std::env::args() + .nth(2) + .and_then(|string| string.parse::().ok()) + .and_then(|n| if n >= 10 { Some(n) } else { None }) + .unwrap_or_else(|| { + println!( + "No valid number of components provided (>= 10), using default {}", + DEFAULT_NUM_COMPONENTS + ); + DEFAULT_NUM_COMPONENTS + }); + let num_systems = std::env::args() + .nth(3) + .and_then(|string| string.parse::().ok()) + .unwrap_or_else(|| { + println!( + "No valid number of systems provided, using default {}", + DEFAULT_NUM_SYSTEMS + ); + DEFAULT_NUM_SYSTEMS + }); + + stress_test(num_entities, num_components, num_systems); +}