Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
enums.h
Go to the documentation of this file.
1#ifndef ENUMS
2#define ENUMS
3
4#include <string>
5#include <stdexcept>
6
9
10namespace mazes {
11
13 static constexpr auto BARRIER1 = '|';
14 static constexpr auto BARRIER2 = '-';
15 static constexpr auto CORNER = '+';
16
18 enum class output : unsigned int {
19 PLAIN_TEXT = 0,
20 JSON = 1,
21 WAVEFRONT_OBJECT_FILE = 2,
22 PNG = 3,
23 JPEG = 4,
24 STDOUT = 5,
25 TOTAL = 6
26 };
27
31 static std::string to_string_from_outputs(output o) {
32 switch (o) {
33 case output::PLAIN_TEXT:
34 return "txt";
35 case output::JSON:
36 return "json";
37 case output::WAVEFRONT_OBJECT_FILE:
38 return "obj";
39 case output::PNG:
40 return "png";
41 case output::JPEG:
42 return "jpeg";
43 case output::STDOUT:
44 return "stdout";
45 default:
46 throw std::invalid_argument("Invalid output: " + std::to_string(static_cast<unsigned int>(o)));
47 }
48 };
49
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) {
57 return output::JSON;
58 } else if (o.compare("obj") == 0) {
59 return output::WAVEFRONT_OBJECT_FILE;
60 } else if (o.compare("png") == 0) {
61 return output::PNG;
62 } else if (o.compare("jpeg") == 0) {
63 return output::JPEG;
64 } else if (o.compare("stdout") == 0) {
65 return output::STDOUT;
66 } else {
67 throw std::invalid_argument("Invalid output: " + o);
68 }
69 };
70
72 enum class algo : unsigned int {
73 BINARY_TREE = 0,
74 SIDEWINDER = 1,
75 DFS = 2,
76 TOTAL = 3
77 };
78
82 static std::string to_string_from_algo(algo a) {
83 switch (a) {
84 case algo::BINARY_TREE:
85 return "binary_tree";
86 case algo::SIDEWINDER:
87 return "sidewinder";
88 case algo::DFS:
89 return "dfs";
90 default:
91 throw std::invalid_argument("Invalid algo: " + std::to_string(static_cast<unsigned int>(a)));
92 }
93 };
94
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) {
104 return algo::DFS;
105 } else {
106 throw std::invalid_argument("Invalid algo: " + a);
107 }
108 };
109} // namespace
110
111#endif // ENUMS
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