@tsparticles/plugin-infection 3.2.2 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/browser/Infecter.js +1 -1
  2. package/browser/InfectionInstance.js +1 -1
  3. package/browser/InfectionPlugin.js +3 -3
  4. package/browser/Options/Classes/Infection.js +1 -1
  5. package/browser/ParticlesInfecter.js +1 -2
  6. package/browser/index.js +5 -4
  7. package/cjs/Infecter.js +1 -1
  8. package/cjs/InfectionInstance.js +1 -1
  9. package/cjs/InfectionPlugin.js +3 -26
  10. package/cjs/Options/Classes/Infection.js +1 -1
  11. package/cjs/ParticlesInfecter.js +1 -2
  12. package/cjs/index.js +5 -16
  13. package/esm/Infecter.js +1 -1
  14. package/esm/InfectionInstance.js +1 -1
  15. package/esm/InfectionPlugin.js +3 -3
  16. package/esm/Options/Classes/Infection.js +1 -1
  17. package/esm/ParticlesInfecter.js +1 -2
  18. package/esm/index.js +5 -4
  19. package/package.json +2 -2
  20. package/report.html +1 -1
  21. package/tsparticles.plugin.infection.js +62 -200
  22. package/tsparticles.plugin.infection.min.js +1 -1
  23. package/tsparticles.plugin.infection.min.js.LICENSE.txt +1 -1
  24. package/types/InfectionPlugin.d.ts +1 -1
  25. package/types/ParticlesInfecter.d.ts +1 -1
  26. package/umd/Infecter.js +1 -1
  27. package/umd/InfectionInstance.js +1 -1
  28. package/umd/InfectionPlugin.js +4 -28
  29. package/umd/Options/Classes/Infection.js +1 -1
  30. package/umd/ParticlesInfecter.js +1 -2
  31. package/umd/index.js +6 -18
  32. package/431.min.js +0 -2
  33. package/431.min.js.LICENSE.txt +0 -1
  34. package/733.min.js +0 -2
  35. package/733.min.js.LICENSE.txt +0 -1
  36. package/854.min.js +0 -2
  37. package/854.min.js.LICENSE.txt +0 -1
  38. package/dist_browser_InfectionInstance_js.js +0 -40
  39. package/dist_browser_InfectionPlugin_js.js +0 -50
  40. package/dist_browser_ParticlesInfecter_js.js +0 -30
@@ -2,7 +2,7 @@ import { millisecondsToSeconds } from "@tsparticles/engine";
2
2
  const minStage = 0, minDuration = 0;
3
3
  export class Infecter {
4
4
  constructor(container) {
5
- this._nextInfectionStage = (particle) => {
5
+ this._nextInfectionStage = particle => {
6
6
  const infectionOptions = this._container.actualOptions.infection, { infection } = particle;
7
7
  if (!infectionOptions || !infection) {
8
8
  return;
@@ -23,7 +23,7 @@ export class InfectionInstance {
23
23
  return;
24
24
  }
25
25
  for (let i = 0; i < options.infection.infections; i++) {
26
- const notInfected = this._container.particles.filter((p) => {
26
+ const notInfected = this._container.particles.filter(p => {
27
27
  const infP = p;
28
28
  if (!infP.infection) {
29
29
  infP.infection = {};
@@ -1,11 +1,11 @@
1
1
  import { Infection } from "./Options/Classes/Infection.js";
2
+ import { InfectionInstance } from "./InfectionInstance.js";
2
3
  export class InfectionPlugin {
3
4
  constructor() {
4
5
  this.id = "infection";
5
6
  }
6
- async getPlugin(container) {
7
- const { InfectionInstance } = await import("./InfectionInstance.js");
8
- return new InfectionInstance(container);
7
+ getPlugin(container) {
8
+ return Promise.resolve(new InfectionInstance(container));
9
9
  }
10
10
  loadOptions(options, source) {
11
11
  if (!this.needsPlugin(options) && !this.needsPlugin(source)) {
@@ -26,7 +26,7 @@ export class Infection {
26
26
  if (data.stages === undefined) {
27
27
  return;
28
28
  }
29
- this.stages = data.stages.map((t) => {
29
+ this.stages = data.stages.map(t => {
30
30
  const s = new InfectionStage();
31
31
  s.load(t);
32
32
  return s;
@@ -8,7 +8,7 @@ export class ParticlesInfecter extends ParticlesInteractorBase {
8
8
  }
9
9
  init() {
10
10
  }
11
- async interact(p1, delta) {
11
+ interact(p1, delta) {
12
12
  const infecter = this.container.infecter;
13
13
  if (!infecter) {
14
14
  return;
@@ -43,7 +43,6 @@ export class ParticlesInfecter extends ParticlesInteractorBase {
43
43
  infecter.updateInfectionStage(p1, infectedStage2);
44
44
  }
45
45
  }
46
- await Promise.resolve();
47
46
  }
48
47
  isEnabled() {
49
48
  return this.container.actualOptions?.infection?.enable ?? false;
package/browser/index.js CHANGED
@@ -1,9 +1,10 @@
1
+ import { InfectionPlugin } from "./InfectionPlugin.js";
2
+ import { ParticlesInfecter } from "./ParticlesInfecter.js";
1
3
  export async function loadInfectionPlugin(engine, refresh = true) {
2
- const { InfectionPlugin } = await import("./InfectionPlugin.js"), plugin = new InfectionPlugin();
4
+ const plugin = new InfectionPlugin();
3
5
  await engine.addPlugin(plugin, refresh);
4
- await engine.addInteractor("particlesInfection", async (container) => {
5
- const { ParticlesInfecter } = await import("./ParticlesInfecter.js");
6
- return new ParticlesInfecter(container);
6
+ await engine.addInteractor("particlesInfection", container => {
7
+ return Promise.resolve(new ParticlesInfecter(container));
7
8
  }, refresh);
8
9
  }
9
10
  export * from "./Options/Interfaces/IInfection.js";
package/cjs/Infecter.js CHANGED
@@ -5,7 +5,7 @@ const engine_1 = require("@tsparticles/engine");
5
5
  const minStage = 0, minDuration = 0;
6
6
  class Infecter {
7
7
  constructor(container) {
8
- this._nextInfectionStage = (particle) => {
8
+ this._nextInfectionStage = particle => {
9
9
  const infectionOptions = this._container.actualOptions.infection, { infection } = particle;
10
10
  if (!infectionOptions || !infection) {
11
11
  return;
@@ -26,7 +26,7 @@ class InfectionInstance {
26
26
  return;
27
27
  }
28
28
  for (let i = 0; i < options.infection.infections; i++) {
29
- const notInfected = this._container.particles.filter((p) => {
29
+ const notInfected = this._container.particles.filter(p => {
30
30
  const infP = p;
31
31
  if (!infP.infection) {
32
32
  infP.infection = {};
@@ -1,37 +1,14 @@
1
1
  "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
2
  Object.defineProperty(exports, "__esModule", { value: true });
26
3
  exports.InfectionPlugin = void 0;
27
4
  const Infection_js_1 = require("./Options/Classes/Infection.js");
5
+ const InfectionInstance_js_1 = require("./InfectionInstance.js");
28
6
  class InfectionPlugin {
29
7
  constructor() {
30
8
  this.id = "infection";
31
9
  }
32
- async getPlugin(container) {
33
- const { InfectionInstance } = await Promise.resolve().then(() => __importStar(require("./InfectionInstance.js")));
34
- return new InfectionInstance(container);
10
+ getPlugin(container) {
11
+ return Promise.resolve(new InfectionInstance_js_1.InfectionInstance(container));
35
12
  }
36
13
  loadOptions(options, source) {
37
14
  if (!this.needsPlugin(options) && !this.needsPlugin(source)) {
@@ -29,7 +29,7 @@ class Infection {
29
29
  if (data.stages === undefined) {
30
30
  return;
31
31
  }
32
- this.stages = data.stages.map((t) => {
32
+ this.stages = data.stages.map(t => {
33
33
  const s = new InfectionStage_js_1.InfectionStage();
34
34
  s.load(t);
35
35
  return s;
@@ -11,7 +11,7 @@ class ParticlesInfecter extends engine_1.ParticlesInteractorBase {
11
11
  }
12
12
  init() {
13
13
  }
14
- async interact(p1, delta) {
14
+ interact(p1, delta) {
15
15
  const infecter = this.container.infecter;
16
16
  if (!infecter) {
17
17
  return;
@@ -46,7 +46,6 @@ class ParticlesInfecter extends engine_1.ParticlesInteractorBase {
46
46
  infecter.updateInfectionStage(p1, infectedStage2);
47
47
  }
48
48
  }
49
- await Promise.resolve();
50
49
  }
51
50
  isEnabled() {
52
51
  return this.container.actualOptions?.infection?.enable ?? false;
package/cjs/index.js CHANGED
@@ -10,29 +10,18 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
10
10
  if (k2 === undefined) k2 = k;
11
11
  o[k2] = m[k];
12
12
  }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
13
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
15
  };
28
16
  Object.defineProperty(exports, "__esModule", { value: true });
29
17
  exports.loadInfectionPlugin = void 0;
18
+ const InfectionPlugin_js_1 = require("./InfectionPlugin.js");
19
+ const ParticlesInfecter_js_1 = require("./ParticlesInfecter.js");
30
20
  async function loadInfectionPlugin(engine, refresh = true) {
31
- const { InfectionPlugin } = await Promise.resolve().then(() => __importStar(require("./InfectionPlugin.js"))), plugin = new InfectionPlugin();
21
+ const plugin = new InfectionPlugin_js_1.InfectionPlugin();
32
22
  await engine.addPlugin(plugin, refresh);
33
- await engine.addInteractor("particlesInfection", async (container) => {
34
- const { ParticlesInfecter } = await Promise.resolve().then(() => __importStar(require("./ParticlesInfecter.js")));
35
- return new ParticlesInfecter(container);
23
+ await engine.addInteractor("particlesInfection", container => {
24
+ return Promise.resolve(new ParticlesInfecter_js_1.ParticlesInfecter(container));
36
25
  }, refresh);
37
26
  }
38
27
  exports.loadInfectionPlugin = loadInfectionPlugin;
package/esm/Infecter.js CHANGED
@@ -2,7 +2,7 @@ import { millisecondsToSeconds } from "@tsparticles/engine";
2
2
  const minStage = 0, minDuration = 0;
3
3
  export class Infecter {
4
4
  constructor(container) {
5
- this._nextInfectionStage = (particle) => {
5
+ this._nextInfectionStage = particle => {
6
6
  const infectionOptions = this._container.actualOptions.infection, { infection } = particle;
7
7
  if (!infectionOptions || !infection) {
8
8
  return;
@@ -23,7 +23,7 @@ export class InfectionInstance {
23
23
  return;
24
24
  }
25
25
  for (let i = 0; i < options.infection.infections; i++) {
26
- const notInfected = this._container.particles.filter((p) => {
26
+ const notInfected = this._container.particles.filter(p => {
27
27
  const infP = p;
28
28
  if (!infP.infection) {
29
29
  infP.infection = {};
@@ -1,11 +1,11 @@
1
1
  import { Infection } from "./Options/Classes/Infection.js";
2
+ import { InfectionInstance } from "./InfectionInstance.js";
2
3
  export class InfectionPlugin {
3
4
  constructor() {
4
5
  this.id = "infection";
5
6
  }
6
- async getPlugin(container) {
7
- const { InfectionInstance } = await import("./InfectionInstance.js");
8
- return new InfectionInstance(container);
7
+ getPlugin(container) {
8
+ return Promise.resolve(new InfectionInstance(container));
9
9
  }
10
10
  loadOptions(options, source) {
11
11
  if (!this.needsPlugin(options) && !this.needsPlugin(source)) {
@@ -26,7 +26,7 @@ export class Infection {
26
26
  if (data.stages === undefined) {
27
27
  return;
28
28
  }
29
- this.stages = data.stages.map((t) => {
29
+ this.stages = data.stages.map(t => {
30
30
  const s = new InfectionStage();
31
31
  s.load(t);
32
32
  return s;
@@ -8,7 +8,7 @@ export class ParticlesInfecter extends ParticlesInteractorBase {
8
8
  }
9
9
  init() {
10
10
  }
11
- async interact(p1, delta) {
11
+ interact(p1, delta) {
12
12
  const infecter = this.container.infecter;
13
13
  if (!infecter) {
14
14
  return;
@@ -43,7 +43,6 @@ export class ParticlesInfecter extends ParticlesInteractorBase {
43
43
  infecter.updateInfectionStage(p1, infectedStage2);
44
44
  }
45
45
  }
46
- await Promise.resolve();
47
46
  }
48
47
  isEnabled() {
49
48
  return this.container.actualOptions?.infection?.enable ?? false;
package/esm/index.js CHANGED
@@ -1,9 +1,10 @@
1
+ import { InfectionPlugin } from "./InfectionPlugin.js";
2
+ import { ParticlesInfecter } from "./ParticlesInfecter.js";
1
3
  export async function loadInfectionPlugin(engine, refresh = true) {
2
- const { InfectionPlugin } = await import("./InfectionPlugin.js"), plugin = new InfectionPlugin();
4
+ const plugin = new InfectionPlugin();
3
5
  await engine.addPlugin(plugin, refresh);
4
- await engine.addInteractor("particlesInfection", async (container) => {
5
- const { ParticlesInfecter } = await import("./ParticlesInfecter.js");
6
- return new ParticlesInfecter(container);
6
+ await engine.addInteractor("particlesInfection", container => {
7
+ return Promise.resolve(new ParticlesInfecter(container));
7
8
  }, refresh);
8
9
  }
9
10
  export * from "./Options/Interfaces/IInfection.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/plugin-infection",
3
- "version": "3.2.2",
3
+ "version": "3.4.0",
4
4
  "description": "tsParticles infection plugin",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -100,7 +100,7 @@
100
100
  "./package.json": "./package.json"
101
101
  },
102
102
  "dependencies": {
103
- "@tsparticles/engine": "^3.2.2"
103
+ "@tsparticles/engine": "^3.4.0"
104
104
  },
105
105
  "publishConfig": {
106
106
  "access": "public"
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/plugin-infection [20 Feb 2024 at 01:36]</title>
6
+ <title>@tsparticles/plugin-infection [13 May 2024 at 00:11]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v3.2.2
7
+ * v3.4.0
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -28,13 +28,73 @@ return /******/ (() => { // webpackBootstrap
28
28
  /******/ "use strict";
29
29
  /******/ var __webpack_modules__ = ({
30
30
 
31
+ /***/ "./dist/browser/Infecter.js":
32
+ /*!**********************************!*\
33
+ !*** ./dist/browser/Infecter.js ***!
34
+ \**********************************/
35
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
36
+
37
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Infecter: () => (/* binding */ Infecter)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minStage = 0,\n minDuration = 0;\nclass Infecter {\n constructor(container) {\n this._nextInfectionStage = particle => {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stagesCount = infectionOptions.stages.length;\n if (stagesCount <= minStage || infection.stage === undefined) {\n return;\n }\n infection.time = 0;\n if (stagesCount <= ++infection.stage) {\n if (infectionOptions.cure) {\n delete infection.stage;\n delete infection.time;\n } else {\n infection.stage = 0;\n infection.time = 0;\n }\n }\n };\n this._container = container;\n }\n startInfection(particle, stage) {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stages = infectionOptions.stages,\n stagesCount = stages.length;\n if (stage > stagesCount || stage < minStage) {\n return;\n }\n infection.delay = 0;\n infection.delayStage = stage;\n }\n updateInfection(particle, delta) {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stages = infectionOptions.stages,\n stagesCount = stages.length;\n if (infection.delay !== undefined && infection.delayStage !== undefined) {\n const stage = infection.delayStage;\n if (stage > stagesCount || stage < minStage) {\n return;\n }\n if (infection.delay >= infectionOptions.delay * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.millisecondsToSeconds) {\n infection.stage = stage;\n infection.time = 0;\n delete infection.delay;\n delete infection.delayStage;\n } else {\n infection.delay += delta;\n }\n } else {\n delete infection.delay;\n delete infection.delayStage;\n }\n if (infection.stage !== undefined && infection.time !== undefined) {\n const infectionStage = stages[infection.stage];\n if (infectionStage.duration !== undefined && infectionStage.duration >= minDuration) {\n if (infection.time > infectionStage.duration * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.millisecondsToSeconds) {\n this._nextInfectionStage(particle);\n } else {\n infection.time += delta;\n }\n } else {\n infection.time += delta;\n }\n } else {\n delete infection.stage;\n delete infection.time;\n }\n }\n updateInfectionStage(particle, stage) {\n const options = this._container.actualOptions,\n {\n infection\n } = particle;\n if (!options.infection || !infection) {\n return;\n }\n const stagesCount = options.infection.stages.length;\n if (stage > stagesCount || stage < minStage || infection.stage !== undefined && infection.stage > stage) {\n return;\n }\n infection.stage = stage;\n infection.time = 0;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Infecter.js?");
38
+
39
+ /***/ }),
40
+
41
+ /***/ "./dist/browser/InfectionInstance.js":
42
+ /*!*******************************************!*\
43
+ !*** ./dist/browser/InfectionInstance.js ***!
44
+ \*******************************************/
45
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
46
+
47
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionInstance: () => (/* binding */ InfectionInstance)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _Infecter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Infecter.js */ \"./dist/browser/Infecter.js\");\n\n\nconst minStage = 0;\nclass InfectionInstance {\n constructor(container) {\n this._container = container;\n this._container.infecter = new _Infecter_js__WEBPACK_IMPORTED_MODULE_1__.Infecter(this._container);\n }\n particleFillColor(particle) {\n const options = this._container.actualOptions;\n if (!particle.infection || !options.infection) {\n return;\n }\n const infectionStage = particle.infection.stage,\n infection = options.infection,\n infectionStages = infection.stages;\n return infectionStage !== undefined ? infectionStages[infectionStage].color : undefined;\n }\n particleStrokeColor(particle) {\n return this.particleFillColor(particle);\n }\n particlesSetup() {\n const options = this._container.actualOptions;\n if (!options.infection) {\n return;\n }\n for (let i = 0; i < options.infection.infections; i++) {\n const notInfected = this._container.particles.filter(p => {\n const infP = p;\n if (!infP.infection) {\n infP.infection = {};\n }\n return infP.infection.stage === undefined;\n });\n const infected = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.itemFromArray)(notInfected);\n this._container.infecter?.startInfection(infected, minStage);\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/InfectionInstance.js?");
48
+
49
+ /***/ }),
50
+
51
+ /***/ "./dist/browser/InfectionPlugin.js":
52
+ /*!*****************************************!*\
53
+ !*** ./dist/browser/InfectionPlugin.js ***!
54
+ \*****************************************/
55
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
56
+
57
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionPlugin: () => (/* binding */ InfectionPlugin)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Infection_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Options/Classes/Infection.js */ \"./dist/browser/Options/Classes/Infection.js\");\n/* harmony import */ var _InfectionInstance_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InfectionInstance.js */ \"./dist/browser/InfectionInstance.js\");\n\n\nclass InfectionPlugin {\n constructor() {\n this.id = \"infection\";\n }\n getPlugin(container) {\n return Promise.resolve(new _InfectionInstance_js__WEBPACK_IMPORTED_MODULE_0__.InfectionInstance(container));\n }\n loadOptions(options, source) {\n if (!this.needsPlugin(options) && !this.needsPlugin(source)) {\n return;\n }\n let infectionOptions = options.infection;\n if (infectionOptions?.load === undefined) {\n options.infection = infectionOptions = new _Options_Classes_Infection_js__WEBPACK_IMPORTED_MODULE_1__.Infection();\n }\n infectionOptions.load(source?.infection);\n }\n needsPlugin(options) {\n return options?.infection?.enable ?? false;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/InfectionPlugin.js?");
58
+
59
+ /***/ }),
60
+
61
+ /***/ "./dist/browser/Options/Classes/Infection.js":
62
+ /*!***************************************************!*\
63
+ !*** ./dist/browser/Options/Classes/Infection.js ***!
64
+ \***************************************************/
65
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
66
+
67
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Infection: () => (/* binding */ Infection)\n/* harmony export */ });\n/* harmony import */ var _InfectionStage_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InfectionStage.js */ \"./dist/browser/Options/Classes/InfectionStage.js\");\n\nclass Infection {\n constructor() {\n this.cure = false;\n this.delay = 0;\n this.enable = false;\n this.infections = 0;\n this.stages = [];\n }\n load(data) {\n if (data === undefined) {\n return;\n }\n if (data.cure !== undefined) {\n this.cure = data.cure;\n }\n if (data.delay !== undefined) {\n this.delay = data.delay;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n if (data.infections !== undefined) {\n this.infections = data.infections;\n }\n if (data.stages === undefined) {\n return;\n }\n this.stages = data.stages.map(t => {\n const s = new _InfectionStage_js__WEBPACK_IMPORTED_MODULE_0__.InfectionStage();\n s.load(t);\n return s;\n });\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Options/Classes/Infection.js?");
68
+
69
+ /***/ }),
70
+
71
+ /***/ "./dist/browser/Options/Classes/InfectionStage.js":
72
+ /*!********************************************************!*\
73
+ !*** ./dist/browser/Options/Classes/InfectionStage.js ***!
74
+ \********************************************************/
75
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
76
+
77
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionStage: () => (/* binding */ InfectionStage)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass InfectionStage {\n constructor() {\n this.color = new _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor();\n this.color.value = \"#ff0000\";\n this.radius = 0;\n this.rate = 1;\n }\n load(data) {\n if (data === undefined) {\n return;\n }\n if (data.color !== undefined) {\n this.color = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor.create(this.color, data.color);\n }\n this.duration = data.duration;\n this.infectedStage = data.infectedStage;\n if (data.radius !== undefined) {\n this.radius = data.radius;\n }\n if (data.rate !== undefined) {\n this.rate = data.rate;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Options/Classes/InfectionStage.js?");
78
+
79
+ /***/ }),
80
+
81
+ /***/ "./dist/browser/ParticlesInfecter.js":
82
+ /*!*******************************************!*\
83
+ !*** ./dist/browser/ParticlesInfecter.js ***!
84
+ \*******************************************/
85
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
86
+
87
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ParticlesInfecter: () => (/* binding */ ParticlesInfecter)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minStagesCount = 1,\n double = 2;\nclass ParticlesInfecter extends _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticlesInteractorBase {\n constructor(container) {\n super(container);\n }\n clear() {}\n init() {}\n interact(p1, delta) {\n const infecter = this.container.infecter;\n if (!infecter) {\n return;\n }\n infecter.updateInfection(p1, delta.value);\n if (p1.infection?.stage === undefined) {\n return;\n }\n const container = this.container,\n options = container.actualOptions,\n infectionOptions = options.infection;\n if (!infectionOptions?.enable || infectionOptions.stages.length < minStagesCount) {\n return;\n }\n const infectionStage1 = infectionOptions.stages[p1.infection.stage],\n pxRatio = container.retina.pixelRatio,\n radius = p1.getRadius() * double + infectionStage1.radius * pxRatio,\n pos = p1.getPosition(),\n infectedStage1 = infectionStage1.infectedStage ?? p1.infection.stage,\n query = container.particles.quadTree.queryCircle(pos, radius),\n infections = infectionStage1.rate,\n neighbors = query.length;\n for (const p2 of query) {\n const infP2 = p2;\n if (infP2 === p1 || infP2.destroyed || infP2.spawning || !(infP2.infection?.stage === undefined || infP2.infection.stage !== p1.infection.stage) || (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() >= infections / neighbors) {\n continue;\n }\n if (infP2.infection?.stage === undefined) {\n infecter.startInfection(infP2, infectedStage1);\n } else if (infP2.infection.stage < p1.infection.stage) {\n infecter.updateInfectionStage(infP2, infectedStage1);\n } else if (infP2.infection.stage > p1.infection.stage) {\n const infectionStage2 = infectionOptions.stages[infP2.infection.stage];\n const infectedStage2 = infectionStage2?.infectedStage ?? infP2.infection.stage;\n infecter.updateInfectionStage(p1, infectedStage2);\n }\n }\n }\n isEnabled() {\n return this.container.actualOptions?.infection?.enable ?? false;\n }\n reset() {}\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/ParticlesInfecter.js?");
88
+
89
+ /***/ }),
90
+
31
91
  /***/ "./dist/browser/index.js":
32
92
  /*!*******************************!*\
33
93
  !*** ./dist/browser/index.js ***!
34
94
  \*******************************/
35
95
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
36
96
 
37
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadInfectionPlugin: () => (/* binding */ loadInfectionPlugin)\n/* harmony export */ });\nasync function loadInfectionPlugin(engine, refresh = true) {\n const {\n InfectionPlugin\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_InfectionPlugin_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./InfectionPlugin.js */ \"./dist/browser/InfectionPlugin.js\")),\n plugin = new InfectionPlugin();\n await engine.addPlugin(plugin, refresh);\n await engine.addInteractor(\"particlesInfection\", async container => {\n const {\n ParticlesInfecter\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ParticlesInfecter_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ParticlesInfecter.js */ \"./dist/browser/ParticlesInfecter.js\"));\n return new ParticlesInfecter(container);\n }, refresh);\n}\n\n\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/index.js?");
97
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadInfectionPlugin: () => (/* binding */ loadInfectionPlugin)\n/* harmony export */ });\n/* harmony import */ var _InfectionPlugin_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InfectionPlugin.js */ \"./dist/browser/InfectionPlugin.js\");\n/* harmony import */ var _ParticlesInfecter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ParticlesInfecter.js */ \"./dist/browser/ParticlesInfecter.js\");\n\n\nasync function loadInfectionPlugin(engine, refresh = true) {\n const plugin = new _InfectionPlugin_js__WEBPACK_IMPORTED_MODULE_0__.InfectionPlugin();\n await engine.addPlugin(plugin, refresh);\n await engine.addInteractor(\"particlesInfection\", container => {\n return Promise.resolve(new _ParticlesInfecter_js__WEBPACK_IMPORTED_MODULE_1__.ParticlesInfecter(container));\n }, refresh);\n}\n\n\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/index.js?");
38
98
 
39
99
  /***/ }),
40
100
 
@@ -74,9 +134,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
74
134
  /******/ return module.exports;
75
135
  /******/ }
76
136
  /******/
77
- /******/ // expose the modules object (__webpack_modules__)
78
- /******/ __webpack_require__.m = __webpack_modules__;
79
- /******/
80
137
  /************************************************************************/
81
138
  /******/ /* webpack/runtime/compat get default export */
82
139
  /******/ (() => {
@@ -102,91 +159,11 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
102
159
  /******/ };
103
160
  /******/ })();
104
161
  /******/
105
- /******/ /* webpack/runtime/ensure chunk */
106
- /******/ (() => {
107
- /******/ __webpack_require__.f = {};
108
- /******/ // This file contains only the entry chunk.
109
- /******/ // The chunk loading function for additional chunks
110
- /******/ __webpack_require__.e = (chunkId) => {
111
- /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
112
- /******/ __webpack_require__.f[key](chunkId, promises);
113
- /******/ return promises;
114
- /******/ }, []));
115
- /******/ };
116
- /******/ })();
117
- /******/
118
- /******/ /* webpack/runtime/get javascript chunk filename */
119
- /******/ (() => {
120
- /******/ // This function allow to reference async chunks
121
- /******/ __webpack_require__.u = (chunkId) => {
122
- /******/ // return url for filenames based on template
123
- /******/ return "" + chunkId + ".js";
124
- /******/ };
125
- /******/ })();
126
- /******/
127
- /******/ /* webpack/runtime/global */
128
- /******/ (() => {
129
- /******/ __webpack_require__.g = (function() {
130
- /******/ if (typeof globalThis === 'object') return globalThis;
131
- /******/ try {
132
- /******/ return this || new Function('return this')();
133
- /******/ } catch (e) {
134
- /******/ if (typeof window === 'object') return window;
135
- /******/ }
136
- /******/ })();
137
- /******/ })();
138
- /******/
139
162
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
140
163
  /******/ (() => {
141
164
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
142
165
  /******/ })();
143
166
  /******/
144
- /******/ /* webpack/runtime/load script */
145
- /******/ (() => {
146
- /******/ var inProgress = {};
147
- /******/ var dataWebpackPrefix = "@tsparticles/plugin-infection:";
148
- /******/ // loadScript function to load a script via script tag
149
- /******/ __webpack_require__.l = (url, done, key, chunkId) => {
150
- /******/ if(inProgress[url]) { inProgress[url].push(done); return; }
151
- /******/ var script, needAttach;
152
- /******/ if(key !== undefined) {
153
- /******/ var scripts = document.getElementsByTagName("script");
154
- /******/ for(var i = 0; i < scripts.length; i++) {
155
- /******/ var s = scripts[i];
156
- /******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
157
- /******/ }
158
- /******/ }
159
- /******/ if(!script) {
160
- /******/ needAttach = true;
161
- /******/ script = document.createElement('script');
162
- /******/
163
- /******/ script.charset = 'utf-8';
164
- /******/ script.timeout = 120;
165
- /******/ if (__webpack_require__.nc) {
166
- /******/ script.setAttribute("nonce", __webpack_require__.nc);
167
- /******/ }
168
- /******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
169
- /******/
170
- /******/ script.src = url;
171
- /******/ }
172
- /******/ inProgress[url] = [done];
173
- /******/ var onScriptComplete = (prev, event) => {
174
- /******/ // avoid mem leaks in IE.
175
- /******/ script.onerror = script.onload = null;
176
- /******/ clearTimeout(timeout);
177
- /******/ var doneFns = inProgress[url];
178
- /******/ delete inProgress[url];
179
- /******/ script.parentNode && script.parentNode.removeChild(script);
180
- /******/ doneFns && doneFns.forEach((fn) => (fn(event)));
181
- /******/ if(prev) return prev(event);
182
- /******/ }
183
- /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
184
- /******/ script.onerror = onScriptComplete.bind(null, script.onerror);
185
- /******/ script.onload = onScriptComplete.bind(null, script.onload);
186
- /******/ needAttach && document.head.appendChild(script);
187
- /******/ };
188
- /******/ })();
189
- /******/
190
167
  /******/ /* webpack/runtime/make namespace object */
191
168
  /******/ (() => {
192
169
  /******/ // define __esModule on exports
@@ -198,121 +175,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
198
175
  /******/ };
199
176
  /******/ })();
200
177
  /******/
201
- /******/ /* webpack/runtime/publicPath */
202
- /******/ (() => {
203
- /******/ var scriptUrl;
204
- /******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
205
- /******/ var document = __webpack_require__.g.document;
206
- /******/ if (!scriptUrl && document) {
207
- /******/ if (document.currentScript)
208
- /******/ scriptUrl = document.currentScript.src;
209
- /******/ if (!scriptUrl) {
210
- /******/ var scripts = document.getElementsByTagName("script");
211
- /******/ if(scripts.length) {
212
- /******/ var i = scripts.length - 1;
213
- /******/ while (i > -1 && !scriptUrl) scriptUrl = scripts[i--].src;
214
- /******/ }
215
- /******/ }
216
- /******/ }
217
- /******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
218
- /******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
219
- /******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
220
- /******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
221
- /******/ __webpack_require__.p = scriptUrl;
222
- /******/ })();
223
- /******/
224
- /******/ /* webpack/runtime/jsonp chunk loading */
225
- /******/ (() => {
226
- /******/ // no baseURI
227
- /******/
228
- /******/ // object to store loaded and loading chunks
229
- /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
230
- /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
231
- /******/ var installedChunks = {
232
- /******/ "tsparticles.plugin.infection": 0
233
- /******/ };
234
- /******/
235
- /******/ __webpack_require__.f.j = (chunkId, promises) => {
236
- /******/ // JSONP chunk loading for javascript
237
- /******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
238
- /******/ if(installedChunkData !== 0) { // 0 means "already installed".
239
- /******/
240
- /******/ // a Promise means "currently loading".
241
- /******/ if(installedChunkData) {
242
- /******/ promises.push(installedChunkData[2]);
243
- /******/ } else {
244
- /******/ if(true) { // all chunks have JS
245
- /******/ // setup Promise in chunk cache
246
- /******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
247
- /******/ promises.push(installedChunkData[2] = promise);
248
- /******/
249
- /******/ // start chunk loading
250
- /******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
251
- /******/ // create error before stack unwound to get useful stacktrace later
252
- /******/ var error = new Error();
253
- /******/ var loadingEnded = (event) => {
254
- /******/ if(__webpack_require__.o(installedChunks, chunkId)) {
255
- /******/ installedChunkData = installedChunks[chunkId];
256
- /******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
257
- /******/ if(installedChunkData) {
258
- /******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
259
- /******/ var realSrc = event && event.target && event.target.src;
260
- /******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
261
- /******/ error.name = 'ChunkLoadError';
262
- /******/ error.type = errorType;
263
- /******/ error.request = realSrc;
264
- /******/ installedChunkData[1](error);
265
- /******/ }
266
- /******/ }
267
- /******/ };
268
- /******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
269
- /******/ }
270
- /******/ }
271
- /******/ }
272
- /******/ };
273
- /******/
274
- /******/ // no prefetching
275
- /******/
276
- /******/ // no preloaded
277
- /******/
278
- /******/ // no HMR
279
- /******/
280
- /******/ // no HMR manifest
281
- /******/
282
- /******/ // no on chunks loaded
283
- /******/
284
- /******/ // install a JSONP callback for chunk loading
285
- /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
286
- /******/ var chunkIds = data[0];
287
- /******/ var moreModules = data[1];
288
- /******/ var runtime = data[2];
289
- /******/ // add "moreModules" to the modules object,
290
- /******/ // then flag all "chunkIds" as loaded and fire callback
291
- /******/ var moduleId, chunkId, i = 0;
292
- /******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
293
- /******/ for(moduleId in moreModules) {
294
- /******/ if(__webpack_require__.o(moreModules, moduleId)) {
295
- /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
296
- /******/ }
297
- /******/ }
298
- /******/ if(runtime) var result = runtime(__webpack_require__);
299
- /******/ }
300
- /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
301
- /******/ for(;i < chunkIds.length; i++) {
302
- /******/ chunkId = chunkIds[i];
303
- /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
304
- /******/ installedChunks[chunkId][0]();
305
- /******/ }
306
- /******/ installedChunks[chunkId] = 0;
307
- /******/ }
308
- /******/
309
- /******/ }
310
- /******/
311
- /******/ var chunkLoadingGlobal = this["webpackChunk_tsparticles_plugin_infection"] = this["webpackChunk_tsparticles_plugin_infection"] || [];
312
- /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
313
- /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
314
- /******/ })();
315
- /******/
316
178
  /************************************************************************/
317
179
  /******/
318
180
  /******/ // startup
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see tsparticles.plugin.infection.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var n in r)("object"==typeof exports?exports:e)[n]=r[n]}}(this,(e=>(()=>{var t,r,n={533:t=>{t.exports=e}},o={};function i(e){var t=o[e];if(void 0!==t)return t.exports;var r=o[e]={exports:{}};return n[e](r,r.exports,i),r.exports}i.m=n,i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>e+".min.js",i.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),t={},r="@tsparticles/plugin-infection:",i.l=(e,n,o,a)=>{if(t[e])t[e].push(n);else{var c,s;if(void 0!==o)for(var l=document.getElementsByTagName("script"),u=0;u<l.length;u++){var p=l[u];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")==r+o){c=p;break}}c||(s=!0,(c=document.createElement("script")).charset="utf-8",c.timeout=120,i.nc&&c.setAttribute("nonce",i.nc),c.setAttribute("data-webpack",r+o),c.src=e),t[e]=[n];var d=(r,n)=>{c.onerror=c.onload=null,clearTimeout(f);var o=t[e];if(delete t[e],c.parentNode&&c.parentNode.removeChild(c),o&&o.forEach((e=>e(n))),r)return r(n)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:c}),12e4);c.onerror=d.bind(null,c.onerror),c.onload=d.bind(null,c.onload),s&&document.head.appendChild(c)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;i.g.importScripts&&(e=i.g.location+"");var t=i.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&!e;)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e})(),(()=>{var e={564:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,o)=>n=e[t]=[r,o]));r.push(n[2]=o);var a=i.p+i.u(t),c=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;c.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",c.name="ChunkLoadError",c.type=o,c.request=a,n[1](c)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,a=r[0],c=r[1],s=r[2],l=0;if(a.some((t=>0!==e[t]))){for(n in c)i.o(c,n)&&(i.m[n]=c[n]);if(s)s(i)}for(t&&t(r);l<a.length;l++)o=a[l],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=this.webpackChunk_tsparticles_plugin_infection=this.webpackChunk_tsparticles_plugin_infection||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var a={};return(()=>{async function e(e,t=!0){const{InfectionPlugin:r}=await i.e(431).then(i.bind(i,431)),n=new r;await e.addPlugin(n,t),await e.addInteractor("particlesInfection",(async e=>{const{ParticlesInfecter:t}=await i.e(854).then(i.bind(i,854));return new t(e)}),t)}i.r(a),i.d(a,{loadInfectionPlugin:()=>e})})(),a})()));
2
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var i="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var n in i)("object"==typeof exports?exports:e)[n]=i[n]}}(this,(e=>(()=>{var t={303:t=>{t.exports=e}},i={};function n(e){var o=i[e];if(void 0!==o)return o.exports;var s=i[e]={exports:{}};return t[e](s,s.exports,n),s.exports}n.d=(e,t)=>{for(var i in t)n.o(t,i)&&!n.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};return(()=>{n.r(o),n.d(o,{loadInfectionPlugin:()=>l});var e=n(303);class t{constructor(){this.color=new e.OptionsColor,this.color.value="#ff0000",this.radius=0,this.rate=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=e.OptionsColor.create(this.color,t.color)),this.duration=t.duration,this.infectedStage=t.infectedStage,void 0!==t.radius&&(this.radius=t.radius),void 0!==t.rate&&(this.rate=t.rate))}}class i{constructor(){this.cure=!1,this.delay=0,this.enable=!1,this.infections=0,this.stages=[]}load(e){void 0!==e&&(void 0!==e.cure&&(this.cure=e.cure),void 0!==e.delay&&(this.delay=e.delay),void 0!==e.enable&&(this.enable=e.enable),void 0!==e.infections&&(this.infections=e.infections),void 0!==e.stages&&(this.stages=e.stages.map((e=>{const i=new t;return i.load(e),i}))))}}class s{constructor(e){this._nextInfectionStage=e=>{const t=this._container.actualOptions.infection,{infection:i}=e;if(!t||!i)return;const n=t.stages.length;n<=0||void 0===i.stage||(i.time=0,n<=++i.stage&&(t.cure?(delete i.stage,delete i.time):(i.stage=0,i.time=0)))},this._container=e}startInfection(e,t){const i=this._container.actualOptions.infection,{infection:n}=e;if(!i||!n)return;t>i.stages.length||t<0||(n.delay=0,n.delayStage=t)}updateInfection(t,i){const n=this._container.actualOptions.infection,{infection:o}=t;if(!n||!o)return;const s=n.stages,a=s.length;if(void 0!==o.delay&&void 0!==o.delayStage){const t=o.delayStage;if(t>a||t<0)return;o.delay>=n.delay*e.millisecondsToSeconds?(o.stage=t,o.time=0,delete o.delay,delete o.delayStage):o.delay+=i}else delete o.delay,delete o.delayStage;if(void 0!==o.stage&&void 0!==o.time){const n=s[o.stage];void 0!==n.duration&&n.duration>=0&&o.time>n.duration*e.millisecondsToSeconds?this._nextInfectionStage(t):o.time+=i}else delete o.stage,delete o.time}updateInfectionStage(e,t){const i=this._container.actualOptions,{infection:n}=e;if(!i.infection||!n)return;t>i.infection.stages.length||t<0||void 0!==n.stage&&n.stage>t||(n.stage=t,n.time=0)}}class a{constructor(e){this._container=e,this._container.infecter=new s(this._container)}particleFillColor(e){const t=this._container.actualOptions;if(!e.infection||!t.infection)return;const i=e.infection.stage,n=t.infection.stages;return void 0!==i?n[i].color:void 0}particleStrokeColor(e){return this.particleFillColor(e)}particlesSetup(){const t=this._container.actualOptions;if(t.infection)for(let i=0;i<t.infection.infections;i++){const t=this._container.particles.filter((e=>{const t=e;return t.infection||(t.infection={}),void 0===t.infection.stage})),i=(0,e.itemFromArray)(t);this._container.infecter?.startInfection(i,0)}}}class r{constructor(){this.id="infection"}getPlugin(e){return Promise.resolve(new a(e))}loadOptions(e,t){if(!this.needsPlugin(e)&&!this.needsPlugin(t))return;let n=e.infection;void 0===n?.load&&(e.infection=n=new i),n.load(t?.infection)}needsPlugin(e){return e?.infection?.enable??!1}}class c extends e.ParticlesInteractorBase{constructor(e){super(e)}clear(){}init(){}interact(t,i){const n=this.container.infecter;if(!n)return;if(n.updateInfection(t,i.value),void 0===t.infection?.stage)return;const o=this.container,s=o.actualOptions.infection;if(!s?.enable||s.stages.length<1)return;const a=s.stages[t.infection.stage],r=o.retina.pixelRatio,c=2*t.getRadius()+a.radius*r,l=t.getPosition(),d=a.infectedStage??t.infection.stage,f=o.particles.quadTree.queryCircle(l,c),u=a.rate,g=f.length;for(const i of f){const o=i;if(!(o===t||o.destroyed||o.spawning||void 0!==o.infection?.stage&&o.infection.stage===t.infection.stage||(0,e.getRandom)()>=u/g))if(void 0===o.infection?.stage)n.startInfection(o,d);else if(o.infection.stage<t.infection.stage)n.updateInfectionStage(o,d);else if(o.infection.stage>t.infection.stage){const e=s.stages[o.infection.stage],i=e?.infectedStage??o.infection.stage;n.updateInfectionStage(t,i)}}}isEnabled(){return this.container.actualOptions?.infection?.enable??!1}reset(){}}async function l(e,t=!0){const i=new r;await e.addPlugin(i,t),await e.addInteractor("particlesInfection",(e=>Promise.resolve(new c(e))),t)}})(),o})()));
@@ -1 +1 @@
1
- /*! tsParticles Infection Plugin v3.2.2 by Matteo Bruni */
1
+ /*! tsParticles Infection Plugin v3.4.0 by Matteo Bruni */
@@ -1,6 +1,6 @@
1
1
  import type { Container, IPlugin, RecursivePartial } from "@tsparticles/engine";
2
2
  import type { IInfectionOptions, InfectionOptions } from "./Types.js";
3
- import type { InfectionInstance } from "./InfectionInstance.js";
3
+ import { InfectionInstance } from "./InfectionInstance.js";
4
4
  export declare class InfectionPlugin implements IPlugin {
5
5
  readonly id: string;
6
6
  constructor();
@@ -4,7 +4,7 @@ export declare class ParticlesInfecter extends ParticlesInteractorBase<Infectabl
4
4
  constructor(container: InfectableContainer);
5
5
  clear(): void;
6
6
  init(): void;
7
- interact(p1: InfectableParticle, delta: IDelta): Promise<void>;
7
+ interact(p1: InfectableParticle, delta: IDelta): void;
8
8
  isEnabled(): boolean;
9
9
  reset(): void;
10
10
  }
package/umd/Infecter.js CHANGED
@@ -14,7 +14,7 @@
14
14
  const minStage = 0, minDuration = 0;
15
15
  class Infecter {
16
16
  constructor(container) {
17
- this._nextInfectionStage = (particle) => {
17
+ this._nextInfectionStage = particle => {
18
18
  const infectionOptions = this._container.actualOptions.infection, { infection } = particle;
19
19
  if (!infectionOptions || !infection) {
20
20
  return;
@@ -35,7 +35,7 @@
35
35
  return;
36
36
  }
37
37
  for (let i = 0; i < options.infection.infections; i++) {
38
- const notInfected = this._container.particles.filter((p) => {
38
+ const notInfected = this._container.particles.filter(p => {
39
39
  const infP = p;
40
40
  if (!infP.infection) {
41
41
  infP.infection = {};
@@ -1,47 +1,23 @@
1
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2
- if (k2 === undefined) k2 = k;
3
- var desc = Object.getOwnPropertyDescriptor(m, k);
4
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
5
- desc = { enumerable: true, get: function() { return m[k]; } };
6
- }
7
- Object.defineProperty(o, k2, desc);
8
- }) : (function(o, m, k, k2) {
9
- if (k2 === undefined) k2 = k;
10
- o[k2] = m[k];
11
- }));
12
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
13
- Object.defineProperty(o, "default", { enumerable: true, value: v });
14
- }) : function(o, v) {
15
- o["default"] = v;
16
- });
17
- var __importStar = (this && this.__importStar) || function (mod) {
18
- if (mod && mod.__esModule) return mod;
19
- var result = {};
20
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
21
- __setModuleDefault(result, mod);
22
- return result;
23
- };
24
1
  (function (factory) {
25
2
  if (typeof module === "object" && typeof module.exports === "object") {
26
3
  var v = factory(require, exports);
27
4
  if (v !== undefined) module.exports = v;
28
5
  }
29
6
  else if (typeof define === "function" && define.amd) {
30
- define(["require", "exports", "./Options/Classes/Infection.js"], factory);
7
+ define(["require", "exports", "./Options/Classes/Infection.js", "./InfectionInstance.js"], factory);
31
8
  }
32
9
  })(function (require, exports) {
33
10
  "use strict";
34
- var __syncRequire = typeof module === "object" && typeof module.exports === "object";
35
11
  Object.defineProperty(exports, "__esModule", { value: true });
36
12
  exports.InfectionPlugin = void 0;
37
13
  const Infection_js_1 = require("./Options/Classes/Infection.js");
14
+ const InfectionInstance_js_1 = require("./InfectionInstance.js");
38
15
  class InfectionPlugin {
39
16
  constructor() {
40
17
  this.id = "infection";
41
18
  }
42
- async getPlugin(container) {
43
- const { InfectionInstance } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./InfectionInstance.js"))) : new Promise((resolve_1, reject_1) => { require(["./InfectionInstance.js"], resolve_1, reject_1); }).then(__importStar));
44
- return new InfectionInstance(container);
19
+ getPlugin(container) {
20
+ return Promise.resolve(new InfectionInstance_js_1.InfectionInstance(container));
45
21
  }
46
22
  loadOptions(options, source) {
47
23
  if (!this.needsPlugin(options) && !this.needsPlugin(source)) {
@@ -38,7 +38,7 @@
38
38
  if (data.stages === undefined) {
39
39
  return;
40
40
  }
41
- this.stages = data.stages.map((t) => {
41
+ this.stages = data.stages.map(t => {
42
42
  const s = new InfectionStage_js_1.InfectionStage();
43
43
  s.load(t);
44
44
  return s;
@@ -20,7 +20,7 @@
20
20
  }
21
21
  init() {
22
22
  }
23
- async interact(p1, delta) {
23
+ interact(p1, delta) {
24
24
  const infecter = this.container.infecter;
25
25
  if (!infecter) {
26
26
  return;
@@ -55,7 +55,6 @@
55
55
  infecter.updateInfectionStage(p1, infectedStage2);
56
56
  }
57
57
  }
58
- await Promise.resolve();
59
58
  }
60
59
  isEnabled() {
61
60
  return this.container.actualOptions?.infection?.enable ?? false;
package/umd/index.js CHANGED
@@ -9,18 +9,6 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
9
9
  if (k2 === undefined) k2 = k;
10
10
  o[k2] = m[k];
11
11
  }));
12
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
13
- Object.defineProperty(o, "default", { enumerable: true, value: v });
14
- }) : function(o, v) {
15
- o["default"] = v;
16
- });
17
- var __importStar = (this && this.__importStar) || function (mod) {
18
- if (mod && mod.__esModule) return mod;
19
- var result = {};
20
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
21
- __setModuleDefault(result, mod);
22
- return result;
23
- };
24
12
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
25
13
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
26
14
  };
@@ -30,19 +18,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
30
18
  if (v !== undefined) module.exports = v;
31
19
  }
32
20
  else if (typeof define === "function" && define.amd) {
33
- define(["require", "exports", "./Options/Interfaces/IInfection.js", "./Options/Interfaces/IInfectionStage.js"], factory);
21
+ define(["require", "exports", "./InfectionPlugin.js", "./ParticlesInfecter.js", "./Options/Interfaces/IInfection.js", "./Options/Interfaces/IInfectionStage.js"], factory);
34
22
  }
35
23
  })(function (require, exports) {
36
24
  "use strict";
37
- var __syncRequire = typeof module === "object" && typeof module.exports === "object";
38
25
  Object.defineProperty(exports, "__esModule", { value: true });
39
26
  exports.loadInfectionPlugin = void 0;
27
+ const InfectionPlugin_js_1 = require("./InfectionPlugin.js");
28
+ const ParticlesInfecter_js_1 = require("./ParticlesInfecter.js");
40
29
  async function loadInfectionPlugin(engine, refresh = true) {
41
- const { InfectionPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./InfectionPlugin.js"))) : new Promise((resolve_1, reject_1) => { require(["./InfectionPlugin.js"], resolve_1, reject_1); }).then(__importStar)), plugin = new InfectionPlugin();
30
+ const plugin = new InfectionPlugin_js_1.InfectionPlugin();
42
31
  await engine.addPlugin(plugin, refresh);
43
- await engine.addInteractor("particlesInfection", async (container) => {
44
- const { ParticlesInfecter } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ParticlesInfecter.js"))) : new Promise((resolve_2, reject_2) => { require(["./ParticlesInfecter.js"], resolve_2, reject_2); }).then(__importStar));
45
- return new ParticlesInfecter(container);
32
+ await engine.addInteractor("particlesInfection", container => {
33
+ return Promise.resolve(new ParticlesInfecter_js_1.ParticlesInfecter(container));
46
34
  }, refresh);
47
35
  }
48
36
  exports.loadInfectionPlugin = loadInfectionPlugin;
package/431.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 431.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_plugin_infection=this.webpackChunk_tsparticles_plugin_infection||[]).push([[431],{431:(i,t,e)=>{e.d(t,{InfectionPlugin:()=>a});var n=e(533);class s{constructor(){this.color=new n.OptionsColor,this.color.value="#ff0000",this.radius=0,this.rate=1}load(i){void 0!==i&&(void 0!==i.color&&(this.color=n.OptionsColor.create(this.color,i.color)),this.duration=i.duration,this.infectedStage=i.infectedStage,void 0!==i.radius&&(this.radius=i.radius),void 0!==i.rate&&(this.rate=i.rate))}}class o{constructor(){this.cure=!1,this.delay=0,this.enable=!1,this.infections=0,this.stages=[]}load(i){void 0!==i&&(void 0!==i.cure&&(this.cure=i.cure),void 0!==i.delay&&(this.delay=i.delay),void 0!==i.enable&&(this.enable=i.enable),void 0!==i.infections&&(this.infections=i.infections),void 0!==i.stages&&(this.stages=i.stages.map((i=>{const t=new s;return t.load(i),t}))))}}class a{constructor(){this.id="infection"}async getPlugin(i){const{InfectionInstance:t}=await e.e(733).then(e.bind(e,733));return new t(i)}loadOptions(i,t){if(!this.needsPlugin(i)&&!this.needsPlugin(t))return;let e=i.infection;void 0===e?.load&&(i.infection=e=new o),e.load(t?.infection)}needsPlugin(i){return i?.infection?.enable??!1}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Infection Plugin v3.2.2 by Matteo Bruni */
package/733.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 733.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_plugin_infection=this.webpackChunk_tsparticles_plugin_infection||[]).push([[733],{733:(t,e,i)=>{i.d(e,{InfectionInstance:()=>s});var n=i(533);class o{constructor(t){this._nextInfectionStage=t=>{const e=this._container.actualOptions.infection,{infection:i}=t;if(!e||!i)return;const n=e.stages.length;n<=0||void 0===i.stage||(i.time=0,n<=++i.stage&&(e.cure?(delete i.stage,delete i.time):(i.stage=0,i.time=0)))},this._container=t}startInfection(t,e){const i=this._container.actualOptions.infection,{infection:n}=t;if(!i||!n)return;e>i.stages.length||e<0||(n.delay=0,n.delayStage=e)}updateInfection(t,e){const i=this._container.actualOptions.infection,{infection:o}=t;if(!i||!o)return;const s=i.stages,a=s.length;if(void 0!==o.delay&&void 0!==o.delayStage){const t=o.delayStage;if(t>a||t<0)return;o.delay>=i.delay*n.millisecondsToSeconds?(o.stage=t,o.time=0,delete o.delay,delete o.delayStage):o.delay+=e}else delete o.delay,delete o.delayStage;if(void 0!==o.stage&&void 0!==o.time){const i=s[o.stage];void 0!==i.duration&&i.duration>=0&&o.time>i.duration*n.millisecondsToSeconds?this._nextInfectionStage(t):o.time+=e}else delete o.stage,delete o.time}updateInfectionStage(t,e){const i=this._container.actualOptions,{infection:n}=t;if(!i.infection||!n)return;e>i.infection.stages.length||e<0||void 0!==n.stage&&n.stage>e||(n.stage=e,n.time=0)}}class s{constructor(t){this._container=t,this._container.infecter=new o(this._container)}particleFillColor(t){const e=this._container.actualOptions;if(!t.infection||!e.infection)return;const i=t.infection.stage,n=e.infection.stages;return void 0!==i?n[i].color:void 0}particleStrokeColor(t){return this.particleFillColor(t)}particlesSetup(){const t=this._container.actualOptions;if(t.infection)for(let e=0;e<t.infection.infections;e++){const t=this._container.particles.filter((t=>{const e=t;return e.infection||(e.infection={}),void 0===e.infection.stage})),e=(0,n.itemFromArray)(t);this._container.infecter?.startInfection(e,0)}}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Infection Plugin v3.2.2 by Matteo Bruni */
package/854.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 854.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_plugin_infection=this.webpackChunk_tsparticles_plugin_infection||[]).push([[854],{854:(e,t,n)=>{n.d(t,{ParticlesInfecter:()=>a});var i=n(533);class a extends i.ParticlesInteractorBase{constructor(e){super(e)}clear(){}init(){}async interact(e,t){const n=this.container.infecter;if(!n)return;if(n.updateInfection(e,t.value),void 0===e.infection?.stage)return;const a=this.container,s=a.actualOptions.infection;if(!s?.enable||s.stages.length<1)return;const c=s.stages[e.infection.stage],o=a.retina.pixelRatio,r=2*e.getRadius()+c.radius*o,f=e.getPosition(),g=c.infectedStage??e.infection.stage,l=a.particles.quadTree.queryCircle(f,r),u=c.rate,d=l.length;for(const t of l){const a=t;if(!(a===e||a.destroyed||a.spawning||void 0!==a.infection?.stage&&a.infection.stage===e.infection.stage||(0,i.getRandom)()>=u/d))if(void 0===a.infection?.stage)n.startInfection(a,g);else if(a.infection.stage<e.infection.stage)n.updateInfectionStage(a,g);else if(a.infection.stage>e.infection.stage){const t=s.stages[a.infection.stage],i=t?.infectedStage??a.infection.stage;n.updateInfectionStage(e,i)}}await Promise.resolve()}isEnabled(){return this.container.actualOptions?.infection?.enable??!1}reset(){}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Infection Plugin v3.2.2 by Matteo Bruni */
@@ -1,40 +0,0 @@
1
- /*!
2
- * Author : Matteo Bruni
3
- * MIT license: https://opensource.org/licenses/MIT
4
- * Demo / Generator : https://particles.js.org/
5
- * GitHub : https://www.github.com/matteobruni/tsparticles
6
- * How to use? : Check the GitHub README
7
- * v3.2.2
8
- */
9
- "use strict";
10
- /*
11
- * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
12
- * This devtool is neither made for production nor for readable output files.
13
- * It uses "eval()" calls to create a separate source file in the browser devtools.
14
- * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
15
- * or disable the default devtool with "devtool: false".
16
- * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
17
- */
18
- (this["webpackChunk_tsparticles_plugin_infection"] = this["webpackChunk_tsparticles_plugin_infection"] || []).push([["dist_browser_InfectionInstance_js"],{
19
-
20
- /***/ "./dist/browser/Infecter.js":
21
- /*!**********************************!*\
22
- !*** ./dist/browser/Infecter.js ***!
23
- \**********************************/
24
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25
-
26
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Infecter: () => (/* binding */ Infecter)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minStage = 0,\n minDuration = 0;\nclass Infecter {\n constructor(container) {\n this._nextInfectionStage = particle => {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stagesCount = infectionOptions.stages.length;\n if (stagesCount <= minStage || infection.stage === undefined) {\n return;\n }\n infection.time = 0;\n if (stagesCount <= ++infection.stage) {\n if (infectionOptions.cure) {\n delete infection.stage;\n delete infection.time;\n } else {\n infection.stage = 0;\n infection.time = 0;\n }\n }\n };\n this._container = container;\n }\n startInfection(particle, stage) {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stages = infectionOptions.stages,\n stagesCount = stages.length;\n if (stage > stagesCount || stage < minStage) {\n return;\n }\n infection.delay = 0;\n infection.delayStage = stage;\n }\n updateInfection(particle, delta) {\n const infectionOptions = this._container.actualOptions.infection,\n {\n infection\n } = particle;\n if (!infectionOptions || !infection) {\n return;\n }\n const stages = infectionOptions.stages,\n stagesCount = stages.length;\n if (infection.delay !== undefined && infection.delayStage !== undefined) {\n const stage = infection.delayStage;\n if (stage > stagesCount || stage < minStage) {\n return;\n }\n if (infection.delay >= infectionOptions.delay * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.millisecondsToSeconds) {\n infection.stage = stage;\n infection.time = 0;\n delete infection.delay;\n delete infection.delayStage;\n } else {\n infection.delay += delta;\n }\n } else {\n delete infection.delay;\n delete infection.delayStage;\n }\n if (infection.stage !== undefined && infection.time !== undefined) {\n const infectionStage = stages[infection.stage];\n if (infectionStage.duration !== undefined && infectionStage.duration >= minDuration) {\n if (infection.time > infectionStage.duration * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.millisecondsToSeconds) {\n this._nextInfectionStage(particle);\n } else {\n infection.time += delta;\n }\n } else {\n infection.time += delta;\n }\n } else {\n delete infection.stage;\n delete infection.time;\n }\n }\n updateInfectionStage(particle, stage) {\n const options = this._container.actualOptions,\n {\n infection\n } = particle;\n if (!options.infection || !infection) {\n return;\n }\n const stagesCount = options.infection.stages.length;\n if (stage > stagesCount || stage < minStage || infection.stage !== undefined && infection.stage > stage) {\n return;\n }\n infection.stage = stage;\n infection.time = 0;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Infecter.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/InfectionInstance.js":
31
- /*!*******************************************!*\
32
- !*** ./dist/browser/InfectionInstance.js ***!
33
- \*******************************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionInstance: () => (/* binding */ InfectionInstance)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _Infecter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Infecter.js */ \"./dist/browser/Infecter.js\");\n\n\nconst minStage = 0;\nclass InfectionInstance {\n constructor(container) {\n this._container = container;\n this._container.infecter = new _Infecter_js__WEBPACK_IMPORTED_MODULE_1__.Infecter(this._container);\n }\n particleFillColor(particle) {\n const options = this._container.actualOptions;\n if (!particle.infection || !options.infection) {\n return;\n }\n const infectionStage = particle.infection.stage,\n infection = options.infection,\n infectionStages = infection.stages;\n return infectionStage !== undefined ? infectionStages[infectionStage].color : undefined;\n }\n particleStrokeColor(particle) {\n return this.particleFillColor(particle);\n }\n particlesSetup() {\n const options = this._container.actualOptions;\n if (!options.infection) {\n return;\n }\n for (let i = 0; i < options.infection.infections; i++) {\n const notInfected = this._container.particles.filter(p => {\n const infP = p;\n if (!infP.infection) {\n infP.infection = {};\n }\n return infP.infection.stage === undefined;\n });\n const infected = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.itemFromArray)(notInfected);\n this._container.infecter?.startInfection(infected, minStage);\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/InfectionInstance.js?");
37
-
38
- /***/ })
39
-
40
- }]);
@@ -1,50 +0,0 @@
1
- /*!
2
- * Author : Matteo Bruni
3
- * MIT license: https://opensource.org/licenses/MIT
4
- * Demo / Generator : https://particles.js.org/
5
- * GitHub : https://www.github.com/matteobruni/tsparticles
6
- * How to use? : Check the GitHub README
7
- * v3.2.2
8
- */
9
- "use strict";
10
- /*
11
- * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
12
- * This devtool is neither made for production nor for readable output files.
13
- * It uses "eval()" calls to create a separate source file in the browser devtools.
14
- * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
15
- * or disable the default devtool with "devtool: false".
16
- * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
17
- */
18
- (this["webpackChunk_tsparticles_plugin_infection"] = this["webpackChunk_tsparticles_plugin_infection"] || []).push([["dist_browser_InfectionPlugin_js"],{
19
-
20
- /***/ "./dist/browser/InfectionPlugin.js":
21
- /*!*****************************************!*\
22
- !*** ./dist/browser/InfectionPlugin.js ***!
23
- \*****************************************/
24
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25
-
26
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionPlugin: () => (/* binding */ InfectionPlugin)\n/* harmony export */ });\n/* harmony import */ var _Options_Classes_Infection_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Options/Classes/Infection.js */ \"./dist/browser/Options/Classes/Infection.js\");\n\nclass InfectionPlugin {\n constructor() {\n this.id = \"infection\";\n }\n async getPlugin(container) {\n const {\n InfectionInstance\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_InfectionInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./InfectionInstance.js */ \"./dist/browser/InfectionInstance.js\"));\n return new InfectionInstance(container);\n }\n loadOptions(options, source) {\n if (!this.needsPlugin(options) && !this.needsPlugin(source)) {\n return;\n }\n let infectionOptions = options.infection;\n if (infectionOptions?.load === undefined) {\n options.infection = infectionOptions = new _Options_Classes_Infection_js__WEBPACK_IMPORTED_MODULE_0__.Infection();\n }\n infectionOptions.load(source?.infection);\n }\n needsPlugin(options) {\n return options?.infection?.enable ?? false;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/InfectionPlugin.js?");
27
-
28
- /***/ }),
29
-
30
- /***/ "./dist/browser/Options/Classes/Infection.js":
31
- /*!***************************************************!*\
32
- !*** ./dist/browser/Options/Classes/Infection.js ***!
33
- \***************************************************/
34
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
35
-
36
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Infection: () => (/* binding */ Infection)\n/* harmony export */ });\n/* harmony import */ var _InfectionStage_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InfectionStage.js */ \"./dist/browser/Options/Classes/InfectionStage.js\");\n\nclass Infection {\n constructor() {\n this.cure = false;\n this.delay = 0;\n this.enable = false;\n this.infections = 0;\n this.stages = [];\n }\n load(data) {\n if (data === undefined) {\n return;\n }\n if (data.cure !== undefined) {\n this.cure = data.cure;\n }\n if (data.delay !== undefined) {\n this.delay = data.delay;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n if (data.infections !== undefined) {\n this.infections = data.infections;\n }\n if (data.stages === undefined) {\n return;\n }\n this.stages = data.stages.map(t => {\n const s = new _InfectionStage_js__WEBPACK_IMPORTED_MODULE_0__.InfectionStage();\n s.load(t);\n return s;\n });\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Options/Classes/Infection.js?");
37
-
38
- /***/ }),
39
-
40
- /***/ "./dist/browser/Options/Classes/InfectionStage.js":
41
- /*!********************************************************!*\
42
- !*** ./dist/browser/Options/Classes/InfectionStage.js ***!
43
- \********************************************************/
44
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
45
-
46
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ InfectionStage: () => (/* binding */ InfectionStage)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass InfectionStage {\n constructor() {\n this.color = new _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor();\n this.color.value = \"#ff0000\";\n this.radius = 0;\n this.rate = 1;\n }\n load(data) {\n if (data === undefined) {\n return;\n }\n if (data.color !== undefined) {\n this.color = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor.create(this.color, data.color);\n }\n this.duration = data.duration;\n this.infectedStage = data.infectedStage;\n if (data.radius !== undefined) {\n this.radius = data.radius;\n }\n if (data.rate !== undefined) {\n this.rate = data.rate;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/Options/Classes/InfectionStage.js?");
47
-
48
- /***/ })
49
-
50
- }]);
@@ -1,30 +0,0 @@
1
- /*!
2
- * Author : Matteo Bruni
3
- * MIT license: https://opensource.org/licenses/MIT
4
- * Demo / Generator : https://particles.js.org/
5
- * GitHub : https://www.github.com/matteobruni/tsparticles
6
- * How to use? : Check the GitHub README
7
- * v3.2.2
8
- */
9
- "use strict";
10
- /*
11
- * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
12
- * This devtool is neither made for production nor for readable output files.
13
- * It uses "eval()" calls to create a separate source file in the browser devtools.
14
- * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
15
- * or disable the default devtool with "devtool: false".
16
- * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
17
- */
18
- (this["webpackChunk_tsparticles_plugin_infection"] = this["webpackChunk_tsparticles_plugin_infection"] || []).push([["dist_browser_ParticlesInfecter_js"],{
19
-
20
- /***/ "./dist/browser/ParticlesInfecter.js":
21
- /*!*******************************************!*\
22
- !*** ./dist/browser/ParticlesInfecter.js ***!
23
- \*******************************************/
24
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25
-
26
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ParticlesInfecter: () => (/* binding */ ParticlesInfecter)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nconst minStagesCount = 1,\n double = 2;\nclass ParticlesInfecter extends _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ParticlesInteractorBase {\n constructor(container) {\n super(container);\n }\n clear() {}\n init() {}\n async interact(p1, delta) {\n const infecter = this.container.infecter;\n if (!infecter) {\n return;\n }\n infecter.updateInfection(p1, delta.value);\n if (p1.infection?.stage === undefined) {\n return;\n }\n const container = this.container,\n options = container.actualOptions,\n infectionOptions = options.infection;\n if (!infectionOptions?.enable || infectionOptions.stages.length < minStagesCount) {\n return;\n }\n const infectionStage1 = infectionOptions.stages[p1.infection.stage],\n pxRatio = container.retina.pixelRatio,\n radius = p1.getRadius() * double + infectionStage1.radius * pxRatio,\n pos = p1.getPosition(),\n infectedStage1 = infectionStage1.infectedStage ?? p1.infection.stage,\n query = container.particles.quadTree.queryCircle(pos, radius),\n infections = infectionStage1.rate,\n neighbors = query.length;\n for (const p2 of query) {\n const infP2 = p2;\n if (infP2 === p1 || infP2.destroyed || infP2.spawning || !(infP2.infection?.stage === undefined || infP2.infection.stage !== p1.infection.stage) || (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() >= infections / neighbors) {\n continue;\n }\n if (infP2.infection?.stage === undefined) {\n infecter.startInfection(infP2, infectedStage1);\n } else if (infP2.infection.stage < p1.infection.stage) {\n infecter.updateInfectionStage(infP2, infectedStage1);\n } else if (infP2.infection.stage > p1.infection.stage) {\n const infectionStage2 = infectionOptions.stages[infP2.infection.stage];\n const infectedStage2 = infectionStage2?.infectedStage ?? infP2.infection.stage;\n infecter.updateInfectionStage(p1, infectedStage2);\n }\n }\n await Promise.resolve();\n }\n isEnabled() {\n return this.container.actualOptions?.infection?.enable ?? false;\n }\n reset() {}\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-infection/./dist/browser/ParticlesInfecter.js?");
27
-
28
- /***/ })
29
-
30
- }]);