2021-10-22 10:05:06 -04:00
|
|
|
use rltk::{GameState, Rltk, RGB};
|
2021-10-21 12:54:39 -04:00
|
|
|
use specs::prelude::*;
|
2021-10-20 12:01:15 -04:00
|
|
|
|
2021-10-22 10:05:06 -04:00
|
|
|
mod components;
|
|
|
|
pub use components::*;
|
|
|
|
mod map;
|
|
|
|
pub use map::*;
|
|
|
|
mod player;
|
|
|
|
use player::*;
|
|
|
|
mod rect;
|
2021-10-25 15:26:39 -04:00
|
|
|
mod visibility_system;
|
|
|
|
use visibility_system::VisibilitySystem;
|
|
|
|
|
2021-10-22 14:50:04 -04:00
|
|
|
pub use rect::Rect;
|
2021-10-21 12:54:39 -04:00
|
|
|
|
2021-10-22 10:05:06 -04:00
|
|
|
pub struct State {
|
2021-10-21 12:54:39 -04:00
|
|
|
ecs: World,
|
|
|
|
}
|
2021-10-20 12:01:15 -04:00
|
|
|
|
2021-10-25 14:23:19 -04:00
|
|
|
impl State {
|
|
|
|
fn run_systems(&mut self) {
|
2021-10-25 15:26:39 -04:00
|
|
|
let mut vis = VisibilitySystem {};
|
|
|
|
vis.run_now(&self.ecs);
|
|
|
|
|
2021-10-25 14:23:19 -04:00
|
|
|
self.ecs.maintain();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 12:01:15 -04:00
|
|
|
impl GameState for State {
|
|
|
|
fn tick(&mut self, ctx: &mut Rltk) {
|
|
|
|
ctx.cls();
|
2021-10-21 14:24:40 -04:00
|
|
|
|
|
|
|
player_input(self, ctx);
|
|
|
|
self.run_systems();
|
|
|
|
|
2021-10-25 14:23:19 -04:00
|
|
|
draw_map(&self.ecs, ctx);
|
2021-10-21 14:52:03 -04:00
|
|
|
|
2021-10-21 14:24:40 -04:00
|
|
|
let positions = self.ecs.read_storage::<Position>();
|
|
|
|
let renderables = self.ecs.read_storage::<Renderable>();
|
2021-10-26 14:38:30 -04:00
|
|
|
let map = self.ecs.fetch::<Map>();
|
2021-10-21 14:24:40 -04:00
|
|
|
|
|
|
|
for (pos, render) in (&positions, &renderables).join() {
|
2021-10-26 14:38:30 -04:00
|
|
|
let idx = map.xy_idx(pos.x, pos.y);
|
|
|
|
if map.visible_tiles[idx] {
|
|
|
|
ctx.set(pos.x, pos.y, render.fg, render.bg, render.glyph);
|
|
|
|
}
|
2021-10-21 14:24:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 12:01:15 -04:00
|
|
|
fn main() -> rltk::BError {
|
|
|
|
use rltk::RltkBuilder;
|
|
|
|
|
|
|
|
let context = RltkBuilder::simple80x50()
|
|
|
|
.with_title("Roguelike Tutorial")
|
|
|
|
.build()?;
|
|
|
|
|
2021-10-21 12:54:39 -04:00
|
|
|
let mut gs = State { ecs: World::new() };
|
|
|
|
|
|
|
|
gs.ecs.register::<Position>();
|
|
|
|
gs.ecs.register::<Renderable>();
|
2021-10-21 14:24:40 -04:00
|
|
|
gs.ecs.register::<Player>();
|
2021-10-25 15:26:39 -04:00
|
|
|
gs.ecs.register::<Viewshed>();
|
2021-10-21 12:54:39 -04:00
|
|
|
|
2021-10-25 14:23:19 -04:00
|
|
|
let map: Map = Map::new_map_rooms_and_corridors();
|
|
|
|
let (player_x, player_y) = map.rooms[0].center();
|
2021-10-22 14:50:04 -04:00
|
|
|
|
2021-10-26 14:38:30 -04:00
|
|
|
for room in map.rooms.iter().skip(1) {
|
|
|
|
let (x, y) = room.center();
|
|
|
|
gs.ecs
|
|
|
|
.create_entity()
|
|
|
|
.with(Position { x, y })
|
|
|
|
.with(Renderable {
|
|
|
|
glyph: rltk::to_cp437('g'),
|
|
|
|
fg: RGB::named(rltk::RED),
|
|
|
|
bg: RGB::named(rltk::BLACK),
|
|
|
|
})
|
|
|
|
.with(Viewshed {
|
|
|
|
visible_tiles: Vec::new(),
|
|
|
|
range: 8,
|
|
|
|
dirty: true,
|
|
|
|
})
|
|
|
|
.build();
|
|
|
|
}
|
2021-10-22 14:50:04 -04:00
|
|
|
|
2021-10-21 12:54:39 -04:00
|
|
|
gs.ecs
|
|
|
|
.create_entity()
|
2021-10-25 15:26:39 -04:00
|
|
|
.with(Position {
|
|
|
|
x: player_x,
|
|
|
|
y: player_y,
|
|
|
|
})
|
2021-10-21 12:54:39 -04:00
|
|
|
.with(Renderable {
|
|
|
|
glyph: rltk::to_cp437('@'),
|
|
|
|
fg: RGB::named(rltk::YELLOW),
|
|
|
|
bg: RGB::named(rltk::BLACK),
|
|
|
|
})
|
2021-10-21 14:24:40 -04:00
|
|
|
.with(Player {})
|
2021-10-25 15:26:39 -04:00
|
|
|
.with(Viewshed {
|
|
|
|
visible_tiles: Vec::new(),
|
|
|
|
range: 8,
|
2021-10-26 14:23:08 -04:00
|
|
|
dirty: true,
|
2021-10-25 15:26:39 -04:00
|
|
|
})
|
2021-10-21 12:54:39 -04:00
|
|
|
.build();
|
2021-10-20 12:01:15 -04:00
|
|
|
|
2021-10-26 14:38:30 -04:00
|
|
|
gs.ecs.insert(map);
|
|
|
|
|
2021-10-20 12:01:15 -04:00
|
|
|
rltk::main_loop(context, gs)
|
2021-10-21 12:54:39 -04:00
|
|
|
}
|