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/main.rs | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'src/main.rs') 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'); }, -- cgit v1.2.3