Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
configurator.h
Go to the documentation of this file.
1#ifndef CONFIGURATOR_H
2#define CONFIGURATOR_H
3
4#include <string>
5
6#include <MazeBuilder/enums.h>
7
8namespace mazes {
9
11
15public:
16
17 configurator& rows(unsigned int r) noexcept {
18 rows_ = r;
19 return *this;
20 }
21
22 configurator& columns(unsigned int c) noexcept {
23 columns_ = c;
24 return *this;
25 }
26
27 configurator& levels(unsigned int l) noexcept {
28 levels_ = l;
29 return *this;
30 }
31
32 configurator& _algo(algo _a) noexcept {
33 algo_ = _a;
34 return *this;
35 }
36
37 configurator& seed(unsigned int s) noexcept {
38 seed_ = s;
39 return *this;
40 }
41
42 configurator& distances(bool d) noexcept {
43 distances_ = d;
44 return *this;
45 }
46
47 configurator& output(const std::string& s) noexcept {
48 output_ = s;
49 return *this;
50 }
51
52 // Getters for the configuration options
53 unsigned int rows() const noexcept { return rows_; }
54 unsigned int columns() const noexcept { return columns_; }
55 unsigned int levels() const noexcept { return levels_; }
56 algo _algo() const noexcept { return algo_; }
57 unsigned int seed() const noexcept { return seed_; }
58 bool distances() const noexcept { return distances_; }
59 std::string output() const noexcept { return output_; }
60
61private:
62 unsigned int rows_ = 1;
63 unsigned int columns_ = 1;
64 unsigned int levels_ = 1;
65 algo algo_ = algo::DFS;
66 unsigned int seed_ = 2;
67 bool distances_ = false;
68 std::string output_ = "stdout";
69};
70
71} // namespace
72
73#endif // CONFIGURATOR_H
Configuration class for the maze builder.
Definition configurator.h:14
Distances utility class for counting paths and nodes.
Definition distances.h:17
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
algo
Enum class for maze types by the generating algorithm.
Definition enums.h:72