13 static constexpr auto BARRIER1 =
'|';
14 static constexpr auto BARRIER2 =
'-';
15 static constexpr auto CORNER =
'+';
21 WAVEFRONT_OBJECT_FILE = 2,
31 static std::string to_string_from_outputs(
output o) {
33 case output::PLAIN_TEXT:
37 case output::WAVEFRONT_OBJECT_FILE:
46 throw std::invalid_argument(
"Invalid output: " + std::to_string(
static_cast<unsigned int>(o)));
53 static output to_output_from_string(
const std::string& o) {
54 if (o.compare(
"txt") == 0) {
55 return output::PLAIN_TEXT;
56 }
else if (o.compare(
"json") == 0) {
58 }
else if (o.compare(
"obj") == 0) {
59 return output::WAVEFRONT_OBJECT_FILE;
60 }
else if (o.compare(
"png") == 0) {
62 }
else if (o.compare(
"jpeg") == 0) {
64 }
else if (o.compare(
"stdout") == 0) {
65 return output::STDOUT;
67 throw std::invalid_argument(
"Invalid output: " + o);
72 enum class algo :
unsigned int {
82 static std::string to_string_from_algo(
algo a) {
84 case algo::BINARY_TREE:
86 case algo::SIDEWINDER:
91 throw std::invalid_argument(
"Invalid algo: " + std::to_string(
static_cast<unsigned int>(a)));
98 static algo to_algo_from_string(
const std::string& a) {
99 if (a.compare(
"binary_tree") == 0) {
100 return algo::BINARY_TREE;
101 }
else if (a.compare(
"sidewinder") == 0) {
102 return algo::SIDEWINDER;
103 }
else if (a.compare(
"dfs") == 0) {
106 throw std::invalid_argument(
"Invalid algo: " + a);
Namespace for the maze builder.
Definition algo_interface.h:9
output
Enum class for output types.
Definition enums.h:18
algo
Enum class for maze types by the generating algorithm.
Definition enums.h:72