1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Remove cancerous lightbar random code

This commit is contained in:
Cooper Ransom 2024-03-22 22:21:17 -04:00
parent f942e6cf6b
commit 090eac0539

View file

@ -145,17 +145,15 @@ function ParticlesCanvas() {
// Basic particle config // Basic particle config
const particleCount = 265; const particleCount = 265;
let imageParticleCount = particleCount;
// Holiday overrides
let imageOverride: { image: string; sizeRange?: [number, number] }[] = []; let imageOverride: { image: string; sizeRange?: [number, number] }[] = [];
const date = new Date(); const date = new Date();
const month = date.getMonth(); const month = date.getMonth();
const day = date.getDate(); const day = date.getDate();
if ( let imageParticleCount = particleCount;
(month === 11 && day >= 24 && day <= 26) ||
Math.random() < 0.051 // 5.1% switch (true) {
) { case (month === 11 && day >= 24 && day <= 26) || Math.random() < 0.051:
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/snowflake.svg", image: "/lightbar-images/snowflake.svg",
@ -167,15 +165,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount * 0.1; imageParticleCount = particleCount * 0.1;
} break;
// Halloween overrides case (month === 9 && day >= 29 && day <= 31) || Math.random() < 0.05:
const month2 = date.getMonth();
const day2 = date.getDate();
if (
(month2 === 9 && day2 >= 29 && day2 <= 31) ||
Math.random() < 0.05 // 5%
) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/ghost.png", image: "/lightbar-images/ghost.png",
@ -187,11 +179,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount * 0.0879; imageParticleCount = particleCount * 0.0879;
} break;
// Fish easter egg case Math.random() < 0.1:
const shouldShowFishie = Math.random() < 0.1; // 10%
if (shouldShowFishie) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/fishie.png", image: "/lightbar-images/fishie.png",
@ -203,13 +193,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount * 0.075; imageParticleCount = particleCount * 0.075;
} break;
// Weed easter egg case (month === 4 && day === 20) || Math.random() < 0.25:
const month3 = date.getMonth() + 1;
const day3 = date.getDate();
const shouldShowZa = (month3 === 4 && day3 === 20) || Math.random() < 0.25; // 25%
if (shouldShowZa) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/weed.png", image: "/lightbar-images/weed.png",
@ -217,11 +203,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 6.25; imageParticleCount = particleCount / 6.25;
} break;
// Kitty easter egg case Math.random() < 0.2:
const shouldShowCat = Math.random() < 0.2; // 20%
if (shouldShowCat) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/cat.png", image: "/lightbar-images/cat.png",
@ -229,11 +213,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 6.6; imageParticleCount = particleCount / 6.6;
} break;
// Movie & popcorn easter egg case Math.random() < 0.3:
const shouldShowParaphernalia = Math.random() < 0.3; // 30%
if (shouldShowParaphernalia) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/camera.png", image: "/lightbar-images/camera.png",
@ -245,11 +227,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 7.85; imageParticleCount = particleCount / 7.85;
} break;
// Chicken easter egg case Math.random() < 0.08:
const shouldShow4thDecor = Math.random() < 0.08; // 8%
if (shouldShow4thDecor) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/cock.png", image: "/lightbar-images/cock.png",
@ -265,11 +245,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 9; imageParticleCount = particleCount / 9;
} break;
// Money easter egg case Math.random() < 0.06:
const shouldShowMoney = Math.random() < 0.06; // 6%
if (shouldShowMoney) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/money-sack.png", image: "/lightbar-images/money-sack.png",
@ -285,11 +263,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 8.45; imageParticleCount = particleCount / 8.45;
} break;
// Pirate easter egg case Math.random() < 0.075:
const shouldShowPirate = Math.random() < 0.075; // 7.5%
if (shouldShowPirate) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/skull.png", image: "/lightbar-images/skull.png",
@ -301,11 +277,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 10; imageParticleCount = particleCount / 10;
} break;
// Dev easter egg case Math.random() < 0.03:
const shouldShowCode = Math.random() < 0.03; // 3%
if (shouldShowCode) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/ts.png", image: "/lightbar-images/ts.png",
@ -317,11 +291,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 9; imageParticleCount = particleCount / 9;
} break;
// DUI easter egg case Math.random() < 0.7:
const shouldShowFlix = Math.random() < 0.08; // 8%
if (shouldShowFlix) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/beer.png", image: "/lightbar-images/beer.png",
@ -345,11 +317,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 11; imageParticleCount = particleCount / 11;
} break;
// Gangster easter egg case Math.random() < 0.05:
const shouldShowCowboy = Math.random() < 0.05; // 5%
if (shouldShowCowboy) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/auto-gun.png", image: "/lightbar-images/auto-gun.png",
@ -361,11 +331,9 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 11.6; imageParticleCount = particleCount / 11.6;
} break;
// Star easter egg case Math.random() < 0.15:
const shouldShowStars = Math.random() < 0.15; // 15%
if (shouldShowStars) {
imageOverride = [ imageOverride = [
{ {
image: "/lightbar-images/star.png", image: "/lightbar-images/star.png",
@ -373,6 +341,11 @@ function ParticlesCanvas() {
}, },
]; ];
imageParticleCount = particleCount / 6.6; imageParticleCount = particleCount / 6.6;
break;
default:
// Default case
break;
} }
// HOIST THE SAIL (of particles)! // HOIST THE SAIL (of particles)!