这几天在重温微信小游戏的飞机大战,玩着玩着就在思考人生了,这飞机大战怎么就可以做的那么好,操作简单,简单上手。
帮助蹲厕族、YP族、饭圈女孩在无聊之余可以有一样东西让他们振作起来!
让他们的左手 / 右手有节奏有韵律的朝着同一个方向来回移动起来!
这是史诗级的发明,是浓墨重彩的一笔,是……
在一阵抽搐后,我结束了游戏,瞬时觉得一切都索然无味,正在我进入贤者模式时,突然想到,如果我可以让更多人已不同的方式体会到这种美轮美奂的感觉岂不美哉?
所以我打开电脑,创建了一个plan_game.py……
先看效果图
操作环境
* 操作系统:windows10
* python版本:python 3.7
* 代码编辑器:pycharm 2018.2
* 使用模块:os,sys,random,pygame
因为实现代码使用到了一个pygame的第三方模块,没有的先 pip install 一下,这里顺便提供一个比较好的pygame的教程.
`https://eyehere.net/2011/python-pygame-novice-professional-index/`
具体实现
1. 首先我们先指定素材文件的文件目录.方便我们后面的使用。这些素材已经全部上传了。
import os
source_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'material_images')
2. 实现一个Game类,用来完成这个游戏的主要逻辑。
import pygame
class Game():
def __init__(self, background_image_path, size=(480, 700), title='飞机大战', font_name='方正舒体', font_size=30, speed=2000):
'''
:param background_image_path: 背景图片的路径地址
:param size: 游戏窗口的大小
:param title: 游戏窗口的标题
:param font_name: 指定字体
:param font_size: 指定字体大小
:param speed: 背景图滚动整个窗口一次所用时间,单位为ms
'''
self.size = size
self.screen = pygame.display.set_mode(size)
self.title = title
self.background_image_path = background_image_path
self.background = pygame.image.load(self.background_image_path).convert()
self.font = pygame.font.SysFont(font_name, font_size)
self.clock = pygame.time.Clock()
self.height =
0
self.every_ms_move_distance = self.size[
1] / speed
self.score =
0
self.enemies = []
def show_score(self):
'''
显示分数, 在窗口的的最上方距离上边距10px, 左右居中
'''
pass
def set_time_passed(self):
self.time_passed = self.clock.tick()
def draw_background(self):
'''
绘制背景图片,一直向下滚动,营造飞机一直往上面飞的感觉
'''
pass
def create_enemy(self, image_path=os.path.join(source_dir,'enemy1.png'), enemy_number=5):
'''
创建敌机
:param image_path: 敌机的图片地址
:param enemy_number: 最多有几个敌机在屏幕上
'''
pass
def draw_enemies(self, time_passed, screen):
'''
绘制敌机到屏幕上,清理跑出窗口的敌机,
:param time_passed: 上次绘制导向现在经过的时间
:param screen: 绘制的窗口对象
'''
pass
def bullet_and_enemy_crash_detection(self, bullets):
'''
检测子弹是否击中敌机
:param bullets: 飞机的所有子弹
'''
pass
def plan_and_enemy_crash_detection(self, plan, allow_crash_size=None):
'''
检测敌机与飞机是否相撞
:param plan: 飞机对象
:param allow_crash_size: 允许飞机碰撞的大小,只有左右有效
'''
pass
def draw_plan(self, plan, time_passed):
'''
绘制飞机
:param plan: 飞机对象
:param time_passed: 距离上次绘制的时间
:return:
'''
pass
def game_over(self):
'''
游戏结束
'''
while
True:
pass
def run(self):
'''
游戏入口函数,开始函数,主体函数
:return:
'''
pygame.display.set_caption(self.title)
plan = Plan()
while
True:
pass
pass
pass
self.bullet_and_enemy_crash_detection(plan.bullets)
self.plan_and_enemy_crash_detection(plan)
self.set_time_passed()
self.draw_background()
self.show_score()
self.create_enemy()
self.draw_enemies(time_passed=self.time_passed, screen=self.screen)
self.draw_plan(plan=plan, time_passed=self.time_passed)
plan.draw_bullets(time_passed=self.time_passed, screen=self.screen)
pygame.display.update()
这里说以下怎样查看自己的系统中有哪些自带的字体.
pygame.font.get_fonts(),这个函数就能够得到系统中所有的自带字体文件。
不过,当我们游戏中有中文的时候,我们也得选择支持中文的字体,否则的话是显示不出中文的。
3. 实现DestroyAnimationMixin类,这个类主要是用来显示飞机或敌机的自毁动画
class DestroyAnimationMixin():
def show_destroy_animation(self, time_passed, destroy_time=200):
'''
显示自毁动画
动画其实就是几张图片切换的比较快,我们的眼睛识别不出来,所以认为他是动态的,也就是动画
:param time_passed: 距离上次绘制图像到现在的时间,单位ms
:param destroy_time: 自毁动画总共显示时间,单位ms
'''
if self.destroy_image_position >=
4:
self.destroyed =
True
return
if self.time_passed >= destroy_time /
4:
self.image = pygame.image.load(os.path.join(source_dir, self.destroy_images[self.destroy_image_position])).convert_alpha()
self.destroy_image_position +=
1
self.time_passed =
0
else:
self.time_passed += time_passed
4. 实现飞机类,完成飞机的主要操作。飞机的操作包括:飞机位置、飞机子弹、发射子弹等。
class Plan(DestroyAnimationMixin):
def __init__(self, image_path=os.path.join(source_dir,'plan.png'), background_size=(480, 700)):
'''
:param image_path: 飞机图片地址
:param background_size: 游戏窗口大小
'''
self.background_size = background_size
self.image = pygame.image.load(image_path).convert_alpha()
self.image_size = self.image.get_size()
self.position = [(background_size[
0]-self.image_size[
0]) /
2,
500]
self.every_time_move_distance =
0.5
self.bullets = []
self.start_destroy =
False
self.destroyed =
False
self.destroy_images = [
'me_destroy_1.png',
'me_destroy_2.png',
'me_destroy_3.png',
'me_destroy_4.png']
self.destroy_image_position =
0
self.time_passed =
0
def update(self, direction):
'''
更新飞机位置
:param direction: 飞机移动方向
'''
pass
def shut(self, image_path=os.path.join(source_dir,'bullet.png')):
'''
飞机发射子弹
:param image_path: 子弹图片
'''
pass
def draw_bullets(self, time_passed, screen):
'''
绘制飞机的所有子弹
:param time_passed: 距离上次绘制图像到现在的时间
:param screen: 绘制到哪一个窗口中
'''
pass
5. 实现敌机类,完成敌机的主要操作。主要是用来更新位置。
class Enemy(DestroyAnimationMixin):
def __init__(self, image_path=os.path.join(source_dir, 'enemy1.png'), speed=2000, background_size=(480, 700)):
'''
:param image_path: 敌机图片地址
:param speed: 敌机移动整个窗口需要的时间,单位ms,也就是速度
:param background_size: 游戏窗口的尺寸
'''
self.image = pygame.image.load(image_path).convert_alpha()
self.speed = background_size[
1] / speed
self.background_size = background_size
self.position = [random.randint(
0, background_size[
0]-self.image.get_size()[
0]), -self.image.get_size()[
1]]
self.start_destroy =
False
self.destroyed =
False
self.destroy_images = [
'enemy1_down1.png',
'enemy1_down2.png',
'enemy1_down3.png',
'enemy1_down3.png']
self.time_passed =
0
self.destroy_image_position =
0
def update(self, time_passed):
'''
更新敌机的位置
:param time_passed: 距离上次绘制图像到现在的时间
:return:
'''
pass
6. 实现子弹类,完成子弹的主要操作
class Bullet():
def __init__(self, image_path=os.path.join(source_dir,'bullet.png'), background_size=(480, 700), plan=None, speed=1000):
'''
:param image_path: 子弹的图片地址
:param background_size: 游戏窗口大小
:param plan: 飞机对象
:param speed: 子弹飞行速度
'''
self.image = pygame.image.load(image_path).convert_alpha()
self.background_size = background_size
self.speed = background_size[
1] / speed
self.destroyed =
False
self.position = self._get_position(plan)
def _get_position(self, plan):
'''
根据plan得到子弹发出位置
:param plan: 飞机对象
'''
bullet_size = self.image.get_size()
plan_width = plan.image_size[
0]
x = (plan_width-bullet_size[
0]) /
2
return [plan.position[
0] + x, plan.position[
1]]
def update(self, time_passed):
'''
改变子弹位置
:param time_passed: 距离上次绘制图像到现在的时间
'''
if self.position[
1] + self.image.get_size()[
1] <=
0
or self.destroyed:
self.position[
1] =
-100
return
self.position[
1] -= time_passed * self.speed
这样,我们就把所有的操作都实现完了,接下来只需要使用 Game().run(),就可以运行我们的游戏了。
[ 完 ]
今日赠送书籍
Python编程从0到1(视频教学版)
内容简介:
本书以Python语言构建了程序设计基础课程的教学体系。本书在对程序设计核心方法的探讨上较其他Python书籍更为全面和深入。通过对本书内容的系统学习,读者将全面掌握用Python进行程序设计的基本能力。本书讲解由浅入深,循序渐进,适合Python编程的自学人员和爱好者阅读,也适合作为高校理工科专业的Python教学用书,还适合作为IT培训机构的Python教学用书。
今日留言主题
说说你用Python做过哪些有趣的事情