here_be_dragons/src/filter/starting_point.rs

134 lines
3.7 KiB
Rust

//! Add starting point to the map
//!
//! This modifier will try to add starting point by finding the floor title closes
//! to the given point.
//!
//! Example modifier usage:
//! ```
//! use rand::prelude::*;
//! use here_be_dragons::{MapFilter, Map, NoData, Tile};
//! use here_be_dragons::filter::starting_point::{AreaStartingPosition, XStart, YStart};
//! use here_be_dragons::geometry::Point;
//!
//! let mut rng = StdRng::seed_from_u64(100);
//! let mut map = Map::<NoData>::new(80, 50);
//! map.set_tile(10, 10, Tile::floor());
//! let modifier = AreaStartingPosition::new(XStart::LEFT, YStart::TOP);
//! let new_map = modifier.modify_map(&mut rng, &map);
//!
//! assert_eq!(new_map.starting_point, Some(Point::new(10, 10)));
//! ```
//!
use std::marker::PhantomData;
use crate::geometry::Point;
use crate::Map;
use crate::MapFilter;
use rand::prelude::StdRng;
/// Initial x region position
pub enum XStart {
LEFT,
CENTER,
RIGHT,
}
/// Initial y region position
pub enum YStart {
TOP,
CENTER,
BOTTOM,
}
/// Add starting position to the map
pub struct AreaStartingPosition<D> {
x: XStart,
y: YStart,
phantom: PhantomData<D>,
}
impl<D: Clone + Default> MapFilter<D> for AreaStartingPosition<D> {
fn modify_map(&self, _: &mut StdRng, map: &Map<D>) -> Map<D> {
self.build(map)
}
}
impl<D: Clone + Default> AreaStartingPosition<D> {
/// Create new modifier with given region
pub fn new(x: XStart, y: YStart) -> Box<AreaStartingPosition<D>> {
Box::new(AreaStartingPosition {
x,
y,
phantom: PhantomData,
})
}
fn build(&self, map: &Map<D>) -> Map<D> {
let seed_x = match self.x {
XStart::LEFT => 1,
XStart::CENTER => map.width / 2,
XStart::RIGHT => map.width - 2,
};
let seed_y = match self.y {
YStart::TOP => 1,
YStart::CENTER => map.height / 2,
YStart::BOTTOM => map.height - 2,
};
let mut available_floors: Vec<(usize, f32)> = Vec::new();
for (idx, tiletype) in map.tiles.iter().enumerate() {
if tiletype.is_walkable() {
available_floors.push((
idx,
Point::new(idx % map.width, idx / map.width)
.distance_to(&Point::new(seed_x, seed_y)),
));
}
}
if available_floors.is_empty() {
panic!("No valid floors to start on");
}
available_floors.sort_by(|a, b| a.1.partial_cmp(&b.1).unwrap());
let start_x = available_floors[0].0 % map.width;
let start_y = available_floors[0].0 / map.width;
let mut new_map = map.clone();
new_map.starting_point = Some(Point::new(start_x, start_y));
new_map
}
}
/// ------------------------------------------------------------------------------------------------
/// Module unit tests
/// ------------------------------------------------------------------------------------------------
#[cfg(test)]
mod tests {
use super::MapFilter;
use super::*;
use crate::geometry::Point;
use crate::map::{Map, NoData};
use rand::prelude::*;
#[test]
fn test_exit() {
let map_str = "
##########
# ## #
# # # #
##########
";
let mut map = Map::<NoData>::from_string(map_str);
map.starting_point = Some(Point::new(9, 2));
let modifier = AreaStartingPosition::new(XStart::CENTER, YStart::TOP);
let mut rng = StdRng::seed_from_u64(0);
let new_map = modifier.modify_map(&mut rng, &map);
assert_eq!(new_map.starting_point, Some(Point::new(6, 1)));
}
}