-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathLadderRow.java
32 lines (25 loc) · 997 Bytes
/
LadderRow.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
package model.ladder;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ThreadLocalRandom;
public class LadderRow {
private List<Boolean> points = new ArrayList<>();
public LadderRow(int columnSize) {
for (int columnPosition = 0; columnPosition < columnSize; columnPosition++) {
boolean randomBoolean = chooseLadderPoint(columnPosition);
this.points.add(columnPosition, randomBoolean);
}
}
private LadderPoint randomConnectedOrDisconnected() {
if (ThreadLocalRandom.current().nextDouble() < 0.5) return LadderPoint.CONNECTED;
return LadderPoint.DISCONNECTED;
}
public boolean chooseLadderPoint(int columnPosition) {
if (columnPosition > 0 && points.get(columnPosition - 1))
return LadderPoint.DISCONNECTED.getConnected();
return randomConnectedOrDisconnected().getConnected();
}
public List<Boolean> getPoints() {
return points;
}
}