python及pygame雷霆战机游戏项目实战11 玩家多条命

简介: python及pygame雷霆战机游戏项目实战11 玩家多条命

项目详细介绍


项目详细介绍


在这个系列中,将制作一个雷霆战机游戏。


image.png


玩家爆炸


将使用不同的爆炸动画来制作玩家的死亡。

只需像其他爆炸那样加载那些帧。现在加载代码如下所示:

explosion_anim = {}
explosion_anim['lg'] = []
explosion_anim['sm'] = []
explosion_anim['player'] = []
for i in range(9):
    filename = 'regularExplosion0{}.png'.format(i)
    img = pygame.image.load(path.join(img_dir, filename)).convert()
    img.set_colorkey(BLACK)
    img_lg = pygame.transform.scale(img, (75, 75))
    explosion_anim['lg'].append(img_lg)
    img_sm = pygame.transform.scale(img, (32, 32))
    explosion_anim['sm'].append(img_sm)
    filename = 'sonicExplosion0{}.png'.format(i)
    img = pygame.image.load(path.join(img_dir, filename)).convert()
    img.set_colorkey(BLACK)
    explosion_anim['player'].append(img)

不需要更改Explosionsprite类中的任何内容,因此只需要在玩家的血条耗尽时创建玩家爆炸。可以在检查玩家与流星碰撞的游戏循环中添加:

# check to see if a mob hit the player
hits = pygame.sprite.spritecollide(player, mobs, True, pygame.sprite.collide_circle)
for hit in hits:
    player.shield -= hit.radius * 2
    expl = Explosion(hit.rect.center, 'sm')
    all_sprites.add(expl)
    newmob()
    if player.shield <= 0:
        death_explosion = Explosion(player.rect.center, 'player')
        all_sprites.add(death_explosion)
        running = False

但是,如果你运行程序,你会看到现在有一个问题:当玩家死亡时,设置runningFalse使游戏结束,没有机会看到漂亮爆炸!

要解决这个问题,需要在爆炸完成之前不要结束游戏。所以将删除玩家,但running在爆炸消失之前不会设置为False

if player.shield <= 0:
        death_explosion = Explosion(player.rect.center, 'player')
        all_sprites.add(death_explosion)
    player.kill()
# if the player died and the explosion has finished playing
if not player.alive() and not death_explosion.alive():
    running = False

alive()函数只返回特定精灵是否存活。调用kill()函数后alive()函数返回False。


多条生命


现在将为玩家提供多条生命。可以使用变量跟踪它,但也希望能够在屏幕上显示它。使用较小的玩家飞船图像来表示剩下多少生命。首先,将创建较小的图像:

player_img = pygame.image.load(path.join(img_dir, "playerShip1_orange.png")).convert()
player_mini_img = pygame.transform.scale(player_img, (25, 19))
player_mini_img.set_colorkey(BLACK)

现在将在Player类中添加一些新参数__init__():生命计数器self.lives,一个标记self.hidden(可以是True或者变量False)隐藏/显示玩家,以及一个控制玩家隐藏时间的计时器self.hide_timer:

self.lives = 3
self.hidden = False
self.hide_timer = pygame.time.get_ticks()

现在,当玩家死亡时不是使用kill(),将隐藏玩家并从中减去1 lives。还为下一次生命重置血条:

if player.shield <= 0:
        death_explosion = Explosion(player.rect.center, 'player')
        all_sprites.add(death_explosion)
        player.hide()
        player.lives -= 1
        player.shield = 100
# if the player died and the explosion has finished playing
if player.lives == 0 and not death_explosion.alive():
    running = False

接下来,需要定义 hide()方法。Player类中将添加一个hide()方法,该方法将hidden标志设置为True并启动计时器。还需要确保在玩家被隐藏时,它不会被流星击中。有几种方法可以做到这一点,一个不需要添加/删除组等的简单方法就是暂时将玩家从屏幕底部移开self.rect.center = (WIDTH / 2, HEIGHT + 200)

def hide(self):
    # hide the player temporarily
    self.hidden = True
    self.hide_timer = pygame.time.get_ticks()
    self.rect.center = (WIDTH / 2, HEIGHT + 200)

在玩家的update()方法中,需要判断是否已经过了足够的时间(现在使用1秒),如果是,取消隐藏:

def update(self):
    # unhide if hidden
    if self.hidden and pygame.time.get_ticks() - self.hide_timer > 1000:
        self.hidden = False
        self.rect.centerx = WIDTH / 2
        self.rect.bottom = HEIGHT - 10


生命计数器显示


为了显示生命,将创建一个类似draw_shield_bar()的功能,这将让将生命计数器放在给定的位置:

def draw_lives(surf, x, y, lives, img):
    for i in range(lives):
        img_rect = img.get_rect()
        img_rect.x = x + 30 * i
        img_rect.y = y
        surf.blit(img, img_rect)

然后,在游戏循环的绘图部分添加对此函数的调用:

draw_lives(screen, WIDTH - 100, 5, player.lives,
       player_mini_img)

现在可以看到最终结果:


image.png


在下一课中,将为游戏添加一些加强功能。


项目源码及资源


获取地址


目录
相关文章
|
2月前
|
IDE 开发工具 Python
Python扑克游戏编程---摸大点
Python扑克游戏编程---摸大点
64 1
|
3月前
|
Python
python编写下象棋游戏|4-14
python编写下象棋游戏|4-14
|
3月前
|
人工智能 算法 图形学
总有一个是你想要的分享40个Python游戏源代码
这是一系列基于Python开发的游戏项目集合,包括中国象棋、麻将、足球、坦克大战、扑克等多种类型游戏,运用了Pygame等库实现图形界面与AI算法。此外还包含迷宫、数独、推箱子等益智游戏及经典游戏如《仙剑奇侠传二战棋版》和《星露谷物语》的Python版本,适合编程学习与娱乐。
169 11
|
2月前
|
数据采集 前端开发 Python
Python pygame 实现游戏 彩色 五子棋 详细注释 附源码 单机版
Python pygame 实现游戏 彩色 五子棋 详细注释 附源码 单机版
93 0
|
3月前
|
消息中间件 数据采集 数据库
庆祝吧!Python IPC让进程间的合作,比团队游戏还默契
【9月更文挑战第7天】在这个数字化时代,软件系统日益复杂,单进程已难以高效处理海量数据。Python IPC(进程间通信)技术应运而生,使多进程协作如同训练有素的电竞战队般默契。通过`multiprocessing`模块中的Pipe等功能,进程间可以直接传递数据,无需依赖低效的文件共享或数据库读写。此外,Python IPC还提供了消息队列、共享内存和套接字等多种机制,适用于不同场景,使进程间的合作更加高效、精准。这一技术革新让开发者能轻松应对复杂挑战,构建更健壮的软件系统。
46 1
|
4月前
|
机器学习/深度学习 存储 定位技术
强化学习Agent系列(一)——PyGame游戏编程,Python 贪吃蛇制作实战教学
本文是关于使用Pygame库开发Python贪吃蛇游戏的实战教学,介绍了Pygame的基本使用、窗口初始化、事件处理、键盘控制移动、以及实现游戏逻辑和对象交互的方法。
|
1月前
|
JSON 开发工具 git
基于Python和pygame的植物大战僵尸游戏设计源码
本项目是基于Python和pygame开发的植物大战僵尸游戏,包含125个文件,如PNG图像、Python源码等,提供丰富的游戏开发学习素材。游戏设计源码可从提供的链接下载。关键词:Python游戏开发、pygame、植物大战僵尸、源码分享。
|
4月前
|
定位技术 Python
【python】python基于pygame坦克大战游戏设计(源码+图像+操作说明)【独一无二】
【python】python基于pygame坦克大战游戏设计(源码+图像+操作说明)【独一无二】
100 1
|
4月前
|
Linux iOS开发 MacOS
【Python】Python基于Pygame疯狂赛车游戏设计(源码+报告)【独一无二】
【Python】Python基于Pygame疯狂赛车游戏设计(源码+报告)【独一无二】
112 1
|
4月前
|
Python
【python】python基于pygame弹珠游戏设计(源码)【独一无二】
【python】python基于pygame弹珠游戏设计(源码)【独一无二】