Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
distance_grid.h
Go to the documentation of this file.
1#ifndef DISTANCE_GRID_H
2#define DISTANCE_GRID_H
3
4#include <string>
5#include <unordered_map>
6#include <memory>
7
8#include <MazeBuilder/grid.h>
9
10namespace mazes {
11
12class distances;
13class cell;
14
18class distance_grid : public grid {
19
20public:
21 friend class binary_tree;
22 friend class dfs;
23 friend class sidewinder;
24
25
26 explicit distance_grid(unsigned int width, unsigned int length, unsigned int height = 1u);
27
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;
30
31 std::shared_ptr<distances> get_distances() const noexcept;
32private:
33 std::shared_ptr<grid_interface> m_grid;
34 std::shared_ptr<distances> m_distances;
35
36 std::optional<std::string> to_base36(int value) const;
37 void calc_distances() noexcept;
38};
39}
40
41#endif // DISTANCE_GRID_H
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