aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index f7e7f0f..9f5e45b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -46,9 +46,10 @@ fn main() {
let mut dungeon = Dungeon::new(
window.get_max_x() as usize,
- window.get_max_y() as usize - 2,
+ window.get_max_y() as usize - 2, // allow 2 lines for game stats
5
);
+
dungeon.generate();
let start_location = dungeon.levels[0].get_start_point();
@@ -60,9 +61,9 @@ fn main() {
10,
10,
20,
+ 0,
start_location
);
- character.place(start_location);
render_level(&window, &dungeon.levels[0]);
@@ -71,7 +72,20 @@ fn main() {
loop {
// update actors
+
+
// update character
+ window.mv(window.get_max_y() - 2, 0);
+ window.clrtoeol();
+
+ window.refresh();
+
+ window.addstr(character.stats() + "\n");
+ window.addstr(character.info() + "\n");
+
+ window.mv(character.location.1 as i32,character.location.0 as i32);
+ window.refresh();
+ draw_block(&window, &world::TileType::Character);
window.refresh();
// get input and execute it
@@ -86,6 +100,7 @@ fn main() {
Some(_) => (),
None => (),
}
+ // actors actions (normally attack / interact if on same location as the character)
}
endwin();
}