資源簡介
代碼片段和文件信息
import?random
import?sys
import?time
import?pygame
from?pygame.locals?import?*
from?collections?import?deque
SCREEN_WIDTH?=?600
SCREEN_HEIGHT?=?480
SIZE?=?20
def?print_text(screen?font?x?y?text?fcolor=(255?255?255)):
????imgText?=?font.render(text?True?fcolor)
????screen.blit(imgText?(x?y))
def?main():
????pygame.init()
????screen?=?pygame.display.set_mode((SCREEN_WIDTH?SCREEN_HEIGHT))
????pygame.display.set_caption(‘貪吃蛇‘)
????light?=?(100?100?100)??#?蛇的顏色
????dark?=?(200?200?200)???#?食物顏色
????font1?=?pygame.font.SysFont(‘SimHei‘?24)??#?得分的字體
????font2?=?pygame.font.Font(None?72)??#?GAME?OVER?的字體
????red?=?(200?30?30)?????????????????#?GAME?OVER?的字體顏色
????fwidth?fheight?=?font2.size(‘GAME?OVER‘)
????line_width?=?1????????????????????
- 上一篇:think-python 第二版中文版
- 下一篇:機器學習經典算法
評論
共有 條評論