资源简介
这里给大家亲测可用的《python编程:从入门到实践》13.1-14.3的全部代码。具体的代码可能会和书上的稍有不同,主要是计分环节的前面加了“highest”、“current”、“level”的字符串,其他基本是相同的。代码中会有许多红色的打印注释,是用于调试寻找bug时留下的,大家不用过于在意。下面是代码运行以后的效果。
代码片段和文件信息
import pygame
from pygame.sprite import Sprite
class Alien(Sprite):
“““表示单个外星人的类“““
def __init__(selfai_settingsscreen):
“““初始化外星人并设置其起始位置“““
super().__init__()
self.screen=screen
self.ai_settings=ai_settings
#加载外星人的图像,并设置其rect属性
self.image=pygame.image.load(‘images/alien.bmp‘)
self.rect=self.image.get_rect()
#每个外星人最初都在屏幕左上角附近
self.rect.x=self.rect.width
self.rect.y=self.rect.height
#存储外星人的准确位置
self.x=float(self.rect.x)
def check_edges(self):
“““如果外星人位于屏幕边缘,就返回True“““
screen_rect=self.screen.get_rect()
if self.rect.right>screen_rect.right:
return True
elif self.rect.left<=0:
return True
def update(self):
“““向左或者向右移动外星人“““
self.x+=(self.ai_settings.alien_speed_factor*
self.ai_settings.fleet_direction)
self.rect.x=self.x
def blitme(self):
“““在指定位置绘制外星人“““
self.screen.blit(self.imageself.rect)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-29 18:28 __pycache__\
文件 1471 2018-08-30 14:15 __pycache__\alien.cpython-37.pyc
文件 1244 2018-08-27 13:49 __pycache__\bullet.cpython-37.pyc
文件 1233 2018-08-30 16:52 __pycache__\button.cpython-37.pyc
文件 6155 2018-09-29 18:23 __pycache__\game_functions.cpython-37.pyc
文件 827 2018-09-29 15:28 __pycache__\game_stats.cpython-37.pyc
文件 2707 2018-09-29 18:26 __pycache__\scoreboard.cpython-37.pyc
文件 1442 2018-09-28 15:35 __pycache__\settings.cpython-37.pyc
文件 1369 2018-09-29 18:28 __pycache__\ship.cpython-37.pyc
文件 1292 2018-08-30 14:02 alien.py
文件 1667 2018-09-29 15:42 alien_invasion.py
文件 1134 2018-08-27 13:49 bullet.py
文件 1197 2018-08-30 16:52 button.py
文件 9028 2018-09-29 18:23 game_functions.py
文件 597 2018-09-29 15:17 game_stats.py
目录 0 2018-08-28 16:36 images\
文件 2144 2018-08-28 16:36 images\alien.bmp
文件 6048 2018-08-28 16:35 images\alien1.bmp
文件 4222 2018-08-27 10:42 images\ship.bmp
文件 23467 2018-08-20 12:59 images\ship_sourceimg.bmp
文件 4385142 2018-08-10 16:43 pygame-1.9.4-cp37-cp37m-win_amd64.whl
文件 3635 2018-09-29 18:26 scoreboard.py
文件 1901 2018-09-28 15:32 settings.py
文件 1486 2018-09-29 18:28 ship.py
- 上一篇:python之外星人入侵
- 下一篇:破解wifi密码python小程序
相关资源
- 破解wifi密码python小程序
- python之外星人入侵
- 基于python的小游戏 含源代码
- 深度学习入门 基于python理论与实现
- 混合地理加权回归python实现代码
- 基于python的单机版中国象棋
- python3基础教程第三版高清
- python入门笔记强烈推荐.zip
- Python-自然场景文本检测PSENet的一个
- Python-在特征金字塔网络FPN的Pytorch实现
- Python-PyTorch实时多人姿态估计项目的实
- Python-用PyTorch10实现FasterRCNN和MaskRCNN比
- Python-心脏核磁共振MRI图像分割
- Python-基于YOLOv3的行人检测
- Python-数据结构与算法leetcodelintcode题解
- Python-RLSeq2Seq用于SequencetoSequence模型的
- Python-PyTorch对卷积CRF的参考实现
- Python-高效准确的EAST文本检测器的一个
- Python-BilibiliLiveBarrage实时监控B站直播
- Python-利用Python图虫网摄影作品
- Python-pytorch实现的人脸检测和人脸识别
- Python-UNet用于医学图像分割的嵌套UN
- Python-TensorFlow弱监督图像分割
- Python-基于tensorflow实现的用textcnn方法
- Python-Keras实现Inceptionv4InceptionResnetv1和
- Python-用pyqt5和parametrics实现很酷的动画
- Python-pytorch中文手册
- Python-FastSCNN的PyTorch实现快速语义分割
- Python-Goose3一个用Python编写的文章提取
- Python-滑动窗口高分辨率显微镜图像分
评论
共有 条评论