2022年跨年烟花代码可复制

2022年跨年烟花代码可复制,第1张

烟花代码如下:

package love

import java.applet.Applet

import java.awt.Color

import java.awt.Graphics

import java.net.URL

import java.util.Random

烟花

@author enjoy

@SuppressWarnings("serial")

public class Q extends Applet implements Runnable

public int speed, variability, Max_Number, Max_Energy, Max_Patch,

Max_Length, G

public String sound

private int width, height

private Thread thread = null

private BeaClassDemo bcd[]

public void init()                     

int i

this.setSize(1900, 900)

width = getSize().width - 1

height = getSize().height - 1

speed = 1                        // 烟花绽放的速度

variability = 10

Max_Number = 980                    // 可发出烟花的最大数目

Max_Energy = width + 50

Max_Patch = 90                    // 最大的斑点数

Max_Length = 90                    // 斑点的最大距离

G = 150                            // 向地面弯曲的力度

bcd = new BeaClassDemo[Max_Number]

for (i = 0i <Max_Numberi++)

bcd[i] = new BeaClassDemo(width, height, G)

}

public void start() {

if (thread == null) {

thread = new Thread(this)

thread.start()

}

}

@SuppressWarnings("deprecation")

public void stop() {

if (thread != null) {

thread.stop()

thread = null

}

}

@SuppressWarnings({ "unused", "static-access" })

public void run() {

int i

int E = (int) (Math.random() * Max_Energy * 3 / 4) + Max_Energy / 4 + 1

int P = (int) (Math.random() * Max_Patch * 3 / 4)    // 烟花的斑点数

+ Max_Patch / 4 + 1

int L = (int) (Math.random() * Max_Length * 3 / 4)    // 烟花可发射出的距离

+ Max_Length / 4 + 1

long S = (long) (Math.random() * 10000)

boolean sleep

Graphics g = getGraphics()

URL u = null

while (true) {

try {

thread.sleep(1000 / speed)

catch (InterruptedException x) {

sleep = true

for (i = 0i <Max_Numberi++)

sleep = sleep &&bcd[i].sleep

if (sleep &&Math.random() * 100 <variability) {

E = (int) (Math.random() * Max_Energy * 3 / 4) + Max_Energy / 4

+ 1

P = (int) (Math.random() * Max_Patch * 3 / 4) + Max_Patch / 4

+ 1

L = (int) (Math.random() * Max_Length * 3 / 4) + Max_Length / 4

+ 1

S = (long) (Math.random() * 10000)

for (i = 0i <Max_Numberi++) {

if (bcd[i].sleep &&Math.random() * Max_Number * L <1)

bcd[i].init(E, P, L, S)

bcd[i].start()

bcd[i].show(g)

public void paint(Graphics g)                 

g.setColor(Color.black)

g.fillRect(0, 0, width + 1, height + 1)

class BeaClassDemo

public boolean sleep = true

private int energy, patch, length, width, height, G, Xx, Xy, Ex[], Ey[], x,

y, Red, Blue, Green, t

private Random random

public BeaClassDemo(int a, int b, int g)       

width = a

height = b

G = g

public void init(int e, int p, int l, long seed) 

int i

energy = e

patch = p

length = l

// 创建一个带种子的随机数生成器

random = new Random(seed)

Ex = new int[patch]

Ey = new int[patch]

Red = (int) (random.nextDouble() * 128) + 128

Blue = (int) (random.nextDouble() * 128) + 128

Green = (int) (random.nextDouble() * 128) + 128

Xx = (int) (Math.random() * width / 2) + width / 4

Xy = (int) (Math.random() * height / 2) + height / 4

for (i = 0i <patchi++) {

Ex[i] = (int) (Math.random() * energy) - energy / 2

Ey[i] = (int) (Math.random() * energy * 7 / 8) - energy / 8

public void start

t = 0

sleep = false

public void show(Graphics g)     

if (!sleep)                  

if (t <length)

int i, c

double s

Color color

c = (int) (random.nextDouble() * 64) - 32 + Red

if (c >= 0 &&c <256)

Red = c

c = (int) (random.nextDouble() * 64) - 32 + Blue

if (c >= 0 &&c <256)

Blue = c

c = (int) (random.nextDouble() * 64) - 32 + Green

if (c >= 0 &&c <256)

Green = c

color = new Color(Red, Blue, Green)

for (i = 0i <patchi++)

s = (double) t / 100

x = (int) (Ex[i] * s)

y = (int) (Ey[i] * s - G * s * s)

g.setColor(color)

g.drawLine(Xx + x, Xy - y, Xx + x, Xy - y)

if (t >= length / 2)

int j

for (j = 0j <2j++)

s = (double) ((t - length / 2) * 2 + j) / 100

x = (int) (Ex[i] * s)

y = (int) (Ey[i] * s - G * s * s)

g.setColor(Color.black)

g.drawLine(Xx + x, Xy - y, Xx + x, Xy - y)

常用的编程语言。

编程语言一:C语言

C语言是世界上最流行、使用最广泛的高级程序设计语言之一。在 *** 作系统和系统使用程序以及需要对硬件进行 *** 作的场合,用C语言明显优于其它高级语言,许多大型应用软件都是用C语言编写的。

编程语言二:java

Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaSE, JavaEE, JavaME)的总称。

编程语言三:c++

C++这个词在中国大陆的程序员圈子中通常被读做“C加加”,而西方的程序员通常读做“C plus plus" , "CPP”。 它是一种使用非常广泛的计算机编程语言。C++是一种静态数据类型检查的、支持多重编程范式的通用程序设计语言。

控制台肯定不行。窗口程序至少属于可视化界面。

初学者别搞这个了,你要做的这个可以用其他软件更方便实现。

非要用C#的winform来做动画,研究一下System.Drawing吧。

至于编程思路可以简单给你讲一个:

定义个烟花类:

属性:

烟花的颜色【Color】,

烟花当前位置【Point】,

飞行方向【int】,

飞行轨迹【Point集合】,

烟花尾巴长度【int】,

爆炸生成烟花数量【int】

方法:

烟花爆炸()——如果爆炸生成的烟花数量设置是0,那么就不爆炸;否则安装数量new 新的烟花出来,360°除以烟花数量设置烟花方向。

烟花飞行()——飞行轨迹记录之前的位置,通过飞行方向计算当前位置,通过尾巴长度颜色属性进行图像刷新。

。。。。。。

选项->目录->输出目录->不要设置和initgraph(&dr,&mode,"d:\\turboc2")一样就可以正常执行.

Options->Directories->Output Directory->不要设置和initgraph(&dr,&mode,"d:\\turboc2")一样就可以正常执行.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12069777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存