资源简介
像素小鸟这个简单的游戏于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.xm
文件 281 2018-11-27 09:07 .idea\modules.xm
文件 11554 2018-11-27 13:57 .idea\workspace.xm
目录 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__\Initob
文件 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 Initob
文件 1816 2018-11-27 09:15 Main.py
文件 2707 2018-11-27 09:16 Methods.py
目录 0 2018-11-27 10:21 venv\
............此处省略931个文件信息
- 上一篇:knn最近邻算法与数据集
- 下一篇:Py局域网聊天程序
相关资源
- 深度学习入门:基于Python的理论与实
- opencv_python官方中文教程源码修改版
- 《Python源码剖析-深度探索动态语言核
- Python学习手册.mobi kindle电子书 带源码
- 《Python深度学习》(Deep Learning With
- Python-使用遗传算法和深度学习训练
- 用Python写网络爬虫PDF&源码
- 图灵书籍(流畅的Python.pdf+Python基础教
- Python学生成绩管理系统
- python-Django-网上购书商城完整源码
- 深度学习入门:基于Python的理论与实
- 2017年传智黑马python基础加就业班视频
- Python机器学习基础教程中文版Introdu
- 《Python爬虫开发与项目实战》pdf+源码
- python飞机大战小游戏
- Python爬虫开发与项目实战PDF与源码.
- OpenCV 3计算机视觉 Python语言实现第二
- 《Python Spark2.0 Hadoop机器学习与大数据
- Python从入门到项目实践全彩版PDF+源码
- Python源码剖析
- Python大战机器学习(华校专)2017出版
- python行人检测视频+源码
- 与孩子一起学PythonPDF书、源代码素材
- OpenCV 3计算机视觉:Python语言实现(以
- 飞机大战python源码及游戏
- PYTHON数据可视化编程实战以及中文P
- python pygame全民大战飞机游戏源码
- python源码剖析超清版)
- python计算机视觉PDF+源码+数据高清非扫
- 传智播客python人工智能项目黑马程序
评论
共有 条评论