use crate::behaviors::maze::MazeGeneration;
use crate::algorithms::MazeAlgorithm;
use crate::grid::Grid;
use crate::cell::{Coordinates, MazeType};
use crate::error::Error;
use std::collections::{HashMap, HashSet};
use rand::prelude::SliceRandom;
pub struct Ellers;
impl MazeGeneration for Ellers {
fn generate(&self, grid: &mut Grid) -> Result<(), Error> {
match grid.maze_type {
MazeType::Orthogonal => {} maze_type => {
return Err(Error::AlgorithmUnavailableForMazeType {
algorithm: MazeAlgorithm::Ellers,
maze_type,
});
}
}
let rows = grid.height;
let cols = grid.width;
let mut set_for_cell: HashMap<Coordinates, usize> = HashMap::new();
let mut next_set_id = 0;
if grid.capture_steps {
let changed_cells = HashSet::new(); self.capture_step(grid, &changed_cells);
}
for row in 0..rows {
for col in 0..cols {
let coords = Coordinates { x: col, y: row };
if !set_for_cell.contains_key(&coords) {
set_for_cell.insert(coords, next_set_id);
next_set_id += 1;
}
}
for col in 0..cols - 1 {
let current_coords = Coordinates { x: col, y: row };
let right_coords = Coordinates { x: col + 1, y: row };
let current_set = *set_for_cell.get(¤t_coords).unwrap();
let right_set = *set_for_cell.get(&right_coords).unwrap();
if current_set != right_set && grid.random_bool() {
grid.link(current_coords, right_coords)?;
set_for_cell
.iter_mut()
.filter(|(_, set)| **set == right_set)
.for_each(|(_coords, set)| *set = current_set);
if grid.capture_steps {
let mut changed_cells = HashSet::new();
changed_cells.insert(current_coords);
changed_cells.insert(right_coords);
self.capture_step(grid, &changed_cells);
}
}
}
if row < rows - 1 {
let mut cells_by_set: HashMap<usize, Vec<Coordinates>> = HashMap::new();
for col in 0..cols {
let coords = Coordinates { x: col, y: row };
let set_id = *set_for_cell.get(&coords).unwrap();
cells_by_set
.entry(set_id)
.or_insert_with(Vec::new)
.push(coords);
}
for (_set_id, cells) in cells_by_set {
let mut cells = cells;
cells.shuffle(&mut rand::thread_rng());
let connect_count = 1 + grid.bounded_random_usize(cells.len());
for &cell_coords in cells.iter().take(connect_count) {
let down_coords = Coordinates {
x: cell_coords.x,
y: cell_coords.y + 1,
};
grid.link(cell_coords, down_coords)?;
set_for_cell.insert(down_coords, set_for_cell[&cell_coords]);
if grid.capture_steps {
let mut changed_cells = HashSet::new();
changed_cells.insert(cell_coords);
changed_cells.insert(down_coords);
self.capture_step(grid, &changed_cells);
}
}
}
}
}
for col in 0..cols - 1 {
let current_coords = Coordinates { x: col, y: rows - 1 };
let right_coords = Coordinates { x: col + 1, y: rows - 1 };
let current_set = *set_for_cell.get(¤t_coords).unwrap();
let right_set = *set_for_cell.get(&right_coords).unwrap();
if current_set != right_set {
grid.link(current_coords, right_coords)?;
set_for_cell
.iter_mut()
.filter(|(_, set)| **set == right_set)
.for_each(|(_coords, set)| *set = current_set);
if grid.capture_steps {
let mut changed_cells = HashSet::new();
changed_cells.insert(current_coords);
changed_cells.insert(right_coords);
self.capture_step(grid, &changed_cells);
}
}
}
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::cell::{MazeType, Coordinates};
#[test]
fn generate_and_print_5_x_5_orthogonal_maze() {
match Grid::new(MazeType::Orthogonal, 4, 4, Coordinates { x: 0, y: 0 }, Coordinates { x: 3, y: 3 }, false) {
Ok(mut grid) => {
assert!(!grid.is_perfect_maze().unwrap());
Ellers.generate(&mut grid).expect("Eller's maze generation failed");
println!("\n\nEller's\n\n{}\n\n", grid.to_asci());
assert!(grid.is_perfect_maze().unwrap());
}
Err(e) => panic!("Unexpected error running test: {:?}", e),
}
}
#[test]
fn generate_and_print_12_x_6_orthogonal_maze() {
match Grid::new(MazeType::Orthogonal, 12, 6, Coordinates { x: 0, y: 0 }, Coordinates { x: 11, y: 5 }, false) {
Ok(mut grid) => {
assert!(!grid.is_perfect_maze().unwrap());
Ellers.generate(&mut grid).expect("Eller's maze generation failed");
println!("\n\nEller's\n\n{}\n\n", grid.to_asci());
assert!(grid.is_perfect_maze().unwrap());
}
Err(e) => panic!("Unexpected error running test: {:?}", e),
}
}
#[test]
fn reject_5_x_5_delta_ellers_maze() {
match Grid::new(MazeType::Delta, 4, 4, Coordinates { x: 0, y: 0 }, Coordinates { x: 3, y: 3 }, false) {
Ok(mut grid) => {
assert!(!grid.is_perfect_maze().unwrap());
match Ellers.generate(&mut grid) {
Ok(()) => panic!("Successfully generated an Eller's maze for a Delta grid, which should have been rejected!"),
Err(e) => println!("As expected, Delta grid is rejected for Eller's maze generation: {:?}", e),
}
}
Err(e) => panic!("Unexpected error generating grid: {:?}", e),
}
}
#[test]
fn reject_5_x_5_sigma_ellers_maze() {
match Grid::new(MazeType::Sigma, 4, 4, Coordinates { x: 0, y: 0 }, Coordinates { x: 3, y: 3 }, false) {
Ok(mut grid) => {
assert!(!grid.is_perfect_maze().unwrap());
match Ellers.generate(&mut grid) {
Ok(()) => panic!("Successfully generated an Eller's maze for a Sigma grid, which should have been rejected!"),
Err(e) => println!("As expected, Sigma grid is rejected for Eller's maze generation: {:?}", e),
}
}
Err(e) => panic!("Unexpected error generating grid: {:?}", e),
}
}
#[test]
fn test_ellers_with_capture_steps() {
let start = Coordinates { x: 0, y: 0 };
let goal = Coordinates { x: 19, y: 19 };
match Grid::new(MazeType::Orthogonal, 20, 20, start, goal, true) {
Ok(mut grid) => {
assert!(!grid.is_perfect_maze().unwrap());
Ellers.generate(&mut grid).expect("Maze generation failed");
assert!(grid.is_perfect_maze().unwrap());
assert!(grid.generation_steps.is_some());
let steps = grid.generation_steps.as_ref().unwrap();
assert!(!steps.is_empty());
let has_linked_cells = steps.iter().any(|step| {
step.cells.iter().filter_map(|opt| opt.as_ref()).any(|cell| !cell.linked.is_empty())
});
assert!(has_linked_cells, "No cells were linked during maze generation");
let has_open_walls = steps.iter().any(|step| {
step.cells.iter().filter_map(|opt| opt.as_ref()).any(|cell| !cell.open_walls.is_empty())
});
assert!(has_open_walls, "No cells have open walls in generation steps");
}
Err(e) => panic!("Unexpected error generating grid: {:?}", e),
}
}
}