Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
cell.h
Go to the documentation of this file.
1#ifndef CELL_H
2#define CELL_H
3
4#include <memory>
5#include <vector>
6#include <unordered_map>
7#include <cstdint>
8
9namespace mazes {
10
14class cell {
15public:
16 explicit cell(int index);
17 explicit cell(unsigned int row, unsigned int column, int index);
18 void link(std::shared_ptr<cell> c1, std::shared_ptr<cell> c2, bool bidi=true);
19 void unlink(std::shared_ptr<cell> c1, std::shared_ptr<cell> c2, bool bidi=true);
20 std::unordered_map<std::shared_ptr<cell>, bool> get_links() const;
21 bool is_linked(const std::shared_ptr<cell>& c) const;
22
23 std::vector<std::shared_ptr<cell>> get_neighbors() const noexcept;
24
25 unsigned int get_row() const;
26 unsigned int get_column() const;
27 int get_index() const;
28 void set_index(int next_index) noexcept;
29
30 std::shared_ptr<cell> get_north() const;
31 std::shared_ptr<cell> get_south() const;
32 std::shared_ptr<cell> get_east() const;
33 std::shared_ptr<cell> get_west() const;
34
35 void set_north(std::shared_ptr<cell> const& other);
36 void set_south(std::shared_ptr<cell> const& other);
37 void set_east(std::shared_ptr<cell> const& other);
38 void set_west(std::shared_ptr<cell> const& other);
39
40 std::shared_ptr<cell> get_left() const;
41 std::shared_ptr<cell> get_right() const;
42
43 void set_left(std::shared_ptr<cell> const& other_left);
44 void set_right(std::shared_ptr<cell> const& other_right);
45
46 void set_row(unsigned int r) noexcept;
47 void set_column(unsigned int c) noexcept;
48
49private:
50 bool has_key(const std::shared_ptr<cell>& c) const;
51
52 std::unordered_map<std::shared_ptr<cell>, bool> m_links;
53
54 unsigned int m_row, m_column;
55 int m_index;
56
57 std::shared_ptr<cell> m_north;
58 std::shared_ptr<cell> m_south;
59 std::shared_ptr<cell> m_east;
60 std::shared_ptr<cell> m_west;
61
62 std::shared_ptr<cell> m_left;
63 std::shared_ptr<cell> m_right;
64}; // class
65
66} // namespace
67
68#endif // CELL_H
Cell class for maze generation.
Definition cell.h:14
Namespace for the maze builder.
Definition algo_interface.h:9