2020-05-29 19:56:32 +00:00
|
|
|
use crate::Scene;
|
2020-07-17 01:47:51 +00:00
|
|
|
use bevy_app::prelude::*;
|
2020-05-29 19:56:32 +00:00
|
|
|
use bevy_asset::{AssetEvent, Assets, Handle};
|
2020-07-10 04:18:35 +00:00
|
|
|
use bevy_ecs::{Resources, World};
|
2020-05-29 19:56:32 +00:00
|
|
|
use bevy_type_registry::TypeRegistry;
|
2020-09-18 00:16:38 +00:00
|
|
|
use bevy_utils::HashMap;
|
2020-05-29 19:56:32 +00:00
|
|
|
use thiserror::Error;
|
2020-05-29 22:51:36 +00:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
|
|
|
struct InstanceInfo {
|
2020-09-18 00:16:38 +00:00
|
|
|
entity_map: HashMap<u32, bevy_ecs::Entity>,
|
2020-05-29 22:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
|
|
|
|
struct InstanceId(Uuid);
|
|
|
|
|
|
|
|
impl InstanceId {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
InstanceId(Uuid::new_v4())
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 06:53:00 +00:00
|
|
|
|
|
|
|
#[derive(Default)]
|
2020-05-29 19:56:32 +00:00
|
|
|
pub struct SceneSpawner {
|
2020-05-29 22:51:36 +00:00
|
|
|
spawned_scenes: HashMap<Handle<Scene>, Vec<InstanceId>>,
|
|
|
|
spawned_instances: HashMap<InstanceId, InstanceInfo>,
|
2020-05-29 19:56:32 +00:00
|
|
|
scene_asset_event_reader: EventReader<AssetEvent<Scene>>,
|
2020-09-18 00:16:38 +00:00
|
|
|
scenes_to_instance: Vec<Handle<Scene>>,
|
|
|
|
scenes_to_despawn: Vec<Handle<Scene>>,
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum SceneSpawnError {
|
|
|
|
#[error("Scene contains an unregistered component.")]
|
|
|
|
UnregisteredComponent { type_name: String },
|
|
|
|
#[error("Scene does not exist. Perhaps it is still loading?")]
|
|
|
|
NonExistentScene { handle: Handle<Scene> },
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SceneSpawner {
|
2020-09-18 00:16:38 +00:00
|
|
|
pub fn spawn(&mut self, scene_handle: Handle<Scene>) {
|
|
|
|
self.scenes_to_instance.push(scene_handle);
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
pub fn despawn(&mut self, scene_handle: Handle<Scene>) {
|
|
|
|
self.scenes_to_despawn.push(scene_handle);
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
pub fn despawn_sync(
|
2020-09-06 20:06:21 +00:00
|
|
|
&mut self,
|
|
|
|
world: &mut World,
|
|
|
|
scene_handle: Handle<Scene>,
|
|
|
|
) -> Result<(), SceneSpawnError> {
|
|
|
|
if let Some(instance_ids) = self.spawned_scenes.get(&scene_handle) {
|
|
|
|
for instance_id in instance_ids {
|
|
|
|
if let Some(instance) = self.spawned_instances.get(&instance_id) {
|
|
|
|
for entity in instance.entity_map.values() {
|
2020-09-18 00:16:38 +00:00
|
|
|
let _ = world.despawn(*entity); // Ignore the result, despawn only cares if it exists.
|
2020-09-06 20:06:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.spawned_scenes.remove(&scene_handle);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-29 22:51:36 +00:00
|
|
|
pub fn spawn_sync(
|
|
|
|
&mut self,
|
|
|
|
world: &mut World,
|
|
|
|
resources: &Resources,
|
|
|
|
scene_handle: Handle<Scene>,
|
|
|
|
) -> Result<(), SceneSpawnError> {
|
|
|
|
let instance_id = InstanceId::new();
|
|
|
|
let mut instance_info = InstanceInfo {
|
|
|
|
entity_map: HashMap::default(),
|
|
|
|
};
|
2020-09-18 00:16:38 +00:00
|
|
|
Self::spawn_internal(world, resources, scene_handle, &mut instance_info)?;
|
2020-05-29 22:51:36 +00:00
|
|
|
self.spawned_instances.insert(instance_id, instance_info);
|
2020-06-04 03:08:20 +00:00
|
|
|
let spawned = self
|
|
|
|
.spawned_scenes
|
|
|
|
.entry(scene_handle)
|
2020-08-16 07:30:04 +00:00
|
|
|
.or_insert_with(Vec::new);
|
2020-05-29 22:51:36 +00:00
|
|
|
spawned.push(instance_id);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
fn spawn_internal(
|
2020-05-29 22:51:36 +00:00
|
|
|
world: &mut World,
|
|
|
|
resources: &Resources,
|
|
|
|
scene_handle: Handle<Scene>,
|
2020-09-18 00:16:38 +00:00
|
|
|
instance_info: &mut InstanceInfo,
|
2020-05-29 19:56:32 +00:00
|
|
|
) -> Result<(), SceneSpawnError> {
|
|
|
|
let type_registry = resources.get::<TypeRegistry>().unwrap();
|
2020-08-21 21:55:16 +00:00
|
|
|
let component_registry = type_registry.component.read();
|
2020-05-29 19:56:32 +00:00
|
|
|
let scenes = resources.get::<Assets<Scene>>().unwrap();
|
|
|
|
let scene = scenes
|
|
|
|
.get(&scene_handle)
|
2020-09-26 04:34:47 +00:00
|
|
|
.ok_or(SceneSpawnError::NonExistentScene {
|
2020-05-29 19:56:32 +00:00
|
|
|
handle: scene_handle,
|
|
|
|
})?;
|
|
|
|
|
|
|
|
for scene_entity in scene.entities.iter() {
|
2020-09-18 00:16:38 +00:00
|
|
|
let entity = *instance_info
|
|
|
|
.entity_map
|
|
|
|
.entry(scene_entity.entity)
|
|
|
|
.or_insert_with(|| world.reserve_entity());
|
|
|
|
for component in scene_entity.components.iter() {
|
|
|
|
let component_registration = component_registry
|
|
|
|
.get_with_name(&component.type_name)
|
2020-09-26 04:34:47 +00:00
|
|
|
.ok_or(SceneSpawnError::UnregisteredComponent {
|
2020-09-18 00:16:38 +00:00
|
|
|
type_name: component.type_name.to_string(),
|
|
|
|
})?;
|
|
|
|
if world.has_component_type(entity, component_registration.ty) {
|
2020-08-03 02:15:41 +00:00
|
|
|
if component.type_name != "Camera" {
|
|
|
|
component_registration.apply_component_to_entity(world, entity, component);
|
|
|
|
}
|
2020-09-18 00:16:38 +00:00
|
|
|
} else {
|
2020-08-16 03:27:41 +00:00
|
|
|
component_registration
|
|
|
|
.add_component_to_entity(world, resources, entity, component);
|
2020-08-03 02:15:41 +00:00
|
|
|
}
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-29 22:51:36 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-05-29 19:56:32 +00:00
|
|
|
|
2020-06-04 03:08:20 +00:00
|
|
|
pub fn update_spawned_scenes(
|
|
|
|
&mut self,
|
|
|
|
world: &mut World,
|
|
|
|
resources: &Resources,
|
|
|
|
scene_handles: &[Handle<Scene>],
|
|
|
|
) -> Result<(), SceneSpawnError> {
|
2020-05-29 22:51:36 +00:00
|
|
|
for scene_handle in scene_handles {
|
|
|
|
if let Some(spawned_instances) = self.spawned_scenes.get(scene_handle) {
|
|
|
|
for instance_id in spawned_instances.iter() {
|
|
|
|
if let Some(instance_info) = self.spawned_instances.get_mut(instance_id) {
|
2020-09-18 00:16:38 +00:00
|
|
|
Self::spawn_internal(world, resources, *scene_handle, instance_info)?;
|
2020-05-29 22:51:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 19:56:32 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
pub fn despawn_queued_scenes(&mut self, world: &mut World) -> Result<(), SceneSpawnError> {
|
|
|
|
let scenes_to_despawn = std::mem::take(&mut self.scenes_to_despawn);
|
2020-09-06 20:06:21 +00:00
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
for scene_handle in scenes_to_despawn {
|
|
|
|
self.despawn_sync(world, scene_handle)?;
|
2020-09-06 20:06:21 +00:00
|
|
|
}
|
2020-05-29 22:51:36 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-06-04 03:08:20 +00:00
|
|
|
pub fn spawn_queued_scenes(
|
|
|
|
&mut self,
|
|
|
|
world: &mut World,
|
|
|
|
resources: &Resources,
|
|
|
|
) -> Result<(), SceneSpawnError> {
|
2020-09-18 00:16:38 +00:00
|
|
|
let scenes_to_spawn = std::mem::take(&mut self.scenes_to_instance);
|
2020-09-06 20:06:21 +00:00
|
|
|
|
2020-05-29 22:51:36 +00:00
|
|
|
for scene_handle in scenes_to_spawn {
|
|
|
|
match self.spawn_sync(world, resources, scene_handle) {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(SceneSpawnError::NonExistentScene { .. }) => {
|
2020-09-18 00:16:38 +00:00
|
|
|
self.scenes_to_instance.push(scene_handle)
|
2020-05-29 22:51:36 +00:00
|
|
|
}
|
|
|
|
Err(err) => return Err(err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn scene_spawner_system(world: &mut World, resources: &mut Resources) {
|
|
|
|
let mut scene_spawner = resources.get_mut::<SceneSpawner>().unwrap();
|
|
|
|
let scene_asset_events = resources.get::<Events<AssetEvent<Scene>>>().unwrap();
|
|
|
|
|
2020-05-29 22:51:36 +00:00
|
|
|
let mut updated_spawned_scenes = Vec::new();
|
2020-05-29 19:56:32 +00:00
|
|
|
for event in scene_spawner
|
|
|
|
.scene_asset_event_reader
|
|
|
|
.iter(&scene_asset_events)
|
|
|
|
{
|
|
|
|
if let AssetEvent::Modified { handle } = event {
|
2020-05-29 22:51:36 +00:00
|
|
|
if scene_spawner.spawned_scenes.contains_key(handle) {
|
2020-06-04 03:08:20 +00:00
|
|
|
updated_spawned_scenes.push(*handle);
|
2020-05-29 22:51:36 +00:00
|
|
|
}
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 00:16:38 +00:00
|
|
|
scene_spawner.despawn_queued_scenes(world).unwrap();
|
2020-05-29 22:51:36 +00:00
|
|
|
scene_spawner.spawn_queued_scenes(world, resources).unwrap();
|
2020-06-04 03:08:20 +00:00
|
|
|
scene_spawner
|
|
|
|
.update_spawned_scenes(world, resources, &updated_spawned_scenes)
|
|
|
|
.unwrap();
|
2020-05-29 19:56:32 +00:00
|
|
|
}
|