Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
colored_grid.h
Go to the documentation of this file.
1#ifndef COLORED_GRID_H
2#define COLORED_GRID_H
3
4#include <memory>
5#include <cstdint>
6#include <vector>
7#include <optional>
8
9#include <MazeBuilder/grid.h>
10
11namespace mazes {
12
13class cell;
14class distance_grid;
15
19class colored_grid : public grid {
20
21 public:
22
23 friend class binary_tree;
24 friend class dfs;
25 friend class sidewinder;
26
27 explicit colored_grid(unsigned int rows, unsigned int cols, unsigned int height = 1u);
28
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;
31
32 private:
33
34 std::shared_ptr<distance_grid> m_distance_grid;
35};
36
37}
38#endif // COLORED_GRID_H
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