本文整理汇总了Python中snake.Snake.move_head方法的典型用法代码示例。如果您正苦于以下问题:Python Snake.move_head方法的具体用法?Python Snake.move_head怎么用?Python Snake.move_head使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类snake.Snake
的用法示例。
在下文中一共展示了Snake.move_head方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: from snake import Snake [as 别名]
# 或者: from snake.Snake import move_head [as 别名]
score_str = 'Score: %d' % score
stdscr.addstr(0, curses.COLS - len(score_str), 'Score: %d' % score)
return score
def check_win(score):
if score >= (((max_y - 1) * max_x) - 3):
print('you win!')
raise SystemExit
else:
pass
score = 0
update_score(-1)
while True:
snake.move_head()
if snake.x < 0 or snake.y < 0 or snake.x > max_x or snake.y > max_y:
# Out of bounds
break
headchar = chr(stdscr.inch(snake.y, snake.x) & 0xFF)
if headchar == 'x' or headchar == '_':
# Nommed self or border
break
# Draw new head position
stdscr.addstr(snake.y, snake.x, 'x', curses.color_pair(1))
if headchar == 'f':
add_food()
score = update_score(score)