forked from exercism/java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMazeGenerator.java
177 lines (149 loc) · 4.76 KB
/
MazeGenerator.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import java.util.Random;
import java.util.random.RandomGenerator;
import java.util.BitSet;
import java.util.EnumSet;
import java.util.Set;
import static java.util.stream.IntStream.range;
public class MazeGenerator {
public char[][] generatePerfectMaze(Dimensions dimensions) {
return new Grid(dimensions, RandomGenerator.getDefault())
.generateMaze()
.placeDoors()
.print();
}
public char[][] generatePerfectMaze(Dimensions dimensions, int seed) {
return new Grid(dimensions, new Random(seed))
.generateMaze()
.placeDoors()
.print();
}
}
enum Direction {
NORTH(0, 1),
EAST(1, 0),
SOUTH(0, -1),
WEST(-1, 0);
private final int dx;
private final int dy;
Direction(int dx, int dy) {
this.dx = dx;
this.dy = dy;
}
public int dx() {
return dx;
}
public int dy() {
return dy;
}
}
final class Grid {
private final Dimensions dimensions;
private final BitSet grid;
private final RandomGenerator randomGenerator;
Grid(Dimensions dimensions, RandomGenerator randomGenerator) {
this.dimensions = dimensions;
this.grid = new BitSet(dimensions.width() * dimensions.height());
this.randomGenerator = randomGenerator;
}
Grid generateMaze() {
generate(new Cell(1, 1));
return this;
}
private int random(int bound) {
return randomGenerator.nextInt(bound);
}
private Direction pickRandomDirection(Set<Direction> directions) {
int size = directions.size();
int itemIndex = random(size);
var direction = directions.toArray(new Direction[size])[itemIndex];
directions.remove(direction);
return direction;
}
Grid placeDoors() {
new Cell(1 + 2 * random(dimensions.rows()), 0).erase();
new Cell(1 + 2 * random(dimensions.rows()), dimensions.width() - 1).erase();
return this;
}
private void generate(Cell cell) {
cell.erase();
var directions = EnumSet.allOf(Direction.class);
do {
var direction = pickRandomDirection(directions);
var wall = cell.move(direction);
var next = wall.move(direction);
if (next.isValid() && next.isNotEmpty()) {
wall.erase();
generate(next);
}
} while (!directions.isEmpty());
}
char[][] print() {
return range(0, dimensions.height())
.mapToObj(this::line)
.toArray(char[][]::new);
}
private char[] line(int x) {
return range(0, dimensions.width())
.map(y -> new Cell(x, y).symbol())
.collect(StringBuilder::new, StringBuilder::appendCodePoint, StringBuilder::append)
.toString()
.toCharArray();
}
private final class Cell {
final int x;
final int y;
private Cell(int x, int y) {
this.x = x;
this.y = y;
}
boolean isValid() {
return x > 0 && x < dimensions.height() && y > 0 && y < dimensions.width();
}
void erase() {
grid.set(index());
}
boolean isNotEmpty() {
return !isEmpty();
}
boolean isEmpty() {
return grid.get(index());
}
int index() {
return x * dimensions.width() + y;
}
boolean isDoor() {
return isEmpty() && (y == 0 || y == dimensions.width() - 1);
}
Cell move(Direction direction) {
return new Cell(x + direction.dx(), y + direction.dy());
}
char symbol() {
if (isDoor()) {
return '⇨';
}
if (isEmpty()) {
return ' ';
}
var n = x > 0 && new Cell(x - 1, y).isNotEmpty() ? 1 : 0;
var e = y < dimensions.width() - 1 && new Cell(x, y + 1).isNotEmpty() ? 1 : 0;
var s = x < dimensions.height() - 1 && new Cell(x + 1, y).isNotEmpty() ? 1 : 0;
var w = y > 0 && new Cell(x, y - 1).isNotEmpty() ? 1 : 0;
var i = n + 2 * e + 4 * s + 8 * w;
return switch (i) {
case 0 -> ' ';
case 1, 5, 4 -> '│';
case 2, 8, 10 -> '─';
case 3 -> '└';
case 6 -> '┌';
case 7 -> '├';
case 9 -> '┘';
case 11 -> '┴';
case 12 -> '┐';
case 13 -> '┤';
case 14 -> '┬';
case 15 -> '┼';
default -> throw new IllegalStateException("Unexpected value: " + i);
};
}
}
}