python烟花代码-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3600093
  • 博文数量: 365
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2522
  • 用 户 组: 普通用户
  • 注册时间: 2019-10-28 13:40
文章分类

(365)

  • (365)
文章存档

(8)

(130)

(155)

(50)

(22)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: python/ruby

2022-02-16 17:08:41

python烟花代码

如下

# -*- coding: utf-8 -*-

import math, random,time

import threading

import tkinter as tk

import re

#import uuid

fireworks=[]

maxfireworks=8

height,width=600,600

class firework(object):

    def __init__(self,color,speed,width,height):

        #uid=uuid.uuid1()

        self.radius=random.randint(2,4)  #粒子半径为2~4像素

        self.color=color   #粒子颜色

        self.speed=speed  #speed1.5-3.5

        self.status=0   #在烟花未爆炸的情况下,status=0;爆炸后,status>=1;当status>100时,烟花的生命期终止

        self.nparticle=random.randint(20,30)  #粒子数量

        self.center=[random.randint(0,width-1),random.randint(0,height-1)]   #烟花随机中心坐标

        self.oneparticle=[]    #原始粒子坐标(100%状态时)

        self.rottheta=random.uniform(0,2*math.pi)  #椭圆平面旋转角

        #椭圆参数方程:x=a*cos(theta),y=b*sin(theta)

        #ellipsepara=[a,b]

        self.ellipsepara=[random.randint(30,40),random.randint(20,30)]   

        theta=2*math.pi/self.nparticle

        for i in range(self.nparticle):

            t=random.uniform(-1.0/16,1.0/16)  #产生一个 [-1/16,1/16) 的随机数

            x,y=self.ellipsepara[0]*math.cos(theta*i t), self.ellipsepara[1]*math.sin(theta*i t)    #椭圆参数方程

            xx,yy=x*math.cos(self.rottheta)-y*math.sin(self.rottheta),  y*math.cos(self.rottheta) x*math.sin(self.rottheta)     #平面旋转方程

            self.oneparticle.append([xx,yy])

        self.curparticle=self.oneparticle[0:]     #当前粒子坐标

        self.thread=threading.thread(target=self.extend)   #建立线程对象

    def extend(self):         #粒子群状态变化函数线程

        for i in range(100):

            self.status =1    #更新状态标识

            self.curparticle=[[one[0]*self.status/100, one[1]*self.status/100] for one in self.oneparticle]   #更新粒子群坐标

            time.sleep(self.speed/50)

    def explode(self):

        self.thread.setdaemon(true)    #把现程设为守护线程

        self.thread.start()          #启动线程

    def __repr__(self):

        return ('color:{color}\n'  

                'speed:{speed}\n'

                'number of particle: {np}\n'

                'center:[{cx} , {cy}]\n'

                'ellipse:a={ea} , b={eb}\n'

                'particle:\n{p}\n'

                ).format(color=self.color,speed=self.speed,np=self.nparticle,cx=self.center[0],cy=self.center[1],p=str(self.oneparticle),ea=self.ellipsepara[0],eb=self.ellipsepara[1])

def colorchange(fire):

    rgb=re.findall(r'(.{2})',fire.color[1:])

    cs=fire.status

    f=lambda x,c: hex(int(int(x,16)*(100-c)/30))[2:]    #当粒子寿命到70%时,颜色开始线性衰减

    if cs>70:

        ccr,ccg,ccb=f(rgb[0],cs),f(rgb[1],cs),f(rgb[2],cs)

    else:

        ccr,ccg,ccb=rgb[0],rgb[1],rgb[2]

    return '#{0:0>2}{1:0>2}{2:0>2}'.format(ccr,ccg,ccb)

def appendfirework(n=1):   外汇跟单gendan5.com#递归生成烟花对象

    if n>maxfireworks or len(fireworks)>maxfireworks:

        pass

    elif n==1:

        cl='#{0:0>6}'.format(hex(int(random.randint(0,16777215)))[2:])   # 产生一个0~167772150xffffff)的随机数,作为随机颜色

        a=firework(cl,random.uniform(1.5,3.5),width,height)

        fireworks.append( {'particle':a,'points':[]} )   #建立粒子显示列表,‘particle’为一个烟花对象,‘points’为每一个粒子显示时的对象变量集

        a.explode()

    else:

        appendfirework()

        appendfirework(n-1)

def show(c):

    for p in fireworks:                #每次刷新显示,先把已有的所以粒子全部删除

        for pp in p['points']:

            c.delete(pp)

    for p in fireworks:                #根据每个烟花对象,计算其中每个粒子的显示对象

        onep=p['particle']

        if onep.status==100:        #状态标识为100,说明烟花寿命结束

            fireworks.remove(p)     #移出当前烟花

            appendfirework()           #新增一个烟花

            continue

        else:

            li=[[int(cp[0]*2) onep.center[0],int(cp[1]*2) onep.center[1]] for cp in onep.curparticle]       #把中心为原点的椭圆平移到随机圆心坐标上

            color=colorchange(onep)   #根据烟花当前状态计算当前颜色

            for pp in li:

                p['points'].append(c.create_oval(pp[0]-onep.radius,  pp[1]-onep.radius,  pp[0] onep.radius,  pp[1] onep.radius,  fill=color))  #绘制烟花每个粒子

    root.after(50, show,c)  #回调,每50ms刷新一次

if __name__=='__main__':

    appendfirework(maxfireworks)

    root = tk.tk()

    cv = tk.canvas(root, height=height, width=width)

    cv.create_rectangle(0, 0, width, height, fill="black")

    cv.pack()

    root.after(50, show,cv)

    root.mainloop()

阅读(8061) | 评论(0) | 转发(2) |
1

上一篇:

下一篇:

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图