initial wfc, and suppressing dead code warnings

This commit is contained in:
Llywelwyn 2023-07-20 17:21:32 +01:00
parent 7f775b80dd
commit fc59880b80
10 changed files with 551 additions and 30 deletions

View file

@ -22,27 +22,34 @@ pub trait MapBuilder {
fn take_snapshot(&mut self);
}
#[rustfmt::skip]
pub fn random_builder(new_depth: i32) -> Box<dyn MapBuilder> {
/*let mut rng = rltk::RandomNumberGenerator::new();
let mut rng = rltk::RandomNumberGenerator::new();
let builder = rng.roll_dice(1, 17);
let mut result : Box<dyn MapBuilder>;
match builder {
1 => Box::new(bsp_dungeon::BspDungeonBuilder::new(new_depth)),
2 => Box::new(bsp_interior::BspInteriorBuilder::new(new_depth)),
3 => Box::new(cellular_automata::CellularAutomataBuilder::new(new_depth)),
4 => Box::new(drunkard::DrunkardsWalkBuilder::open_area(new_depth)),
5 => Box::new(drunkard::DrunkardsWalkBuilder::open_halls(new_depth)),
6 => Box::new(drunkard::DrunkardsWalkBuilder::winding_passages(new_depth)),
6 => Box::new(drunkard::DrunkardsWalkBuilder::fat_passages(new_depth)),
6 => Box::new(drunkard::DrunkardsWalkBuilder::fearful_symmetry(new_depth)),
7 => Box::new(maze::MazeBuilder::new(new_depth)),
8 => Box::new(dla::DLABuilder::walk_inwards(new_depth)),
9 => Box::new(dla::DLABuilder::walk_outwards(new_depth)),
10 => Box::new(dla::DLABuilder::central_attractor(new_depth)),
11 => Box::new(dla::DLABuilder::insectoid(new_depth)),
12 => Box::new(voronoi::VoronoiBuilder::pythagoras(new_depth)),
12 => Box::new(voronoi::VoronoiBuilder::manhattan(new_depth)),
12 => Box::new(voronoi::VoronoiBuilder::chebyshev(new_depth)),
_ => Box::new(simple_map::SimpleMapBuilder::new(new_depth)),
}*/
Box::new(wfc::WaveFunctionCollapseBuilder::new(new_depth))
1 => { result = Box::new(bsp_dungeon::BspDungeonBuilder::new(new_depth)); }
2 => { result = Box::new(bsp_interior::BspInteriorBuilder::new(new_depth)); }
3 => { result = Box::new(cellular_automata::CellularAutomataBuilder::new(new_depth)); }
4 => { result = Box::new(drunkard::DrunkardsWalkBuilder::open_area(new_depth)); }
5 => { result = Box::new(drunkard::DrunkardsWalkBuilder::open_halls(new_depth)); }
6 => { result = Box::new(drunkard::DrunkardsWalkBuilder::winding_passages(new_depth)); }
7 => { result = Box::new(drunkard::DrunkardsWalkBuilder::fat_passages(new_depth)); }
8 => { result = Box::new(drunkard::DrunkardsWalkBuilder::fearful_symmetry(new_depth)); }
9 => { result = Box::new(maze::MazeBuilder::new(new_depth)); }
10 => { result = Box::new(dla::DLABuilder::walk_inwards(new_depth)); }
11 => { result = Box::new(dla::DLABuilder::walk_outwards(new_depth)); }
12 => { result = Box::new(dla::DLABuilder::central_attractor(new_depth)); }
13 => { result = Box::new(dla::DLABuilder::insectoid(new_depth)); }
14 => { result = Box::new(voronoi::VoronoiBuilder::pythagoras(new_depth)); }
15 => { result = Box::new(voronoi::VoronoiBuilder::manhattan(new_depth)); }
16 => { result = Box::new(wfc::WaveFunctionCollapseBuilder::test_map(new_depth)); }
_ => { result = Box::new(simple_map::SimpleMapBuilder::new(new_depth)); }
}
if rng.roll_dice(1, 3)==1 {
result = Box::new(wfc::WaveFunctionCollapseBuilder::derived_map(new_depth, result));
}
result
}