Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
grid_interface.h
Go to the documentation of this file.
1#ifndef GRID_INTERFACE_H
2#define GRID_INTERFACE_H
3
4#include <vector>
5#include <string>
6#include <ostream>
7#include <sstream>
8#include <memory>
9#include <cstdint>
10#include <optional>
11#include <tuple>
12
13#include <MazeBuilder/enums.h>
14#include <MazeBuilder/cell.h>
15
16namespace mazes {
17
27
28public:
30 virtual std::tuple<unsigned int, unsigned int, unsigned int> get_dimensions() const noexcept = 0;
31
33 virtual void to_vec(std::vector<std::shared_ptr<cell>>& cells) const noexcept = 0;
34 virtual void to_vec2(std::vector<std::vector<std::shared_ptr<cell>>>& cells) const noexcept = 0;
35
39 virtual std::optional<std::string> contents_of(const std::shared_ptr<cell>& c) const noexcept = 0;
40 virtual std::optional<std::uint32_t> background_color_for(const std::shared_ptr<cell>& c) const noexcept = 0;
41
42protected:
43
48 friend std::ostream& operator<<(std::ostream& os, const grid_interface& g) {
49 auto [rows, columns, _] = g.get_dimensions();
50
51 // First sort cells by row then column
52 std::vector<std::shared_ptr<cell>> cells;
53 cells.reserve(rows * columns);
54
55 // populate the cells from the grid
56 g.to_vec(std::ref(cells));
57
58 // ---+
59 static constexpr auto barrier = { BARRIER2, BARRIER2, BARRIER2, BARRIER2, BARRIER2, CORNER };
60 static const std::string wall_plus_corner{ barrier };
61
62 std::stringstream output;
63 output << CORNER;
64
65 for (auto i{ 0u }; i < columns; i++) {
66 output << wall_plus_corner;
67 }
68 output << "\n";
69
70 auto row_counter{ 0u }, column_counter{ 0u };
71 auto cell_iter = cells.cbegin();
72
73 while (row_counter < rows) {
74 std::stringstream top_builder, bottom_builder;
75 top_builder << BARRIER1;
76 bottom_builder << CORNER;
77
78 while (column_counter < columns && cell_iter != cells.cend()) {
79
80 // 5 spaces in body for single-digit number to hold base36 values
81 static const std::string vertical_barrier_str{ BARRIER1 };
82
83 auto val = g.contents_of(std::cref(*cell_iter)).value_or("*");
84 std::string body = "";
85 switch (val.size()) {
86 case 1: body = " " + val + " "; break;
87 case 2: body = " " + val + " "; break;
88 case 3: body = " " + val + " "; break;
89 case 4: body = " " + val; break;
90 // case 1 is default
91 default: body = " " + val + " "; break;
92 }
93 auto east_boundary = cell_iter->get()->is_linked(cell_iter->get()->get_east()) ? " " : vertical_barrier_str;
94 auto south_boundary = cell_iter->get()->is_linked(cell_iter->get()->get_south()) ? " " : wall_plus_corner.substr(0, wall_plus_corner.size() - 1);
95 top_builder << body << east_boundary;
96 bottom_builder << south_boundary << "+";
97
98 ++cell_iter;
99 ++column_counter;
100 }
101
102 column_counter = 0;
103 ++row_counter;
104
105 output << top_builder.str() << "\n" << bottom_builder.str() << "\n";
106 } // while
107
108 os << output.str() << "\n";
109
110 return os;
111 } // << operator
112
113}; // grid_interface
114
115} // namespace mazes
116
117#endif // GRID_INTERFACE_H
Cell class for maze generation.
Definition cell.h:14
Interface for the grid class.
Definition grid_interface.h:26
virtual void to_vec(std::vector< std::shared_ptr< cell > > &cells) const noexcept=0
Transformation functions.
virtual std::optional< std::string > contents_of(const std::shared_ptr< cell > &c) const noexcept=0
Get detailed information of a cell in the grid.
virtual std::tuple< unsigned int, unsigned int, unsigned int > get_dimensions() const noexcept=0
Get dimensions of a grid with no assumptions about the ordering of the dimensions.
Enumerations for the maze builder program.
Namespace for the maze builder.
Definition algo_interface.h:9
output
Enum class for output types.
Definition enums.h:18