diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 16:47:22 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-12 16:47:22 +0100 |
commit | 8351d474150215598241b5aabacb4db863d0cd87 (patch) | |
tree | ac5a9f20f2795bca3e5c4208de6d6926bde4eb27 /src/world.rs | |
parent | dbaeddc419c2d070ce175ef2bcda9fa7c98c6941 (diff) |
Some refactor, better render loop
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 16 |
1 files changed, 2 insertions, 14 deletions
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<TileGrid, String> {
+ pub fn to_tilegrid(&self) -> Result<TileGrid, String> {
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
}
|