Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
distances.h
Go to the documentation of this file.
1#ifndef DISTANCES_H
2#define DISTANCES_H
3
4#include <unordered_map>
5#include <vector>
6#include <algorithm>
7#include <memory>
8
9namespace mazes {
10
11class cell;
12
17class distances {
18public:
19 explicit distances(std::shared_ptr<cell> root);
20
21 int& operator[](const std::shared_ptr<cell>& cell) noexcept {
22 return m_cells[cell];
23 }
24
25 void set(std::shared_ptr<cell> cell, int distance) noexcept;
26
27 bool contains(const std::shared_ptr<cell>& cell) const noexcept;
28
29 std::shared_ptr<distances> path_to(std::shared_ptr<cell> goal) const noexcept;
30 std::pair<std::shared_ptr<cell>, int> max() const noexcept;
31
32 void collect_keys(std::vector<std::shared_ptr<cell>>& cells) const noexcept;
33
34private:
35 std::shared_ptr<cell> m_root;
36 std::unordered_map<std::shared_ptr<cell>, int> m_cells;
37};
38
39} // namespace mazes
40#endif // DISTANCES_H
Cell class for maze generation.
Definition cell.h:14
Distances utility class for counting paths and nodes.
Definition distances.h:17
Namespace for the maze builder.
Definition algo_interface.h:9