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


Python Board.isWall方法代码示例

本文整理汇总了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:'
开发者ID:raj454raj,项目名称:pypacman,代码行数:33,代码来源:pacman.py


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