diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index 12e92c9..11cac4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,7 @@ use pancurses::{ noecho }; use state::State; -use world::Dungeon; +use world::{Dungeon}; fn main() { @@ -31,6 +31,7 @@ fn main() { 10, 10, 20, + 1, (0, 0) ), Dungeon::new(window.get_max_x() as usize, window.get_max_y() as usize, 5), @@ -41,16 +42,17 @@ fn main() { // Dump the whole dungeon structure in terminal for debugging state.debug(); - state.render_level(&window); - window.keypad(true); noecho(); - + loop { // update actors - // update character - window.refresh(); + + state.render_level(&window); + // update character + state.show_character(&window); + // get input and execute it match window.getch() { @@ -63,6 +65,7 @@ fn main() { Some(_) => (), None => (), } + // actors actions (normally attack / interact if on same location as the character) } endwin(); } |