-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsketch.js
225 lines (201 loc) · 7.54 KB
/
sketch.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
const SHELLTYPES = ['simple', 'split', 'burst', 'double',
'mega', 'writer', 'pent', 'comet'];
const GRAVITY = 0.2;
var PAUSED = true;
var MUTE = false;
var shells = [];
var stars = [];
var sounds = [];
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
strokeWeight(1);
colorMode(HSB);
for (let i = 0; i < 3; i++) {
sounds.push(loadSound('sounds/explosion' + i + '.mp3'));
}
}
/*
From p5.js docs: Called directly after setup(), the draw() function continuously
executes the lines of code contained inside its block until the program is
stopped or noLoop() is called.
*/
function draw() {
translate(width / 2, height);
background('rgba(0, 0, 0, 0.2)');
/* Remove the exploded shells and burnt out stars */
shells = shells.filter(shell => !shell.exploded);
stars = stars.filter(star => star.brt > 0);
/* Draw the shells and stars */
for (let shell of shells)
shell.draw();
for (let star of stars)
star.draw();
/* Generate new shell with small probability */
if (random() < 0.03) {
let s = new Shell();
shells.push(s);
}
}
class Shell {
constructor(position, speed, type, sparkleTrail) {
if (position == undefined)
position = createVector(int(random(-width / 4, width / 4)), 0);
if (speed == undefined)
speed = createVector(random(-2, 2), -random(11, 16));
if (sparkleTrail == undefined)
sparkleTrail = random() < 0.5;
if (type == undefined) {
let randIndex = floor(random(0, SHELLTYPES.length));
type = SHELLTYPES[randIndex];
// type = SHELLTYPES[7];
}
this.position = position;
this.speed = speed;
this.sparkleTrail = sparkleTrail;
this.fuse = random(-3, -1);
this.hue = round(random(0, 360));
this.type = type;
this.exploded = false;
}
draw() {
if (this.fuse < this.speed.y) {
this.explode();
return;
}
if (this.sparkleTrail) {
let sparkleDir = random(0, TWO_PI);
let sparkleVel = random(0, 1);
let sparkleSpd = createVector(sparkleVel * cos(sparkleDir),
sparkleVel * sin(sparkleDir))
let sparklePos = createVector(this.position.x + sparkleSpd.x,
this.position.y + sparkleSpd.y);
let s = new Star(sparklePos, sparkleSpd, random(50, 75),
floor(random(20, 40)), floor(random(0,30)));
stars.push(s);
}
stroke(this.hue + round(random(-10, 10)), random(0, 20), 90);
point(this.position.x, this.position.y);
this.position.add(this.speed);
this.speed.y = this.speed.y + GRAVITY;
}
drawStars(numStars, velMin, velMax, fadeMin, fadeMax, type, baseDir, angle) {
for (let i = 0; i < numStars; i++) {
let dir = random(0, TWO_PI);
if (baseDir != undefined)
dir = baseDir + random(0, PI/angle);
let vel = random(velMin, velMax);
let starSpd = createVector(this.speed.x + vel * cos(dir),
this.speed.y + vel * sin(dir));
let hue = this.hue + round(random(-10, 10));
let sat = round(random(0, 40));
let fade = random(fadeMin, fadeMax);
let star = new Star(this.position.copy(), starSpd, fade, hue, sat, type);
stars.push(star);
}
}
explode() {
if (this.type == 'split') {
this.drawStars(30, 3, 5, 3, 8, 'writer');
this.drawStars(10, 3, 5, 3, 6, 'sparkler');
} else if (this.type == 'burst') {
this.drawStars(60, 0, 6, 3, 8, 'sparkler');
} else if (this.type == 'double') {
this.drawStars(90, 3, 5, 2, 4);
this.drawStars(90, 0.5, 2, 4, 6, 'writer');
} else if (this.type == 'mega') {
this.drawStars(600, 0, 8, 3, 8);
} else if (this.type == 'writer') {
this.drawStars(100, 0, 5, 1, 3, 'writer');
} else if (this.type == 'simple') {
this.drawStars(100, 0, 5, 1, 3);
} else if (this.type == 'pent') {
let baseDir = random(0, TWO_PI);
this.drawStars(20, 3, 5, 3, 8, 'writer', baseDir + (2/5)*PI, 6);
this.drawStars(20, 3, 5, 3, 8, 'writer', baseDir + (4/5)*PI, 6);
this.drawStars(20, 3, 5, 3, 8, 'writer', baseDir + (6/5)*PI, 6);
this.drawStars(20, 3, 5, 3, 8, 'writer', baseDir + (8/5)*PI, 6);
this.drawStars(20, 3, 5, 3, 8, 'writer', baseDir + (10/5)*PI, 6);
} else if (this.type == 'comet') {
let baseDir = random(0, TWO_PI);
this.drawStars(10, 3, 7, 3, 8, 'sparkler', baseDir + (2/3)*PI, 128);
this.drawStars(10, 3, 7, 3, 8, 'sparkler', baseDir + (4/3)*PI, 128);
this.drawStars(10, 3, 7, 3, 8, 'sparkler', baseDir + (6/3)*PI, 128);
this.drawStars(200, 0, 8, 3, 8, 'writer');
}
this.exploded = true;
if (!MUTE) {
let randIndex = floor(random(0, sounds.length));
sounds[randIndex].play();
}
}
}
class Star {
constructor(position, speed, fade, hue, sat, type) {
this.position = position;
this.speed = speed;
this.fade = fade;
this.hue = hue;
this.sat = sat;
this.type = (type == undefined ? "default" : type);
this.brt = 255;
this.burntime = 0;
}
draw() {
stroke(this.hue, this.sat, this.brt);
let newXPos = this.position.x + log(this.burntime) * 8 * this.speed.x;
let newYPos = this.position.y + log(this.burntime) * 8 * this.speed.y
+ this.burntime * GRAVITY;
point(newXPos, newYPos);
if (this.type == "writer" && this.burntime > 1) {
line(newXPos, newYPos, this.position.x + log(this.burntime - 2) * 8 *
this.speed.x, this.position.y + log(this.burntime - 2) * 8 *
this.speed.y + this.burntime * GRAVITY);
}
if (this.type == "sparkler") {
let dir = random(0, TWO_PI);
let vel = random(0, 1);
let starSpd = createVector(vel * cos(dir), vel * sin(dir))
let star = new Star(createVector(newXPos + starSpd.x, newYPos + starSpd.y),
starSpd, random(50, 75), round(random(20, 40)),
round(random(0, 30)));
stars.push(star);
}
this.brt -= this.fade;
this.burntime++;
}
}
function touchMoved() {
touchStarted();
return false;
}
function touchStarted() {
let speed = createVector(0, 0);
let position = createVector(mouseX - width / 2, mouseY - height);
let s = new Shell(position, speed);
s.explode();
return false;
}
function keyPressed() {
if (keyCode == 32) { /* Space bar */
if (PAUSED) {
PAUSED = false;
/* Draw a pause symbol in top right corner */
strokeWeight(1);
fill(255);
rect(width/2-30, -height+20, 10, 30);
rect(width/2-50, -height+20, 10, 30);
noLoop();
} else {
PAUSED = true;
loop();
}
return false;
}
if (keyCode == 83) { /* 's' for sound effects */
MUTE = !MUTE;
}
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}