基于python怎么制作flappybird游戏-亚博电竞手机版

基于python怎么制作flappybird游戏

本篇内容主要讲解“基于python怎么制作flappybird游戏”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“基于python怎么制作flappybird游戏”吧!

开发工具

**python****版本:**3.6.4

相关模块:

pygame 模块;

以及一些 python 自带的模块

环境搭建

安装 python 并添加到环境变量,pip 安装需要的相关模块即可。

先睹为快

在 cmd 窗口运行如下命令即可:

pythongame6.py

原理简介

因为是重写的,所以就重新介绍一下实现原理呗。

首先,我们来写个开始界面,让他看起来更像个游戏一些。效果大概是这样的:

原理也简单,关键点有三个:(1)下方深绿浅绿交替的地板不断往左移动来制造小鸟向前飞行的假象;(2)每过几帧切换一下小鸟的图片来实现小鸟翅膀扇动的效果:

(3)有规律地改变小鸟竖直方向上的位置来实现上下移动的效果。

具体而言,代码实现如下:

'''显示开始界面'''defstartgame(screen,sounds,bird_images,other_images,backgroud_image,cfg):base_pos=[0,cfg.screenheight*0.79]base_diff_bg=other_images['base'].get_width()-backgroud_image.get_width()msg_pos=[(cfg.screenwidth-other_images['message'].get_width())/2,cfg.screenheight*0.12]bird_idx=0bird_idx_change_count=0bird_idx_cycle=itertools.cycle([0,1,2,1])bird_pos=[cfg.screenwidth*0.2,(cfg.screenheight-list(bird_images.values())[0].get_height())/2]bird_y_shift_count=0bird_y_shift_max=9shift=1clock=pygame.time.clock()whiletrue:foreventinpygame.event.get():ifevent.type==pygame.quitor(event.type==pygame.keydownandevent.key==pygame.k_escape):pygame.quit()sys.exit()elifevent.type==pygame.keydown:ifevent.key==pygame.k_spaceorevent.key==pygame.k_up:return{'bird_pos':bird_pos,'base_pos':base_pos,'bird_idx':bird_idx}sounds['wing'].play()bird_idx_change_count =1ifbird_idx_change_count%5==0:bird_idx=next(bird_idx_cycle)bird_idx_change_count=0base_pos[0]=-((-base_pos[0] 4)�se_diff_bg)bird_y_shift_count =1ifbird_y_shift_count==bird_y_shift_max:bird_y_shift_max=16shift=-1*shiftbird_y_shift_count=0bird_pos[-1]=bird_pos[-1] shiftscreen.blit(backgroud_image,(0,0))screen.blit(list(bird_images.values())[bird_idx],bird_pos)screen.blit(other_images['message'],msg_pos)screen.blit(other_images['base'],base_pos)pygame.display.update()clock.tick(cfg.fps)

点击空格键或者 ↑ 键进入主程序。对于主程序,在进行了必要的初始化工作之后,在游戏开始界面中实现的内容的基础上,主要还需要实现的内容有以下几个部分:

(1) 管道和深绿浅绿交替的地板不断往左移来实现小鸟向前飞行的效果;

(2) 按键检测,当玩家点击空格键或者 ↑ 键时,小鸟向上做加速度向下的均减速直线运动直至向上的速度衰减为 0,否则小鸟做自由落体运动(实现时为了方便,可以认为在极短的时间段内小鸟的运动方式为匀速直线运动);

(3) 碰撞检测,当小鸟与管道/游戏边界碰撞到时,游戏失败并进入游戏结束界面。注意,为了碰撞检测更精确,我们使用:

pygame.sprite.collide_mask

来代替之前的:

pygame.sprite.collide_rect

(4) 进入游戏后,随机产生两对管道,并不断左移,当最左边的管道快要因为到达游戏界面的左边界而消失时,重新生成一对管道(注意不要重复生成);

(5) 当小鸟穿越一个上下管道之间的缺口时,游戏得分加一(注意不要重复记分)。

这里简单贴下主程序的源代码吧:

#进入主游戏score=0bird_pos,base_pos,bird_idx=list(game_start_info.values())base_diff_bg=other_images['base'].get_width()-backgroud_image.get_width()clock=pygame.time.clock()#--管道类pipe_sprites=pygame.sprite.group()foriinrange(2):pipe_pos=pipe.randompipe(cfg,pipe_images.get('top'))pipe_sprites.add(pipe(image=pipe_images.get('top'),position=(cfg.screenwidth 200 i*cfg.screenwidth/2,pipe_pos.get('top')[-1])))pipe_sprites.add(pipe(image=pipe_images.get('bottom'),position=(cfg.screenwidth 200 i*cfg.screenwidth/2,pipe_pos.get('bottom')[-1])))#--bird类bird=bird(images=bird_images,idx=bird_idx,position=bird_pos)#--是否增加pipeis_add_pipe=true#--游戏是否进行中is_game_running=truewhileis_game_running:foreventinpygame.event.get():ifevent.type==pygame.quitor(event.type==pygame.keydownandevent.key==pygame.k_escape):pygame.quit()sys.exit()elifevent.type==pygame.keydown:ifevent.key==pygame.k_spaceorevent.key==pygame.k_up:bird.setflapped()sounds['wing'].play()#--碰撞检测forpipeinpipe_sprites:ifpygame.sprite.collide_mask(bird,pipe):sounds['hit'].play()is_game_running=false#--更新小鸟boundary_values=[0,base_pos[-1]]is_dead=bird.update(boundary_values,float(clock.tick(cfg.fps))/1000.)ifis_dead:sounds['hit'].play()is_game_running=false#--移动base实现小鸟往前飞的效果base_pos[0]=-((-base_pos[0] 4)�se_diff_bg)#--移动pipe实现小鸟往前飞的效果flag=falseforpipeinpipe_sprites:pipe.rect.left-=4ifpipe.rect.centerx0andis_add_pipe:pipe_pos=pipe.randompipe(cfg,pipe_images.get('top'))pipe_sprites.add(pipe(image=pipe_images.get('top'),position=pipe_pos.get('top')))pipe_sprites.add(pipe(image=pipe_images.get('bottom'),position=pipe_pos.get('bottom')))is_add_pipe=falseelifpipe.rect.right<0:pipe_sprites.remove(pipe)flag=trueifflag:is_add_pipe=true#--绑定必要的元素在屏幕上screen.blit(backgroud_image,(0,0))pipe_sprites.draw(screen)screen.blit(other_images['base'],base_pos)showscore(screen,score,number_images)bird.draw(screen)pygame.display.update()clock.tick(cfg.fps)

游戏结束后,进入游戏界面。没找到对应的游戏素材,所以只是让游戏界面静止了,然后小鸟做自由落体运行直到掉到地面上。代码实现如下:

'''游戏结束界面'''defendgame(screen,sounds,showscore,score,number_images,bird,pipe_sprites,backgroud_image,other_images,base_pos,cfg):sounds['die'].play()clock=pygame.time.clock()whiletrue:foreventinpygame.event.get():ifevent.type==pygame.quitor(event.type==pygame.keydownandevent.key==pygame.k_escape):pygame.quit()sys.exit()elifevent.type==pygame.keydown:ifevent.key==pygame.k_spaceorevent.key==pygame.k_up:returnboundary_values=[0,base_pos[-1]]bird.update(boundary_values,float(clock.tick(cfg.fps))/1000.)screen.blit(backgroud_image,(0,0))pipe_sprites.draw(screen)screen.blit(other_images['base'],base_pos)showscore(screen,score,number_images)bird.draw(screen)pygame.display.update()clock.tick(cfg.fps)

再点击一下空格键或者 ↑ 键即可重新开始游戏。

all done 完整源代码详见相关文件

se_pos)showscore(screen,score,number_images)bird.draw(screen)pygame.display.update()clock.tick(cfg.fps)

再点击一下空格键或者 ↑ 键即可重新开始游戏。

到此,相信大家对“基于python怎么制作flappybird游戏”有了更深的了解,不妨来实际操作一番吧!这里是恰卡编程网网站,更多相关内容可以进入相关频道进行查询,关注亚博电竞手机版,继续学习!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图