|
1 | 1 | (function (global, factory) {
|
2 |
| - typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
3 |
| - typeof define === 'function' && define.amd ? define('Fireworks', factory) : |
4 |
| - (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Fireworks = factory()); |
5 |
| -}(this, (function () { 'use strict'; |
| 2 | + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : |
| 3 | + typeof define === 'function' && define.amd ? define('Fireworks', ['exports'], factory) : |
| 4 | + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.Fireworks = {})); |
| 5 | +})(this, (function (exports) { 'use strict'; |
6 | 6 |
|
7 |
| - /*! ***************************************************************************** |
| 7 | + /****************************************************************************** |
8 | 8 | Copyright (c) Microsoft Corporation.
|
9 | 9 |
|
10 | 10 | Permission to use, copy, modify, and/or distribute this software for any
|
|
18 | 18 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
19 | 19 | PERFORMANCE OF THIS SOFTWARE.
|
20 | 20 | ***************************************************************************** */
|
| 21 | + /* global Reflect, Promise, SuppressedError, Symbol */ |
| 22 | + |
21 | 23 |
|
22 | 24 | var __assign = function() {
|
23 | 25 | __assign = Object.assign || function __assign(t) {
|
|
40 | 42 | }
|
41 | 43 | };
|
42 | 44 | throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
43 |
| - } |
| 45 | + } |
| 46 | + |
| 47 | + typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { |
| 48 | + var e = new Error(message); |
| 49 | + return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e; |
| 50 | + }; |
44 | 51 |
|
45 | 52 | function random(min, max) {
|
46 | 53 | return Math.random() * (max - min) + min;
|
|
56 | 63 | if (this.isRocket) {
|
57 | 64 | this.velocity = {
|
58 | 65 | x: random(-3, 3),
|
59 |
| - y: random(-7, -3) |
| 66 | + y: random(-7, -3), |
60 | 67 | };
|
61 | 68 | this.shrink = 0.999;
|
62 | 69 | this.resistance = 1;
|
|
66 | 73 | var speed = Math.cos(random(0, TAU)) * 15;
|
67 | 74 | this.velocity = {
|
68 | 75 | x: Math.cos(angle) * speed,
|
69 |
| - y: Math.sin(angle) * speed |
| 76 | + y: Math.sin(angle) * speed, |
70 | 77 | };
|
71 | 78 | this.shrink = random(0, 0.05) + 0.93;
|
72 | 79 | this.resistance = 0.92;
|
|
82 | 89 | return new Particle({
|
83 | 90 | position: {
|
84 | 91 | x: this.position.x,
|
85 |
| - y: this.position.y |
| 92 | + y: this.position.y, |
86 | 93 | },
|
87 | 94 | hue: this.hue,
|
88 |
| - brightness: this.brightness |
| 95 | + brightness: this.brightness, |
89 | 96 | });
|
90 | 97 | };
|
91 | 98 | Particle.prototype.shouldRemove = function (cw, ch) {
|
|
130 | 137 | ctx.lineTo(this.position.x, this.position.y);
|
131 | 138 | ctx.lineWidth = this.size;
|
132 | 139 | ctx.lineCap = 'round';
|
133 |
| - ctx.strokeStyle = "hsla(" + this.hue + ", 100%, " + this.brightness + "%, " + this.alpha + ")"; |
| 140 | + ctx.strokeStyle = "hsla(".concat(this.hue, ", 100%, ").concat(this.brightness, "%, ").concat(this.alpha, ")"); |
134 | 141 | ctx.stroke();
|
135 | 142 | };
|
136 | 143 | return Particle;
|
|
161 | 168 | this._set.clear();
|
162 | 169 | this.rockets = 0;
|
163 | 170 | };
|
164 |
| - Things.prototype["delete"] = function (thing) { |
165 |
| - this._set["delete"](thing); |
| 171 | + Things.prototype.delete = function (thing) { |
| 172 | + this._set.delete(thing); |
166 | 173 | if (thing.isRocket)
|
167 | 174 | this.rockets--;
|
168 | 175 | };
|
|
173 | 180 | for (var i = 0; i < this.numParticles; i += 1) {
|
174 | 181 | this.add(particle.clone());
|
175 | 182 | }
|
176 |
| - this["delete"](particle); |
| 183 | + this.delete(particle); |
177 | 184 | };
|
178 | 185 | Things.prototype.spawnRocket = function () {
|
179 | 186 | this.rockets++;
|
180 | 187 | var cannonIndex = Math.floor(random(0, this.cannons.length));
|
181 | 188 | var cannon = this.cannons[cannonIndex] || {};
|
182 | 189 | this.add(new Particle({
|
183 | 190 | isRocket: true,
|
184 |
| - position: __assign(__assign(__assign({}, cannon), (cannon.x == null && { x: random(0, this.cw) })), (cannon.y == null && { y: this.ch })) |
| 191 | + position: __assign(__assign(__assign({}, cannon), (cannon.x == null && { x: random(0, this.cw) })), (cannon.y == null && { y: this.ch })), |
185 | 192 | }));
|
186 | 193 | };
|
187 | 194 | Things.prototype.spawnRockets = function () {
|
|
214 | 221 | cw: this.cw,
|
215 | 222 | ch: this.ch,
|
216 | 223 | rocketInitialPoint: rocketInitialPoint,
|
217 |
| - cannons: cannons |
| 224 | + cannons: cannons, |
218 | 225 | });
|
219 | 226 | this.updateDimensions();
|
220 | 227 | }
|
|
234 | 241 | Fireworks.prototype.updateDimensions = function () {
|
235 | 242 | this.canvas.width = this.cw * this.pixelRatio;
|
236 | 243 | this.canvas.height = this.ch * this.pixelRatio;
|
237 |
| - this.canvas.style.width = this.cw + "px"; |
238 |
| - this.canvas.style.height = this.ch + "px"; |
| 244 | + this.canvas.style.width = "".concat(this.cw, "px"); |
| 245 | + this.canvas.style.height = "".concat(this.ch, "px"); |
239 | 246 | this.ctx.scale(this.pixelRatio, this.pixelRatio);
|
240 | 247 | this.things.cw = this.cw;
|
241 | 248 | this.things.ch = this.ch;
|
|
273 | 280 | Fireworks.prototype._clear = function (force) {
|
274 | 281 | if (force === void 0) { force = false; }
|
275 | 282 | this.ctx.globalCompositeOperation = 'destination-out';
|
276 |
| - this.ctx.fillStyle = "rgba(0, 0, 0 " + (force ? '' : ', 0.5') + ")"; |
| 283 | + this.ctx.fillStyle = "rgba(0, 0, 0 ".concat(force ? '' : ', 0.5', ")"); |
277 | 284 | this.ctx.fillRect(0, 0, this.cw, this.ch);
|
278 | 285 | this.ctx.globalCompositeOperation = 'lighter';
|
279 | 286 | };
|
|
292 | 299 | particle.draw(this.ctx);
|
293 | 300 | particle.update();
|
294 | 301 | if (particle.shouldRemove(this.cw, this.ch)) {
|
295 |
| - this.things["delete"](particle); |
| 302 | + this.things.delete(particle); |
296 | 303 | }
|
297 | 304 | else if (particle.shouldExplode(this.maxH, this.minH, this.chance)) {
|
298 | 305 | this.things.explode(particle);
|
|
302 | 309 | catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
303 | 310 | finally {
|
304 | 311 | try {
|
305 |
| - if (_c && !_c.done && (_a = _b["return"])) _a.call(_b); |
| 312 | + if (_c && !_c.done && (_a = _b.return)) _a.call(_b); |
306 | 313 | }
|
307 | 314 | finally { if (e_1) throw e_1.error; }
|
308 | 315 | }
|
|
316 | 323 | return Fireworks;
|
317 | 324 | }());
|
318 | 325 |
|
319 |
| - return Fireworks; |
| 326 | + exports.Fireworks = Fireworks; |
320 | 327 |
|
321 |
| -}))); |
| 328 | +})); |
0 commit comments