aboutsummaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <dev@etenil.net>2019-11-21 19:54:38 +0000
committerGuillaume Pasquet <dev@etenil.net>2019-11-21 19:54:38 +0000
commit538008cbdc8ec8a873e62a8b991201fda5762d63 (patch)
treed9dab5a34ac13d4393ca4531807e455cf5af828a /src/state.rs
parentb53947f191ad6ffc9b72890abb916a44f581c0c3 (diff)
Fog of war! Inneficient and buggy but works
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/state.rs b/src/state.rs
index 9939226..805e9e9 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -6,6 +6,8 @@ use crate::entities::{Character, Entity, Player};
use crate::tiling::{tile_to_str, Tile, TileGrid, TileType};
use crate::world::{apply_movement, Dungeon, Generatable, Level, Movement};
+const PLAYER_SIGHT: usize = 5;
+
pub struct State {
pub player: Character,
dungeon: Dungeon,
@@ -48,7 +50,7 @@ impl State {
}
fn render_entity(&self, entity: &dyn Entity) {
- if !entity.is_dirty() {
+ if !entity.is_visible() || !entity.is_dirty() {
return;
}
let dirt = entity.previous_location();
@@ -71,8 +73,13 @@ impl State {
}
}
- pub fn render_player(&self) {
- self.render_entity(&self.player)
+ pub fn render_player(&mut self) {
+ self.render_entity(&self.player);
+
+ self.grid
+ .as_mut()
+ .unwrap()
+ .clear_fog_of_war(self.player.location(), PLAYER_SIGHT);
}
fn ui_state_position(&self) -> MoveTo {