aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 24a4bcb8141b94280abcfc959d134437ce775bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
extern crate rand;
extern crate pancurses;

#[macro_use]
extern crate text_io;

mod character;
mod computer;
mod world;

use character::Player;
use computer::Enemy;
use pancurses::{Window, initscr, endwin};
use rand::Rng;
use std::io;
use std::convert::TryFrom;
use world::{World, GameWorld, TileType};

fn draw_block(window: &Window, block: &TileType) {
    let repr = match block {
        TileType::Floor => ".",
        TileType::Wall => "█",
        TileType::Corridor => "#",
        TileType::Empty => " "
    };

    window.printw(repr);
}

fn render_world(window: &Window, world: &World) {
    let grid = world.to_tilegrid();

    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 debug_world(world: &World) {
    let grid = world.to_tilegrid();

    for (line) in grid.raw_data().iter() {
        for block in line.iter() {
            print!("{}", match block {
                TileType::Floor => ".",
                TileType::Wall => "█",
                TileType::Corridor => "#",
                TileType::Empty => " ",
                _ => "?"
            });
        }
        print!("\n");
    }
}

fn main() {
    let mut world = World::new(24);
    world.generate();

    debug_world(&world);

    // let window = initscr();

    // render_world(&window, &world);

    // window.refresh();

    // window.getch();
    // endwin();
}