资源简介

像素小鸟这个简单的游戏于2014年在网络上爆红,游戏上线一段时间内appleStore上的下载量一度达到5000万次,风靡一时

资源截图

代码片段和文件信息

from Headers import *


# 定义基类
class baseClass:

    def __init__(self screen x y imagePath rectX rectY):
        self.screen = screen
        self.x = x
        self.y = y

        self.rect = Rect(self.x self.y rectX rectY)
        self.image = pygame.image.load(imagePath).convert_alpha()

    def display(self):  # 渲染到屏幕上
        self.screen.blit(self.image self.rect)


# 定义背景类,继承基类
class Background(baseClass):

    def __init__(self screen x y imagePath):
        super().__init__(screen x y imagePath 288 512)

    def moveLeft(self):  # 向左移动
        if self.rect.x < -288:
            self.rect.x = 1440
        self.rect = self.rect.move([-5 0])


# 定义水管类,继承基类
class Pipe(baseClass):
    def __init__(self screen x y imagePath):
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-27 13:57  .idea\
     文件         478  2018-11-27 09:07  .idea\flappy bird.iml
     文件         202  2018-11-27 09:07  .idea\misc.xml
     文件         281  2018-11-27 09:07  .idea\modules.xml
     文件       11554  2018-11-27 13:57  .idea\workspace.xml
     目录           0  2018-11-27 10:31  __pycache__\
     文件        2453  2018-11-27 10:31  __pycache__\Class.cpython-37.pyc
     文件        1094  2018-11-27 10:31  __pycache__\Headers.cpython-37.pyc
     文件         774  2018-11-27 10:31  __pycache__\Initobject.cpython-37.pyc
     文件        2263  2018-11-27 10:31  __pycache__\Methods.cpython-37.pyc
     文件        1425  2018-11-27 09:15  Class.py
     文件        1147  2018-11-27 10:31  Headers.py
     目录           0  2018-11-27 10:31  images\
     文件           0  2018-11-27 09:19  images\__init__.py
     文件       10895  2018-11-27 09:32  images\bg_day.png
     文件       10895  2018-11-27 09:32  images\bg_night.png
     文件         620  2018-11-27 10:02  images\bird1_0.png
     文件         566  2018-11-27 10:05  images\bird1_1.png
     文件         535  2018-11-27 10:06  images\bird1_2.png
     文件         620  2018-11-27 10:02  images\bird2_0.png
     文件         566  2018-11-27 10:05  images\bird2_1.png
     文件         535  2018-11-27 10:06  images\bird2_2.png
     文件       12449  2018-11-27 10:31  images\button_play.jpg
     文件        5238  2018-11-27 09:32  images\pipe2_down.png
     文件        5461  2018-11-27 09:32  images\pipe2_up.png
     文件       96692  2018-11-27 10:28  images\text_game_over.png
     文件       26796  2018-11-27 09:28  images\text_ready.jpg
     文件         819  2018-11-27 09:15  Initobject.py
     文件        1816  2018-11-27 09:15  Main.py
     文件        2707  2018-11-27 09:16  Methods.py
     目录           0  2018-11-27 10:21  venv\
............此处省略931个文件信息

评论

共有 条评论