2021-09-28 17:49:44 +00:00
|
|
|
use std::{
|
|
|
|
cell::RefCell,
|
|
|
|
collections::{HashMap, HashSet},
|
2022-03-15 15:37:28 +00:00
|
|
|
marker::PhantomData,
|
2021-09-28 17:49:44 +00:00
|
|
|
};
|
2021-05-13 17:25:45 +00:00
|
|
|
|
2022-07-20 13:24:38 +00:00
|
|
|
use bevy::prelude::*;
|
2022-07-11 15:26:03 +00:00
|
|
|
|
2022-07-20 15:12:14 +00:00
|
|
|
use bevy_rapier2d::{
|
|
|
|
na::{Isometry2, Vector2},
|
|
|
|
parry::bounding_volume::BoundingVolume,
|
|
|
|
};
|
2021-05-13 17:25:45 +00:00
|
|
|
use coord_2d::{Coord, Size};
|
|
|
|
use shadowcast::{vision_distance, Context, InputGrid};
|
|
|
|
|
|
|
|
use crate::{
|
2021-06-09 19:13:09 +00:00
|
|
|
bevy_rapier2d::prelude::*,
|
2022-07-19 16:24:45 +00:00
|
|
|
core::{GlobalTransformExt, Player, PointLike},
|
2021-05-13 17:25:45 +00:00
|
|
|
log::Log,
|
2022-07-11 15:26:03 +00:00
|
|
|
map::{Map, MapConfig, MapObstruction},
|
2021-05-13 17:25:45 +00:00
|
|
|
};
|
|
|
|
|
2022-01-10 19:50:52 +00:00
|
|
|
#[derive(Component, Clone, Copy, Debug, Default, Reflect)]
|
2021-05-17 14:50:03 +00:00
|
|
|
#[reflect(Component)]
|
|
|
|
pub struct DontLogWhenVisible;
|
|
|
|
|
2022-01-10 19:50:52 +00:00
|
|
|
#[derive(Component, Clone, Debug, Default, Deref, DerefMut, Reflect)]
|
2021-05-13 17:25:45 +00:00
|
|
|
#[reflect(Component)]
|
|
|
|
pub struct RevealedTiles(pub Vec<bool>);
|
|
|
|
|
2022-01-10 19:50:52 +00:00
|
|
|
#[derive(Component, Clone, Debug, Eq, PartialEq)]
|
2021-05-13 17:25:45 +00:00
|
|
|
pub struct Viewshed {
|
|
|
|
pub range: u32,
|
2021-09-21 11:38:51 +00:00
|
|
|
pub visible_points: HashSet<(i32, i32)>,
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Viewshed {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
range: 15,
|
2021-09-21 11:38:51 +00:00
|
|
|
visible_points: HashSet::new(),
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Viewshed {
|
2021-09-21 11:38:51 +00:00
|
|
|
pub fn is_point_visible(&self, point: &dyn PointLike) -> bool {
|
|
|
|
self.visible_points.contains(&point.into())
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
2022-05-06 16:07:59 +00:00
|
|
|
|
2022-07-25 18:52:50 +00:00
|
|
|
fn update(
|
2021-10-12 21:59:59 +00:00
|
|
|
&mut self,
|
|
|
|
viewer_entity: &Entity,
|
|
|
|
visible_entities: &mut VisibleEntities,
|
2022-07-20 13:24:38 +00:00
|
|
|
start: &GlobalTransform,
|
2022-05-06 16:07:59 +00:00
|
|
|
rapier_context: &RapierContext,
|
2022-07-20 13:24:38 +00:00
|
|
|
visible_query: &Query<(&Visible, &Collider, &GlobalTransform)>,
|
2022-07-11 15:26:03 +00:00
|
|
|
obstructions_query: &Query<&MapObstruction>,
|
2021-10-12 21:59:59 +00:00
|
|
|
events: &mut EventWriter<VisibilityChanged>,
|
2022-07-20 13:24:38 +00:00
|
|
|
cache: &mut HashMap<(i32, i32), (u8, HashSet<Entity>)>,
|
2021-10-12 21:59:59 +00:00
|
|
|
) {
|
2022-07-20 13:24:38 +00:00
|
|
|
// println!("Start");
|
|
|
|
let mut boxes = vec![];
|
|
|
|
let shape = Collider::cuboid(self.range as f32, self.range as f32);
|
|
|
|
rapier_context.intersections_with_shape(
|
2022-08-01 16:38:15 +00:00
|
|
|
start.translation().truncate(),
|
2022-07-20 13:24:38 +00:00
|
|
|
0.,
|
|
|
|
&shape,
|
|
|
|
QueryFilter::new().predicate(&|e| visible_query.get(e).is_ok()),
|
|
|
|
|entity| {
|
|
|
|
if let Ok((_, collider, transform)) = visible_query.get(entity) {
|
|
|
|
let position = Isometry2::new(
|
2022-08-01 16:38:15 +00:00
|
|
|
Vector2::new(transform.translation().x, transform.translation().y),
|
2022-07-20 13:24:38 +00:00
|
|
|
0.,
|
|
|
|
);
|
2022-07-20 15:12:14 +00:00
|
|
|
// println!(
|
2022-07-20 15:18:16 +00:00
|
|
|
// "Hit {:?}, pushing {:?}",
|
|
|
|
// entity,
|
|
|
|
// collider.raw.compute_aabb(&position)
|
2022-07-20 15:12:14 +00:00
|
|
|
// );
|
2022-07-20 13:24:38 +00:00
|
|
|
boxes.push(collider.raw.compute_aabb(&position));
|
|
|
|
}
|
|
|
|
true
|
|
|
|
},
|
|
|
|
);
|
2021-10-12 21:59:59 +00:00
|
|
|
let mut context: Context<u8> = Context::default();
|
|
|
|
let vision_distance = vision_distance::Circle::new(self.range);
|
2022-08-29 17:24:32 +00:00
|
|
|
let shape = Collider::cuboid(0.49, 0.49);
|
2022-02-24 02:57:43 +00:00
|
|
|
let mut new_visible_entities = HashSet::new();
|
2022-07-25 18:52:50 +00:00
|
|
|
let size = (
|
2022-08-01 16:38:15 +00:00
|
|
|
(start.translation().x.abs() + self.range as f32) as u32,
|
|
|
|
(start.translation().y.abs() + self.range as f32) as u32,
|
2022-07-25 18:52:50 +00:00
|
|
|
);
|
2021-10-12 21:59:59 +00:00
|
|
|
let visibility_grid = VisibilityGrid(
|
2022-07-11 15:26:03 +00:00
|
|
|
size,
|
2021-10-12 21:59:59 +00:00
|
|
|
RefCell::new(Box::new(|coord: Coord| {
|
2022-07-11 15:26:03 +00:00
|
|
|
let shape_pos = Vec2::new(coord.x as f32 + 0.5, coord.y as f32 + 0.5);
|
2022-07-20 13:24:38 +00:00
|
|
|
// println!("Checking {:?}", shape_pos);
|
2022-08-29 17:24:32 +00:00
|
|
|
if start.distance(&shape_pos) > self.range as f32 {
|
2022-07-20 13:24:38 +00:00
|
|
|
// println!("Out of range");
|
2022-05-17 15:37:46 +00:00
|
|
|
return u8::MAX;
|
|
|
|
}
|
2022-07-20 15:12:14 +00:00
|
|
|
let result = if let Some((opacity, coord_entities)) = cache.get(&(coord.x, coord.y))
|
|
|
|
{
|
|
|
|
Some((*opacity, coord_entities.clone()))
|
|
|
|
} else {
|
|
|
|
let position = Isometry2::new(Vector2::new(shape_pos.x, shape_pos.y), 0.);
|
|
|
|
let aabb = shape.raw.compute_aabb(&position);
|
|
|
|
let mut hit = false;
|
|
|
|
for b in &boxes {
|
|
|
|
if b.intersects(&aabb) {
|
|
|
|
// println!("Hit at {:?}", b);
|
|
|
|
hit = true;
|
|
|
|
break;
|
|
|
|
}
|
2022-07-20 13:24:38 +00:00
|
|
|
}
|
2022-07-20 15:12:14 +00:00
|
|
|
if hit {
|
|
|
|
// println!("Hit test");
|
|
|
|
let mut opacity = 0;
|
|
|
|
let mut coord_entities = HashSet::new();
|
|
|
|
rapier_context.intersections_with_shape(
|
|
|
|
shape_pos,
|
|
|
|
0.,
|
|
|
|
&shape,
|
|
|
|
QueryFilter::new().predicate(&|v| visible_query.get(v).is_ok()),
|
|
|
|
|entity| {
|
|
|
|
// println!("{:?}", entity);
|
|
|
|
let obstruction = obstructions_query.get(entity).is_ok();
|
|
|
|
if obstruction {
|
|
|
|
// println!("Obstruction");
|
|
|
|
coord_entities.clear();
|
|
|
|
}
|
|
|
|
coord_entities.insert(entity);
|
|
|
|
if let Ok((visible, _, _)) = visible_query.get(entity) {
|
|
|
|
opacity = opacity.max(**visible);
|
|
|
|
}
|
|
|
|
!obstruction
|
|
|
|
},
|
|
|
|
);
|
|
|
|
cache.insert((coord.x, coord.y), (opacity, coord_entities.clone()));
|
|
|
|
Some((opacity, coord_entities))
|
|
|
|
} else {
|
|
|
|
// println!("No hits, 0");
|
|
|
|
let coord_entities = HashSet::new();
|
|
|
|
cache.insert((coord.x, coord.y), (0, coord_entities.clone()));
|
|
|
|
Some((0, coord_entities))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if let Some((opacity, coord_entities)) = result {
|
2022-07-20 13:24:38 +00:00
|
|
|
for e in &coord_entities {
|
2022-03-17 17:15:30 +00:00
|
|
|
new_visible_entities.insert(*e);
|
|
|
|
}
|
2022-07-20 13:24:38 +00:00
|
|
|
if coord_entities.contains(viewer_entity) {
|
|
|
|
// println!("Self hit, 0");
|
|
|
|
0
|
2022-05-17 15:37:46 +00:00
|
|
|
} else {
|
2022-07-20 13:24:38 +00:00
|
|
|
// println!("{}", opacity);
|
|
|
|
opacity
|
2022-05-17 15:37:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-07-20 13:24:38 +00:00
|
|
|
0
|
2022-05-17 15:37:46 +00:00
|
|
|
}
|
2021-10-12 21:59:59 +00:00
|
|
|
})),
|
|
|
|
);
|
|
|
|
let mut new_visible = HashSet::new();
|
|
|
|
context.for_each_visible(
|
2022-05-18 15:28:42 +00:00
|
|
|
Coord::new(start.x_i32(), start.y_i32()),
|
2021-10-12 21:59:59 +00:00
|
|
|
&visibility_grid,
|
2022-07-11 15:26:03 +00:00
|
|
|
&size,
|
2021-10-12 21:59:59 +00:00
|
|
|
vision_distance,
|
2022-07-11 15:26:03 +00:00
|
|
|
u8::MAX,
|
2021-10-12 21:59:59 +00:00
|
|
|
|coord, _directions, _visibility| {
|
|
|
|
new_visible.insert((coord.x, coord.y));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
if self.visible_points != new_visible {
|
|
|
|
self.visible_points = new_visible;
|
|
|
|
}
|
|
|
|
if new_visible_entities != **visible_entities {
|
|
|
|
for lost in visible_entities.difference(&new_visible_entities) {
|
|
|
|
events.send(VisibilityChanged::Lost {
|
|
|
|
viewer: *viewer_entity,
|
|
|
|
viewed: *lost,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
for gained in new_visible_entities.difference(visible_entities) {
|
2022-07-20 15:12:14 +00:00
|
|
|
// println!("transition: {:?} gains {:?}", viewer_entity, gained);
|
2021-10-12 21:59:59 +00:00
|
|
|
events.send(VisibilityChanged::Gained {
|
|
|
|
viewer: *viewer_entity,
|
|
|
|
viewed: *gained,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
**visible_entities = new_visible_entities;
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
|
2022-01-10 19:50:52 +00:00
|
|
|
#[derive(Component, Clone, Copy, Debug, Deref, DerefMut, Reflect)]
|
2021-09-22 13:23:01 +00:00
|
|
|
#[reflect(Component)]
|
|
|
|
pub struct Visible(pub u8);
|
|
|
|
|
|
|
|
impl Default for Visible {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::opaque()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Visible {
|
|
|
|
pub fn transparent() -> Self {
|
|
|
|
Self(0)
|
|
|
|
}
|
|
|
|
|
2021-09-23 17:58:39 +00:00
|
|
|
pub fn opaque() -> Self {
|
2021-09-22 13:23:01 +00:00
|
|
|
Self(u8::MAX)
|
|
|
|
}
|
|
|
|
}
|
2021-10-12 21:59:59 +00:00
|
|
|
|
2022-01-10 19:50:52 +00:00
|
|
|
#[derive(Component, Clone, Debug, Default, Deref, DerefMut)]
|
2021-09-21 11:38:51 +00:00
|
|
|
pub struct VisibleEntities(HashSet<Entity>);
|
|
|
|
|
|
|
|
#[derive(Bundle, Default)]
|
|
|
|
pub struct ViewshedBundle {
|
|
|
|
pub viewshed: Viewshed,
|
|
|
|
pub visible_entities: VisibleEntities,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewshedBundle {
|
|
|
|
pub fn new(range: u32) -> Self {
|
|
|
|
Self {
|
2022-05-10 18:56:49 +00:00
|
|
|
viewshed: Viewshed { range, ..default() },
|
|
|
|
..default()
|
2021-09-21 11:38:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum VisibilityChanged {
|
|
|
|
Gained { viewer: Entity, viewed: Entity },
|
|
|
|
Lost { viewer: Entity, viewed: Entity },
|
|
|
|
}
|
|
|
|
|
2021-06-09 22:42:04 +00:00
|
|
|
impl PointLike for Coord {
|
|
|
|
fn x(&self) -> f32 {
|
|
|
|
self.x as f32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f32 {
|
|
|
|
self.y as f32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 15:37:28 +00:00
|
|
|
fn add_visibility_indices<D: 'static + Clone + Default + Send + Sync>(
|
2021-05-13 17:25:45 +00:00
|
|
|
mut commands: Commands,
|
2022-03-15 15:37:28 +00:00
|
|
|
query: Query<(Entity, &Map<D>), (Added<Map<D>>, Without<RevealedTiles>)>,
|
2021-05-13 17:25:45 +00:00
|
|
|
map_config: Res<MapConfig>,
|
|
|
|
) {
|
|
|
|
for (entity, map) in query.iter() {
|
2021-06-09 19:53:48 +00:00
|
|
|
let count = map.width * map.height;
|
2021-05-13 17:25:45 +00:00
|
|
|
commands
|
|
|
|
.entity(entity)
|
|
|
|
.insert(RevealedTiles(vec![map_config.start_revealed; count]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-21 11:38:51 +00:00
|
|
|
fn viewshed_removed(
|
|
|
|
query: RemovedComponents<Viewshed>,
|
2021-09-28 17:49:44 +00:00
|
|
|
visible_entities: Query<&VisibleEntities>,
|
|
|
|
mut events: EventWriter<VisibilityChanged>,
|
2021-09-21 11:38:51 +00:00
|
|
|
) {
|
|
|
|
for entity in query.iter() {
|
2021-09-28 17:49:44 +00:00
|
|
|
if let Ok(visible) = visible_entities.get(entity) {
|
|
|
|
for e in visible.iter() {
|
|
|
|
events.send(VisibilityChanged::Lost {
|
|
|
|
viewer: entity,
|
|
|
|
viewed: *e,
|
|
|
|
})
|
|
|
|
}
|
2021-09-21 11:38:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 15:26:03 +00:00
|
|
|
pub struct VisibilityGrid<F>(pub (u32, u32), pub RefCell<Box<F>>);
|
2021-05-13 17:25:45 +00:00
|
|
|
|
2022-07-11 15:26:03 +00:00
|
|
|
impl<F> InputGrid for VisibilityGrid<F>
|
2021-06-09 19:13:09 +00:00
|
|
|
where
|
2021-09-28 17:49:44 +00:00
|
|
|
F: FnMut(Coord) -> u8,
|
2021-06-09 19:13:09 +00:00
|
|
|
{
|
2022-07-11 15:26:03 +00:00
|
|
|
type Grid = (u32, u32);
|
2021-05-13 17:25:45 +00:00
|
|
|
|
|
|
|
type Opacity = u8;
|
|
|
|
|
|
|
|
fn size(&self, grid: &Self::Grid) -> Size {
|
2022-07-11 15:26:03 +00:00
|
|
|
Size::new(grid.0, grid.1)
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 19:13:09 +00:00
|
|
|
fn get_opacity(&self, _grid: &Self::Grid, coord: Coord) -> Self::Opacity {
|
2021-09-28 17:49:44 +00:00
|
|
|
(self.1.borrow_mut())(coord)
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-25 18:52:50 +00:00
|
|
|
fn update_viewshed(
|
2021-09-23 17:58:39 +00:00
|
|
|
config: Res<RapierConfiguration>,
|
2022-07-20 13:24:38 +00:00
|
|
|
visible: Query<(&Visible, &Collider, &GlobalTransform)>,
|
2022-07-11 15:26:03 +00:00
|
|
|
obstructions: Query<&MapObstruction>,
|
2022-07-20 13:24:38 +00:00
|
|
|
mut viewers: Query<(
|
|
|
|
Entity,
|
|
|
|
&mut Viewshed,
|
|
|
|
&mut VisibleEntities,
|
|
|
|
&GlobalTransform,
|
|
|
|
)>,
|
2022-05-06 16:07:59 +00:00
|
|
|
rapier_context: Res<RapierContext>,
|
2021-09-28 17:49:44 +00:00
|
|
|
mut changed: EventWriter<VisibilityChanged>,
|
2021-06-16 16:28:06 +00:00
|
|
|
) {
|
2021-09-23 17:58:39 +00:00
|
|
|
if !config.query_pipeline_active {
|
|
|
|
return;
|
|
|
|
}
|
2022-07-25 18:52:50 +00:00
|
|
|
let mut cache = HashMap::new();
|
|
|
|
for (viewer_entity, mut viewshed, mut visible_entities, viewer_transform) in viewers.iter_mut()
|
|
|
|
{
|
|
|
|
viewshed.update(
|
|
|
|
&viewer_entity,
|
|
|
|
&mut visible_entities,
|
|
|
|
viewer_transform,
|
|
|
|
&rapier_context,
|
|
|
|
&visible,
|
|
|
|
&obstructions,
|
|
|
|
&mut changed,
|
|
|
|
&mut cache,
|
|
|
|
);
|
2021-05-26 19:57:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-25 18:52:50 +00:00
|
|
|
fn remove_visible(
|
2021-09-22 13:23:01 +00:00
|
|
|
removed: RemovedComponents<Visible>,
|
2022-07-20 13:24:38 +00:00
|
|
|
mut viewers: Query<(
|
|
|
|
Entity,
|
|
|
|
&mut Viewshed,
|
|
|
|
&mut VisibleEntities,
|
|
|
|
&GlobalTransform,
|
|
|
|
)>,
|
2022-05-06 16:07:59 +00:00
|
|
|
rapier_context: Res<RapierContext>,
|
2022-07-20 13:24:38 +00:00
|
|
|
visible: Query<(&Visible, &Collider, &GlobalTransform)>,
|
2022-07-11 15:26:03 +00:00
|
|
|
obstructions: Query<&MapObstruction>,
|
2021-09-28 17:49:44 +00:00
|
|
|
mut changed: EventWriter<VisibilityChanged>,
|
2021-06-16 16:28:06 +00:00
|
|
|
) {
|
2022-07-20 13:24:38 +00:00
|
|
|
if removed.iter().len() != 0 {
|
2022-03-17 17:15:30 +00:00
|
|
|
let mut cache = HashMap::new();
|
2022-07-20 13:24:38 +00:00
|
|
|
for removed in removed.iter() {
|
|
|
|
for (viewer_entity, mut viewshed, mut visible_entities, start) in viewers.iter_mut() {
|
|
|
|
if !visible_entities.contains(&removed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
visible_entities.remove(&removed);
|
2022-07-25 18:52:50 +00:00
|
|
|
viewshed.update(
|
|
|
|
&viewer_entity,
|
|
|
|
&mut visible_entities,
|
|
|
|
start,
|
|
|
|
&*rapier_context,
|
|
|
|
&visible,
|
|
|
|
&obstructions,
|
|
|
|
&mut changed,
|
|
|
|
&mut cache,
|
|
|
|
);
|
2022-01-21 00:06:20 +00:00
|
|
|
}
|
2021-06-16 16:28:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 15:37:28 +00:00
|
|
|
fn update_revealed_tiles<D: 'static + Clone + Default + Send + Sync>(
|
|
|
|
mut map: Query<(&Map<D>, &mut RevealedTiles)>,
|
2022-05-18 15:28:42 +00:00
|
|
|
viewers: Query<&Viewshed, (With<Player>, Changed<Viewshed>)>,
|
2021-05-13 17:25:45 +00:00
|
|
|
) {
|
2022-05-18 15:28:42 +00:00
|
|
|
for viewshed in viewers.iter() {
|
|
|
|
for (map, mut revealed_tiles) in map.iter_mut() {
|
2021-09-21 11:38:51 +00:00
|
|
|
for v in viewshed.visible_points.iter() {
|
2021-06-09 19:53:48 +00:00
|
|
|
let idx = v.to_index(map.width);
|
2021-09-27 18:45:52 +00:00
|
|
|
if idx >= revealed_tiles.len() {
|
2021-09-01 16:34:38 +00:00
|
|
|
continue;
|
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
revealed_tiles[idx] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn log_visible(
|
2021-09-23 17:58:39 +00:00
|
|
|
time: Res<Time>,
|
|
|
|
mut recently_lost: Local<HashMap<Entity, Timer>>,
|
2021-09-21 17:58:57 +00:00
|
|
|
mut events: EventReader<VisibilityChanged>,
|
2021-05-13 17:25:45 +00:00
|
|
|
mut log: Query<&mut Log>,
|
2022-07-19 16:24:45 +00:00
|
|
|
viewers: Query<(Entity, &GlobalTransform, Option<&Collider>), (With<Player>, With<Viewshed>)>,
|
|
|
|
visible: Query<(&Name, &GlobalTransform, Option<&Collider>), Without<DontLogWhenVisible>>,
|
2021-05-13 17:25:45 +00:00
|
|
|
) {
|
2021-09-23 17:58:39 +00:00
|
|
|
for timer in recently_lost.values_mut() {
|
2021-05-13 17:25:45 +00:00
|
|
|
timer.tick(time.delta());
|
2021-09-23 17:58:39 +00:00
|
|
|
}
|
|
|
|
recently_lost.retain(|_entity, timer| !timer.finished());
|
2021-09-21 11:38:51 +00:00
|
|
|
for event in events.iter() {
|
2021-09-23 17:58:39 +00:00
|
|
|
let viewer = match event {
|
|
|
|
VisibilityChanged::Gained { viewer, .. } => viewer,
|
|
|
|
VisibilityChanged::Lost { viewer, .. } => viewer,
|
|
|
|
};
|
2022-07-19 16:24:45 +00:00
|
|
|
if let Ok((viewer_entity, viewer_transform, viewer_collider)) = viewers.get(*viewer) {
|
2021-09-23 17:58:39 +00:00
|
|
|
if let VisibilityChanged::Gained { viewed, .. } = event {
|
|
|
|
if *viewed == viewer_entity || recently_lost.contains_key(viewed) {
|
2021-09-21 17:58:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
2022-07-19 16:24:45 +00:00
|
|
|
if let Ok((name, viewed_transform, viewed_collider)) = visible.get(*viewed) {
|
|
|
|
let location = if let (Some(viewer_collider), Some(viewed_collider)) =
|
|
|
|
(viewer_collider, viewed_collider)
|
|
|
|
{
|
|
|
|
viewer_transform.collider_direction_and_distance(
|
|
|
|
viewer_collider,
|
2022-08-01 16:38:15 +00:00
|
|
|
viewed_transform,
|
2022-07-19 16:24:45 +00:00
|
|
|
viewed_collider,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
let yaw = viewer_transform.yaw();
|
|
|
|
viewer_transform.direction_and_distance(viewed_transform, Some(yaw))
|
|
|
|
};
|
2022-02-01 14:41:27 +00:00
|
|
|
if let Ok(mut log) = log.get_single_mut() {
|
2022-05-06 16:07:59 +00:00
|
|
|
log.push(format!("{}: {location}", name));
|
2022-02-01 14:41:27 +00:00
|
|
|
}
|
2021-09-21 11:38:51 +00:00
|
|
|
}
|
2021-09-23 17:58:39 +00:00
|
|
|
} else if let VisibilityChanged::Lost { viewed, .. } = event {
|
|
|
|
recently_lost.insert(*viewed, Timer::from_seconds(2., false));
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const LOG_VISIBLE_LABEL: &str = "LOG_VISIBLE";
|
|
|
|
|
2022-03-15 15:37:28 +00:00
|
|
|
pub struct VisibilityPlugin<D: 'static + Clone + Default + Send + Sync>(PhantomData<D>);
|
2021-05-13 17:25:45 +00:00
|
|
|
|
2022-03-15 15:37:28 +00:00
|
|
|
impl<D: 'static + Clone + Default + Send + Sync> Default for VisibilityPlugin<D> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self(Default::default())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: 'static + Clone + Default + Send + Sync> Plugin for VisibilityPlugin<D> {
|
2022-01-10 19:50:52 +00:00
|
|
|
fn build(&self, app: &mut App) {
|
2021-09-28 17:49:44 +00:00
|
|
|
app.add_event::<VisibilityChanged>()
|
2022-07-11 15:26:03 +00:00
|
|
|
.add_system_to_stage(CoreStage::PreUpdate, add_visibility_indices::<D>)
|
2022-07-25 18:52:50 +00:00
|
|
|
.add_system_to_stage(CoreStage::PreUpdate, update_viewshed)
|
2022-01-10 19:50:52 +00:00
|
|
|
.add_system_to_stage(CoreStage::PostUpdate, viewshed_removed)
|
2022-07-25 18:52:50 +00:00
|
|
|
.add_system_to_stage(CoreStage::PostUpdate, remove_visible)
|
2022-07-11 15:26:03 +00:00
|
|
|
.add_system_to_stage(CoreStage::PreUpdate, update_revealed_tiles::<D>)
|
|
|
|
.add_system_to_stage(CoreStage::PreUpdate, log_visible);
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|