diff options
author | Iago Garrido <iago086@gmail.com> | 2019-11-12 16:11:21 +0100 |
---|---|---|
committer | Iago Garrido <iago086@gmail.com> | 2019-11-12 16:11:21 +0100 |
commit | 34bdb3387e2cd4228aef39620be4d68ef3d7434b (patch) | |
tree | bfcbc38ebe6cf8e155fe29efa0176f0aebef8612 /src/main.rs | |
parent | 897efb3c736bac223df8c23722222797f65a33f9 (diff) | |
parent | d249f7a63f007fcc494e4c446c4845e4f9d0a523 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs index 12e92c9..b59d587 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), @@ -38,18 +39,16 @@ fn main() { state.init(); - // Dump the whole dungeon structure in terminal for debugging - state.debug(); - - state.render_level(&window); - window.keypad(true); noecho(); - + loop { // update actors + + state.render_level(&window); + // update character - window.refresh(); + state.show_character(&window); // get input and execute it match window.getch() { @@ -63,6 +62,7 @@ fn main() { Some(_) => (), None => (), } + // actors actions (normally attack / interact if on same location as the character) } endwin(); } |