Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
maze.h
Go to the documentation of this file.
1#ifndef MAZE_H
2#define MAZE_H
3
4#include <string>
5#include <optional>
6
7#include <MazeBuilder/hash.h>
8#include <MazeBuilder/enums.h>
10
11namespace mazes {
12
13class cell;
14
18class maze {
19public:
20
21 using pqmap = std::unordered_map<std::pair<int, int>, std::tuple<int, int, int, int>, pair_hash>;
22
23 explicit maze(unsigned int rows, unsigned int columns, unsigned int levels = 1);
24 explicit maze(std::unique_ptr<grid_interface>&& g);
25
26 // Getters
27 unsigned int get_rows() const noexcept;
28 unsigned int get_columns() const noexcept;
29 unsigned int get_levels() const noexcept;
30 bool has_distances() const noexcept;
31 int get_block_id() const noexcept;
32
33 std::optional<std::tuple<int, int, int, int>> find_block(int x, int z) const noexcept;
34
35 void intopq(int x, int y, int z, int w) noexcept;
36
37 const std::unique_ptr<grid_interface>& get_grid() const noexcept;
38private:
39 bool distances;
40 int block_id;
41
42 pqmap m_p_q;
43
44 std::unique_ptr<grid_interface> my_grid;
45}; // maze struct
46
47} // namespace mazes
48
49#endif // MAZE_H
Distances utility class for counting paths and nodes.
Definition distances.h:17
Data class representing a 2D or 3D maze.
Definition maze.h:18
Enumerations for the maze builder program.
Namespace for the maze builder.
Definition algo_interface.h:9
Hashing function to store a block's (x, z) position.
Definition hash.h:12