基于python和pygame库实现刮刮乐游戏

 更新时间:2024年03月04日 10:07:50   作者:软件技术爱好者  
这篇文章主要介绍了如何基于python和pygame库实现刮刮乐游戏,文中通过代码示例和图文给大家讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下

用python和pygame库实现刮刮乐游戏

首先,确保你已经安装了pygame库。如果没有安装,可以通过以下命令安装:

pip install pygame

示例有两个。

一、简单刮刮乐游戏

准备两张图片,一张作为背景bottom_image.png,一张作为刮开的图片top_image.png:

请将bottom_image.png和top_image.png图片文件与游戏代码文件(.py文件)放在在同一目录下。

以下是简单刮刮乐游戏的代码:

import pygame
import os
 
# 初始化pygame
pygame.init()
 
# 设置游戏窗口
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()
 
# 调整图片大小以适应窗口
bottom_image = pygame.transform.scale(bottom_image, (width, height))
top_image = pygame.transform.scale(top_image, (width, height))
 
# 创建一个与顶层图片相同大小的透明表面
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
 
    # 获取鼠标位置和状态
    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()
 
# 退出游戏
pygame.quit()
 

运行效果:

二、多对图片的刮刮乐游戏

使用多对图片,准备了好了多对图片,如bottom1.png和top1.png 、 bottom2.png和top2.png 、 bottom2.png和top3.png,并将它们放到了img文件夹中。用户可以选择图对游戏,游戏过程中可按下ESC 键返回到菜单页开始重玩。

项目的目录(project_directory)结构如下:

源码如下:

import pygame
import os
import sys
 
# 初始化pygame
pygame.init()
 
# 设置游戏窗口
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
 
# 游戏主函数
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()
 
# 菜单函数
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)
                        # 在这里不需要设置menu_running = False,因为我们希望在游戏结束后自动返回菜单
 
# 运行菜单
menu()

运行效果如下图所示:

用户可以单击菜单项选择图对游戏,游戏过程中可按下ESC 键返回到菜单页开始重玩。

以上就是基于python和pygame库实现刮刮乐游戏的详细内容,更多关于python pygame刮刮乐的资料请关注脚本之家其它相关文章!

相关文章

  • Python2.7实现多进程下开发多线程示例

    Python2.7实现多进程下开发多线程示例

    这篇文章主要为大家详细介绍了Python2.7实现多进程下开发多线程示例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-05-05
  • python学习-List移除某个值remove和统计值次数count

    python学习-List移除某个值remove和统计值次数count

    这篇文章主要介绍了 python学习-List移除某个值remove和统计值次数count,文章基于python的相关内容展开详细介绍,需要的小伙伴可以参考一下
    2022-04-04
  • Python全面解读高级特性切片

    Python全面解读高级特性切片

    这篇文章主要介绍了Python全面解读高级特性切片,切片(slice)就是一种截取索引片段的技术,借助切片技术,我们可以十分灵活地处理序列类型的对象,下面我们一起进入文章了解更详细内容吧
    2021-12-12
  • python中print输出有空格如何解决

    python中print输出有空格如何解决

    这篇文章主要介绍了python中print输出有空格的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-02-02
  • 快速进修Python指南之网络编程及并发编程

    快速进修Python指南之网络编程及并发编程

    这篇文章主要为大家介绍了Java开发者如何快速进修Python指南之网络编程及并发编程实例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-12-12
  • 基于python历史天气采集的分析

    基于python历史天气采集的分析

    今天小编就为大家分享一篇基于python历史天气采集的分析,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2019-02-02
  • 解决numpy和torch数据类型转化的问题

    解决numpy和torch数据类型转化的问题

    这篇文章主要介绍了解决numpy和torch数据类型转化的问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-05-05
  • Python如何通过Flask-Mail发送电子邮件

    Python如何通过Flask-Mail发送电子邮件

    这篇文章主要介绍了Python如何通过Flask-Mail发送电子邮件,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-01-01
  • 在 Django/Flask 开发服务器上使用 HTTPS

    在 Django/Flask 开发服务器上使用 HTTPS

    使用 Django 或 Flask 这种框架开发 web app 的时候一般都会用内建服务器开发和调试程序,等程序完成后再移交到生产环境部署。问题是这些内建服务器通常都不支持 HTTPS,那么我们来探讨下开启https吧
    2014-07-07
  • 极简的Python入门指引

    极简的Python入门指引

    这篇文章是一个极简的Python入门指引、原文在网络上人气相当高,将一些基本知识用实例代码说明,需要的朋友可以参考下
    2015-04-04

最新评论