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/main.rs | |
parent | dbaeddc419c2d070ce175ef2bcda9fa7c98c6941 (diff) |
Some refactor, better render loop
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/main.rs b/src/main.rs index b59d587..599c65c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,6 @@ extern crate rand; extern crate pancurses; -#[macro_use] extern crate text_io; mod state; @@ -31,28 +30,26 @@ fn main() { 10, 10, 20, - 1, - (0, 0) + 1 ), - Dungeon::new(window.get_max_x() as usize, window.get_max_y() as usize, 5), + Dungeon::new(window.get_max_x() as usize, (window.get_max_y() - 2) as usize, 5), ); state.init(); window.keypad(true); noecho(); - + + state.render_level(&window); + loop { - // update actors - - state.render_level(&window); + // update + state.render_entities(&window); - // update character - state.show_character(&window); + state.render_player(&window); // get input and execute it match window.getch() { - Some(Input::Character('h')) => { window.addstr("q: quit\n"); }, // Some(Input::KeyDown) => { window.addstr("down\n"); }, // Some(Input::KeyUp) => { window.addch('b'); }, |