From 8351d474150215598241b5aabacb4db863d0cd87 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Tue, 12 Nov 2019 16:47:22 +0100 Subject: Some refactor, better render loop --- src/world.rs | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/world.rs') diff --git a/src/world.rs b/src/world.rs index 9f58030..7652157 100644 --- a/src/world.rs +++ b/src/world.rs @@ -1,7 +1,6 @@ use rand::Rng; -use pancurses::{Window}; use crate::entities::{Character, Entity, Enemy}; -use crate::tiling::{TileGrid, Tileable, TileType, draw_block}; +use crate::tiling::{TileGrid, Tileable, TileType}; pub type Point = (usize, usize); @@ -226,7 +225,7 @@ impl Level { } } - fn to_tilegrid(&self) -> Result { + pub fn to_tilegrid(&self) -> Result { let mut grid = TileGrid::new(self.xsize, self.ysize); for room in &self.rooms { @@ -250,17 +249,6 @@ impl Level { return (0,0) } - pub fn render(&self, window: &Window) { - let grid = self.to_tilegrid().unwrap(); - - for (linenum, line) in grid.raw_data().iter().enumerate() { - for block in line.iter() { - draw_block(&window, &block); - } - window.mv(linenum as i32, 0); - } - } - pub fn get_entrance(&self) -> Point { self.entrance } -- cgit v1.2.3