本文整理汇总了Python中maze.Maze.from_blank方法的典型用法代码示例。如果您正苦于以下问题:Python Maze.from_blank方法的具体用法?Python Maze.from_blank怎么用?Python Maze.from_blank使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类maze.Maze
的用法示例。
在下文中一共展示了Maze.from_blank方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Maze
# 需要导入模块: from maze import Maze [as 别名]
# 或者: from maze.Maze import from_blank [as 别名]
import sys
from random import randint, choice
from maze import Maze
# Start by creating a blank maze
# TODO: Input validation
maze= Maze()
maze.from_blank(int(sys.argv[1]), int(sys.argv[2]))
visited = []
path = []
current = (randint(0, maze.size[0]), randint(0, maze.size[1]))
while 1:
visited.append(current)
# Find which directions haven't been visited
around = maze.scan(current, return_coords = True)
not_visited = filter(lambda x: x not in visited, around)
# Pick a random direction to proceed in that hasn't been visited
try:
direction = around.index(choice(not_visited))
except IndexError:
# Are we finished?
if len(path) is 0:
break
# All directions have been visited, go back a space
current = path[-1]
path.remove(current)
continue
# Place a space as long as we're not on an edge
if ((current[0] != 0) and (current[0] != maze.size[0])) and ((current[1] != 0) and (current[1] != maze.size[1])):