@tsparticles/preset-ambient 4.3.2 → 4.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.
@@ -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.3.2 */
2
+ /* Preset v4.4.0 */
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) :
@@ -797,7 +797,7 @@
797
797
  return this.#domArray;
798
798
  }
799
799
  get version() {
800
- return "4.3.2";
800
+ return "4.4.0";
801
801
  }
802
802
  addEventListener(type, listener) {
803
803
  this.#eventDispatcher.addEventListener(type, listener);
@@ -878,6 +878,10 @@
878
878
  }
879
879
 
880
880
  function initEngine() {
881
+ const existing = globalThis.tsParticles;
882
+ if (existing?.pluginManager) {
883
+ return existing;
884
+ }
881
885
  return new Engine();
882
886
  }
883
887
 
@@ -975,6 +979,15 @@
975
979
  AnimationMode["random"] = "random";
976
980
  })(AnimationMode || (AnimationMode = {}));
977
981
 
982
+ var HdrMode;
983
+ (function (HdrMode) {
984
+ HdrMode["standard"] = "standard";
985
+ HdrMode["natural"] = "natural";
986
+ HdrMode["vivid"] = "vivid";
987
+ HdrMode["cinematic"] = "cinematic";
988
+ HdrMode["dynamic"] = "dynamic";
989
+ })(HdrMode || (HdrMode = {}));
990
+
978
991
  var LimitMode;
979
992
  (function (LimitMode) {
980
993
  LimitMode["delete"] = "delete";
@@ -1230,6 +1243,29 @@
1230
1243
  }
1231
1244
  }
1232
1245
 
1246
+ const defaultPeakNits = 400, minPeakNits = 0, toStringValue = (value) => String(value);
1247
+ class HDROptions extends OptionLoader {
1248
+ enable = true;
1249
+ mode = HdrMode.standard;
1250
+ peakNits = defaultPeakNits;
1251
+ doLoad(data) {
1252
+ if (data.enable !== undefined && !isBoolean(data.enable)) {
1253
+ throw new Error(`Invalid HDR "enable" value: expected a boolean, got "${String(data.enable)}"`);
1254
+ }
1255
+ if (data.mode !== undefined &&
1256
+ (typeof data.mode !== "string" || !Object.values(HdrMode).includes(data.mode))) {
1257
+ throw new Error(`Invalid HDR "mode" value: expected one of ${Object.values(HdrMode).join(", ")}, got "${toStringValue(data.mode)}"`);
1258
+ }
1259
+ if (data.peakNits !== undefined &&
1260
+ (!isNumber(data.peakNits) || !Number.isFinite(data.peakNits) || data.peakNits <= minPeakNits)) {
1261
+ throw new Error(`Invalid HDR "peakNits" value: expected a positive number, got "${String(data.peakNits)}"`);
1262
+ }
1263
+ loadProperty(this, "enable", data.enable);
1264
+ loadProperty(this, "mode", data.mode);
1265
+ loadProperty(this, "peakNits", data.peakNits);
1266
+ }
1267
+ }
1268
+
1233
1269
  class ResizeEvent extends OptionLoader {
1234
1270
  delay = 0.5;
1235
1271
  enable = true;
@@ -1673,7 +1709,7 @@
1673
1709
  duration = 0;
1674
1710
  fpsLimit = 120;
1675
1711
  fullScreen;
1676
- hdr = true;
1712
+ hdr;
1677
1713
  key;
1678
1714
  name;
1679
1715
  palette;
@@ -1693,6 +1729,7 @@
1693
1729
  this.#container = container;
1694
1730
  this.background = new Background();
1695
1731
  this.fullScreen = new FullScreen();
1732
+ this.hdr = new HDROptions();
1696
1733
  this.particles = loadParticlesOptions(this.#pluginManager, this.#container);
1697
1734
  this.resize = new ResizeEvent();
1698
1735
  }
@@ -1715,7 +1752,15 @@
1715
1752
  loadProperty(this, "detectRetina", data.detectRetina);
1716
1753
  loadRangeProperty(this, "duration", data.duration);
1717
1754
  loadProperty(this, "fpsLimit", data.fpsLimit);
1718
- loadProperty(this, "hdr", data.hdr);
1755
+ const hdrData = data.hdr;
1756
+ if (isBoolean(hdrData)) {
1757
+ this.hdr.enable = hdrData;
1758
+ this.hdr.mode = HdrMode.standard;
1759
+ this.hdr.peakNits = 400;
1760
+ }
1761
+ else {
1762
+ this.hdr.load(hdrData);
1763
+ }
1719
1764
  loadProperty(this, "pauseOnBlur", data.pauseOnBlur);
1720
1765
  loadProperty(this, "pauseOnOutsideViewport", data.pauseOnOutsideViewport);
1721
1766
  loadProperty(this, "zLayers", data.zLayers);
@@ -1758,7 +1803,7 @@
1758
1803
  }
1759
1804
  }
1760
1805
 
1761
- const styleCache = new Map(), maxStyleCacheSize = 2000, rgbFixedPrecision = 2, hslFixedPrecision = 2, hdrRgbFixedPrecision = 4, hdrHslFixedPrecision = 4, sdrReferenceWhiteNits = 203, hdrAnimationScale = sdrReferenceWhiteNits / maxNits;
1806
+ const styleCache = new Map(), maxStyleCacheSize = 2000, rgbFixedPrecision = 2, hslFixedPrecision = 2, hdrRgbFixedPrecision = 4, hdrHslFixedPrecision = 4, sdrReferenceWhiteNits = 203, acesA = 2.51, acesB = 0.03, acesC = 2.43, acesD = 0.59, acesE = 0.14, saturationBoost = 1.15, lightnessBoost = 1.05, temperatureR = 1.05, temperatureB = 0.95, contrastFactor = 1.1, luminanceR = 0.2126, luminanceG = 0.7152, luminanceB = 0.0722, dynamicLuminanceFactor = 2, channelCount = 3;
1762
1807
  function getCachedStyle(key, generator) {
1763
1808
  let cached = styleCache.get(key);
1764
1809
  if (!cached) {
@@ -1770,6 +1815,42 @@
1770
1815
  }
1771
1816
  return cached;
1772
1817
  }
1818
+ function acesFilmic(x) {
1819
+ return clamp((x * (acesA * x + acesB)) / (x * (acesC * x + acesD) + acesE), none, one);
1820
+ }
1821
+ function applyHdrModeAdjustments(r, g, b, mode, maxChannel) {
1822
+ switch (mode) {
1823
+ case HdrMode.vivid: {
1824
+ const avg = (r + g + b) / channelCount;
1825
+ return {
1826
+ b: clamp(clamp(avg + (b - avg) * saturationBoost, none, maxChannel) * lightnessBoost, none, maxChannel),
1827
+ g: clamp(clamp(avg + (g - avg) * saturationBoost, none, maxChannel) * lightnessBoost, none, maxChannel),
1828
+ r: clamp(clamp(avg + (r - avg) * saturationBoost, none, maxChannel) * lightnessBoost, none, maxChannel),
1829
+ };
1830
+ }
1831
+ case HdrMode.cinematic: {
1832
+ const tempR = r * temperatureR, tempB = b * temperatureB, avg = (tempR + g + tempB) / channelCount;
1833
+ return {
1834
+ b: clamp(avg + (tempB - avg) * contrastFactor, none, maxChannel),
1835
+ g: clamp(avg + (g - avg) * contrastFactor, none, maxChannel),
1836
+ r: clamp(avg + (tempR - avg) * contrastFactor, none, maxChannel),
1837
+ };
1838
+ }
1839
+ case HdrMode.dynamic: {
1840
+ const luminance = luminanceR * r + luminanceG * g + luminanceB * b, vividWeight = Math.min(one, luminance * dynamicLuminanceFactor), naturalWeight = one - vividWeight, avg = (r + g + b) / channelCount, vividR = clamp(avg + (r - avg) * saturationBoost, none, maxChannel) * lightnessBoost, vividG = clamp(avg + (g - avg) * saturationBoost, none, maxChannel) * lightnessBoost, vividB = clamp(avg + (b - avg) * saturationBoost, none, maxChannel) * lightnessBoost;
1841
+ return {
1842
+ b: clamp(b * naturalWeight + vividB * vividWeight, none, maxChannel),
1843
+ g: clamp(g * naturalWeight + vividG * vividWeight, none, maxChannel),
1844
+ r: clamp(r * naturalWeight + vividR * vividWeight, none, maxChannel),
1845
+ };
1846
+ }
1847
+ case HdrMode.standard:
1848
+ return { b, g, r };
1849
+ case HdrMode.natural:
1850
+ default:
1851
+ return { b, g, r };
1852
+ }
1853
+ }
1773
1854
  function stringToRgba(pluginManager, input) {
1774
1855
  if (!input) {
1775
1856
  return;
@@ -1927,21 +2008,40 @@
1927
2008
  r: getRgbInRangeValue(),
1928
2009
  };
1929
2010
  }
1930
- function getStyleFromRgb(color, hdr, opacity) {
1931
- 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()}`;
1932
- return getCachedStyle(key, () => (hdr ? getHdrStyleFromRgb(color, opacity) : getSdrStyleFromRgb(color, opacity)));
2011
+ function getStyleFromRgb(color, hdr, opacity, peakNits, mode) {
2012
+ const rgbPrecision = hdr ? hdrRgbFixedPrecision : rgbFixedPrecision, op = opacity ?? defaultOpacity$1, key = hdr
2013
+ ? `rgb-${color.r.toFixed(rgbPrecision)}-${color.g.toFixed(rgbPrecision)}-${color.b.toFixed(rgbPrecision)}-hdr-${op.toString()}-${(peakNits ?? maxNits).toString()}-${mode ?? HdrMode.standard}`
2014
+ : `rgb-${color.r.toFixed(rgbPrecision)}-${color.g.toFixed(rgbPrecision)}-${color.b.toFixed(rgbPrecision)}-sdr-${op.toString()}`;
2015
+ return getCachedStyle(key, () => hdr ? getHdrStyleFromRgb(color, opacity, peakNits, mode) : getSdrStyleFromRgb(color, opacity));
2016
+ }
2017
+ function getHdrStyleFromRgb(color, opacity, peakNits = maxNits, mode = HdrMode.standard) {
2018
+ const headroom = peakNits / sdrReferenceWhiteNits, middleGray = 0.18, mapped = hdrToneMapColor(color, headroom, middleGray, mode);
2019
+ return `color(display-p3 ${mapped.r.toString()} ${mapped.g.toString()} ${mapped.b.toString()} / ${(opacity ?? defaultOpacity$1).toString()})`;
1933
2020
  }
1934
- function getHdrStyleFromRgb(color, opacity, peakNits = maxNits) {
1935
- const headroom = peakNits / sdrReferenceWhiteNits;
1936
- return `color(display-p3 ${((color.r / rgbMax) * headroom).toString()} ${((color.g / rgbMax) * headroom).toString()} ${((color.b / rgbMax) * headroom).toString()} / ${(opacity ?? defaultOpacity$1).toString()})`;
2021
+ function hdrToneMapColor(color, headroom, middleGray, mode) {
2022
+ const rNorm = color.r / rgbMax, gNorm = color.g / rgbMax, bNorm = color.b / rgbMax;
2023
+ if (mode !== HdrMode.natural && mode !== HdrMode.vivid && mode !== HdrMode.cinematic && mode !== HdrMode.dynamic) {
2024
+ return { b: bNorm, g: gNorm, r: rNorm };
2025
+ }
2026
+ const maxChannel = Math.max(one, headroom), luminance = luminanceR * rNorm + luminanceG * gNorm + luminanceB * bNorm, mappedLuminance = hdrToneMap(luminance, headroom, middleGray), scale = luminance > none ? mappedLuminance / luminance : one;
2027
+ return applyHdrModeAdjustments(clamp(rNorm * scale, none, maxChannel), clamp(gNorm * scale, none, maxChannel), clamp(bNorm * scale, none, maxChannel), mode, maxChannel);
2028
+ }
2029
+ function hdrToneMap(normalized, headroom, middleGray) {
2030
+ if (normalized <= middleGray) {
2031
+ return acesFilmic(normalized);
2032
+ }
2033
+ const expanded = normalized + (normalized - middleGray) * (headroom - one);
2034
+ return acesFilmic(expanded);
1937
2035
  }
1938
2036
  function getSdrStyleFromRgb(color, opacity) {
1939
2037
  return `rgba(${color.r.toString()}, ${color.g.toString()}, ${color.b.toString()}, ${(opacity ?? defaultOpacity$1).toString()})`;
1940
2038
  }
1941
- function getStyleFromHsl(color, hdr, opacity) {
1942
- 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()}`;
2039
+ function getStyleFromHsl(color, hdr, opacity, peakNits, mode) {
2040
+ const hslPrecision = hdr ? hdrHslFixedPrecision : hslFixedPrecision, op = opacity ?? defaultOpacity$1, key = hdr
2041
+ ? `hsl-${color.h.toFixed(hslPrecision)}-${color.s.toFixed(hslPrecision)}-${color.l.toFixed(hslPrecision)}-hdr-${op.toString()}-${(peakNits ?? maxNits).toString()}-${mode ?? HdrMode.standard}`
2042
+ : `hsl-${color.h.toFixed(hslPrecision)}-${color.s.toFixed(hslPrecision)}-${color.l.toFixed(hslPrecision)}-sdr-${op.toString()}`;
1943
2043
  return getCachedStyle(key, () => hdr
1944
- ? getStyleFromRgb(hslToRgbFloat(color), true, opacity)
2044
+ ? getStyleFromRgb(hslToRgbFloat(color), true, opacity, peakNits, mode)
1945
2045
  : `hsla(${color.h.toString()}, ${color.s.toString()}%, ${color.l.toString()}%, ${op.toString()})`);
1946
2046
  }
1947
2047
  function getHslFromAnimation(animation) {
@@ -2004,7 +2104,7 @@
2004
2104
  colorValue.velocity = defaultVelocity;
2005
2105
  }
2006
2106
  }
2007
- function updateColorValue(data, decrease, delta, hdr) {
2107
+ function updateColorValue(data, decrease, delta, _hdr) {
2008
2108
  const minLoops = 0, minDelay = 0, identity = 1, minVelocity = 0, minOffset = 0, velocityFactor = 3.6;
2009
2109
  if (!data.enable ||
2010
2110
  ((data.maxLoops ?? minLoops) > minLoops && (data.loops ?? minLoops) > (data.maxLoops ?? minLoops))) {
@@ -2017,7 +2117,7 @@
2017
2117
  if ((data.delayTime ?? minDelay) > minDelay && data.time < (data.delayTime ?? minDelay)) {
2018
2118
  return;
2019
2119
  }
2020
- 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;
2120
+ 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;
2021
2121
  if (!decrease || data.status === AnimationStatus.increasing) {
2022
2122
  data.value += velocity;
2023
2123
  if (data.value > max) {
@@ -2049,9 +2149,9 @@
2049
2149
  return;
2050
2150
  }
2051
2151
  const { h, s, l } = color;
2052
- updateColorValue(h, false, delta, hdr);
2053
- updateColorValue(s, true, delta, hdr);
2054
- updateColorValue(l, true, delta, hdr);
2152
+ updateColorValue(h, false, delta);
2153
+ updateColorValue(s, true, delta);
2154
+ updateColorValue(l, true, delta);
2055
2155
  }
2056
2156
  function alterHsl(color, type, value) {
2057
2157
  return {
@@ -2101,7 +2201,7 @@
2101
2201
  }
2102
2202
 
2103
2203
  async function loadBlendPlugin(engine) {
2104
- engine.checkVersion("4.3.2");
2204
+ engine.checkVersion("4.4.0");
2105
2205
  await engine.pluginManager.register(e => {
2106
2206
  e.pluginManager.addPlugin(new BlendPlugin());
2107
2207
  });
@@ -2138,7 +2238,7 @@
2138
2238
  }
2139
2239
 
2140
2240
  async function loadCircleShape(engine) {
2141
- engine.checkVersion("4.3.2");
2241
+ engine.checkVersion("4.4.0");
2142
2242
  await engine.pluginManager.register(e => {
2143
2243
  e.pluginManager.addShape(["circle"], () => {
2144
2244
  return Promise.resolve(new CircleDrawer());
@@ -2186,7 +2286,7 @@
2186
2286
  }
2187
2287
 
2188
2288
  async function loadHexColorPlugin(engine) {
2189
- engine.checkVersion("4.3.2");
2289
+ engine.checkVersion("4.4.0");
2190
2290
  await engine.pluginManager.register(e => {
2191
2291
  e.pluginManager.addColorManager("hex", new HexColorManager());
2192
2292
  });
@@ -2239,7 +2339,7 @@
2239
2339
  }
2240
2340
 
2241
2341
  async function loadHslColorPlugin(engine) {
2242
- engine.checkVersion("4.3.2");
2342
+ engine.checkVersion("4.4.0");
2243
2343
  await engine.pluginManager.register(e => {
2244
2344
  e.pluginManager.addColorManager("hsl", new HslColorManager());
2245
2345
  });
@@ -2263,7 +2363,7 @@
2263
2363
  }
2264
2364
 
2265
2365
  async function loadMovePlugin(engine) {
2266
- engine.checkVersion("4.3.2");
2366
+ engine.checkVersion("4.4.0");
2267
2367
  await engine.pluginManager.register(e => {
2268
2368
  const moveEngine = e, movePluginManager = moveEngine.pluginManager;
2269
2369
  movePluginManager.initializers.pathGenerators ??= new Map();
@@ -2473,7 +2573,7 @@
2473
2573
  }
2474
2574
 
2475
2575
  async function loadOpacityUpdater(engine) {
2476
- engine.checkVersion("4.3.2");
2576
+ engine.checkVersion("4.4.0");
2477
2577
  await engine.pluginManager.register(e => {
2478
2578
  e.pluginManager.addParticleUpdater("opacity", container => {
2479
2579
  return Promise.resolve(new OpacityUpdater(container));
@@ -2818,7 +2918,7 @@
2818
2918
  }
2819
2919
 
2820
2920
  async function loadOutModesUpdater(engine) {
2821
- engine.checkVersion("4.3.2");
2921
+ engine.checkVersion("4.4.0");
2822
2922
  await engine.pluginManager.register(e => {
2823
2923
  e.pluginManager.addParticleUpdater("outModes", container => {
2824
2924
  return Promise.resolve(new OutOfCanvasUpdater(container));
@@ -2889,7 +2989,7 @@
2889
2989
  }
2890
2990
 
2891
2991
  async function loadPaintUpdater(engine) {
2892
- engine.checkVersion("4.3.2");
2992
+ engine.checkVersion("4.4.0");
2893
2993
  await engine.pluginManager.register(e => {
2894
2994
  e.pluginManager.addParticleUpdater("paint", container => {
2895
2995
  return Promise.resolve(new PaintUpdater(e.pluginManager, container));
@@ -2944,7 +3044,7 @@
2944
3044
  }
2945
3045
 
2946
3046
  async function loadRgbColorPlugin(engine) {
2947
- engine.checkVersion("4.3.2");
3047
+ engine.checkVersion("4.4.0");
2948
3048
  await engine.pluginManager.register(e => {
2949
3049
  e.pluginManager.addColorManager("rgb", new RgbColorManager());
2950
3050
  });
@@ -3029,7 +3129,7 @@
3029
3129
  }
3030
3130
 
3031
3131
  async function loadSizeUpdater(engine) {
3032
- engine.checkVersion("4.3.2");
3132
+ engine.checkVersion("4.4.0");
3033
3133
  await engine.pluginManager.register(e => {
3034
3134
  e.pluginManager.addParticleUpdater("size", container => {
3035
3135
  return Promise.resolve(new SizeUpdater(container));
@@ -3038,7 +3138,7 @@
3038
3138
  }
3039
3139
 
3040
3140
  async function loadBasic(engine) {
3041
- engine.checkVersion("4.3.2");
3141
+ engine.checkVersion("4.4.0");
3042
3142
  await engine.pluginManager.register(async (e) => {
3043
3143
  await Promise.all([
3044
3144
  loadBlendPlugin(e),
@@ -3287,7 +3387,11 @@
3287
3387
  if (!fColor && !sColor) {
3288
3388
  return;
3289
3389
  }
3290
- const container = this.#container, zIndexOptions = particle.options.zIndex, zIndexFactor = zIndexFactorOffset - particle.zIndexFactor, { fillOpacity, opacity, strokeOpacity } = particle.getOpacity(), transform = this.#reusableTransform, colorStyles = this.#reusableColorStyles, fill = fColor ? getStyleFromHsl(fColor, container.hdr, fillOpacity * opacity) : undefined, stroke = sColor ? getStyleFromHsl(sColor, container.hdr, strokeOpacity * opacity) : fill;
3390
+ const container = this.#container, zIndexOptions = particle.options.zIndex, zIndexFactor = zIndexFactorOffset - particle.zIndexFactor, { fillOpacity, opacity, strokeOpacity } = particle.getOpacity(), transform = this.#reusableTransform, colorStyles = this.#reusableColorStyles, fill = fColor
3391
+ ? getStyleFromHsl(fColor, container.hdr, fillOpacity * opacity, container.peakNits, container.hdrMode)
3392
+ : undefined, stroke = sColor
3393
+ ? getStyleFromHsl(sColor, container.hdr, strokeOpacity * opacity, container.peakNits, container.hdrMode)
3394
+ : fill;
3291
3395
  transform.a = transform.b = transform.c = transform.d = undefined;
3292
3396
  colorStyles.fill = fill;
3293
3397
  colorStyles.stroke = stroke;
@@ -3621,7 +3725,9 @@
3621
3725
  if (typeof background.element === "string") {
3622
3726
  if (typeof document !== "undefined") {
3623
3727
  const node = document.querySelector(background.element);
3624
- if (node instanceof HTMLCanvasElement || node instanceof HTMLVideoElement || node instanceof HTMLImageElement) {
3728
+ if ((typeof HTMLCanvasElement !== "undefined" && node instanceof HTMLCanvasElement) ||
3729
+ (typeof HTMLVideoElement !== "undefined" && node instanceof HTMLVideoElement) ||
3730
+ (typeof HTMLImageElement !== "undefined" && node instanceof HTMLImageElement)) {
3625
3731
  this.#backgroundElement = node;
3626
3732
  }
3627
3733
  else if (node) {
@@ -3632,10 +3738,10 @@
3632
3738
  }
3633
3739
  }
3634
3740
  }
3635
- else if (background.element instanceof HTMLCanvasElement ||
3636
- background.element instanceof OffscreenCanvas ||
3637
- background.element instanceof HTMLVideoElement ||
3638
- background.element instanceof HTMLImageElement) {
3741
+ else if ((typeof HTMLCanvasElement !== "undefined" && background.element instanceof HTMLCanvasElement) ||
3742
+ (typeof OffscreenCanvas !== "undefined" && background.element instanceof OffscreenCanvas) ||
3743
+ (typeof HTMLVideoElement !== "undefined" && background.element instanceof HTMLVideoElement) ||
3744
+ (typeof HTMLImageElement !== "undefined" && background.element instanceof HTMLImageElement)) {
3639
3745
  this.#backgroundElement = background.element;
3640
3746
  }
3641
3747
  }
@@ -3703,6 +3809,7 @@
3703
3809
  zoom = defaultZoom;
3704
3810
  #container;
3705
3811
  #generated;
3812
+ #hdrMediaListeners;
3706
3813
  #mutationObserver;
3707
3814
  #originalStyle;
3708
3815
  #pluginManager;
@@ -3767,7 +3874,6 @@
3767
3874
  });
3768
3875
  this.resize();
3769
3876
  this.#initStyle();
3770
- this.initBackground();
3771
3877
  this.#safeMutationObserver(obs => {
3772
3878
  const element = this.domElement;
3773
3879
  if (!element || !(element instanceof Node)) {
@@ -3777,6 +3883,8 @@
3777
3883
  });
3778
3884
  this.initPlugins();
3779
3885
  this.#initContext();
3886
+ this.initBackground();
3887
+ this.#initHdrListeners();
3780
3888
  this.render.init();
3781
3889
  }
3782
3890
  initBackground() {
@@ -3786,7 +3894,8 @@
3786
3894
  }
3787
3895
  const elementStyle = element.style, color = rangeColorToRgb(this.#pluginManager, background.color);
3788
3896
  if (color) {
3789
- elementStyle.backgroundColor = getStyleFromRgb(color, container.actualOptions.hdr, background.opacity);
3897
+ const hdrOptions = container.actualOptions.hdr;
3898
+ elementStyle.backgroundColor = getStyleFromRgb(color, container.hdr, background.opacity, hdrOptions.peakNits, hdrOptions.mode);
3790
3899
  }
3791
3900
  else {
3792
3901
  elementStyle.backgroundColor = "";
@@ -3883,6 +3992,7 @@
3883
3992
  obs.disconnect();
3884
3993
  });
3885
3994
  this.#mutationObserver = undefined;
3995
+ this.#removeHdrListeners();
3886
3996
  this.render.stop();
3887
3997
  }
3888
3998
  async windowResize() {
@@ -3902,9 +4012,16 @@
3902
4012
  }
3903
4013
  }
3904
4014
  #initContext() {
3905
- const container = this.#container, canSupportHdr = container.actualOptions.hdr &&
4015
+ const container = this.#container, canSupportHdr = container.actualOptions.hdr.enable &&
3906
4016
  safeMatchMedia("(color-gamut: p3)")?.matches &&
3907
4017
  safeMatchMedia("(dynamic-range: high)")?.matches;
4018
+ container.hdr = canSupportHdr ?? false;
4019
+ container.hdrMode = container.actualOptions.hdr.mode;
4020
+ container.peakNits = container.actualOptions.hdr.peakNits;
4021
+ const renderCanvas = this.renderCanvas;
4022
+ if (!renderCanvas) {
4023
+ return;
4024
+ }
3908
4025
  this.render.setContextSettings({
3909
4026
  alpha: true,
3910
4027
  desynchronized: true,
@@ -3913,11 +4030,47 @@
3913
4030
  ? { colorSpace: "display-p3", colorType: "float16" }
3914
4031
  : { colorSpace: "srgb" }),
3915
4032
  });
3916
- const renderCanvas = this.renderCanvas;
3917
- if (!renderCanvas) {
3918
- return;
4033
+ let context;
4034
+ try {
4035
+ context = renderCanvas.getContext("2d", this.render.settings);
4036
+ }
4037
+ catch {
4038
+ context = null;
4039
+ }
4040
+ if (canSupportHdr && !context) {
4041
+ container.hdr = false;
4042
+ const sdrSettings = {
4043
+ alpha: true,
4044
+ desynchronized: true,
4045
+ willReadFrequently: false,
4046
+ colorSpace: "srgb",
4047
+ };
4048
+ this.render.setContextSettings(sdrSettings);
4049
+ try {
4050
+ context = renderCanvas.getContext("2d", sdrSettings);
4051
+ }
4052
+ catch {
4053
+ context = null;
4054
+ }
4055
+ }
4056
+ this.render.setContext(context);
4057
+ }
4058
+ #initHdrListeners() {
4059
+ this.#removeHdrListeners();
4060
+ const p3Query = safeMatchMedia("(color-gamut: p3)"), hdrQuery = safeMatchMedia("(dynamic-range: high)"), handleChange = () => {
4061
+ this.#recreateRenderCanvas();
4062
+ this.#initContext();
4063
+ this.initBackground();
4064
+ }, listeners = [];
4065
+ if (p3Query) {
4066
+ p3Query.addEventListener("change", handleChange);
4067
+ listeners.push({ handler: handleChange, mql: p3Query });
4068
+ }
4069
+ if (hdrQuery) {
4070
+ hdrQuery.addEventListener("change", handleChange);
4071
+ listeners.push({ handler: handleChange, mql: hdrQuery });
3919
4072
  }
3920
- this.render.setContext(renderCanvas.getContext("2d", this.render.settings));
4073
+ this.#hdrMediaListeners = listeners;
3921
4074
  }
3922
4075
  #initStyle() {
3923
4076
  const element = this.domElement, options = this.#container.actualOptions;
@@ -3941,6 +4094,25 @@
3941
4094
  element.style.setProperty(key, value, "important");
3942
4095
  }
3943
4096
  }
4097
+ #recreateRenderCanvas() {
4098
+ const renderCanvas = this.renderCanvas;
4099
+ if (!renderCanvas) {
4100
+ return;
4101
+ }
4102
+ if (this.domElement) {
4103
+ return;
4104
+ }
4105
+ this.renderCanvas = new OffscreenCanvas(renderCanvas.width, renderCanvas.height);
4106
+ }
4107
+ #removeHdrListeners() {
4108
+ if (!this.#hdrMediaListeners) {
4109
+ return;
4110
+ }
4111
+ for (const { handler, mql } of this.#hdrMediaListeners) {
4112
+ mql.removeEventListener("change", handler);
4113
+ }
4114
+ this.#hdrMediaListeners = undefined;
4115
+ }
3944
4116
  #repairStyle() {
3945
4117
  const element = this.domElement;
3946
4118
  if (!element) {
@@ -4325,9 +4497,9 @@
4325
4497
  }
4326
4498
  getOpacity() {
4327
4499
  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;
4328
- this.#cachedOpacityData.fillOpacity = opacity * fillOpacity * zOpacityFactor;
4500
+ this.#cachedOpacityData.fillOpacity = fillOpacity;
4329
4501
  this.#cachedOpacityData.opacity = opacity * zOpacityFactor;
4330
- this.#cachedOpacityData.strokeOpacity = opacity * strokeOpacity * zOpacityFactor;
4502
+ this.#cachedOpacityData.strokeOpacity = strokeOpacity;
4331
4503
  return this.#cachedOpacityData;
4332
4504
  }
4333
4505
  getPosition() {
@@ -5182,6 +5354,7 @@
5182
5354
  effectDrawers;
5183
5355
  fpsLimit;
5184
5356
  hdr;
5357
+ hdrMode;
5185
5358
  id;
5186
5359
  pageHidden;
5187
5360
  particleCreatedPlugins;
@@ -5189,6 +5362,7 @@
5189
5362
  particlePositionPlugins;
5190
5363
  particleUpdaters;
5191
5364
  particles;
5365
+ peakNits;
5192
5366
  plugins;
5193
5367
  retina;
5194
5368
  shapeDrawers;
@@ -5219,6 +5393,8 @@
5219
5393
  this.id = Symbol(id);
5220
5394
  this.fpsLimit = 120;
5221
5395
  this.hdr = false;
5396
+ this.hdrMode = HdrMode.standard;
5397
+ this.peakNits = 400;
5222
5398
  this.#smooth = false;
5223
5399
  this.#delay = 0;
5224
5400
  this.#duration = 0;
@@ -5358,8 +5534,9 @@
5358
5534
  this.updateActualOptions();
5359
5535
  this.canvas.initBackground();
5360
5536
  this.canvas.resize();
5361
- const { delay, duration, fpsLimit, hdr, smooth, zLayers } = this.actualOptions;
5362
- this.hdr = hdr;
5537
+ const { delay, duration, fpsLimit, smooth, zLayers } = this.actualOptions, hdrOptions = this.actualOptions.hdr;
5538
+ this.hdrMode = hdrOptions.mode;
5539
+ this.peakNits = hdrOptions.peakNits;
5363
5540
  this.zLayers = zLayers;
5364
5541
  this.#duration = getRangeValue(duration) * millisecondsToSeconds;
5365
5542
  this.#delay = getRangeValue(delay) * millisecondsToSeconds;