5#include <unordered_map>
26 explicit distance_grid(
unsigned int width,
unsigned int length,
unsigned int height = 1u);
28 virtual std::optional<std::string>
contents_of(
const std::shared_ptr<cell>& c)
const noexcept override;
29 virtual std::optional<std::uint32_t>
background_color_for(
const std::shared_ptr<cell>& c)
const noexcept override;
31 std::shared_ptr<distances> get_distances() const noexcept;
36 std::optional<std::
string> to_base36(
int value) const;
37 void calc_distances() noexcept;
Binary tree algorithm for generating mazes.
Definition binary_tree.h:18
Depth-first search algorithm for generating mazes.
Definition dfs.h:19
A grid that can calculate distances between cells.
Definition distance_grid.h:18
virtual std::optional< std::uint32_t > background_color_for(const std::shared_ptr< cell > &c) const noexcept override
Get the background color for a cell in the grid.
virtual std::optional< std::string > contents_of(const std::shared_ptr< cell > &c) const noexcept override
Get detailed information of a cell in the grid.
Distances utility class for counting paths and nodes.
Definition distances.h:17
Interface for the grid class.
Definition grid_interface.h:26
General purpose grid class for maze generation.
Definition grid.h:18
Sidewinder algorithm for generating mazes.
Definition sidewinder.h:17
Namespace for the maze builder.
Definition algo_interface.h:9