• 大小: 1.88M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 飞机    飞机大战  

资源简介

python语言编写,使用pygame库,简单的飞机大战游戏

资源截图

代码片段和文件信息

import pygamesys
from src.plane import Ourplane
from src.enemyplane import SmallEnemy
from src.enemyplane import MiddleEnemy
from src.bullet import Bullet
bg_size=(480652)

#申明四种颜色
color_black = (000)
color_green = (02550)
color_red = (25500)
color_white = (255255255)

#设置窗体大小
screen=pygame.display.set_mode(bg_size032)
#设置窗体标题
pygame.display.set_caption(“飞机大战“)
#加载背景图片
background_1 = pygame.image.load(“../material/image/background.png“)
background_2 = pygame.image.load(“../material/image/background.png“)
#申明飞机类的对象
ourplane = Ourplane(bg_size)
#创建敌机方法

def add_small_enemys(group1group2num):
    for i in  range(num):
        small_enemy = SmallEnemy(bg_size)
        group1.add(small_enemy)
        group2.add(small_enemy)
def add_middle_enemys(group1

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        228  2018-09-19 09:33  飞机大战03\.idea\inspectionProfiles\profiles_settings.xml

     文件        212  2018-09-19 09:33  飞机大战03\.idea\misc.xml

     文件        276  2018-09-19 09:33  飞机大战03\.idea\modules.xml

     文件      35644  2018-09-21 12:27  飞机大战03\.idea\workspace.xml

     文件        398  2018-09-19 09:42  飞机大战03\.idea\飞机大战.iml

     文件       5082  2018-09-21 11:23  飞机大战03\bin\planefight.py

     文件          0  2018-09-19 09:34  飞机大战03\bin\__init__.py

     文件      36620  2018-09-10 08:32  飞机大战03\material\image\background.png

     文件       5570  2018-09-10 08:31  飞机大战03\material\image\bomb.png

     文件       8944  2018-09-10 08:31  飞机大战03\material\image\btn_finish.png

     文件        486  2018-09-10 08:31  飞机大战03\material\image\bullet1.png

     文件        485  2018-09-10 08:31  飞机大战03\material\image\bullet2.png

     文件       2968  2018-09-10 08:31  飞机大战03\material\image\enemy1.png

     文件       3365  2018-09-10 08:31  飞机大战03\material\image\enemy1_down1.png

     文件       3815  2018-09-10 08:31  飞机大战03\material\image\enemy1_down2.png

     文件       5239  2018-09-10 08:31  飞机大战03\material\image\enemy1_down3.png

     文件       1723  2018-09-10 08:31  飞机大战03\material\image\enemy1_down4.png

     文件       8112  2018-09-10 08:31  飞机大战03\material\image\enemy2.png

     文件      10408  2018-09-10 08:31  飞机大战03\material\image\enemy2_down1.png

     文件      11562  2018-09-10 08:31  飞机大战03\material\image\enemy2_down2.png

     文件      13310  2018-09-10 08:31  飞机大战03\material\image\enemy2_down3.png

     文件       3356  2018-09-10 08:31  飞机大战03\material\image\enemy2_down4.png

     文件       9126  2018-09-10 08:31  飞机大战03\material\image\enemy2_hit.png

     文件      47800  2018-09-10 08:31  飞机大战03\material\image\enemy3_down1.png

     文件      53349  2018-09-10 08:31  飞机大战03\material\image\enemy3_down2.png

     文件      60269  2018-09-10 08:31  飞机大战03\material\image\enemy3_down3.png

     文件      66517  2018-09-10 08:31  飞机大战03\material\image\enemy3_down4.png

     文件      75014  2018-09-10 08:31  飞机大战03\material\image\enemy3_down5.png

     文件       8722  2018-09-10 08:31  飞机大战03\material\image\enemy3_down6.png

     文件      45497  2018-09-10 08:31  飞机大战03\material\image\enemy3_hit.png

............此处省略71个文件信息

评论

共有 条评论