IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> python 飞机大战 -> 正文阅读

[游戏开发]python 飞机大战

import pygame
from random  import randint
import random
pygame.init()
screen = pygame.display.set_mode((480, 700))
done = False
class Plane():
    def __init__(self,x,y,imagefile):
        self.x=x
        self.y=y
        image=pygame.image.load(imagefile)
        self.icon = pygame.transform.scale(image,(80,80))
    def move(self,fx):
        if fx=='left':
            self.x=self.x-2
        elif fx=='right':
            self.x=self.x+2
        else:
            pass
class Bullet():
    def __init__(self,x,y,imagefile):
        self.x=x
        self.y=y
        self.icon=image = pygame.image.load(imagefile).convert_alpha()
    def move(self):
        self.y=self.y-3
        screen.blit(self.icon,(self.x,self.y))
    def __del__(self):
        del self
class Enemy():
    def __init__(self,x,y,step,imagefile):
        self.x=x
        self.y=y
        self.step=step
        self.icon = pygame.image.load(imagefile).convert_alpha()
    def move(self):
        self.y=self.y+self.step+0.2
        screen.blit(self.icon,(self.x,self.y))
    def __del__(self):
        del self
def initdestrop():
    for i in range(10):
        enemy=Enemy(randint(50,430),100,random.random()*2,r'images/enemy1_down2.png')
        destroy_list.append(enemy)

import time
myPlane=None
bullet=None
bullet_list=list()
enemy_list=list()
destroy_list=list()
destroy_list=[]
jishi=0
initdestrop()
baozha_sound=pygame.mixer.Sound('mp3/baozha.mp3')
bullet_sound=pygame.mixer.Sound('mp3/bullet.mp3')
for i in range(randint(3,8)):
    enemy=Enemy(randint(50,430),100,random.random()*2,r'images/enemy1.png')
    enemy_list.append(enemy)


myPlane=Plane(240,600,r'images\me1.png')
while not done:
    jishi=jishi+1
    if jishi==200:
        jishi=0
        print('add enemy')
        enemy=Enemy(randint(50,430),0,random.random()*2,r'images/enemy1.png')

        enemy_list.append(enemy)
    image = pygame.image.load(r'images\background.png').convert_alpha()
    screen.blit(image,(0,0))

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
        if event.type==pygame.KEYUP:
            if event.key==pygame.K_UP:
                bullet_sound.play()
                bullet=Bullet(myPlane.x+(myPlane.icon.get_width())/2,myPlane.y-10,r'images\bullet1.png')
                bullet_list.append(bullet)
    keyvalue = pygame.key.get_pressed()
    if keyvalue[pygame.K_LEFT]:
        myPlane.move('left')
    if keyvalue[pygame.K_RIGHT]:
        myPlane.move('right')

    for i,item in enumerate(enemy_list):
        item.move()
        if item.y>650:
            print('del enemy')
            baozha_sound.play()
            for baozhao in destroy_list:
                screen.blit(baozhao.icon,(item.x,item.y))
            del enemy_list[i]
            del item
        else:
            pass



    for i,item in enumerate(bullet_list):
        item.move()
        if item.y<=0:
            print('del')
            del bullet_list[i]
            del item
        else:
            for e,enemy in enumerate(enemy_list):
                if abs(enemy.x+(enemy.icon.get_width())/2-item.x)<(enemy.icon.get_width()/2+item.icon.get_width()/2) and abs(enemy.y+enemy.icon.get_height()/2-item.y)<(enemy.icon.get_height()/2+item.icon.get_height()/2):
                    for baozhao in destroy_list:
                        screen.blit(baozhao.icon,(enemy.x,enemy.y))
                    baozha_sound.play()
                    del enemy_list[e]
                    del e
                    print('enemy fall')


    screen.blit(myPlane.icon,(myPlane.x,myPlane.y))
    pygame.display.update()

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2021-10-13 22:28:47  更:2021-10-13 22:28:51 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/28 2:33:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码