@tsparticles/preset-ambient 4.2.1 → 4.3.1
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* Preset v4.
|
|
2
|
+
/* Preset v4.3.1 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
@@ -358,29 +358,27 @@
|
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
else if (!isObject(destination) || Array.isArray(destination)) {
|
|
361
|
-
destination =
|
|
361
|
+
destination = Object.create(null);
|
|
362
362
|
}
|
|
363
|
-
const sourceKeys = Object.keys(source),
|
|
363
|
+
const sourceKeys = Object.keys(source), hasNested = sourceKeys.some(k => {
|
|
364
364
|
const v = source[k];
|
|
365
365
|
return isObject(v) || Array.isArray(v);
|
|
366
366
|
});
|
|
367
367
|
if (!hasNested) {
|
|
368
368
|
const sourceDict = source, destDict = destination;
|
|
369
369
|
for (const key of sourceKeys) {
|
|
370
|
-
if (
|
|
370
|
+
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
|
371
371
|
continue;
|
|
372
372
|
}
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
destDict[key] = v;
|
|
377
|
-
}
|
|
373
|
+
const v = sourceDict[key];
|
|
374
|
+
if (v !== undefined) {
|
|
375
|
+
destDict[key] = v;
|
|
378
376
|
}
|
|
379
377
|
}
|
|
380
378
|
continue;
|
|
381
379
|
}
|
|
382
380
|
for (const key of sourceKeys) {
|
|
383
|
-
if (
|
|
381
|
+
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
|
384
382
|
continue;
|
|
385
383
|
}
|
|
386
384
|
const sourceDict = source, destDict = destination, value = sourceDict[key];
|
|
@@ -796,7 +794,7 @@
|
|
|
796
794
|
return this.#domArray;
|
|
797
795
|
}
|
|
798
796
|
get version() {
|
|
799
|
-
return "4.
|
|
797
|
+
return "4.3.1";
|
|
800
798
|
}
|
|
801
799
|
addEventListener(type, listener) {
|
|
802
800
|
this.#eventDispatcher.addEventListener(type, listener);
|
|
@@ -1029,6 +1027,18 @@
|
|
|
1029
1027
|
AnimationStatus["decreasing"] = "decreasing";
|
|
1030
1028
|
})(AnimationStatus || (AnimationStatus = {}));
|
|
1031
1029
|
|
|
1030
|
+
var DrawLayer;
|
|
1031
|
+
(function (DrawLayer) {
|
|
1032
|
+
DrawLayer[DrawLayer["BackgroundElement"] = 0] = "BackgroundElement";
|
|
1033
|
+
DrawLayer[DrawLayer["BackgroundDraw"] = 1] = "BackgroundDraw";
|
|
1034
|
+
DrawLayer[DrawLayer["BackgroundMask"] = 2] = "BackgroundMask";
|
|
1035
|
+
DrawLayer[DrawLayer["CanvasSetup"] = 3] = "CanvasSetup";
|
|
1036
|
+
DrawLayer[DrawLayer["PluginContent"] = 4] = "PluginContent";
|
|
1037
|
+
DrawLayer[DrawLayer["Particles"] = 5] = "Particles";
|
|
1038
|
+
DrawLayer[DrawLayer["CanvasCleanup"] = 6] = "CanvasCleanup";
|
|
1039
|
+
DrawLayer[DrawLayer["Foreground"] = 7] = "Foreground";
|
|
1040
|
+
})(DrawLayer || (DrawLayer = {}));
|
|
1041
|
+
|
|
1032
1042
|
class OptionLoader {
|
|
1033
1043
|
load(data) {
|
|
1034
1044
|
if (isNull(data)) {
|
|
@@ -1182,6 +1192,8 @@
|
|
|
1182
1192
|
|
|
1183
1193
|
class Background extends OptionLoader {
|
|
1184
1194
|
color;
|
|
1195
|
+
draw;
|
|
1196
|
+
element;
|
|
1185
1197
|
image = "";
|
|
1186
1198
|
opacity = 1;
|
|
1187
1199
|
position = "";
|
|
@@ -1196,6 +1208,8 @@
|
|
|
1196
1208
|
if (data.color !== undefined) {
|
|
1197
1209
|
this.color = OptionsColor.create(this.color, data.color);
|
|
1198
1210
|
}
|
|
1211
|
+
loadProperty(this, "element", data.element);
|
|
1212
|
+
loadProperty(this, "draw", data.draw);
|
|
1199
1213
|
loadProperty(this, "image", data.image);
|
|
1200
1214
|
loadProperty(this, "position", data.position);
|
|
1201
1215
|
loadProperty(this, "repeat", data.repeat);
|
|
@@ -1741,7 +1755,7 @@
|
|
|
1741
1755
|
}
|
|
1742
1756
|
}
|
|
1743
1757
|
|
|
1744
|
-
const styleCache = new Map(), maxStyleCacheSize = 2000, rgbFixedPrecision = 2, hslFixedPrecision = 2, sdrReferenceWhiteNits = 203;
|
|
1758
|
+
const styleCache = new Map(), maxStyleCacheSize = 2000, rgbFixedPrecision = 2, hslFixedPrecision = 2, hdrRgbFixedPrecision = 4, hdrHslFixedPrecision = 4, sdrReferenceWhiteNits = 203, hdrAnimationScale = sdrReferenceWhiteNits / maxNits;
|
|
1745
1759
|
function getCachedStyle(key, generator) {
|
|
1746
1760
|
let cached = styleCache.get(key);
|
|
1747
1761
|
if (!cached) {
|
|
@@ -1881,6 +1895,17 @@
|
|
|
1881
1895
|
: lNormalized + sNormalized - lNormalized * sNormalized, temp2 = double * lNormalized - temp1, phaseThird = phaseNumerator / triple, red = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized + phaseThird)), green = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized)), blue = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized - phaseThird));
|
|
1882
1896
|
return { r: Math.round(red), g: Math.round(green), b: Math.round(blue) };
|
|
1883
1897
|
}
|
|
1898
|
+
function hslToRgbFloat(hsl) {
|
|
1899
|
+
const h = ((hsl.h % hMax) + hMax) % hMax, s = Math.max(sMin, Math.min(sMax, hsl.s)), l = Math.max(lMin, Math.min(lMax, hsl.l)), hNormalized = h / hMax, sNormalized = s / sMax, lNormalized = l / lMax;
|
|
1900
|
+
if (s === sMin) {
|
|
1901
|
+
const grayscaleValue = lNormalized * rgbMax;
|
|
1902
|
+
return { r: grayscaleValue, g: grayscaleValue, b: grayscaleValue };
|
|
1903
|
+
}
|
|
1904
|
+
const temp1 = lNormalized < half
|
|
1905
|
+
? lNormalized * (sNormalizedOffset + sNormalized)
|
|
1906
|
+
: lNormalized + sNormalized - lNormalized * sNormalized, temp2 = double * lNormalized - temp1, phaseThird = phaseNumerator / triple, red = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized + phaseThird)), green = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized)), blue = Math.min(rgbMax, rgbMax * hslChannel(temp2, temp1, hNormalized - phaseThird));
|
|
1907
|
+
return { r: red, g: green, b: blue };
|
|
1908
|
+
}
|
|
1884
1909
|
function hslaToRgba(hsla) {
|
|
1885
1910
|
const rgbResult = hslToRgb(hsla);
|
|
1886
1911
|
return {
|
|
@@ -1890,8 +1915,9 @@
|
|
|
1890
1915
|
r: rgbResult.r,
|
|
1891
1916
|
};
|
|
1892
1917
|
}
|
|
1893
|
-
function getRandomRgbColor(min) {
|
|
1894
|
-
const fixedMin = defaultRgbMin
|
|
1918
|
+
function getRandomRgbColor(min, hdr) {
|
|
1919
|
+
const fixedMin = defaultRgbMin;
|
|
1920
|
+
const fixedMax = rgbMax + identity, getRgbInRangeValue = () => Math.floor(getRandomInRange(fixedMin, fixedMax));
|
|
1895
1921
|
return {
|
|
1896
1922
|
b: getRgbInRangeValue(),
|
|
1897
1923
|
g: getRgbInRangeValue(),
|
|
@@ -1899,7 +1925,7 @@
|
|
|
1899
1925
|
};
|
|
1900
1926
|
}
|
|
1901
1927
|
function getStyleFromRgb(color, hdr, opacity) {
|
|
1902
|
-
const op = opacity ?? defaultOpacity$1, key = `rgb-${color.r.toFixed(
|
|
1928
|
+
const rgbPrecision = hdr ? hdrRgbFixedPrecision : rgbFixedPrecision, op = opacity ?? defaultOpacity$1, key = `rgb-${color.r.toFixed(rgbPrecision)}-${color.g.toFixed(rgbPrecision)}-${color.b.toFixed(rgbPrecision)}-${hdr ? "hdr" : "sdr"}-${op.toString()}`;
|
|
1903
1929
|
return getCachedStyle(key, () => (hdr ? getHdrStyleFromRgb(color, opacity) : getSdrStyleFromRgb(color, opacity)));
|
|
1904
1930
|
}
|
|
1905
1931
|
function getHdrStyleFromRgb(color, opacity, peakNits = maxNits) {
|
|
@@ -1910,9 +1936,9 @@
|
|
|
1910
1936
|
return `rgba(${color.r.toString()}, ${color.g.toString()}, ${color.b.toString()}, ${(opacity ?? defaultOpacity$1).toString()})`;
|
|
1911
1937
|
}
|
|
1912
1938
|
function getStyleFromHsl(color, hdr, opacity) {
|
|
1913
|
-
const op = opacity ?? defaultOpacity$1, key = `hsl-${color.h.toFixed(
|
|
1939
|
+
const hslPrecision = hdr ? hdrHslFixedPrecision : hslFixedPrecision, op = opacity ?? defaultOpacity$1, key = `hsl-${color.h.toFixed(hslPrecision)}-${color.s.toFixed(hslPrecision)}-${color.l.toFixed(hslPrecision)}-${hdr ? "hdr" : "sdr"}-${op.toString()}`;
|
|
1914
1940
|
return getCachedStyle(key, () => hdr
|
|
1915
|
-
? getStyleFromRgb(
|
|
1941
|
+
? getStyleFromRgb(hslToRgbFloat(color), true, opacity)
|
|
1916
1942
|
: `hsla(${color.h.toString()}, ${color.s.toString()}%, ${color.l.toString()}%, ${op.toString()})`);
|
|
1917
1943
|
}
|
|
1918
1944
|
function getHslFromAnimation(animation) {
|
|
@@ -1975,7 +2001,7 @@
|
|
|
1975
2001
|
colorValue.velocity = defaultVelocity;
|
|
1976
2002
|
}
|
|
1977
2003
|
}
|
|
1978
|
-
function updateColorValue(data, decrease, delta) {
|
|
2004
|
+
function updateColorValue(data, decrease, delta, hdr) {
|
|
1979
2005
|
const minLoops = 0, minDelay = 0, identity = 1, minVelocity = 0, minOffset = 0, velocityFactor = 3.6;
|
|
1980
2006
|
if (!data.enable ||
|
|
1981
2007
|
((data.maxLoops ?? minLoops) > minLoops && (data.loops ?? minLoops) > (data.maxLoops ?? minLoops))) {
|
|
@@ -1988,7 +2014,7 @@
|
|
|
1988
2014
|
if ((data.delayTime ?? minDelay) > minDelay && data.time < (data.delayTime ?? minDelay)) {
|
|
1989
2015
|
return;
|
|
1990
2016
|
}
|
|
1991
|
-
const offset = data.offset ? randomInRangeValue(data.offset) : minOffset, velocity = (data.velocity ?? minVelocity) * delta.factor + offset * velocityFactor, decay = data.decay ?? identity, max = data.max, min = data.min;
|
|
2017
|
+
const offset = data.offset ? randomInRangeValue(data.offset) : minOffset, velocity = ((data.velocity ?? minVelocity) * delta.factor + offset * velocityFactor) * (hdr ? hdrAnimationScale : identity), decay = data.decay ?? identity, max = data.max, min = data.min;
|
|
1992
2018
|
if (!decrease || data.status === AnimationStatus.increasing) {
|
|
1993
2019
|
data.value += velocity;
|
|
1994
2020
|
if (data.value > max) {
|
|
@@ -2015,14 +2041,14 @@
|
|
|
2015
2041
|
}
|
|
2016
2042
|
data.value = clamp(data.value, min, max);
|
|
2017
2043
|
}
|
|
2018
|
-
function updateColor(color, delta) {
|
|
2044
|
+
function updateColor(color, delta, hdr) {
|
|
2019
2045
|
if (!color) {
|
|
2020
2046
|
return;
|
|
2021
2047
|
}
|
|
2022
2048
|
const { h, s, l } = color;
|
|
2023
|
-
updateColorValue(h, false, delta);
|
|
2024
|
-
updateColorValue(s, true, delta);
|
|
2025
|
-
updateColorValue(l, true, delta);
|
|
2049
|
+
updateColorValue(h, false, delta, hdr);
|
|
2050
|
+
updateColorValue(s, true, delta, hdr);
|
|
2051
|
+
updateColorValue(l, true, delta, hdr);
|
|
2026
2052
|
}
|
|
2027
2053
|
function alterHsl(color, type, value) {
|
|
2028
2054
|
return {
|
|
@@ -2072,7 +2098,7 @@
|
|
|
2072
2098
|
}
|
|
2073
2099
|
|
|
2074
2100
|
async function loadBlendPlugin(engine) {
|
|
2075
|
-
engine.checkVersion("4.
|
|
2101
|
+
engine.checkVersion("4.3.1");
|
|
2076
2102
|
await engine.pluginManager.register(e => {
|
|
2077
2103
|
e.pluginManager.addPlugin(new BlendPlugin());
|
|
2078
2104
|
});
|
|
@@ -2109,7 +2135,7 @@
|
|
|
2109
2135
|
}
|
|
2110
2136
|
|
|
2111
2137
|
async function loadCircleShape(engine) {
|
|
2112
|
-
engine.checkVersion("4.
|
|
2138
|
+
engine.checkVersion("4.3.1");
|
|
2113
2139
|
await engine.pluginManager.register(e => {
|
|
2114
2140
|
e.pluginManager.addShape(["circle"], () => {
|
|
2115
2141
|
return Promise.resolve(new CircleDrawer());
|
|
@@ -2157,7 +2183,7 @@
|
|
|
2157
2183
|
}
|
|
2158
2184
|
|
|
2159
2185
|
async function loadHexColorPlugin(engine) {
|
|
2160
|
-
engine.checkVersion("4.
|
|
2186
|
+
engine.checkVersion("4.3.1");
|
|
2161
2187
|
await engine.pluginManager.register(e => {
|
|
2162
2188
|
e.pluginManager.addColorManager("hex", new HexColorManager());
|
|
2163
2189
|
});
|
|
@@ -2210,7 +2236,7 @@
|
|
|
2210
2236
|
}
|
|
2211
2237
|
|
|
2212
2238
|
async function loadHslColorPlugin(engine) {
|
|
2213
|
-
engine.checkVersion("4.
|
|
2239
|
+
engine.checkVersion("4.3.1");
|
|
2214
2240
|
await engine.pluginManager.register(e => {
|
|
2215
2241
|
e.pluginManager.addColorManager("hsl", new HslColorManager());
|
|
2216
2242
|
});
|
|
@@ -2234,7 +2260,7 @@
|
|
|
2234
2260
|
}
|
|
2235
2261
|
|
|
2236
2262
|
async function loadMovePlugin(engine) {
|
|
2237
|
-
engine.checkVersion("4.
|
|
2263
|
+
engine.checkVersion("4.3.1");
|
|
2238
2264
|
await engine.pluginManager.register(e => {
|
|
2239
2265
|
const moveEngine = e, movePluginManager = moveEngine.pluginManager;
|
|
2240
2266
|
movePluginManager.initializers.pathGenerators ??= new Map();
|
|
@@ -2444,7 +2470,7 @@
|
|
|
2444
2470
|
}
|
|
2445
2471
|
|
|
2446
2472
|
async function loadOpacityUpdater(engine) {
|
|
2447
|
-
engine.checkVersion("4.
|
|
2473
|
+
engine.checkVersion("4.3.1");
|
|
2448
2474
|
await engine.pluginManager.register(e => {
|
|
2449
2475
|
e.pluginManager.addParticleUpdater("opacity", container => {
|
|
2450
2476
|
return Promise.resolve(new OpacityUpdater(container));
|
|
@@ -2789,7 +2815,7 @@
|
|
|
2789
2815
|
}
|
|
2790
2816
|
|
|
2791
2817
|
async function loadOutModesUpdater(engine) {
|
|
2792
|
-
engine.checkVersion("4.
|
|
2818
|
+
engine.checkVersion("4.3.1");
|
|
2793
2819
|
await engine.pluginManager.register(e => {
|
|
2794
2820
|
e.pluginManager.addParticleUpdater("outModes", container => {
|
|
2795
2821
|
return Promise.resolve(new OutOfCanvasUpdater(container));
|
|
@@ -2854,13 +2880,13 @@
|
|
|
2854
2880
|
if (!this.isEnabled(particle)) {
|
|
2855
2881
|
return;
|
|
2856
2882
|
}
|
|
2857
|
-
updateColor(particle.fillColor, delta);
|
|
2858
|
-
updateColor(particle.strokeColor, delta);
|
|
2883
|
+
updateColor(particle.fillColor, delta, this.#container.hdr);
|
|
2884
|
+
updateColor(particle.strokeColor, delta, this.#container.hdr);
|
|
2859
2885
|
}
|
|
2860
2886
|
}
|
|
2861
2887
|
|
|
2862
2888
|
async function loadPaintUpdater(engine) {
|
|
2863
|
-
engine.checkVersion("4.
|
|
2889
|
+
engine.checkVersion("4.3.1");
|
|
2864
2890
|
await engine.pluginManager.register(e => {
|
|
2865
2891
|
e.pluginManager.addParticleUpdater("paint", container => {
|
|
2866
2892
|
return Promise.resolve(new PaintUpdater(e.pluginManager, container));
|
|
@@ -2915,7 +2941,7 @@
|
|
|
2915
2941
|
}
|
|
2916
2942
|
|
|
2917
2943
|
async function loadRgbColorPlugin(engine) {
|
|
2918
|
-
engine.checkVersion("4.
|
|
2944
|
+
engine.checkVersion("4.3.1");
|
|
2919
2945
|
await engine.pluginManager.register(e => {
|
|
2920
2946
|
e.pluginManager.addColorManager("rgb", new RgbColorManager());
|
|
2921
2947
|
});
|
|
@@ -3000,7 +3026,7 @@
|
|
|
3000
3026
|
}
|
|
3001
3027
|
|
|
3002
3028
|
async function loadSizeUpdater(engine) {
|
|
3003
|
-
engine.checkVersion("4.
|
|
3029
|
+
engine.checkVersion("4.3.1");
|
|
3004
3030
|
await engine.pluginManager.register(e => {
|
|
3005
3031
|
e.pluginManager.addParticleUpdater("size", container => {
|
|
3006
3032
|
return Promise.resolve(new SizeUpdater(container));
|
|
@@ -3009,7 +3035,7 @@
|
|
|
3009
3035
|
}
|
|
3010
3036
|
|
|
3011
3037
|
async function loadBasic(engine) {
|
|
3012
|
-
engine.checkVersion("4.
|
|
3038
|
+
engine.checkVersion("4.3.1");
|
|
3013
3039
|
await engine.pluginManager.register(async (e) => {
|
|
3014
3040
|
await Promise.all([
|
|
3015
3041
|
loadBlendPlugin(e),
|
|
@@ -3148,10 +3174,10 @@
|
|
|
3148
3174
|
}
|
|
3149
3175
|
}
|
|
3150
3176
|
class RenderManager {
|
|
3177
|
+
#backgroundElement;
|
|
3178
|
+
#backgroundWarnings;
|
|
3151
3179
|
#canvasClearPlugins;
|
|
3152
3180
|
#canvasManager;
|
|
3153
|
-
#canvasPaintPlugins;
|
|
3154
|
-
#clearDrawPlugins;
|
|
3155
3181
|
#colorPlugins;
|
|
3156
3182
|
#container;
|
|
3157
3183
|
#context;
|
|
@@ -3159,9 +3185,7 @@
|
|
|
3159
3185
|
#drawParticlePlugins;
|
|
3160
3186
|
#drawParticlesCleanupPlugins;
|
|
3161
3187
|
#drawParticlesSetupPlugins;
|
|
3162
|
-
#
|
|
3163
|
-
#drawSettingsCleanupPlugins;
|
|
3164
|
-
#drawSettingsSetupPlugins;
|
|
3188
|
+
#layers;
|
|
3165
3189
|
#pluginManager;
|
|
3166
3190
|
#postDrawUpdaters;
|
|
3167
3191
|
#preDrawUpdaters;
|
|
@@ -3173,18 +3197,25 @@
|
|
|
3173
3197
|
this.#container = container;
|
|
3174
3198
|
this.#canvasManager = canvasManager;
|
|
3175
3199
|
this.#context = null;
|
|
3200
|
+
this.#backgroundElement = null;
|
|
3201
|
+
this.#backgroundWarnings = new Set();
|
|
3176
3202
|
this.#preDrawUpdaters = [];
|
|
3177
3203
|
this.#postDrawUpdaters = [];
|
|
3178
|
-
this.#colorPlugins = [];
|
|
3179
3204
|
this.#canvasClearPlugins = [];
|
|
3180
|
-
this.#
|
|
3181
|
-
this.#clearDrawPlugins = [];
|
|
3205
|
+
this.#colorPlugins = [];
|
|
3182
3206
|
this.#drawParticlePlugins = [];
|
|
3183
3207
|
this.#drawParticlesCleanupPlugins = [];
|
|
3184
3208
|
this.#drawParticlesSetupPlugins = [];
|
|
3185
|
-
this.#
|
|
3186
|
-
|
|
3187
|
-
|
|
3209
|
+
this.#layers = {
|
|
3210
|
+
0: [],
|
|
3211
|
+
1: [],
|
|
3212
|
+
2: [],
|
|
3213
|
+
3: [],
|
|
3214
|
+
4: [],
|
|
3215
|
+
5: [],
|
|
3216
|
+
6: [],
|
|
3217
|
+
7: [],
|
|
3218
|
+
};
|
|
3188
3219
|
}
|
|
3189
3220
|
get settings() {
|
|
3190
3221
|
return this.#contextSettings;
|
|
@@ -3198,32 +3229,38 @@
|
|
|
3198
3229
|
});
|
|
3199
3230
|
}
|
|
3200
3231
|
clear() {
|
|
3201
|
-
let pluginHandled = false;
|
|
3202
3232
|
for (const plugin of this.#canvasClearPlugins) {
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
break;
|
|
3233
|
+
if (plugin.canvasClear?.() ?? false) {
|
|
3234
|
+
return;
|
|
3206
3235
|
}
|
|
3207
3236
|
}
|
|
3208
|
-
|
|
3209
|
-
|
|
3237
|
+
for (const layer of Object.values(DrawLayer)) {
|
|
3238
|
+
if (typeof layer === "number") {
|
|
3239
|
+
for (const plugin of this.#getLayerPlugins(layer)) {
|
|
3240
|
+
if (plugin.canvasClear?.() ?? false) {
|
|
3241
|
+
return;
|
|
3242
|
+
}
|
|
3243
|
+
}
|
|
3244
|
+
}
|
|
3210
3245
|
}
|
|
3211
3246
|
this.canvasClear();
|
|
3212
3247
|
}
|
|
3213
3248
|
destroy() {
|
|
3214
3249
|
this.stop();
|
|
3250
|
+
this.#backgroundElement = null;
|
|
3251
|
+
this.#backgroundWarnings.clear();
|
|
3215
3252
|
this.#preDrawUpdaters = [];
|
|
3216
3253
|
this.#postDrawUpdaters = [];
|
|
3217
|
-
this.#colorPlugins = [];
|
|
3218
3254
|
this.#canvasClearPlugins = [];
|
|
3219
|
-
this.#
|
|
3220
|
-
this.#clearDrawPlugins = [];
|
|
3255
|
+
this.#colorPlugins = [];
|
|
3221
3256
|
this.#drawParticlePlugins = [];
|
|
3222
3257
|
this.#drawParticlesCleanupPlugins = [];
|
|
3223
3258
|
this.#drawParticlesSetupPlugins = [];
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3259
|
+
for (const layer of Object.values(DrawLayer)) {
|
|
3260
|
+
if (typeof layer === "number") {
|
|
3261
|
+
this.#layers[layer] = [];
|
|
3262
|
+
}
|
|
3263
|
+
}
|
|
3227
3264
|
}
|
|
3228
3265
|
draw(cb) {
|
|
3229
3266
|
const ctx = this.#context;
|
|
@@ -3280,21 +3317,40 @@
|
|
|
3280
3317
|
});
|
|
3281
3318
|
}
|
|
3282
3319
|
drawParticles(delta) {
|
|
3283
|
-
const { particles } = this.#container;
|
|
3320
|
+
const { particles, actualOptions } = this.#container;
|
|
3284
3321
|
this.clear();
|
|
3285
3322
|
particles.update(delta);
|
|
3286
3323
|
this.draw(ctx => {
|
|
3287
|
-
|
|
3324
|
+
const width = this.#canvasManager.size.width, height = this.#canvasManager.size.height;
|
|
3325
|
+
if (this.#backgroundElement) {
|
|
3326
|
+
try {
|
|
3327
|
+
ctx.drawImage(this.#backgroundElement, originPoint.x, originPoint.y, width, height);
|
|
3328
|
+
}
|
|
3329
|
+
catch {
|
|
3330
|
+
this.#warnOnce("background-element-draw-error", "Error drawing background element onto canvas");
|
|
3331
|
+
}
|
|
3332
|
+
}
|
|
3333
|
+
const background = actualOptions.background;
|
|
3334
|
+
if (background.draw) {
|
|
3335
|
+
try {
|
|
3336
|
+
background.draw(ctx, delta);
|
|
3337
|
+
}
|
|
3338
|
+
catch {
|
|
3339
|
+
this.#warnOnce("background-draw-error", "Error in background.draw callback");
|
|
3340
|
+
}
|
|
3341
|
+
}
|
|
3342
|
+
for (const plugin of this.#getLayerPlugins(DrawLayer.BackgroundMask)) {
|
|
3343
|
+
plugin.canvasPaint?.();
|
|
3344
|
+
}
|
|
3345
|
+
for (const plugin of this.#getLayerPlugins(DrawLayer.CanvasSetup)) {
|
|
3288
3346
|
plugin.drawSettingsSetup?.(ctx, delta);
|
|
3289
3347
|
}
|
|
3290
|
-
for (const plugin of this.#
|
|
3348
|
+
for (const plugin of this.#getLayerPlugins(DrawLayer.PluginContent)) {
|
|
3291
3349
|
plugin.draw?.(ctx, delta);
|
|
3292
3350
|
}
|
|
3293
3351
|
particles.drawParticles(delta);
|
|
3294
|
-
for (const plugin of this.#
|
|
3352
|
+
for (const plugin of this.#getLayerPlugins(DrawLayer.CanvasCleanup)) {
|
|
3295
3353
|
plugin.clearDraw?.(ctx, delta);
|
|
3296
|
-
}
|
|
3297
|
-
for (const plugin of this.#drawSettingsCleanupPlugins) {
|
|
3298
3354
|
plugin.drawSettingsCleanup?.(ctx, delta);
|
|
3299
3355
|
}
|
|
3300
3356
|
});
|
|
@@ -3302,29 +3358,24 @@
|
|
|
3302
3358
|
init() {
|
|
3303
3359
|
this.initUpdaters();
|
|
3304
3360
|
this.initPlugins();
|
|
3361
|
+
this.#resolveBackgroundElement();
|
|
3305
3362
|
this.paint();
|
|
3306
3363
|
}
|
|
3307
3364
|
initPlugins() {
|
|
3308
|
-
this.#colorPlugins = [];
|
|
3309
3365
|
this.#canvasClearPlugins = [];
|
|
3310
|
-
this.#
|
|
3311
|
-
this.#clearDrawPlugins = [];
|
|
3366
|
+
this.#colorPlugins = [];
|
|
3312
3367
|
this.#drawParticlePlugins = [];
|
|
3313
3368
|
this.#drawParticlesSetupPlugins = [];
|
|
3314
3369
|
this.#drawParticlesCleanupPlugins = [];
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3370
|
+
for (const layer of Object.values(DrawLayer)) {
|
|
3371
|
+
if (typeof layer === "number") {
|
|
3372
|
+
this.#layers[layer] = [];
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3318
3375
|
for (const plugin of this.#container.plugins) {
|
|
3319
3376
|
if (plugin.particleFillColor ?? plugin.particleStrokeColor) {
|
|
3320
3377
|
this.#colorPlugins.push(plugin);
|
|
3321
3378
|
}
|
|
3322
|
-
if (plugin.canvasClear) {
|
|
3323
|
-
this.#canvasClearPlugins.push(plugin);
|
|
3324
|
-
}
|
|
3325
|
-
if (plugin.canvasPaint) {
|
|
3326
|
-
this.#canvasPaintPlugins.push(plugin);
|
|
3327
|
-
}
|
|
3328
3379
|
if (plugin.drawParticle) {
|
|
3329
3380
|
this.#drawParticlePlugins.push(plugin);
|
|
3330
3381
|
}
|
|
@@ -3334,17 +3385,20 @@
|
|
|
3334
3385
|
if (plugin.drawParticleCleanup) {
|
|
3335
3386
|
this.#drawParticlesCleanupPlugins.push(plugin);
|
|
3336
3387
|
}
|
|
3337
|
-
if (plugin.
|
|
3338
|
-
this.#
|
|
3388
|
+
if (plugin.canvasClear) {
|
|
3389
|
+
this.#canvasClearPlugins.push(plugin);
|
|
3390
|
+
}
|
|
3391
|
+
if (plugin.canvasPaint) {
|
|
3392
|
+
this.#getLayerPlugins(DrawLayer.BackgroundMask).push(plugin);
|
|
3339
3393
|
}
|
|
3340
3394
|
if (plugin.drawSettingsSetup) {
|
|
3341
|
-
this.#
|
|
3395
|
+
this.#getLayerPlugins(DrawLayer.CanvasSetup).push(plugin);
|
|
3342
3396
|
}
|
|
3343
|
-
if (plugin.
|
|
3344
|
-
this.#
|
|
3397
|
+
if (plugin.draw) {
|
|
3398
|
+
this.#getLayerPlugins(DrawLayer.PluginContent).push(plugin);
|
|
3345
3399
|
}
|
|
3346
|
-
if (plugin.clearDraw) {
|
|
3347
|
-
this.#
|
|
3400
|
+
if (plugin.clearDraw ?? plugin.drawSettingsCleanup) {
|
|
3401
|
+
this.#getLayerPlugins(DrawLayer.CanvasCleanup).push(plugin);
|
|
3348
3402
|
}
|
|
3349
3403
|
}
|
|
3350
3404
|
}
|
|
@@ -3362,7 +3416,7 @@
|
|
|
3362
3416
|
}
|
|
3363
3417
|
paint() {
|
|
3364
3418
|
let handled = false;
|
|
3365
|
-
for (const plugin of this.#
|
|
3419
|
+
for (const plugin of this.#getLayerPlugins(DrawLayer.BackgroundMask)) {
|
|
3366
3420
|
handled = plugin.canvasPaint?.() ?? false;
|
|
3367
3421
|
if (handled) {
|
|
3368
3422
|
break;
|
|
@@ -3535,6 +3589,9 @@
|
|
|
3535
3589
|
}
|
|
3536
3590
|
drawer.beforeDraw(data);
|
|
3537
3591
|
}
|
|
3592
|
+
#getLayerPlugins(layer) {
|
|
3593
|
+
return this.#layers[layer];
|
|
3594
|
+
}
|
|
3538
3595
|
#getPluginParticleColors(particle) {
|
|
3539
3596
|
let fColor, sColor;
|
|
3540
3597
|
for (const plugin of this.#colorPlugins) {
|
|
@@ -3552,6 +3609,39 @@
|
|
|
3552
3609
|
this.#reusablePluginColors[sColorIndex] = sColor;
|
|
3553
3610
|
return this.#reusablePluginColors;
|
|
3554
3611
|
}
|
|
3612
|
+
#resolveBackgroundElement() {
|
|
3613
|
+
const background = this.#container.actualOptions.background;
|
|
3614
|
+
this.#backgroundElement = null;
|
|
3615
|
+
if (!background.element) {
|
|
3616
|
+
return;
|
|
3617
|
+
}
|
|
3618
|
+
if (typeof background.element === "string") {
|
|
3619
|
+
if (typeof document !== "undefined") {
|
|
3620
|
+
const node = document.querySelector(background.element);
|
|
3621
|
+
if (node instanceof HTMLCanvasElement || node instanceof HTMLVideoElement || node instanceof HTMLImageElement) {
|
|
3622
|
+
this.#backgroundElement = node;
|
|
3623
|
+
}
|
|
3624
|
+
else if (node) {
|
|
3625
|
+
this.#warnOnce("background-element-not-supported", `Background element "${background.element}" is not a supported drawable element (canvas, video, or img)`);
|
|
3626
|
+
}
|
|
3627
|
+
else {
|
|
3628
|
+
this.#warnOnce("background-element-not-found", `Background element selector "${background.element}" not found`);
|
|
3629
|
+
}
|
|
3630
|
+
}
|
|
3631
|
+
}
|
|
3632
|
+
else if (background.element instanceof HTMLCanvasElement ||
|
|
3633
|
+
background.element instanceof OffscreenCanvas ||
|
|
3634
|
+
background.element instanceof HTMLVideoElement ||
|
|
3635
|
+
background.element instanceof HTMLImageElement) {
|
|
3636
|
+
this.#backgroundElement = background.element;
|
|
3637
|
+
}
|
|
3638
|
+
}
|
|
3639
|
+
#warnOnce(key, message) {
|
|
3640
|
+
if (!this.#backgroundWarnings.has(key)) {
|
|
3641
|
+
this.#backgroundWarnings.add(key);
|
|
3642
|
+
getLogger().warning(message);
|
|
3643
|
+
}
|
|
3644
|
+
}
|
|
3555
3645
|
}
|
|
3556
3646
|
|
|
3557
3647
|
const transferredCanvases = new WeakMap(), getTransferredCanvas = (canvas) => {
|
|
@@ -4128,7 +4218,6 @@
|
|
|
4128
4218
|
}
|
|
4129
4219
|
class Particle {
|
|
4130
4220
|
backColor;
|
|
4131
|
-
bubble;
|
|
4132
4221
|
destroyed;
|
|
4133
4222
|
direction;
|
|
4134
4223
|
effect;
|
|
@@ -4162,7 +4251,6 @@
|
|
|
4162
4251
|
shapeData;
|
|
4163
4252
|
sides;
|
|
4164
4253
|
size;
|
|
4165
|
-
slow;
|
|
4166
4254
|
spawning;
|
|
4167
4255
|
strokeColor;
|
|
4168
4256
|
strokeOpacity;
|
|
@@ -4184,18 +4272,25 @@
|
|
|
4184
4272
|
d: 1,
|
|
4185
4273
|
};
|
|
4186
4274
|
#container;
|
|
4275
|
+
#modifiers = [];
|
|
4187
4276
|
#pluginManager;
|
|
4188
4277
|
constructor(pluginManager, container) {
|
|
4189
4278
|
this.#pluginManager = pluginManager;
|
|
4190
4279
|
this.#container = container;
|
|
4191
4280
|
}
|
|
4281
|
+
addModifier(modifier) {
|
|
4282
|
+
this.#modifiers.push(modifier);
|
|
4283
|
+
this.#modifiers.sort((a, b) => a.priority - b.priority);
|
|
4284
|
+
}
|
|
4285
|
+
clearModifiers() {
|
|
4286
|
+
this.#modifiers.length = 0;
|
|
4287
|
+
}
|
|
4192
4288
|
destroy(override) {
|
|
4193
4289
|
if (this.unbreakable || this.destroyed) {
|
|
4194
4290
|
return;
|
|
4195
4291
|
}
|
|
4196
4292
|
this.destroyed = true;
|
|
4197
|
-
this.
|
|
4198
|
-
this.slow.inRange = false;
|
|
4293
|
+
this.clearModifiers();
|
|
4199
4294
|
const container = this.#container, shapeDrawer = this.shape ? container.shapeDrawers.get(this.shape) : undefined;
|
|
4200
4295
|
shapeDrawer?.particleDestroy?.(this);
|
|
4201
4296
|
for (const plugin of container.particleDestroyedPlugins) {
|
|
@@ -4217,13 +4312,16 @@
|
|
|
4217
4312
|
return this.rotation + (this.pathRotation ? this.velocity.angle : defaultAngle);
|
|
4218
4313
|
}
|
|
4219
4314
|
getFillColor() {
|
|
4220
|
-
return this.#getRollColor(this
|
|
4315
|
+
return this.#getRollColor(this.#applyModifiers(getHslFromAnimation(this.fillColor), m => m.fillColor));
|
|
4221
4316
|
}
|
|
4222
4317
|
getMass() {
|
|
4223
4318
|
return this.getRadius() ** squareExp * Math.PI * half;
|
|
4224
4319
|
}
|
|
4320
|
+
getModifier(id) {
|
|
4321
|
+
return this.#modifiers.find(m => m.id === id);
|
|
4322
|
+
}
|
|
4225
4323
|
getOpacity() {
|
|
4226
|
-
const zIndexOptions = this.options.zIndex, zIndexFactor = zIndexFactorOffset - this.zIndexFactor, zOpacityFactor = zIndexFactor ** zIndexOptions.opacityRate,
|
|
4324
|
+
const zIndexOptions = this.options.zIndex, zIndexFactor = zIndexFactorOffset - this.zIndexFactor, zOpacityFactor = zIndexFactor ** zIndexOptions.opacityRate, baseOpacity = getRangeValue(this.opacity?.value ?? defaultOpacity$1), modifierOpacity = this.#applyModifiers(undefined, m => m.opacity), opacity = modifierOpacity ?? baseOpacity, fillOpacity = this.fillOpacity ?? defaultOpacity$1, strokeOpacity = this.strokeOpacity ?? defaultOpacity$1;
|
|
4227
4325
|
this.#cachedOpacityData.fillOpacity = opacity * fillOpacity * zOpacityFactor;
|
|
4228
4326
|
this.#cachedOpacityData.opacity = opacity * zOpacityFactor;
|
|
4229
4327
|
this.#cachedOpacityData.strokeOpacity = opacity * strokeOpacity * zOpacityFactor;
|
|
@@ -4236,7 +4334,7 @@
|
|
|
4236
4334
|
return this.#cachedPosition;
|
|
4237
4335
|
}
|
|
4238
4336
|
getRadius() {
|
|
4239
|
-
return this.
|
|
4337
|
+
return this.#applyModifiers(this.size.value, m => m.radius);
|
|
4240
4338
|
}
|
|
4241
4339
|
getRotateData() {
|
|
4242
4340
|
const angle = this.getAngle();
|
|
@@ -4245,7 +4343,7 @@
|
|
|
4245
4343
|
return this.#cachedRotateData;
|
|
4246
4344
|
}
|
|
4247
4345
|
getStrokeColor() {
|
|
4248
|
-
return this.#getRollColor(this
|
|
4346
|
+
return this.#getRollColor(this.#applyModifiers(getHslFromAnimation(this.strokeColor), m => m.strokeColor));
|
|
4249
4347
|
}
|
|
4250
4348
|
getTransformData(externalTransform) {
|
|
4251
4349
|
const rotateData = this.getRotateData(), rotating = this.isRotating;
|
|
@@ -4265,13 +4363,6 @@
|
|
|
4265
4363
|
this.options = resolveParticleOptions(this, container, this.#pluginManager, overrideOptions);
|
|
4266
4364
|
container.retina.initParticle(this);
|
|
4267
4365
|
runUpdaterPreInit(container.particleUpdaters, this);
|
|
4268
|
-
this.bubble = {
|
|
4269
|
-
inRange: false,
|
|
4270
|
-
};
|
|
4271
|
-
this.slow = {
|
|
4272
|
-
inRange: false,
|
|
4273
|
-
factor: 1,
|
|
4274
|
-
};
|
|
4275
4366
|
this.#initPosition(position);
|
|
4276
4367
|
this.initialVelocity = this.#calculateVelocity();
|
|
4277
4368
|
this.velocity = this.initialVelocity.copy();
|
|
@@ -4311,11 +4402,29 @@
|
|
|
4311
4402
|
isVisible() {
|
|
4312
4403
|
return !this.destroyed && !this.spawning && this.isInsideCanvas();
|
|
4313
4404
|
}
|
|
4405
|
+
removeModifier(id) {
|
|
4406
|
+
const idx = this.#modifiers.findIndex(m => m.id === id);
|
|
4407
|
+
if (idx >= defaultAngle) {
|
|
4408
|
+
this.#modifiers.splice(idx, identity);
|
|
4409
|
+
}
|
|
4410
|
+
}
|
|
4314
4411
|
reset() {
|
|
4315
4412
|
for (const updater of this.#container.particleUpdaters) {
|
|
4316
4413
|
updater.reset?.(this);
|
|
4317
4414
|
}
|
|
4318
4415
|
}
|
|
4416
|
+
#applyModifiers(base, getter) {
|
|
4417
|
+
let value = base;
|
|
4418
|
+
for (const mod of this.#modifiers) {
|
|
4419
|
+
if (mod.enabled) {
|
|
4420
|
+
const override = getter(mod);
|
|
4421
|
+
if (override !== undefined) {
|
|
4422
|
+
value = override;
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
}
|
|
4426
|
+
return value;
|
|
4427
|
+
}
|
|
4319
4428
|
#calcPosition(position, zIndex) {
|
|
4320
4429
|
let tryCount = defaultRetryCount, posVec = position ? Vector3d.create(position.x, position.y, zIndex) : undefined;
|
|
4321
4430
|
const container = this.#container, plugins = container.particlePositionPlugins, outModes = this.options.move.outModes, radius = this.getRadius(), canvasSize = container.canvas.size;
|
|
@@ -5417,6 +5526,7 @@
|
|
|
5417
5526
|
});
|
|
5418
5527
|
|
|
5419
5528
|
class BlendPluginInstance {
|
|
5529
|
+
layer = DrawLayer.CanvasSetup;
|
|
5420
5530
|
#container;
|
|
5421
5531
|
#defaultCompositeValue;
|
|
5422
5532
|
constructor(container) {
|
|
@@ -5562,7 +5672,8 @@
|
|
|
5562
5672
|
particle.lastPathTime -= pathDelay;
|
|
5563
5673
|
}
|
|
5564
5674
|
function getProximitySpeedFactor(particle) {
|
|
5565
|
-
|
|
5675
|
+
const mod = particle.getModifier("slow");
|
|
5676
|
+
return mod?.enabled ? (mod.speedFactor ?? identity) : identity;
|
|
5566
5677
|
}
|
|
5567
5678
|
function initSpin(container, particle) {
|
|
5568
5679
|
const options = particle.options, spinOptions = options.move.spin;
|