pygame实现有趣的飞机塔防游戏,有兴趣了解一下吗?
Posted dhjabc_1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pygame实现有趣的飞机塔防游戏,有兴趣了解一下吗?相关的知识,希望对你有一定的参考价值。
一步步实现有趣的飞机塔防游戏,有兴趣了解一下吗?
好的,马上开始。
文章目录
一、先让飞机在屏幕上飞起来吧。
(一)实现飞机类
class Plane:
def __init__(self,filename,screen):
self.plane = pygame.image.load(filename).convert_alpha()
self.height = self.plane.get_height()
self.width = self.plane.get_width()
self.radius = randint(2, 10)
self.xpos = randint(self.radius, 800-self.radius)
self.ypos = randint(self.radius, 700-self.radius)
# self.xpos = randint(100, 600)
# self.ypos = randint(100, 600)
self.xvelocity = randint(2, 6)/5
self.yvelocity = randint(2, 6)/5
self.angle = math.atan2(self.yvelocity,self.xvelocity)
self.fangle = math.degrees(self.angle)+90
self.screen = screen
self.scrnwidth = 800
self.scrnheight = 700
def move_ball(self):
self.xpos += self.xvelocity
self.ypos += self.yvelocity
# 如果球的y坐标大于等于屏幕高度和球的半径的差,则调整球的运行y轴方向朝上
if self.ypos >= self.scrnheight-self.width:
self.yvelocity = -self.yvelocity
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的y坐标小于等于屏幕高度和球的半径的差,则调整球的y轴运行方向朝下
if self.ypos <= 0:
self.yvelocity = abs(self.yvelocity)
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的x坐标大于等于屏幕宽度和球的半径差,则调整球的运行x轴方向朝左
if self.xpos >= self.scrnwidth-self.height:
self.xvelocity = -self.xvelocity
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的x坐标小于等于屏幕宽度和球半径的差,则调整球的运行x轴方向朝右
if self.xpos <= 0:
self.xvelocity = abs(self.xvelocity)
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
self.planed = pygame.transform.rotate(self.plane, -(self.fangle))
self.screen.blit(self.planed, (self.xpos,self.ypos))
(二)让飞机飞起来
if __name__ == '__main__':
pygame.init()
screen = pygame.display.set_mode((800, 700))
plane = Plane('plane.png',screen)
clock = pygame.time.Clock()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
clock.tick(200)
screen.fill((0, 0, 0))
plane.move_ball()
pygame.display.update()
(三)运行效果
二、屏幕下发实现一个塔防设备
(一)实现塔防设备类
class Pao:
def __init__(self,screen):
self.start = (100,700)
self.end = None
self.screen = screen
self.count = 0
self.bullet_list = []
pass
def getpos(self,pos2,r):
self.angle = math.atan2( pos2[1]-self.start[1],pos2[0]-self.start[0])
self.fangle = math.degrees(self.angle)
self.x = self.start[0]+r*math.cos(self.angle)
self.y = self.start[1]+r*math.sin(self.angle)
self.r = r
self.end = pos2
def move(self):
pygame.draw.line(self.screen, (255, 0, 0), self.start, (self.x,self.y), 5)
pygame.draw.circle(self.screen,(0,255,0),self.start,15)
(二)主函数实现调用
pao = Pao(screen)
clock = pygame.time.Clock()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
clock.tick(200)
screen.fill((0, 0, 0))
plane.move_ball()
pao.getpos((plane.xpos, plane.ypos), 35)
pao.move()
(三)实现效果
发现没有,塔防设备跟踪飞机的运动而运动,一切都在监控中。
三、让子弹也飞起来吧
(一)实现子弹类
class Bullet:
def __init__(self,x,y,fangle,screen,angle):
self.posx = x
self.posy = y
self.fangle = fangle
self.angle = angle
self.alive = True
self.screen = screen
self.bullet = pygame.image.load('bullet2.png').convert_alpha()
self.r = random.randint(5,10)
def move(self):
self.planed = pygame.transform.rotate(self.bullet, -(self.fangle))
self.posx += self.r * math.cos(self.angle)
self.posy += self.r * math.sin(self.angle)
# self.xpos, self.ypos = (self.xpos + section * cosa, self.ypos - section * sina)
if self.posy > 700 or self.posy < 0 or self.posx < 0 or self.posx > 800:
self.alive = False
if self.alive:
self.screen.blit(self.planed, (self.posx, self.posy))
(二)在塔防设备实现子弹生成
在move函数上写相关代码
def move(self):
pygame.draw.line(self.screen, (255, 0, 0), self.start, (self.x,self.y), 5)
pygame.draw.circle(self.screen,(0,255,0),self.start,15)
if self.count % 100 == 19:
self.bullet_list.append(Bullet(self.x,self.y,self.fangle,self.screen,self.angle))
self.count += 1
for bullet in self.bullet_list:
if bullet.alive is not True:
del bullet
else:
bullet.move()
(三)完整代码
import pygame,sys
from math import *
from Ball import Ball
import random
from random import randint
import math
class Plane:
def __init__(self,filename,screen):
self.plane = pygame.image.load(filename).convert_alpha()
self.height = self.plane.get_height()
self.width = self.plane.get_width()
self.radius = randint(2, 10)
self.xpos = randint(self.radius, 800-self.radius)
self.ypos = randint(self.radius, 700-self.radius)
self.xvelocity = randint(2, 6)/5
self.yvelocity = randint(2, 6)/5
self.angle = math.atan2(self.yvelocity,self.xvelocity)
self.fangle = math.degrees(self.angle)+90
self.screen = screen
self.scrnwidth = 800
self.scrnheight = 700
def move_ball(self):
self.xpos += self.xvelocity
self.ypos += self.yvelocity
# 如果球的y坐标大于等于屏幕高度和球的半径的差,则调整球的运行y轴方向朝上
if self.ypos >= self.scrnheight-self.width:
self.yvelocity = -self.yvelocity
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的y坐标小于等于屏幕高度和球的半径的差,则调整球的y轴运行方向朝下
if self.ypos <= 0:
self.yvelocity = abs(self.yvelocity)
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的x坐标大于等于屏幕宽度和球的半径差,则调整球的运行x轴方向朝左
if self.xpos >= self.scrnwidth-self.height:
self.xvelocity = -self.xvelocity
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
# 如果球的x坐标小于等于屏幕宽度和球半径的差,则调整球的运行x轴方向朝右
if self.xpos <= 0:
self.xvelocity = abs(self.xvelocity)
self.angle = math.atan2(self.yvelocity, self.xvelocity)
self.fangle = math.degrees(self.angle) + 90
self.planed = pygame.transform.rotate(self.plane, -(self.fangle))
self.newRect = self.plane.get_rect(center=(self.xpos,self.ypos))
self.screen.blit(self.planed,self.newRect)
class Pao:
def __init__(self,screen):
self.start = (100,700)
self.end = None
self.screen = screen
self.count = 0
self.bullet_list = []
pass
def getpos(self,pos2,r):
self.angle = math.atan2( pos2[1]-self.start[1],pos2[0]-self.start[0])
self.fangle = math.degrees(self.angle)
self.x = self.start[0]+r*math.cos(self.angle)
self.y = self.start[1]+r*math.sin(self.angle)
self.r = r
self.end = pos2
def move(self):
pygame.draw.line(self.screen, (255, 0, 0), self.start, (self.x,self.y), 5)
pygame.draw.circle(self.screen,(0,255,0),self.start,15)
if self.count % 100 == 19:
self.bullet_list.append(Bullet(self.x,self.y,self.fangle,self.screen,self.angle))
self.count += 1
for bullet in self.bullet_list:
if bullet.alive is not True:
del bullet
else:
bullet.move()
class Bullet:
def __init__(self,x,y,fangle,screen,angle):
self.posx = x
self.posy = y
self.fangle = fangle
self.angle = angle
self.alive = True
self.screen = screen
self.bullet = pygame.image.load('bullet2.png').convert_alpha()
self.r = random.randint(5,10)
def move(self):
self.planed = pygame.transform.rotate(self.bullet, -(self.fangle))
self.posx += self.r * math.cos(self.angle)
self.posy += self.r * math.sin(self.angle)
# self.xpos, self.ypos = (self.xpos + section * cosa, self.ypos - section * sina)
if self.posy > 700 or self.posy < 0 or self.posx < 0 or self.posx > 800:
self.alive = False
if self.alive:
self.screen.blit(self.planed, (self.posx, self.posy))
if __name__ == '__main__':
pygame.init()
screen = pygame.display.set_mode((800, 700))
plane = Plane('plane.png',screen)
pao = Pao(screen)
clock = pygame.time.Clock()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
clock.tick(200)
screen.fill((0, 0, 0))
plane.move_ball()
pao.getpos((plane.xpos, plane.ypos), 35)
pao.move()
pygame.display.update()
(四)运行效果
四、碰撞监测和爆炸效果实现
(一)碰撞监测
plane_rect = plane.newRect # planed.get_rect()
# print(plane_rect)
# print(len(pao.bullet_list))
for bullet in pao.bullet_list以上是关于pygame实现有趣的飞机塔防游戏,有兴趣了解一下吗?的主要内容,如果未能解决你的问题,请参考以下文章
Python游戏开发,pygame模块,Python实现经典吃豆豆小游戏
Python游戏开发,pygame模块,Python实现俄罗斯方块小游戏
用Python3 的pygame模块实现塔防小游戏,女神看了都称厉害
新星计划python赛道pygame让你一步步实现翻牌游戏(金币旋转大头贴等),打造更有趣的新星之旅