Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
factory.h
Go to the documentation of this file.
1#ifndef FACTORY_H
2#define FACTORY_H
3
4#include <functional>
5#include <memory>
6#include <random>
7#include <optional>
8
9#include <MazeBuilder/enums.h>
11
12namespace mazes {
13
14class grid_interface;
15class maze;
16
20class factory {
21
22public:
23
27 static std::optional<std::unique_ptr<maze>> create(configurator const& config) noexcept;
28
29private:
30
37 static bool apply_algo_to_grid(configurator const& config, std::unique_ptr<grid_interface> const& g, const std::function<int(int, int)>& get_int, const std::mt19937& rng) noexcept;
38};
39
40} // namespace mazes
41
42#endif // FACTORY_H
Configuration class for the maze builder.
Definition configurator.h:14
Factory provides a way to create mazes.
Definition factory.h:20
static std::optional< std::unique_ptr< maze > > create(configurator const &config) noexcept
Create a maze pointer.
Enumerations for the maze builder program.
Namespace for the maze builder.
Definition algo_interface.h:9