49 auto [rows, columns, _] = g.get_dimensions();
52 std::vector<std::shared_ptr<cell>> cells;
53 cells.reserve(rows * columns);
56 g.to_vec(std::ref(cells));
59 static constexpr auto barrier = { BARRIER2, BARRIER2, BARRIER2, BARRIER2, BARRIER2, CORNER };
60 static const std::string wall_plus_corner{ barrier };
65 for (
auto i{ 0u }; i < columns; i++) {
66 output << wall_plus_corner;
70 auto row_counter{ 0u }, column_counter{ 0u };
71 auto cell_iter = cells.cbegin();
73 while (row_counter < rows) {
74 std::stringstream top_builder, bottom_builder;
75 top_builder << BARRIER1;
76 bottom_builder << CORNER;
78 while (column_counter < columns && cell_iter != cells.cend()) {
81 static const std::string vertical_barrier_str{ BARRIER1 };
83 auto val = g.contents_of(std::cref(*cell_iter)).value_or(
"*");
84 std::string body =
"";
86 case 1: body =
" " + val +
" ";
break;
87 case 2: body =
" " + val +
" ";
break;
88 case 3: body =
" " + val +
" ";
break;
89 case 4: body =
" " + val;
break;
91 default: body =
" " + val +
" ";
break;
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 <<
"+";
105 output << top_builder.str() <<
"\n" << bottom_builder.str() <<
"\n";
108 os <<
output.str() <<
"\n";