本文整理汇总了Python中snake.Snake.gameLoop方法的典型用法代码示例。如果您正苦于以下问题:Python Snake.gameLoop方法的具体用法?Python Snake.gameLoop怎么用?Python Snake.gameLoop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类snake.Snake
的用法示例。
在下文中一共展示了Snake.gameLoop方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from snake import Snake [as 别名]
# 或者: from snake.Snake import gameLoop [as 别名]
def main():
# ---Initialize Screen---
screen = pygame.display.set_mode((300, 275), 0, 32)
pygame.display.set_caption('Snake')
mainMenu = ('Play Game', 'High Scores', 'Settings', 'Quit')
backgroundColor = (255, 255, 255)
settings = {'snakeLength':5, 'fontName':'inconsolata.otf',
'foodColor':(255,0,0)}
#List of tuples formatted (user, score)
highScoreList = []
readScoresFromFile(highScoreList)
sortScores(highScoreList)
mainMenu = SingleColumnMenu(screen, mainMenu, fontName = settings['fontName'])
while(True):
choice = mainMenu.run()
if choice == 'Play Game':
#Create instance of Snake.py
snake = Snake(screen)
displayCountdown(screen, backgroundColor)
#Runs game and returns player score
newScore = snake.gameLoop()
#Prompts user for name
userName = getUsername(screen, backgroundColor, settings)
#Adds to high Scores
highScoreList.append((userName, newScore))
sortScores(highScoreList)
elif choice == 'High Scores':
highScores = ScoreDisplay(screen, highScoreList,
fontName = settings['fontName'])
#highScores.setFont(settings['fontName'])
highScores.run()
elif choice == 'Quit':
break
choice == ""
saveScoresToFile(highScoreList)