本文整理汇总了Python中Board.isWall方法的典型用法代码示例。如果您正苦于以下问题:Python Board.isWall方法的具体用法?Python Board.isWall怎么用?Python Board.isWall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Board
的用法示例。
在下文中一共展示了Board.isWall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: input
# 需要导入模块: import Board [as 别名]
# 或者: from Board import isWall [as 别名]
os.system('clear')
print 'Your Total Score is: %d' % (B.score + prev)
print 'Level Score is: %d' % B.score
print 'GAME OVER'
sys.exit()
if __name__ == '__main__':
B.create()
no_of_ghosts = input('Enter number of ghosts:')
level = 1
for i in xrange(no_of_ghosts):
while True:
x = random.randrange(1, 18)
y = random.randrange(1, 39)
if (x, y) != B.pacmanPos and B.isWall((x, y)) == False:
break
B.a[x][y] = 'G'
GhostArray[x][y] = '1'
g = Ghost((x, y))
Ghosts.append(g)
prev = 0
os.system('clear')
while True:
print '\n'
B.printBoard()
P = Pacman(B.pacmanPos, prev)
print 'Total score: ' + str(prev + B.score)
print 'Enter next move:'