-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsidewinder.py
31 lines (26 loc) · 1.03 KB
/
sidewinder.py
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
from random import choice, randint
from typing import cast
from algorithms.base_algorithm import Algorithm
from base.grid import Grid
from base.cell import Cell
class Sidewinder(Algorithm):
"""
A sidewinder visits each cell in the grid and chooses to carve a passage either north or east
(similar to Binary Tree), but running row by row.
Causes topmost row to always be a straight line.
"""
def on(self, grid: Grid) -> None:
for row in grid.each_row():
run = []
for cell in row:
run.append(cell)
at_eastern_boundary = cell.east is None
at_northen_boundary = cell.north is None
should_close_out = at_eastern_boundary or (not at_northen_boundary and randint(0, 1) == 0)
if should_close_out:
member = choice(run)
if member.north:
member += member.north
run.clear()
else:
cell += cast(Cell, cell.east)