(Python3)- PyGame 製作小遊戲- 貪吃蛇( Snake )
(Python3)- PyGame 製作小遊戲- 貪吃蛇( Snake )
import pygame, sys, random
from pygame.locals import *
# 定義顏色
pinkColor = pygame.Color(255, 182, 193)
blackColor = pygame.Color(0, 0, 0)
whiteColor = pygame.Color(255, 255, 255)
# 定義游戲結束的函數
def gameover():
pygame.quit()
sys.exit()
def main():
# 初始化
pygame.init()
# 定義一個變量來控制速度
time_clock = pygame.time.Clock()
# 創建窗口,定義標題
screen = pygame.display.set_mode((640, 480))
pygame.display.set_caption("貪吃蛇 Snake")
# 定義蛇的初始化變量
snakePosition = [100, 100] # 蛇頭位置
# 定義一個貪吃蛇的長度列表,其中有幾個元素就代表有幾段身體
snakeSegments = [[100, 100], [80, 100], [60, 100], [40, 100], [20, 100]]
# 初始化食物位置
foodPostion = [300, 300]
# 食物數量,1是沒被吃,0是被吃了
foodTotal = 1
# 初始方向,向右
direction = 'right'
# 定義一個改變方向的變量,按鍵
changeDirection = direction
# 通過鍵盤控制蛇的運動
while True:
# 從隊列中獲取事件
for event in pygame.event.get():
# 判斷是否為退出事件
if event.type == QUIT:
pygame.quit()
sys.exit()
# 按鍵事件
elif event.type == KEYDOWN:
# 如果是右鍵頭或者是d,蛇向右移動
if event.key == K_RIGHT or event.key == K_d:
changeDirection = 'right'
# 如果是左鍵頭或者是a,蛇向左移動
if event.key == K_LEFT or event.key == K_a:
changeDirection = 'left'
if event.key == K_UP or event.key == K_w:
changeDirection = 'up'
if event.key == K_DOWN or event.key == K_s:
changeDirection = 'down'
# 對應鍵盤上的Esc鍵,表示退出
if event.key == K_ESCAPE:
pygame.event.post(pygame.event.Event(QUIT))
# 確認方向,判斷是否輸入了反方向運動
if changeDirection == 'right' and not direction == 'left':
direction = changeDirection
if changeDirection == 'left' and not direction == 'right':
direction = changeDirection
if changeDirection == 'up' and not direction == 'down':
direction = changeDirection
if changeDirection == 'down' and not direction == 'up':
direction = changeDirection
# 根據方向移動蛇頭
if direction == 'right':
snakePosition[0] += 20
if direction == 'left':
snakePosition[0] -= 20
if direction == 'up':
snakePosition[1] -= 20
if direction == 'down':
snakePosition[1] += 20
# 增加蛇的長度
snakeSegments.insert(0, list(snakePosition))
# 判斷是否吃到食物
if snakePosition[0] == foodPostion[0] and snakePosition[1] == foodPostion[1]:
foodTotal = 0
else:
snakeSegments.pop() # 每次將最后一單位蛇身剔除列表
# 如果食物為0 重新生成食物
if foodTotal == 0:
x = random.randrange(1, 32)
y = random.randrange(1, 24)
foodPostion = [int(x * 20), int(y * 20)]
foodTotal = 1
# 繪制pygame顯示層
screen.fill(blackColor)
for position in snakeSegments: # 蛇身為白色
# 化蛇
pygame.draw.rect(screen, pinkColor, Rect(position[0], position[1], 20, 20))
pygame.draw.rect(screen, whiteColor, Rect(foodPostion[0], foodPostion[1], 20, 20))
# 判斷游戲是否結束
pygame.display.flip()
# 如果碰到自己的身體
if snakePosition[0] > 620 or snakePosition[0] < 0:
gameover()
elif snakePosition[1] > 460 or snakePosition[1] < 0:
gameover()
# 如果碰到自己的身体
for body in snakeSegments[1:]:
if snakePosition[0] == body[0] and snakePosition[1] == body[1]:
gameover()
# 控制游戲速度
time_clock.tick(5)
# 啟動入口函數
if __name__ == '__main__':
main()
免責聲明:
1.本影像檔案皆從網上搜集轉載,不承擔任何技術及版權問題。
2.如有下載連結僅供寬頻測試研究用途,請下載後在24小時內刪除,請勿用於商業。
3.若侵犯了您的合法權益,請來信通知我們,我們會及時刪除,給您帶來的不便,深表歉意。
I used to be able to find good info from your blog posts.