bevy/examples/entity_builder_comparison.rs

185 lines
4.9 KiB
Rust
Raw Normal View History

use bevy::prelude::*;
fn main() {
App::build()
.add_default_plugins()
.add_startup_system(setup)
.run();
}
#[allow(dead_code)]
2020-02-08 07:17:51 +00:00
fn create_entities_insert_vec(
world: &mut World,
plane_handle: Handle<Mesh>,
cube_handle: Handle<Mesh>,
) {
// plane
world.insert(
(),
vec![(
2020-02-24 07:50:44 +00:00
plane_handle,
2020-02-18 03:06:12 +00:00
StandardMaterial {
albedo: Color::rgb(0.1, 0.2, 0.1),
..Default::default()
2020-02-18 03:06:12 +00:00
},
LocalToWorld::identity(),
Translation::new(0.0, 0.0, 0.0),
)],
);
// cube
world.insert(
(),
vec![(
cube_handle,
2020-02-18 03:06:12 +00:00
StandardMaterial {
albedo: Color::rgb(0.5, 0.3, 0.3),
..Default::default()
2020-02-18 03:06:12 +00:00
},
LocalToWorld::identity(),
Translation::new(0.0, 0.0, 1.0),
)],
);
// light
world.insert(
(),
vec![(
2020-02-18 03:06:12 +00:00
Light::default(),
LocalToWorld::identity(),
Translation::new(4.0, -4.0, 5.0),
Rotation::from_euler_angles(0.0, 0.0, 0.0),
)],
);
// camera
world.insert(
(),
vec![(
2020-03-22 04:55:33 +00:00
Camera::default(),
ActiveCamera,
LocalToWorld(Mat4::look_at_rh(
Vec3::new(3.0, 8.0, 5.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 0.0, 1.0),
)),
)],
);
}
#[allow(dead_code)]
2020-02-08 07:17:51 +00:00
fn create_entities_builder_add_component(
world: &mut World,
plane_handle: Handle<Mesh>,
cube_handle: Handle<Mesh>,
) {
world
.build()
// plane
.build_entity()
2020-02-24 07:50:44 +00:00
.add(plane_handle)
2020-02-18 03:06:12 +00:00
.add(StandardMaterial {
albedo: Color::rgb(0.1, 0.2, 0.1),
..Default::default()
2020-02-18 03:06:12 +00:00
})
2020-02-08 07:17:51 +00:00
.add(LocalToWorld::identity())
.add(Translation::new(0.0, 0.0, 0.0))
// cube
.build_entity()
2020-02-08 07:17:51 +00:00
.add(cube_handle)
2020-02-18 03:06:12 +00:00
.add(StandardMaterial {
albedo: Color::rgb(0.5, 0.3, 0.3),
..Default::default()
2020-02-18 03:06:12 +00:00
})
2020-02-08 07:17:51 +00:00
.add(LocalToWorld::identity())
.add(Translation::new(0.0, 0.0, 1.0))
// light
.build_entity()
2020-02-18 03:06:12 +00:00
.add(Light::default())
2020-02-08 07:17:51 +00:00
.add(LocalToWorld::identity())
.add(Translation::new(4.0, -4.0, 5.0))
.add(Rotation::from_euler_angles(0.0, 0.0, 0.0))
// camera
.build_entity()
2020-03-22 04:55:33 +00:00
.add(Camera::default())
2020-02-08 07:17:51 +00:00
.add(ActiveCamera)
.add(LocalToWorld(Mat4::look_at_rh(
Vec3::new(3.0, 8.0, 5.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 0.0, 1.0),
2020-04-07 20:25:01 +00:00
)));
}
2020-02-08 07:17:51 +00:00
fn create_entities_builder_archetype(
world: &mut World,
plane_handle: Handle<Mesh>,
plane_material_handle: Handle<StandardMaterial>,
2020-02-08 07:17:51 +00:00
cube_handle: Handle<Mesh>,
cube_material_handle: Handle<StandardMaterial>,
2020-02-08 07:17:51 +00:00
) {
world
.build()
// plane
2020-03-09 09:02:17 +00:00
.add_entity(MeshEntity {
2020-02-24 07:50:44 +00:00
mesh: plane_handle,
material: plane_material_handle,
2020-02-18 03:06:12 +00:00
..Default::default()
})
// cube
2020-03-09 09:02:17 +00:00
.add_entity(MeshEntity {
mesh: cube_handle,
material: cube_material_handle,
2020-03-22 04:55:33 +00:00
translation: Translation::new(0.0, 0.0, 1.0),
2020-02-18 03:06:12 +00:00
..Default::default()
})
// light
2020-03-09 09:02:17 +00:00
.add_entity(LightEntity {
translation: Translation::new(4.0, -4.0, 5.0),
2020-02-18 03:06:12 +00:00
..Default::default()
})
// camera
2020-03-09 09:02:17 +00:00
.add_entity(CameraEntity {
local_to_world: LocalToWorld(Mat4::look_at_rh(
Vec3::new(3.0, 8.0, 5.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 0.0, 1.0),
)),
2020-03-22 04:55:33 +00:00
..Default::default()
2020-04-07 20:25:01 +00:00
});
}
2020-03-09 06:19:07 +00:00
fn setup(world: &mut World, resources: &mut Resources) {
let mut mesh_storage = resources.get_mut::<AssetStorage<Mesh>>().unwrap();
let mut material_storage = resources
.get_mut::<AssetStorage<StandardMaterial>>()
.unwrap();
let cube_handle = mesh_storage.add(Mesh::from(shape::Cube));
let plane_handle = mesh_storage.add(Mesh::from(shape::Plane { size: 10.0 }));
let cube_material_handle = material_storage.add(StandardMaterial {
albedo: Color::rgb(0.5, 0.3, 0.3),
..Default::default()
});
let plane_material_handle = material_storage.add(StandardMaterial {
albedo: Color::rgb(0.1, 0.2, 0.1),
..Default::default()
});
// no-archetype precompile: 1.24 sec
// archetype precompile: 1.07 sec
// create_entities_insert_vec(world, plane_handle, cube_handle);
// no-archetype precompile: .93
// no-archetype precompile: .93
// create_entities_builder_add_component(world, plane_handle, cube_handle);
2020-02-08 07:17:51 +00:00
// archetype precompile: 0.65
create_entities_builder_archetype(
world,
plane_handle,
plane_material_handle,
cube_handle,
cube_material_handle,
);
}