-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfireworks.js
141 lines (123 loc) · 4.59 KB
/
fireworks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
function animate(selector) {
var $canvas = $(selector);
var width = parseInt($canvas.css("width"));
var height = parseInt($canvas.css("height"));
/* Based on http://en.wikipedia.org/wiki/HSL_and_HSV#From_HSL */
/* hue ∈ [0, 2π), saturation ∈ [0, 1], lightness ∈ [0, 1] */
var fromHSL = function fromHSL(hue, saturation, lightness) {
var c = (1 - Math.abs(2 * lightness - 1)) * saturation;
var h = 3 * hue / Math.PI;
var x = c * (1 - (h % 2 - 1));
var r1 = (h < 1 || 5 <= h) ? c
: (h < 2 || 4 <= h) ? x
: 0;
var g1 = (1 <= h && h < 3) ? c
: (h < 4) ? x
: 0;
var b1 = (3 <= h && h < 5) ? c
: (2 <= h) ? x
: 0;
var m = lightness - c / 2;
var r = Math.floor(256 * (r1 + m));
var g = Math.floor(256 * (g1 + m));
var b = Math.floor(256 * (b1 + m));
/*
console.log('hsl(' + hue + ', ' + saturation + ', ' + lightness +
') = rgb(' + r + ', ' + g + ', ' + b + ')');
*/
return 'rgb(' + r + ', ' + g + ', ' + b + ')';
};
var fireworksFactory = function fireworksFactory() {
var centerX = (0.2 + 0.6 * Math.random()) * width;
var centerY = (0.1 + 0.4 * Math.random()) * height;
var color = fromHSL(2 * Math.PI * Math.random(), Math.random(), 0.9);
return new Firework(centerX, centerY, color);
};
var fireworks = [fireworksFactory()];
var animation = new Animation($canvas, fireworks, fireworksFactory);
animation.start();
return animation;
}
//////////////////////////////////////////////////////////////////////
function Animation($canvas, objects, factory) {
this.canvas = $canvas.get(0);
this.canvasContext = this.canvas.getContext('2d');
this.objects = objects;
this.factory = factory;
}
Animation.prototype.start = function start() {
var canvas = this.canvas;
var context = this.canvasContext;
var objects = this.objects;
var factory = this.factory;
var redraw = function redraw() {
context.clearRect(0, 0, canvas.width, canvas.height);
for (var f = objects.length - 1; f >= 0; f--) {
var particles = objects[f].particles;
for (var p = particles.length - 1; p >= 0; p--) {
var particle = particles[p];
context.beginPath();
context.arc(particle.x, particle.y, particle.size, 0, 2 * Math.PI, false);
context.fillStyle = particle.color;
context.fill();
}
objects[f].update();
}
};
var launch = function launch() {
objects.push(factory());
while (objects.length > 4) {
objects.shift();
}
};
this.redrawInterval = setInterval(redraw, 25 /* ms */);
this.factoryInterval = setInterval(launch, 1500 /* ms */);
}
Animation.prototype.stop = function stop() {
clearInterval(this.redrawInterval);
clearInterval(this.factoryInterval);
}
//////////////////////////////////////////////////////////////////////
function Firework(centerX, centerY, color) {
this.centerX = centerX;
this.centerY = centerY;
this.color = color;
this.particles = new Array(500);
this.Dr = 20;
this.age = 0;
var r = 2 * Math.PI;
for (var i = 0; i < this.particles.length; i++) {
this.particles[i] = new Particle(
this.centerX, this.centerY,
/* r= */ 0, /* T= */ r * Math.random(), /* o= */ r * Math.random(),
/* size= */ 2, color
);
}
}
Firework.prototype.update = function update() {
for (var i = 0; i < this.particles.length; i++) {
this.particles[i].r += this.Dr;
this.particles[i].recalcCartesianProjection();
this.Dr -= 0.00005 * this.Dr * this.Dr; // Air resist
this.particles[i].y += 0.00000008 * this.age * this.age; // Gravity
this.particles[i].size *= 0.98; // Fade
this.age++;
}
};
//////////////////////////////////////////////////////////////////////
function Particle(x, y, r, T, o, size, color) {
this.origX = x;
this.origY = y;
this.r = r;
this.sinT = Math.sin(T);
// this.cosT = Math.cos(T); // Not needed
this.sino = Math.sin(o);
this.coso = Math.cos(o);
this.size = size;
this.color = color;
this.recalcCartesianProjection();
}
Particle.prototype.recalcCartesianProjection = function() {
this.x = this.origX + this.r * this.sinT * this.coso;
this.y = this.origY + this.r * this.sinT * this.sino;
};