欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python新年炫酷煙花秀代碼

 更新時(shí)間:2022年01月06日 09:13:29   作者:海涯愛(ài)編程  
大家好,本篇文章主要講的是Python新年炫酷煙花秀代碼,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話記得收藏一下,方便下次瀏覽

 先介紹下 Pygame 繪制煙花的基本原理,煙花從發(fā)射到綻放一共分為三個(gè)階段:

1,發(fā)射階段:在這一階段煙花的形狀是線性向上,通過(guò)設(shè)定一組大小不同、顏色不同的點(diǎn)來(lái)模擬“向上發(fā)射” 的運(yùn)動(dòng)運(yùn)動(dòng),運(yùn)動(dòng)過(guò)程中 5個(gè)點(diǎn)被賦予不同大小的加速度,隨著時(shí)間推移,后面的點(diǎn)會(huì)趕上前面的點(diǎn),最終所有點(diǎn)會(huì)匯聚在一起,處于 綻放準(zhǔn)備階段;

2,煙花綻放:煙花綻放這個(gè)階段,是由一個(gè)點(diǎn)分散多個(gè)點(diǎn)向不同方向發(fā)散,并且每個(gè)點(diǎn)的移動(dòng)軌跡可需要被記錄,目的是為了追蹤整個(gè)綻放軌跡。

3,煙花凋零,此階段負(fù)責(zé)描繪綻放后煙花的效果,綻放后的煙花,而在每一時(shí)刻點(diǎn)的下降速度和亮度(代碼中也叫透明度)是不一樣的,因此在代碼里,將煙花綻放后將每個(gè)點(diǎn)賦予兩個(gè)屬性:分別為重力向量和生命周期,來(lái)模擬煙花在不同時(shí)期時(shí)不同的展現(xiàn)效果。

程序運(yùn)行截圖:

 完整程序代碼:

import pygame
from random import randint, uniform, choice
import math
 
vector = pygame.math.Vector2
gravity = vector(0, 0.3)
DISPLAY_WIDTH = DISPLAY_HEIGHT = 800
 
 
trail_colours = [(45, 45, 45), (60, 60, 60), (75, 75, 75), (125, 125, 125), (150, 150, 150)]
dynamic_offset = 1
static_offset = 3
 
 
 
class Firework:
    def __init__(self):
        # 隨機(jī)顏色
        self.colour = (randint(0, 255), randint(0, 255), randint(0, 255))
        self.colours = (
            (randint(0, 255), randint(0, 255), randint(0, 255)),
            (randint(0, 255), randint(0, 255), randint(0, 255)),
            (randint(0, 255), randint(0, 255), randint(0, 255)))
        self.firework = Particle(randint(0, DISPLAY_WIDTH), DISPLAY_HEIGHT, True,
                                 self.colour)  # Creates the firework particle
        self.exploded = False
        self.particles = []
        self.min_max_particles = vector(100, 225)
 
    def update(self, win):  # called every frame
        if not self.exploded:
            self.firework.apply_force(gravity)
            self.firework.move()
            for tf in self.firework.trails:
                tf.show(win)
 
            self.show(win)
 
            if self.firework.vel.y >= 0:
                self.exploded = True
                self.explode()
        else:
            for particle in self.particles:
                particle.apply_force(vector(gravity.x + uniform(-1, 1) / 20, gravity.y / 2 + (randint(1, 8) / 100)))
                particle.move()
                for t in particle.trails:
                    t.show(win)
                particle.show(win)
 
    def explode(self):
        # amount 數(shù)量
        amount = randint(self.min_max_particles.x, self.min_max_particles.y)
        for i in range(amount):
            self.particles.append(Particle(self.firework.pos.x, self.firework.pos.y, False, self.colours))
 
    def show(self, win):
        pygame.draw.circle(win, self.colour, (int(self.firework.pos.x), int(self.firework.pos.y)), self.firework.size)
 
    def remove(self):
        if self.exploded:
            for p in self.particles:
                if p.remove is True:
                    self.particles.remove(p)
 
            if len(self.particles) == 0:
                return True
            else:
                return False
 
 
class Particle:
    def __init__(self, x, y, firework, colour):
        self.firework = firework
        self.pos = vector(x, y)
        self.origin = vector(x, y)
        self.radius = 20
        self.remove = False
        self.explosion_radius = randint(5, 18)
        self.life = 0
        self.acc = vector(0, 0)
        # trail variables
        self.trails = []  # stores the particles trail objects
        self.prev_posx = [-10] * 10  # stores the 10 last positions
        self.prev_posy = [-10] * 10  # stores the 10 last positions
 
        if self.firework:
            self.vel = vector(0, -randint(17, 20))
            self.size = 5
            self.colour = colour
            for i in range(5):
                self.trails.append(Trail(i, self.size, True))
        else:
            self.vel = vector(uniform(-1, 1), uniform(-1, 1))
            self.vel.x *= randint(7, self.explosion_radius + 2)
            self.vel.y *= randint(7, self.explosion_radius + 2)
            # 向量
            self.size = randint(2, 4)
            self.colour = choice(colour)
            # 5 個(gè) tails總計(jì)
            for i in range(5):
                self.trails.append(Trail(i, self.size, False))
 
    def apply_force(self, force):
        self.acc += force
 
    def move(self):
        if not self.firework:
            self.vel.x *= 0.8
            self.vel.y *= 0.8
        self.vel += self.acc
        self.pos += self.vel
        self.acc *= 0
 
        if self.life == 0 and not self.firework:  # check if particle is outside explosion radius
            distance = math.sqrt((self.pos.x - self.origin.x) ** 2 + (self.pos.y - self.origin.y) ** 2)
            if distance > self.explosion_radius:
                self.remove = True
 
        self.decay()
 
        self.trail_update()
 
        self.life += 1
 
    def show(self, win):
        pygame.draw.circle(win, (self.colour[0], self.colour[1], self.colour[2], 0), (int(self.pos.x), int(self.pos.y)),
                           self.size)
 
    def decay(self):  # random decay of the particles
        if 50 > self.life > 10:  # early stage their is a small chance of decay
            ran = randint(0, 30)
            if ran == 0:
                self.remove = True
        elif self.life > 50:
            ran = randint(0, 5)
            if ran == 0:
                self.remove = True
 
    def trail_update(self):
        self.prev_posx.pop()
        self.prev_posx.insert(0, int(self.pos.x))
        self.prev_posy.pop()
        self.prev_posy.insert(0, int(self.pos.y))
 
        for n, t in enumerate(self.trails):
            if t.dynamic:
                t.get_pos(self.prev_posx[n + dynamic_offset], self.prev_posy[n + dynamic_offset])
            else:
                t.get_pos(self.prev_posx[n + static_offset], self.prev_posy[n + static_offset])
 
 
class Trail:
    def __init__(self, n, size, dynamic):
        self.pos_in_line = n
        self.pos = vector(-10, -10)
        self.dynamic = dynamic
 
        if self.dynamic:
            self.colour = trail_colours[n]
            self.size = int(size - n / 2)
        else:
            self.colour = (255, 255, 200)
            self.size = size - 2
            if self.size < 0:
                self.size = 0
 
    def get_pos(self, x, y):
        self.pos = vector(x, y)
 
    def show(self, win):
        pygame.draw.circle(win, self.colour, (int(self.pos.x), int(self.pos.y)), self.size)
 
 
def update(win, fireworks):
    for fw in fireworks:
        fw.update(win)
        if fw.remove():
            fireworks.remove(fw)
 
    pygame.display.update()
 
 
def main():
    pygame.init()
    pygame.font.init()
    pygame.display.set_caption("Fireworks in Pygame") # 標(biāo)題
    background = pygame.image.load("img/1.png") # 背景
    myfont = pygame.font.Font("img/simkai.ttf",80)
    myfont1 = pygame.font.Font("img/simkai.ttf", 30)
 
    testsurface = myfont.render("新年快樂(lè)",False,(251, 59, 85))
    testsurface1 = myfont1.render("By:Python代碼大全", False, (251, 59, 85))
 
    # pygame.image.load("")
    win = pygame.display.set_mode((DISPLAY_WIDTH, DISPLAY_HEIGHT))
    # win.blit(background)
    clock = pygame.time.Clock()
 
    fireworks = [Firework() for i in range(2)]  # create the first fireworks
    running = True
 
    while running:
        clock.tick(60)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                running = False
            if event.type == pygame.KEYDOWN:  # Change game speed with number keys
                if event.key == pygame.K_1: # 按下 1
                    fireworks.append(Firework())
                if event.key == pygame.K_2: # 按下 2 加入10個(gè)煙花
                    for i in range(10):
                        fireworks.append(Firework())
        win.fill((20, 20, 30))  # draw background
        win.blit(background,(0,0))
        win.blit(testsurface,(200,30))
        win.blit(testsurface1, (520,80))
 
        if randint(0, 20) == 1:  # create new firework
            fireworks.append(Firework())
 
        update(win, fireworks)
        # stats for fun
        # total_particles = 0
        # for f in fireworks:
        #    total_particles += len(f.particles)
 
        # print(f"Fireworks: {len(fireworks)}\nParticles: {total_particles}\n\n")
 
    pygame.quit()
    quit()
 
main()

到此這篇關(guān)于Python新年炫酷煙花秀代碼的文章就介紹到這了,更多相關(guān)Python新年煙花秀內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 詳解Python使用tensorflow入門指南

    詳解Python使用tensorflow入門指南

    本篇文章主要介紹了詳解Python使用tensorflow入門指南,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-02-02
  • Django使用jinja2模板的實(shí)現(xiàn)

    Django使用jinja2模板的實(shí)現(xiàn)

    本文主要介紹了Django使用jinja2模板的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-02-02
  • Pytorch中.detach()與.data的用法小結(jié)

    Pytorch中.detach()與.data的用法小結(jié)

    這篇文章主要介紹了Pytorch中.detach()與.data的用法,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2023-07-07
  • Python中的文件輸入輸出問(wèn)題

    Python中的文件輸入輸出問(wèn)題

    這篇文章主要介紹了Python中的文件輸入輸出問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-11-11
  • python取均勻不重復(fù)的隨機(jī)數(shù)方式

    python取均勻不重復(fù)的隨機(jī)數(shù)方式

    今天小編就為大家分享一篇python取均勻不重復(fù)的隨機(jī)數(shù)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2019-11-11
  • Python 多線程的實(shí)例詳解

    Python 多線程的實(shí)例詳解

    這篇文章主要介紹了 Python 多線程的實(shí)例詳解的相關(guān)資料,希望通過(guò)本文大家能掌握多線程的知識(shí),需要的朋友可以參考下
    2017-09-09
  • 從零開(kāi)始學(xué)習(xí)Python與BeautifulSoup網(wǎng)頁(yè)數(shù)據(jù)抓取

    從零開(kāi)始學(xué)習(xí)Python與BeautifulSoup網(wǎng)頁(yè)數(shù)據(jù)抓取

    想要從零開(kāi)始學(xué)習(xí)Python和BeautifulSoup網(wǎng)頁(yè)數(shù)據(jù)抓???本指南將為你提供簡(jiǎn)單易懂的指導(dǎo),讓你掌握這兩個(gè)強(qiáng)大的工具,不管你是初學(xué)者還是有經(jīng)驗(yàn)的開(kāi)發(fā)者,本指南都能幫助你快速入門并提升技能,不要錯(cuò)過(guò)這個(gè)機(jī)會(huì),開(kāi)始你的編程之旅吧!
    2024-01-01
  • python增加圖像對(duì)比度的方法

    python增加圖像對(duì)比度的方法

    這篇文章主要為大家詳細(xì)介紹了python增加圖像對(duì)比度,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-07-07
  • python中的字符串內(nèi)部換行方法

    python中的字符串內(nèi)部換行方法

    今天小編就為大家分享一篇python中的字符串內(nèi)部換行方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2018-07-07
  • Python如何提取chm數(shù)據(jù)

    Python如何提取chm數(shù)據(jù)

    這篇文章主要介紹了Python如何提取chm數(shù)據(jù),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-01-01

最新評(píng)論