mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
algorithm edited but nothing better
This commit is contained in:
+3
-3
@@ -10,10 +10,10 @@ def main() -> None:
|
|||||||
generator = Kruskal()
|
generator = Kruskal()
|
||||||
for alg in generator.generator(20, 20):
|
for alg in generator.generator(20, 20):
|
||||||
maze.set_maze(alg)
|
maze.set_maze(alg)
|
||||||
os.system("clear")
|
# os.system("clear")
|
||||||
maze.ascii_print()
|
maze.ascii_print()
|
||||||
solver = AStar((1, 1), (14, 18))
|
# solver = AStar((1, 1), (14, 18))
|
||||||
print(solver.solve(maze))
|
# print(solver.solve(maze))
|
||||||
|
|
||||||
|
|
||||||
# except Exception as err:
|
# except Exception as err:
|
||||||
|
|||||||
@@ -26,15 +26,14 @@ class Maze:
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
def ascii_print(self) -> None:
|
def ascii_print(self) -> None:
|
||||||
|
for cell in self.maze[0]:
|
||||||
|
print("_", end="")
|
||||||
|
if cell.get_north():
|
||||||
|
print("__", end="")
|
||||||
|
else:
|
||||||
|
print(" ", end="")
|
||||||
|
print("_")
|
||||||
for line in self.maze:
|
for line in self.maze:
|
||||||
if line is self.maze[0]:
|
|
||||||
for cell in line:
|
|
||||||
print("_", end="")
|
|
||||||
if cell.get_north():
|
|
||||||
print("__", end="")
|
|
||||||
else:
|
|
||||||
print(" ", end="")
|
|
||||||
print()
|
|
||||||
for cell in line:
|
for cell in line:
|
||||||
if cell is line[0] and cell.get_west():
|
if cell is line[0] and cell.get_west():
|
||||||
print("|", end="")
|
print("|", end="")
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from typing import Generator
|
from dataclasses import dataclass
|
||||||
|
from typing import Generator, Set
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from .Cell import Cell
|
from .Cell import Cell
|
||||||
import math
|
import math
|
||||||
@@ -13,9 +14,13 @@ class MazeGenerator(ABC):
|
|||||||
|
|
||||||
|
|
||||||
class Kruskal(MazeGenerator):
|
class Kruskal(MazeGenerator):
|
||||||
|
class Set:
|
||||||
|
def __init__(self, cells: list[int]) -> None:
|
||||||
|
self.cells: list[int] = cells
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def walls_to_maze(
|
def walls_to_maze(
|
||||||
walls: list[tuple[int, int]], height: int, width: int
|
walls: np.ndarray, height: int, width: int
|
||||||
) -> np.ndarray:
|
) -> np.ndarray:
|
||||||
maze: np.ndarray = np.array(
|
maze: np.ndarray = np.array(
|
||||||
[[Cell(value=0) for _ in range(width)] for _ in range(height)]
|
[[Cell(value=0) for _ in range(width)] for _ in range(height)]
|
||||||
@@ -36,43 +41,46 @@ class Kruskal(MazeGenerator):
|
|||||||
if x == height - 1:
|
if x == height - 1:
|
||||||
maze[x][y].set_south(True)
|
maze[x][y].set_south(True)
|
||||||
if y == 0:
|
if y == 0:
|
||||||
maze[x][y].set_est(True)
|
|
||||||
if y == width - 1:
|
|
||||||
maze[x][y].set_west(True)
|
maze[x][y].set_west(True)
|
||||||
|
if y == width - 1:
|
||||||
|
maze[x][y].set_est(True)
|
||||||
return maze
|
return maze
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def is_in_same_set(sets: list[list[int]], wall: tuple[int, int]) -> bool:
|
def is_in_same_set(sets: np.ndarray, wall: tuple[int, int]) -> bool:
|
||||||
a, b = wall
|
a, b = wall
|
||||||
for set in sets:
|
for set in sets:
|
||||||
if a in set and b in set:
|
if a in set.cells and b in set.cells:
|
||||||
return True
|
return True
|
||||||
if a in set or b in set:
|
elif a in set.cells or b in set.cells:
|
||||||
return False
|
return False
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def merge_sets(sets: list[list[int]], wall: tuple[int, int]) -> None:
|
def merge_sets(sets: np.ndarray, wall: tuple[int, int]) -> None:
|
||||||
a, b = wall
|
a, b = wall
|
||||||
base_set = None
|
base_set = None
|
||||||
for set in sets:
|
for i in range(len(sets)):
|
||||||
if base_set is None and (a in set or b in set):
|
if base_set is None and (a in sets[i].cells or b in sets[i].cells):
|
||||||
base_set = set
|
base_set = sets[i]
|
||||||
elif base_set and (a in set or b in set):
|
elif base_set and (a in sets[i].cells or b in sets[i].cells):
|
||||||
base_set += set
|
base_set.cells += sets[i].cells
|
||||||
sets.remove(set)
|
np.delete(sets, i)
|
||||||
|
return
|
||||||
|
raise Exception("two sets not found")
|
||||||
|
|
||||||
def generator(
|
def generator(
|
||||||
self, height: int, width: int
|
self, height: int, width: int
|
||||||
) -> Generator[np.ndarray, None, np.ndarray]:
|
) -> Generator[np.ndarray, None, np.ndarray]:
|
||||||
sets = [[i] for i in range(height * width)]
|
sets = np.array([self.Set([i]) for i in range(height * width)])
|
||||||
walls = []
|
walls = []
|
||||||
for h in range(height):
|
for h in range(height):
|
||||||
for w in range(width - 1):
|
for w in range(width - 1):
|
||||||
walls += [(w + (width * h), w + (width * h) + 1)]
|
walls += [(w + (width * h), w + (width * h) + 1)]
|
||||||
for w in range(width):
|
for h in range(height - 1):
|
||||||
for h in range(height - 1):
|
for w in range(width):
|
||||||
walls += [(w + (width * h), w + (width * h) + width)]
|
walls += [(w + (width * h), w + (width * (h + 1)))]
|
||||||
|
print(walls)
|
||||||
np.random.shuffle(walls)
|
np.random.shuffle(walls)
|
||||||
|
|
||||||
yield self.walls_to_maze(walls, height, width)
|
yield self.walls_to_maze(walls, height, width)
|
||||||
@@ -81,20 +89,5 @@ class Kruskal(MazeGenerator):
|
|||||||
self.merge_sets(sets, wall)
|
self.merge_sets(sets, wall)
|
||||||
walls.remove(wall)
|
walls.remove(wall)
|
||||||
yield self.walls_to_maze(walls, height, width)
|
yield self.walls_to_maze(walls, height, width)
|
||||||
|
print(f"nb sets: {len(sets)}")
|
||||||
return self.walls_to_maze(walls, height, width)
|
return self.walls_to_maze(walls, height, width)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
try:
|
|
||||||
for alg in MazeGenerator.Kruskal.kruskal(10, 10):
|
|
||||||
maze = alg
|
|
||||||
# print(maze)
|
|
||||||
# print()
|
|
||||||
print(maze)
|
|
||||||
|
|
||||||
except GeneratorExit as maze:
|
|
||||||
print(maze)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
||||||
|
|||||||
Reference in New Issue
Block a user