Python战机

基础版

python 复制代码
import pygame
import random

# 设置游戏屏幕大小
screen_width = 480
screen_height = 600

# 定义颜色
WHITE = (255, 255, 255)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)

# 初始化pygame
pygame.init()

# 创建游戏窗口
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("雷霆战机")

# 加载背景音乐
pygame.mixer.music.load("background.wav")
pygame.mixer.music.set_volume(0.3)
pygame.mixer.music.play(-1)

# 加载玩家飞机图片
player_img = pygame.image.load("player.png")
player_rect = player_img.get_rect()
player_rect.centerx = screen_width // 2
player_rect.bottom = screen_height - 10

# 创建子弹精灵组
bullet_group = pygame.sprite.Group()

# 设置游戏时钟
clock = pygame.time.Clock()

# 初始化分数
score = 0

# 游戏主循环
running = True
while running:
    # 设置帧率
    clock.tick(60)

    # 处理事件
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_SPACE:
                bullet = pygame.Rect(player_rect.centerx, player_rect.top - 10, 5, 10)
                bullet_group.add(bullet)

    # 检测子弹是否击中敌机
    for bullet in bullet_group:
        bullet.y -= 10
        if bullet.y < 0:
            bullet_group.remove(bullet)
        else:
            pygame.draw.rect(screen, WHITE, bullet)

    # 绘制玩家飞机
    screen.blit(player_img, player_rect)

    # 更新屏幕
    pygame.display.flip()

    # 清空屏幕
    screen.fill(BLACK)

完善版

python 复制代码
import pygame
import random

# 设置游戏屏幕大小
screen_width = 480
screen_height = 600

# 定义颜色
WHITE = (255, 255, 255)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)

# 初始化pygame
pygame.init()

# 创建游戏窗口
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("雷霆战机")

# 加载背景音乐
pygame.mixer.music.load("background.wav")
pygame.mixer.music.set_volume(0.3)
pygame.mixer.music.play(-1)

# 加载玩家飞机图片
player_img = pygame.image.load("player.png")
player_rect = player_img.get_rect()
player_rect.centerx = screen_width // 2
player_rect.bottom = screen_height - 10

# 加载敌机图片
enemy_img = pygame.image.load("enemy.png")

# 创建子弹精灵组
bullet_group = pygame.sprite.Group()

# 创建敌机精灵组
enemy_group = pygame.sprite.Group()

# 设置游戏时钟
clock = pygame.time.Clock()

# 初始化分数
score = 0

# 显示分数的函数
def show_score():
    font = pygame.font.Font(None, 36)
    score_text = font.render(f"Score: {score}", True, WHITE)
    screen.blit(score_text, (10, 10))

# 显示游戏结束的函数
def show_game_over():
    font = pygame.font.Font(None, 48)
    game_over_text = font.render("Game Over", True, RED)
    screen.blit(game_over_text, (screen_width//2 - 100, screen_height//2 - 50))

# 游戏主循环
running = True
while running:
    # 设置帧率
    clock.tick(60)

    # 处理事件
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_SPACE:
                bullet = pygame.Rect(player_rect.centerx, player_rect.top - 10, 5, 10)
                bullet_group.add(bullet)

    # 检测子弹是否击中敌机
    for bullet in bullet_group:
        bullet.y -= 10
        if bullet.y < 0:
            bullet_group.remove(bullet)
        else:
            pygame.draw.rect(screen, WHITE, bullet)

    # 绘制玩家飞机
    screen.blit(player_img, player_rect)

    # 生成敌机
    if random.randint(0, 100) < 3:
        enemy_rect = enemy_img.get_rect()
        enemy_rect.x = random.randint(0, screen_width - enemy_rect.width)
        enemy_rect.y = -enemy_rect.height
        enemy_group.add(enemy_rect)

    # 移动敌机
    for enemy in enemy_group:
        enemy.y += 5
        if enemy.y > screen_height:
            enemy_group.remove(enemy)

    # 绘制敌机
    screen.blit(enemy_img, enemy_rect)

    # 检测敌机和玩家飞机是否碰撞
    if pygame.sprite.spritecollide(player_rect, enemy_group, True):
        running = False

    # 检测子弹和敌机是否碰撞
    if pygame.sprite.groupcollide(bullet_group, enemy_group, True, True):
        score += 1

    # 显示分数
    show_score()

    # 更新屏幕
    pygame.display.flip()

    # 清空屏幕
    screen.fill(BLACK)

# 显示游戏结束界面
show_game_over()

# 更新屏幕
pygame.display.flip()

# 等待2秒钟后退出游戏
pygame.time.wait(2000)

# 退出游戏
pygame.quit()
 
相关推荐
CoderCodingNo3 分钟前
【GESP】C++五级真题(二分答案考点) luogu-P13013 [GESP202506 五级] 奖品兑换
开发语言·c++
Alice10293 分钟前
如何在windows本地打包python镜像
开发语言·windows·python
南屿欣风6 分钟前
Sentinel @SentinelResource:用 blockHandler 实现优雅的接口降级
开发语言·python
嫂子的姐夫7 分钟前
012-AES加解密:某勾网(参数data和响应密文)
javascript·爬虫·python·逆向·加密算法
Frank_refuel8 分钟前
C++日期类实现
开发语言·c++·算法
爱吃提升8 分钟前
Python 使用 MySQL 数据库进行事务处理步骤
数据库·python·mysql
月明长歌9 分钟前
JavaThread类详解核心属性、常用方法与实践
java·开发语言·jvm
avi91119 分钟前
python大模型训练(一)如何查看工具package版本
python·aigc
kaico20189 分钟前
JVM的垃圾回收
开发语言·jvm