Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
sidewinder.h
Go to the documentation of this file.
1#ifndef SIDEWINDER_HPP
2#define SIDEWINDER_HPP
3
5
6#include <functional>
7#include <memory>
8#include <random>
9
10namespace mazes {
11
12class grid_interface;
13
17class sidewinder : public algo_interface {
18 public:
24 bool run(std::unique_ptr<grid_interface> const& g, const std::function<int(int, int)>& get_int, const std::mt19937& rng) const noexcept override;
25};
26
27}
28
29#endif // SIDEWINDER_HPP
Interface for the maze generation algorithms.
Definition algo_interface.h:18
Sidewinder algorithm for generating mazes.
Definition sidewinder.h:17
bool run(std::unique_ptr< grid_interface > const &g, const std::function< int(int, int)> &get_int, const std::mt19937 &rng) const noexcept override
Implement the sidewinder maze generation algorithm.
Namespace for the maze builder.
Definition algo_interface.h:9