python pygame模块编写飞机大战


Posted in Python onNovember 20, 2018

本文实例为大家分享了python pygame模块编写飞机大战的具体代码,供大家参考,具体内容如下

该程序没有使用精灵组,而是用列表存储对象来替代精灵组的动画效果。用矩形对象的重叠来判断相撞事件。该程序可以流畅运行,注释较为详细,希望可以帮助大家。

import pygame
from pygame.locals import *
from sys import exit
import time
import random

# 创建子弹类,把子弹的图片转化为图像对象,设定固定的移动速度
class Bullet():
 def __init__(self,bulletfilename,bulletpos):
  self.bulletimg = pygame.image.load(bulletfilename)
  self.bullet_rect = self.bulletimg.get_rect()
  self.bullet_image = self.bulletimg.subsurface(self.bullet_rect)
  self.bullet_rect.midbottom = bulletpos
  self.speed = 2
 def move(self):
  self.bullet_rect.top -= self.speed

# 创建玩家飞机类,用面向对象的思想来对待
class play_plane_fly():
 def __init__(self,play_image_filename,play_pos):
  self.image = pygame.image.load(play_image_filename)
  self.plane_rect = self.image.get_rect()
  self.play_image = self.image.subsurface(self.plane_rect)
  self.plane_rect.midtop = play_pos
  self.speed = 2
  # 子弹是由玩家飞机发射的,所以创建列表,存储子弹对象,使该列表变为该类的属性
  self.bullets = []
  self.is_hitted = False

 # 生成函数,完成发射子弹动作,同时将每个子弹对象存在列表中
 def shoot(self,bullet_filename):
  bulletobj = Bullet(bullet_filename,self.plane_rect.midtop)
  self.bullets.append(bulletobj)

 # 向上移动,当飞机移动到边框位置时,无法移动
 def moveup(self):
  if self.plane_rect.top <= 0:
   self.plane_rect.top = 0
  else:
   self.plane_rect.top -= self.speed

 # 向下移动,当飞机移动到边框位置时,无法移动
 def movedown(self):
  if self.plane_rect.top >= 950 - self.plane_rect.height:
   self.plane_rect.top = 950 - self.plane_rect.height
  else:
   self.plane_rect.top += self.speed

 # 向右移动,当飞机移动到边框位置时,无法移动
 def moveleft(self):
  if self.plane_rect.left <= -40:
   self.plane_rect.left = -40
  else:
   self.plane_rect.left -= self.speed

 # 向左移动,当飞机移动到边框位置时,无法移动
 def moveright(self):
  if self.plane_rect.left >= 700 - self.plane_rect.width:
   self.plane_rect.left = 700 - self.plane_rect.width
  else:
   self.plane_rect.left += self.speed

# 生成敌机类,设定固定的移动速度
class Enemy():
 def __init__(self,enemyfilename,enemypos):

  self.img = pygame.image.load(enemyfilename)
  self.enemy_rect = self.img.get_rect()
  self.enemy_image = self.img.subsurface(self.enemy_rect)
  self.enemy_rect.midbottom = enemypos
  self.speed = 1

 def move(self):
  self.enemy_rect.bottom += self.speed

clock = pygame.time.Clock()
def main():
 # 初始化文字屏幕
 pygame.font.init()
 # 初始化图像屏幕
 pygame.init()
 # 设定游戏帧
 clock.tick(50)
 # 设定游戏屏幕大小
 screen = pygame.display.set_mode((660,950))
 # 设定游戏名称
 pygame.display.set_caption('飞机大战')
 # 加载背景图片,生成图像对象
 background = pygame.image.load('image/background.png').convert()
 backgroundsurface = pygame.transform.scale(background, (660, 950))
 # 加载游戏结束图片,生成图像对象
 gameover = pygame.image.load('image/gameover.png').convert()
 gameoversurface = pygame.transform.scale(gameover,(660, 950))
 playplanefilename = 'image/myself.png'
 planepos = [330,600]
 player = play_plane_fly(playplanefilename,planepos)
 bulletfilename = 'image/bullet.png'
 # 按频率生成子弹,初始化数字为0
 bullet_frequency = 0
 enemyfilename = 'image/airplane.png'
 # 按频率生成敌机,初始化数字为0
 enemy_frequency = 0
 enemys = []
 myfont = pygame.font.SysFont("arial", 40)
 textImage = myfont.render("Score ", True, (0,0,0))
 # 初始化得分为0
 Score = 0
 # 敌机被子弹击中时的动画,将每张图片的图像对象存在列表中
 enenys_down = []
 enemy0_down = pygame.image.load('image/airplane_ember0.png')
 enemy0_down_rect = enemy0_down.get_rect()
 enemydown0 = enemy0_down.subsurface(enemy0_down_rect)
 enenys_down.append(enemydown0)
 enemy1_down = pygame.image.load('image/airplane_ember1.png')
 enemy1_down_rect = enemy1_down.get_rect()
 enemydown1 = enemy1_down.subsurface(enemy1_down_rect)
 enenys_down.append(enemydown1)
 enemy2_down = pygame.image.load('image/airplane_ember2.png')
 enemy2_down_rect = enemy2_down.get_rect()
 enemydown2 = enemy2_down.subsurface(enemy2_down_rect)
 enenys_down.append(enemydown2)
 enemy3_down = pygame.image.load('image/airplane_ember3.png')
 enemy3_down_rect = enemy3_down.get_rect()
 enemydown3 = enemy3_down.subsurface(enemy3_down_rect)
 enenys_down.append(enemydown3)


 while True:
  # 动态显示得分
  score = str(Score)
  myscore = pygame.font.SysFont("arial", 40)
  scoreImage = myscore.render(score, True, (0, 0, 0))
  # 判断事件,防止卡顿或者意外退出
  for event in pygame.event.get():
   if event.type == pygame.QUIT:
    pygame.quit()
    exit()
  key_pressed = pygame.key.get_pressed()
  if key_pressed[K_UP] or key_pressed[K_w]:
   player.moveup()
  if key_pressed[K_DOWN] or key_pressed[K_s]:
   player.movedown()
  if key_pressed[K_LEFT] or key_pressed[K_a]:
   player.moveleft()
  if key_pressed[K_RIGHT] or key_pressed[K_d]:
   player.moveright()

  screen.blit(backgroundsurface, (0, 0))

  if not player.is_hitted:
   # 按频率生成子弹
   if bullet_frequency % 30 == 0:
    player.shoot(bulletfilename)
   bullet_frequency += 1
   if bullet_frequency >= 30:
    bullet_frequency = 0
   # 让子弹动起来
   for i in player.bullets:
    i.move()
    screen.blit(i.bullet_image,i.bullet_rect)
    # 当子弹飞出屏幕,删除子弹对象
    if i.bullet_rect.bottom <= 0:
     player.bullets.remove(i)
   # 按频率生成敌机
   if enemy_frequency % 100 == 0:
    enemypos = [random.randint(30, 630), 0]
    enemyplane = Enemy(enemyfilename, enemypos)
    #将敌机对象添加到列表中
    enemys.append(enemyplane)
   enemy_frequency += 1
   if enemy_frequency >= 100:
    enemy_frequency = 0
   # 让敌机动起来
   for i in enemys:
    i.move()
    screen.blit(i.enemy_image,i.enemy_rect)
    # 当敌机飞出屏幕,删除敌机对象
    if i.enemy_rect.bottom >= 950:
     enemys.remove(i)
    # 遍历子弹对象,判断子弹是否击中敌机
    for j in player.bullets:
     # 如果击中,分数增加,同时移除该子弹和敌机对象
     if pygame.Rect.colliderect(j.bullet_rect,i.enemy_rect):
      Score += 100
      enemys.remove(i)
      player.bullets.remove(j)
      for k in enenys_down:
       screen.blit(k,i.enemy_rect)
    # 遍历敌机对象,判断玩家是否和敌机相撞
    if pygame.Rect.colliderect(player.plane_rect,i.enemy_rect):
     # 修改is_hitted的值,跳出该层循环
     player.is_hitted = True
     break


   screen.blit(player.play_image,player.plane_rect)
   screen.blit(textImage, (0,0))
   screen.blit(scoreImage, (110, 0))
   pygame.display.update()
  # 玩家退出时显示分数和游戏结束
  else:
   screen.blit(gameoversurface,(0,0))
   screen.blit(textImage, (0, 0))
   screen.blit(scoreImage, (110, 0))
   pygame.display.update()
   time.sleep(2)
   break

main()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python3处理文件中每个词的方法
May 22 Python
python实现简单ftp客户端的方法
Jun 28 Python
python中的随机函数random的用法示例
Jan 27 Python
Python yield与实现方法代码分析
Feb 06 Python
深入理解python中sort()与sorted()的区别
Aug 29 Python
Django 多环境配置详解
May 14 Python
Django框架使用mysql视图操作示例
May 15 Python
浅析Python 引号、注释、字符串
Jul 25 Python
原生python实现knn分类算法
Oct 24 Python
Django使用Celery加redis执行异步任务的实例内容
Feb 20 Python
Python 内置函数速查表一览
Jun 02 Python
python利用while求100内的整数和方式
Nov 07 Python
Python Scapy随心所欲研究TCP协议栈
Nov 20 #Python
python版飞机大战代码分享
Nov 20 #Python
pygame实现雷电游戏雏形开发
Nov 20 #Python
pygame游戏之旅 游戏中添加显示文字
Nov 20 #Python
pygame游戏之旅 添加键盘按键的方法
Nov 20 #Python
pygame游戏之旅 载入小车图片、更新窗口
Nov 20 #Python
一文带你了解Python中的字符串是什么
Nov 20 #Python
You might like
php批量删除数据
2007/01/18 PHP
php输出全球各个时区列表的方法
2015/03/31 PHP
Thinkphp和onethink实现微信支付插件
2016/04/13 PHP
PHP命名空间namespace的定义方法详解
2017/03/29 PHP
laravel框架实现为 Blade 模板引擎添加新文件扩展名操作示例
2020/01/25 PHP
用JQuery调用Session的实现代码
2010/10/29 Javascript
jquery formValidator插件ajax验证 内容不做任何修改再离开提示错误的bug解决方法
2013/01/04 Javascript
js复制网页内容并兼容各主流浏览器的代码
2013/12/17 Javascript
教你用AngularJS框架一行JS代码实现控件验证效果
2014/06/23 Javascript
js+html5通过canvas指定开始和结束点绘制线条的方法
2015/06/05 Javascript
基于JS实现导航条之调用网页助手小精灵的方法
2016/06/17 Javascript
微信小程序实战之运维小项目
2017/01/17 Javascript
JavaScript实现精美个性导航栏筋斗云效果
2017/10/29 Javascript
15分钟深入了解JS继承分类、原理与用法
2019/01/19 Javascript
mongodb初始化并使用node.js实现mongodb操作封装方法
2019/04/02 Javascript
javascript实现blob加密视频源地址的方法
2019/08/08 Javascript
构建大型 Vue.js 项目的10条建议(小结)
2019/11/14 Javascript
基于vue的tab-list类目切换商品列表组件的示例代码
2020/02/14 Javascript
vue v-for出来的列表,点击某个li使得当前被点击的li字体变红操作
2020/07/17 Javascript
[01:20:47]DOTA2-DPC中国联赛 正赛 Ehome vs Magma BO3 第一场 1月19日
2021/03/11 DOTA
python的几种开发工具介绍
2007/03/07 Python
Python GAE、Django导出Excel的方法
2008/11/24 Python
Python排序算法实例代码
2017/08/10 Python
让Django支持Sql Server作后端数据库的方法
2018/05/29 Python
Python urllib.request对象案例解析
2020/05/11 Python
Python2.6版本pip安装步骤解析
2020/08/17 Python
canvas学习笔记之2d画布基础的实现
2019/02/21 HTML / CSS
药剂专业学生求职信范文
2013/12/28 职场文书
个人工作表现评语
2014/04/30 职场文书
入股协议书范本
2014/11/01 职场文书
学习党章的体会
2014/11/07 职场文书
思想品德评语大全
2014/12/31 职场文书
鉴史问廉观后感
2015/06/10 职场文书
微信小程序实现拍照和相册选取图片
2021/05/09 Javascript
Python Pandas模块实现数据的统计分析的方法
2021/06/24 Python
SqlServer常用函数及时间处理小结
2023/05/08 SQL Server