基于python和pygame庫實(shí)現(xiàn)刮刮樂游戲
用python和pygame庫實(shí)現(xiàn)刮刮樂游戲
首先,確保你已經(jīng)安裝了pygame庫。如果沒有安裝,可以通過以下命令安裝:
pip install pygame
示例有兩個。
一、簡單刮刮樂游戲
準(zhǔn)備兩張圖片,一張作為背景bottom_image.png,一張作為刮開的圖片top_image.png:

請將bottom_image.png和top_image.png圖片文件與游戲代碼文件(.py文件)放在在同一目錄下。
以下是簡單刮刮樂游戲的代碼:
import pygame
import os
# 初始化pygame
pygame.init()
# 設(shè)置游戲窗口
width, height = 356, 358
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('刮刮樂游戲')
# 定義顏色
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
# 確保圖片文件存在
if not os.path.isfile('bottom_image.png') or not os.path.isfile('top_image.png'):
raise Exception("圖片文件未找到,請確保bottom_image.png和top_image.png文件在同一目錄下。")
# 加載圖片
bottom_image = pygame.image.load('bottom_image.png').convert()
top_image = pygame.image.load('top_image.png').convert_alpha()
# 調(diào)整圖片大小以適應(yīng)窗口
bottom_image = pygame.transform.scale(bottom_image, (width, height))
top_image = pygame.transform.scale(top_image, (width, height))
# 創(chuàng)建一個與頂層圖片相同大小的透明表面
scratch_surface = pygame.Surface((width, height), pygame.SRCALPHA)
# 將頂層圖片繪制到透明表面上
scratch_surface.blit(top_image, (0, 0))
# 游戲主循環(huán)
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 獲取鼠標(biāo)位置和狀態(tài)
mouse_pos = pygame.mouse.get_pos()
mouse_pressed = pygame.mouse.get_pressed()
# 如果按下鼠標(biāo)左鍵,則在透明表面上繪制透明圓形,模擬刮開效果
if mouse_pressed[0]: # 檢測鼠標(biāo)左鍵是否按下
pygame.draw.circle(scratch_surface, (0, 0, 0, 0), mouse_pos, 20)
# 繪制背景圖片
screen.blit(bottom_image, (0, 0))
# 繪制刮開的透明表面
screen.blit(scratch_surface, (0, 0))
# 更新屏幕
pygame.display.flip()
# 退出游戲
pygame.quit()
運(yùn)行效果:

二、多對圖片的刮刮樂游戲
使用多對圖片,準(zhǔn)備了好了多對圖片,如bottom1.png和top1.png 、 bottom2.png和top2.png 、 bottom2.png和top3.png,并將它們放到了img文件夾中。用戶可以選擇圖對游戲,游戲過程中可按下ESC 鍵返回到菜單頁開始重玩。

項目的目錄(project_directory)結(jié)構(gòu)如下:

源碼如下:
import pygame
import os
import sys
# 初始化pygame
pygame.init()
# 設(shè)置游戲窗口
width, height = 356, 358
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('刮刮樂游戲(可選擇圖片對)')
# 定義顏色
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
# 圖片對列表
image_pairs = [
("img/bottom1.png", "img/top1.png"),
("img/bottom2.png", "img/top2.png"),
("img/bottom3.png", "img/top3.png")
]
# 加載圖片
def load_images(pair_index):
bottom_image_path, top_image_path = image_pairs[pair_index]
bottom_image = pygame.image.load(bottom_image_path).convert()
top_image = pygame.image.load(top_image_path).convert_alpha()
bottom_image = pygame.transform.scale(bottom_image, (width, height))
top_image = pygame.transform.scale(top_image, (width, height))
return bottom_image, top_image
# 游戲主函數(shù)
def run_game(bottom_image, top_image):
scratch_surface = pygame.Surface((width, height), pygame.SRCALPHA)
scratch_surface.blit(top_image, (0, 0))
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 檢測鍵盤事件以返回菜單
elif event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE: # 按下ESC鍵
return # 返回到菜單,而不是退出游戲
mouse_pos = pygame.mouse.get_pos()
mouse_pressed = pygame.mouse.get_pressed()
if mouse_pressed[0]:
pygame.draw.circle(scratch_surface, (0, 0, 0, 0), mouse_pos, 20)
screen.blit(bottom_image, (0, 0))
screen.blit(scratch_surface, (0, 0))
pygame.display.flip()
# 菜單函數(shù)
def menu():
font = pygame.font.Font(None, 26)
menu_running = True
text_surfaces = []
text_rects = []
for i, pair in enumerate(image_pairs):
text = font.render(f"[ Image {i+1} ]", True, RED)
text_rect = text.get_rect(topleft=(10, 40 + i * 30))
text_surfaces.append(text)
text_rects.append(text_rect)
while menu_running:
screen.fill(WHITE)
text = font.render(f"Press Esc to return to the menu:", True, BLACK)
text_rect = text.get_rect(topleft=(10, 5))
screen.blit(text, text_rect)
for i, text in enumerate(text_surfaces):
screen.blit(text, text_rects[i])
pygame.display.flip()
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
if event.type == pygame.MOUSEBUTTONDOWN and event.button == 1: # Left click
for i, rect in enumerate(text_rects):
if rect.collidepoint(event.pos):
bottom_image, top_image = load_images(i)
run_game(bottom_image, top_image)
# 在這里不需要設(shè)置menu_running = False,因?yàn)槲覀兿M谟螒蚪Y(jié)束后自動返回菜單
# 運(yùn)行菜單
menu()運(yùn)行效果如下圖所示:

用戶可以單擊菜單項選擇圖對游戲,游戲過程中可按下ESC 鍵返回到菜單頁開始重玩。
以上就是基于python和pygame庫實(shí)現(xiàn)刮刮樂游戲的詳細(xì)內(nèi)容,更多關(guān)于python pygame刮刮樂的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Python2.7實(shí)現(xiàn)多進(jìn)程下開發(fā)多線程示例
這篇文章主要為大家詳細(xì)介紹了Python2.7實(shí)現(xiàn)多進(jìn)程下開發(fā)多線程示例,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-05-05
python學(xué)習(xí)-List移除某個值remove和統(tǒng)計值次數(shù)count
這篇文章主要介紹了?python學(xué)習(xí)-List移除某個值remove和統(tǒng)計值次數(shù)count,文章基于python的相關(guān)內(nèi)容展開詳細(xì)介紹,需要的小伙伴可以參考一下2022-04-04
快速進(jìn)修Python指南之網(wǎng)絡(luò)編程及并發(fā)編程
這篇文章主要為大家介紹了Java開發(fā)者如何快速進(jìn)修Python指南之網(wǎng)絡(luò)編程及并發(fā)編程實(shí)例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-12-12
解決numpy和torch數(shù)據(jù)類型轉(zhuǎn)化的問題
這篇文章主要介紹了解決numpy和torch數(shù)據(jù)類型轉(zhuǎn)化的問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-05-05
Python如何通過Flask-Mail發(fā)送電子郵件
這篇文章主要介紹了Python如何通過Flask-Mail發(fā)送電子郵件,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-01-01
在 Django/Flask 開發(fā)服務(wù)器上使用 HTTPS
使用 Django 或 Flask 這種框架開發(fā) web app 的時候一般都會用內(nèi)建服務(wù)器開發(fā)和調(diào)試程序,等程序完成后再移交到生產(chǎn)環(huán)境部署。問題是這些內(nèi)建服務(wù)器通常都不支持 HTTPS,那么我們來探討下開啟https吧2014-07-07

