-
Notifications
You must be signed in to change notification settings - Fork 0
f_Maze
rasberry edited this page Aug 23, 2024
·
2 revisions
Draws one of several mazes
-m (Maze) Choose a maze (default prims)
-cc (color) Change cell color (default black)
-wc (color) Change wall color (default white)
-rs (number) Random Int32 seed value (defaults to system picked)
-sq (s,s,...) Growing Tree cell picking sequence (default 'N')
-sr Randomly pick between sequence options
Available Mazes:
1. Eller Eller's algorithm
2. Prims Prim's (Jarník's) algorithm
3. Kruskal Kruskal's algorithm 🐢
4. BinaryTree Binary tree maze algorithm
5. GrowingTree Growing tree maze algorithm
6. Automata Cellular automata maze
7. Spiral Experimental maze using a spiral layout
8. ReverseDelete Reverse delete algorithm 🐢
9. SideWinder Sidewinder maze algorithm
10. Division Recursize division algorithm
Available Sequence Options: (Only for Growing Tree)
1. (N)ewest Pick the most recent visited cell (recursive backtracker)
2. (O)ldest Pick the lest recent visited cell
3. (M)iddle Pick the middle cell of the current path
4. (R)Random Pick a random cell in the current path (Prim's)
Images | |
---|---|
-m 1 -rs 5003 | ![]() |
-m 2 -rs 5009 -cc tan -wc red | ![]() |
-m 3 -rs 5011 | ![]() |
-m 4 -rs 5021 | ![]() |
-m 5 -rs 5023 | ![]() |
-m 6 -rs 5039 | ![]() |
-m 7 -rs 5051 | ![]() |
-m 8 -rs 5059 | ![]() |
-m 9 -rs 5077 | ![]() |
-m 10 -rs 5081 | ![]() |