Maze Builder Docs 6.0.1
|
Interface for the grid class. More...
#include <grid_interface.h>
Public Member Functions | |
virtual std::tuple< unsigned int, unsigned int, unsigned int > | get_dimensions () const noexcept=0 |
Get dimensions of a grid with no assumptions about the ordering of the dimensions. | |
virtual void | to_vec (std::vector< std::shared_ptr< cell > > &cells) const noexcept=0 |
Transformation functions. | |
virtual void | to_vec2 (std::vector< std::vector< std::shared_ptr< cell > > > &cells) const noexcept=0 |
virtual std::optional< std::string > | contents_of (const std::shared_ptr< cell > &c) const noexcept=0 |
Get detailed information of a cell in the grid. | |
virtual std::optional< std::uint32_t > | background_color_for (const std::shared_ptr< cell > &c) const noexcept=0 |
Friends | |
std::ostream & | operator<< (std::ostream &os, const grid_interface &g) |
Provide a string representation of the grid. | |
Interface for the grid class.
This interface provides methods to interact with the grid
The grid is a collection of cells that are linked together to form a maze
The grid can be visualized as a 2D or 3D structure using strings
The grid can be transformed into a vector of cells or a vector of vectors of cells
The grid can provide detailed information about a cell
|
pure virtualnoexcept |
Implemented in mazes::colored_grid, mazes::distance_grid, and mazes::grid.
|
pure virtualnoexcept |
Get detailed information of a cell in the grid.
c |
Implemented in mazes::colored_grid, mazes::distance_grid, and mazes::grid.
|
pure virtualnoexcept |
Get dimensions of a grid with no assumptions about the ordering of the dimensions.
Implemented in mazes::grid.
|
pure virtualnoexcept |
Transformation functions.
Implemented in mazes::grid.
|
pure virtualnoexcept |
Implemented in mazes::grid.
|
friend |
Provide a string representation of the grid.
os | |
g |