diff options
author | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-12 15:57:03 +0100 |
---|---|---|
committer | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-12 15:57:03 +0100 |
commit | 44146c74c913a72f79f94280a5daa40f33e6c05b (patch) | |
tree | de900d2fe144ceffa6c6065cc5824a3960005224 /src/main.rs | |
parent | fe183a3453a828c077db85cd72d3ce39410f2196 (diff) | |
parent | e8e931794052455d93517d35c75bb98b7829e70d (diff) |
May not work
q!
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 93 |
1 files changed, 29 insertions, 64 deletions
diff --git a/src/main.rs b/src/main.rs index 9f5e45b..11cac4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,90 +4,55 @@ extern crate pancurses; #[macro_use] extern crate text_io; +mod state; mod entities; mod world; mod tiling; -use entities::{Character, Player, Entity}; -use pancurses::{Window, initscr, endwin, Input, noecho}; -use world::{Dungeon, Level, Generatable}; -use tiling::TileType; +use entities::Player; +use pancurses::{ + initscr, + endwin, + Input, + noecho +}; +use state::State; +use world::{Dungeon}; -fn tile_to_str(tile: &TileType) -> &str { - match tile { - TileType::Floor => ".", - TileType::Wall => "#", - TileType::Empty => " ", - TileType::StairsDown => ">", - TileType::StairsUp => "<", - TileType::Character => "@", - _ => "?" - } -} - -fn draw_block(window: &Window, block: &TileType) { - window.printw(tile_to_str(block)); -} - -fn render_level(window: &Window, level: &Level) { - let grid = level.to_tilegrid().unwrap(); - - for (linenum, line) in grid.raw_data().iter().enumerate() { - for block in line.iter() { - draw_block(&window, block); - } - window.mv(linenum as i32, 0); - } -} fn main() { let window = initscr(); - let mut level = 0; - let mut dungeon = Dungeon::new( - window.get_max_x() as usize, - window.get_max_y() as usize - 2, // allow 2 lines for game stats - 5 + let mut state = State::new( + Player::new( + "Kshar".to_string(), + "Warrior".to_string(), + 30, + 10, + 10, + 20, + 1, + (0, 0) + ), + Dungeon::new(window.get_max_x() as usize, window.get_max_y() as usize, 5), ); - dungeon.generate(); + state.init(); - let start_location = dungeon.levels[0].get_start_point(); - - let mut character: Character = Character::new( - "Kshar".to_string(), - "Warror".to_string(), - 30, - 10, - 10, - 20, - 0, - start_location - ); - - render_level(&window, &dungeon.levels[0]); + // Dump the whole dungeon structure in terminal for debugging + state.debug(); window.keypad(true); noecho(); - + loop { // update actors - + + state.render_level(&window); // update character - window.mv(window.get_max_y() - 2, 0); - window.clrtoeol(); + state.show_character(&window); - 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 match window.getch() { |