当前位置: 首页>>代码示例>>Python>>正文


Python Maze.scan方法代码示例

本文整理汇总了Python中maze.Maze.scan方法的典型用法代码示例。如果您正苦于以下问题:Python Maze.scan方法的具体用法?Python Maze.scan怎么用?Python Maze.scan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在maze.Maze的用法示例。


在下文中一共展示了Maze.scan方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Maze

# 需要导入模块: from maze import Maze [as 别名]
# 或者: from maze.Maze import scan [as 别名]
1 - Right
2 - Down
3 - Left
"""


# LET'S DO IT!
maze = Maze()
maze.from_file(sys.argv[1])

current = maze.start

solved = False
while solved is False:
	# Scan around us
	around = maze.scan(current)
	
	# First, let's see if we're finished with the maze
	try:
		finish = around.index('F')
		# Mark off the last breadcrumb
		maze.set(current, '.')
		solved = True
		break
	except ValueError:
		pass
	
	# Guess not, let's go on
	try:
		direction = around.index(' ')
		# Place a breadcrumb and move forward one space in that direction
开发者ID:stevenleeg,项目名称:Maze-Solver,代码行数:33,代码来源:solver.py

示例2: Maze

# 需要导入模块: from maze import Maze [as 别名]
# 或者: from maze.Maze import scan [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])):
开发者ID:stevenleeg,项目名称:Maze-Solver,代码行数:33,代码来源:generator.py


注:本文中的maze.Maze.scan方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。