Now with resize

This commit is contained in:
Kasper Juul Hermansen 2022-01-25 14:41:24 +01:00
parent d52638c282
commit 95be479636
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
4 changed files with 147 additions and 44 deletions

19
src/components.rs Normal file
View File

@ -0,0 +1,19 @@
use rltk::RGB;
use specs::prelude::*;
use specs_derive::*;
#[derive(Component)]
pub struct Position {
pub x: i32,
pub y: i32,
}
#[derive(Component)]
pub struct Renderable {
pub glyph: rltk::FontCharType,
pub fg: RGB,
pub bg: RGB,
}
#[derive(Component, Debug)]
pub struct Player {}

View File

@ -1,60 +1,24 @@
use rltk::{GameState, Rltk, RGB}; use components::*;
use map::*;
use player::*;
use rltk::{GameState, RGB};
use specs::prelude::*; use specs::prelude::*;
use specs_derive::Component;
use std::cmp::{max, min};
#[derive(Component)] mod components;
struct Position { mod map;
x: i32, mod player;
y: i32,
}
#[derive(Component)] pub struct State {
struct Renderable {
glyph: rltk::FontCharType,
fg: RGB,
bg: RGB,
}
#[derive(Component, Debug)]
struct Player {}
struct State {
ecs: World, ecs: World,
} }
impl State { impl State {
fn run_systems(&mut self) { fn run_systems(&mut self) {
let mut lw = LeftWalker {};
lw.run_now(&self.ecs);
self.ecs.maintain(); self.ecs.maintain();
} }
} }
fn try_move_player(delta_x: i32, delta_y: i32, ecs: &mut World) {
let mut positions = ecs.write_storage::<Position>();
let mut players = ecs.write_storage::<Player>();
for (_player, pos) in (&mut players, &mut positions).join() {
pos.x = min(79, max(0, pos.x + delta_x));
pos.y = min(49, max(0, pos.y + delta_y));
}
}
fn player_input(gs: &mut State, ctx: &mut Rltk) {
match ctx.key {
None => {}
Some(key) => match key {
rltk::VirtualKeyCode::Left => try_move_player(-1, 0, &mut gs.ecs),
rltk::VirtualKeyCode::Right => try_move_player(1, 0, &mut gs.ecs),
rltk::VirtualKeyCode::Up => try_move_player(0, -1, &mut gs.ecs),
rltk::VirtualKeyCode::Down => try_move_player(0, 1, &mut gs.ecs),
_ => {}
},
}
}
impl GameState for State { impl GameState for State {
fn tick(&mut self, ctx: &mut rltk::Rltk) { fn tick(&mut self, ctx: &mut rltk::Rltk) {
ctx.cls(); ctx.cls();
@ -62,6 +26,9 @@ impl GameState for State {
player_input(self, ctx); player_input(self, ctx);
self.run_systems(); self.run_systems();
let map = self.ecs.fetch::<Vec<TileType>>();
draw_map(&map, ctx);
let positions = self.ecs.read_storage::<Position>(); let positions = self.ecs.read_storage::<Position>();
let renderables = self.ecs.read_storage::<Renderable>(); let renderables = self.ecs.read_storage::<Renderable>();
@ -75,12 +42,15 @@ fn main() -> rltk::BError {
use rltk::RltkBuilder; use rltk::RltkBuilder;
let context = RltkBuilder::simple80x50() let context = RltkBuilder::simple80x50()
.with_title("Roguelike Tutorial") .with_title("Roguelike Tutorial")
.with_automatic_console_resize(false)
.with_dimensions(80 * 3, 50 * 3)
.build()?; .build()?;
let mut gs = State { ecs: World::new() }; let mut gs = State { ecs: World::new() };
gs.ecs.register::<Position>(); gs.ecs.register::<Position>();
gs.ecs.register::<Renderable>(); gs.ecs.register::<Renderable>();
gs.ecs.register::<Player>(); gs.ecs.register::<Player>();
gs.ecs.insert(new_map_rooms_and_corridors());
gs.ecs gs.ecs
.create_entity() .create_entity()

79
src/map.rs Normal file
View File

@ -0,0 +1,79 @@
use rltk::{Rltk, RGB};
#[derive(PartialEq, Copy, Clone)]
pub enum TileType {
Wall,
Floor,
}
pub fn xy_idx(x: i32, y: i32) -> usize {
(y as usize * 80) + x as usize
}
pub fn new_map_rooms_and_corridors() -> Vec<TileType> {
let mut map = vec![TileType::Wall; 80 * 50];
map
}
/// Makes a map with solid boundaries and 400 randomly placed walls. No guarantees that it won't look awful
pub fn new_map_test() -> Vec<TileType> {
let mut map = vec![TileType::Floor; 80 * 50];
for x in 0..80 {
map[xy_idx(x, 0)] = TileType::Wall;
map[xy_idx(x, 49)] = TileType::Wall;
}
for y in 0..50 {
map[xy_idx(0, y)] = TileType::Wall;
map[xy_idx(79, y)] = TileType::Wall;
}
let mut rng = rltk::RandomNumberGenerator::new();
for _i in 0..400 {
let x = rng.roll_dice(1, 79);
let y = rng.roll_dice(1, 49);
let idx = xy_idx(x, y);
if idx != xy_idx(40, 25) {
map[idx] = TileType::Wall;
}
}
map
}
pub fn draw_map(map: &[TileType], ctx: &mut Rltk) {
let mut y = 0;
let mut x = 0;
for tile in map.iter() {
match tile {
TileType::Floor => {
ctx.set(
x,
y,
RGB::from_f32(0.5, 0.5, 0.5),
RGB::from_f32(0., 0., 0.),
rltk::to_cp437('.'),
);
}
TileType::Wall => {
ctx.set(
x,
y,
RGB::from_f32(0.0, 1.0, 0.0),
RGB::from_f32(0., 0., 0.),
rltk::to_cp437('#'),
);
}
}
x += 1;
if x > 79 {
x = 0;
y += 1;
}
}
}

35
src/player.rs Normal file
View File

@ -0,0 +1,35 @@
use crate::{
components::{Player, Position},
map::{xy_idx, TileType},
State,
};
use rltk::Rltk;
use specs::prelude::*;
use std::cmp::{max, min};
pub fn try_move_player(delta_x: i32, delta_y: i32, ecs: &mut World) {
let mut positions = ecs.write_storage::<Position>();
let mut players = ecs.write_storage::<Player>();
let map = ecs.fetch::<Vec<TileType>>();
for (_player, pos) in (&mut players, &mut positions).join() {
let destination_idx = xy_idx(pos.x + delta_x, pos.y + delta_y);
if map[destination_idx] != TileType::Wall {
pos.x = min(79, max(0, pos.x + delta_x));
pos.y = min(49, max(0, pos.y + delta_y));
}
}
}
pub fn player_input(gs: &mut State, ctx: &mut Rltk) {
match ctx.key {
None => {}
Some(key) => match key {
rltk::VirtualKeyCode::Left => try_move_player(-1, 0, &mut gs.ecs),
rltk::VirtualKeyCode::Right => try_move_player(1, 0, &mut gs.ecs),
rltk::VirtualKeyCode::Up => try_move_player(0, -1, &mut gs.ecs),
rltk::VirtualKeyCode::Down => try_move_player(0, 1, &mut gs.ecs),
_ => {}
},
}
}