27 explicit colored_grid(
unsigned int rows,
unsigned int cols,
unsigned int height = 1u);
29 virtual std::optional<std::string>
contents_of(
const std::shared_ptr<cell>& c)
const noexcept override;
30 virtual std::optional<std::uint32_t>
background_color_for(
const std::shared_ptr<cell>& c)
const noexcept override;
34 std::shared_ptr<distance_grid> m_distance_grid;
Binary tree algorithm for generating mazes.
Definition binary_tree.h:18
Extension of the grid class to include color information.
Definition colored_grid.h:19
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.
Depth-first search algorithm for generating mazes.
Definition dfs.h:19
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