python开发飞机⼤战游戏本⽂实例为⼤家分享了python开发飞机⼤战游戏的具体代码,供⼤家参考,具体内容如下import pygame
import random
import math # 数学模块
# 初始化界⾯
pygame.init()
# 设置窗⼝⼤⼩
windows = pygame.display.set_mode((800, 600))
# 设置窗⼝标题
pygame.display.set_caption("⼩赵同学")
# 引⼊图⽚ logo
icon = pygame.image.load('logo.jpg')
pygame.display.set_icon(icon)
# 4.游戏获取背景
bgcolor = pygame.image.load('bj.png')
# 5.设置玩家飞机
playerimg = pygame.image.load('fj.png')
X = 350 # 设置玩家X轴
Y = 480 # 设置玩家Y轴
# 停⽌移动就可以将palyerStep改为0。控制⼀个变量来指定飞机指定移动
playerStep = 0
# 添加背景⾳乐
pygame.mixer.music.load('bj.mp3')
pygame.mixer.music.play(-1)
# 添加射中的⾳效
# bao_music = pygame.mixer.Sound('bj.mp3')
# 分数
score = 0
# 添加字体和⼤⼩
font = pygame.font.Font('f', 32)
# 字体类
def show_score():
# 显⽰的⽂字
text = f"Score:{score}"
# 渲染然后显⽰显⽰text True表⽰24位的字
score_render = der(text, True, (0, 255, 0))
# 指定字体放到那个位置
windows.blit(score_render, (10, 10))
# 游戏结束的变量
over = False
over_font = pygame.font.Font('f', 64)
# 结束的提⽰语
def check_over():
if over:
text = "Game Over"
render = der(text, True, (255, 0, 0))
windows.blit(render, (320, 200))
# 8.添加敌⼈.
# 11.添加多个敌⼈
number_enemy = 6
# 敌⼈类
class Enemy:
def __init__(self):
#
self.img = pygame.image.load('enemy.png')
self.x = random.randint(200, 600) # 随机产⽣X
self.y = random.randint(50, 250) # 随机产⽣Y
self.step = random.randint(2, 4) # 随机产⽣速度
# 当被射中时恢复位置
def reset(self):
self.x = random.randint(200, 600)
self.y = random.randint(50, 180)
def distance(bx, by, ex, ey):
a = bx - ex
b = by - ey
return math.sqrt(a * a + b * b) # 开根号
# 保存所有的敌⼈
enemis = []
for i in range(number_enemy): # 每次循环都都在class Enemy中过⼀边,所以随机产⽣⼀个敌⼈的参数并且保存到列表中 enemis.append(Enemy())
# 显⽰敌⼈并且实现敌⼈的移动下沉
def enemy(): # 循环保存敌⼈的列表,每个敌⼈都过在这个for循环⾥被限制了移动的轨迹
global over
for e in enemis:
windows.blit(e.img, (e.x, e.y))
e.x += e.step
if e.x > 750 or e.x < 0: # 判断敌⼈是否到了边界
e.step *= -1 # 敌⼈碰到界⾯往返
e.y += 40 # 设置敌⼈往下沉
# 判断敌⼈的位置如果到达指定的地⽅则游戏结束
if e.y > 436:
over = True
print("游戏结束啦")
enemis.clear()
# 设置飞机及飞机移动范围的函数 == 飞机类型
def fiji_type(): # 设置飞机的坐标和飞机X Y轴最⼤的移动位置
python可以做什么游戏global X, Y
# 5. 设置飞机
windows.blit(playerimg, (X, Y))
# 6.飞机移动
X += plagerStep
# 预防飞机出界
if X > 680:
X = 680
if X < 0:
X = 0
# ⼦弹的类
class Bullet:
def __init__(self):
self.img = pygame.image.load('bullet.png')
self.x = X + 55 # 设置⼦弹的X轴
self.y = Y + 5 # ⼦弹出现在玩家的上⽅
self.step = 2 # ⼦弹移动的速度
# 击中敌⼈
def hit(self):
global score
for e in enemis:
if distance(self.x, self.y, e.x, e.y) < 30:
# 射中了
# 没击中加10分
score += 10
bullets = [] # 保存现有的⼦弹
# 显⽰⼦弹移动
def show_bullets():
for b in bullets:
windows.blit(b.img, (b.x, b.y))
b.hit() # 查看是否击中了敌⼈
b.y -= b.step # 往上移动
# 判断⼦弹是否出了界⾯
if b.y < 0:
# 3.游戏主循环
running = True
while running:
# 4.背景
# 每个循环是画⼀张画组成的
# 画出来bgcolor
windows.blit(bgcolor, (0, 0))
# 调⽤这个字体
show_score()
# 操作事件
for event in ():
# 判断操作类型是不是QUIT
pe == pygame.QUIT:
# 如果程序为False就会停⽌则关闭
running = False
# 7.控制飞机的移动
# 通过控制键盘的事件来控制(playerStep值)飞机的移动 pe == pygame.KEYDOWN:
# 判断按下键盘右键,按下则移动
if event.key == pygame.K_RIGHT:
plagerStep = 3
# 判断按下左键
elif event.key == pygame.K_LEFT:
plagerStep = -3
# 判断按下空格健的反应
elif event.key == pygame.K_SPACE:
# 创建⼀个⼦弹
b = Bullet()
bullets.append(b)
# 判断松来按键停⽌,
pe == pygame.KEYUP:
plagerStep = 0
# 调⽤飞机的类型的函数
fiji_type()
# 调⽤敌⼈这个函数
enemy()
show_bullets() # 显⽰⼦弹
# 游戏结束语
check_over()
# 刷新更新数据
pygame.display.update()
# global 设置全局变量
''' 游戏结构
1.设置窗⼝⼤⼩
2.背景图
3.显⽰飞机
4.移动飞机
5.控制出界
6.获取键盘事件
7.显⽰敌⼈
8.敌⼈移动
9.下沉和随机位置
10.显⽰多个敌⼈
11.响应空格键
12.添加⼦弹
13.发射⼦弹
14.射中检测之距离
15.射中检测
16.添加⾳效
17.添加并显⽰分数
18.游戏结束
19.结束提⽰
'''
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论