mirror of
https://github.com/meowarex/TidaLuna-Plugins.git
synced 2026-06-18 03:43:10 +10:00
@@ -52,6 +52,8 @@ export const settings = await ReactiveStore.getPluginStorage(
|
|||||||
opacityFalloff: 0.5,
|
opacityFalloff: 0.5,
|
||||||
lissajous: false,
|
lissajous: false,
|
||||||
scrollingOscilloscope: false,
|
scrollingOscilloscope: false,
|
||||||
|
groupedSlots: false,
|
||||||
|
transparentContainers: false,
|
||||||
miniSlots: [] as string[],
|
miniSlots: [] as string[],
|
||||||
customColors: [] as string[],
|
customColors: [] as string[],
|
||||||
},
|
},
|
||||||
@@ -86,6 +88,11 @@ export const Settings = () => {
|
|||||||
const [scrollingOscilloscope, setScrollingOscilloscope] = React.useState(settings.scrollingOscilloscope);
|
const [scrollingOscilloscope, setScrollingOscilloscope] = React.useState(settings.scrollingOscilloscope);
|
||||||
|
|
||||||
|
|
||||||
|
const [groupedSlots, setGroupedSlots] = React.useState(settings.groupedSlots);
|
||||||
|
const [transparentContainers, setTransparentContainers] = React.useState(
|
||||||
|
settings.transparentContainers,
|
||||||
|
);
|
||||||
|
|
||||||
const [showColorPicker, setShowColorPicker] = React.useState(false);
|
const [showColorPicker, setShowColorPicker] = React.useState(false);
|
||||||
const [isColorAnimIn, setIsColorAnimIn] = React.useState(false);
|
const [isColorAnimIn, setIsColorAnimIn] = React.useState(false);
|
||||||
const [shouldRenderColor, setShouldRenderColor] = React.useState(false);
|
const [shouldRenderColor, setShouldRenderColor] = React.useState(false);
|
||||||
@@ -286,6 +293,26 @@ export const Settings = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<AnySwitch
|
||||||
|
title="Grouped Slots"
|
||||||
|
desc="Active slots in the same position share a single container"
|
||||||
|
checked={groupedSlots}
|
||||||
|
onChange={(_: unknown, checked: boolean) => {
|
||||||
|
setGroupedSlots(checked);
|
||||||
|
settings.groupedSlots = checked;
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<AnySwitch
|
||||||
|
title="Transparent containers"
|
||||||
|
desc="Remove panel background, blur and shadow"
|
||||||
|
checked={transparentContainers}
|
||||||
|
onChange={(_: unknown, checked: boolean) => {
|
||||||
|
setTransparentContainers(checked);
|
||||||
|
settings.transparentContainers = checked;
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
{/* Color picker modal */}
|
{/* Color picker modal */}
|
||||||
{shouldRenderColor && (
|
{shouldRenderColor && (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -132,10 +132,16 @@ const syncGroupHeights = (group: SlotGroup): void => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const updateGroupVisibility = (group: SlotGroup): void => {
|
const updateGroupVisibility = (group: SlotGroup): void => {
|
||||||
const allNone = group.slots.every(s => s.currentType === "none");
|
const activeCount = group.slots.filter(s => s.currentType !== "none").length;
|
||||||
|
const allNone = activeCount === 0;
|
||||||
group.groupContainer.style.display = allNone ? "none" : "flex";
|
group.groupContainer.style.display = allNone ? "none" : "flex";
|
||||||
if (!allNone) syncGroupHeights(group);
|
if (!allNone) syncGroupHeights(group);
|
||||||
|
|
||||||
|
group.groupContainer.classList.toggle(
|
||||||
|
"av-grouped",
|
||||||
|
settings.groupedSlots && activeCount >= 2,
|
||||||
|
);
|
||||||
|
|
||||||
if (group === groups.get("topNav-left") && navArrowsEl) {
|
if (group === groups.get("topNav-left") && navArrowsEl) {
|
||||||
navArrowsEl.style.marginRight = allNone ? "" : "0";
|
navArrowsEl.style.marginRight = allNone ? "" : "0";
|
||||||
}
|
}
|
||||||
@@ -397,6 +403,14 @@ const generateIdleData = (): AudioData => {
|
|||||||
let animationId: number | null = null;
|
let animationId: number | null = null;
|
||||||
const lastSlotTypes = new Map<SlotKey, VisualizerType>();
|
const lastSlotTypes = new Map<SlotKey, VisualizerType>();
|
||||||
const lastMiniState = new Map<SlotKey, boolean>();
|
const lastMiniState = new Map<SlotKey, boolean>();
|
||||||
|
let lastGrouped = settings.groupedSlots;
|
||||||
|
let lastChromeless = settings.transparentContainers;
|
||||||
|
|
||||||
|
const syncChromelessClass = (): void => {
|
||||||
|
document.body.classList.toggle("av-chromeless", !!settings.transparentContainers);
|
||||||
|
};
|
||||||
|
|
||||||
|
syncChromelessClass();
|
||||||
|
|
||||||
for (const key of ALL_SLOT_KEYS) {
|
for (const key of ALL_SLOT_KEYS) {
|
||||||
lastSlotTypes.set(key, getSlot(key));
|
lastSlotTypes.set(key, getSlot(key));
|
||||||
@@ -427,6 +441,18 @@ const animate = (): void => {
|
|||||||
if (changed) updateGroupVisibility(group);
|
if (changed) updateGroupVisibility(group);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const grouped = settings.groupedSlots;
|
||||||
|
if (grouped !== lastGrouped) {
|
||||||
|
for (const group of groups.values()) updateGroupVisibility(group);
|
||||||
|
lastGrouped = grouped;
|
||||||
|
}
|
||||||
|
|
||||||
|
const chromeless = !!settings.transparentContainers;
|
||||||
|
if (chromeless !== lastChromeless) {
|
||||||
|
syncChromelessClass();
|
||||||
|
lastChromeless = chromeless;
|
||||||
|
}
|
||||||
|
|
||||||
const currentReactivity = settings.reactivity ?? 30;
|
const currentReactivity = settings.reactivity ?? 30;
|
||||||
if (currentReactivity !== lastReactivity) {
|
if (currentReactivity !== lastReactivity) {
|
||||||
audio.setSmoothing(reactivityToSmoothing(currentReactivity));
|
audio.setSmoothing(reactivityToSmoothing(currentReactivity));
|
||||||
@@ -480,6 +506,8 @@ unloads.add(() => {
|
|||||||
log("Plugin unloading");
|
log("Plugin unloading");
|
||||||
clearRetry();
|
clearRetry();
|
||||||
|
|
||||||
|
document.body.classList.remove("av-chromeless");
|
||||||
|
|
||||||
if (navArrowsEl) {
|
if (navArrowsEl) {
|
||||||
navArrowsEl.style.marginRight = "";
|
navArrowsEl.style.marginRight = "";
|
||||||
navArrowsEl = null;
|
navArrowsEl = null;
|
||||||
|
|||||||
@@ -68,3 +68,66 @@
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Grouped slots: merge active containers into one shared box */
|
||||||
|
.av-slot-group.av-grouped {
|
||||||
|
gap: 0;
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
border-radius: 8px;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
||||||
|
border: 1px solid rgba(255, 105, 180, 0.15);
|
||||||
|
animation: av-fadeIn 0.5s ease-out;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.av-slot-group.av-grouped:hover {
|
||||||
|
transform: scale(1.02);
|
||||||
|
box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
|
||||||
|
border-color: rgba(255, 105, 180, 0.3);
|
||||||
|
}
|
||||||
|
.av-slot-group.av-grouped > .audio-visualizer-container {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
backdrop-filter: none;
|
||||||
|
-webkit-backdrop-filter: none;
|
||||||
|
box-shadow: none;
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
|
.av-slot-group.av-grouped > .audio-visualizer-container:hover {
|
||||||
|
transform: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Chromeless: no fill, blur, or shadow; border kept */
|
||||||
|
body.av-chromeless .audio-visualizer-container {
|
||||||
|
background: transparent;
|
||||||
|
backdrop-filter: none;
|
||||||
|
-webkit-backdrop-filter: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border: 1px solid rgba(255, 105, 180, 0.15);
|
||||||
|
animation: none;
|
||||||
|
transition: border-color 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
body.av-chromeless .audio-visualizer-container:hover {
|
||||||
|
transform: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border-color: rgba(255, 105, 180, 0.3);
|
||||||
|
}
|
||||||
|
body.av-chromeless .audio-visualizer-container.active {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
body.av-chromeless .av-slot-group.av-grouped {
|
||||||
|
background: transparent;
|
||||||
|
backdrop-filter: none;
|
||||||
|
-webkit-backdrop-filter: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border: 1px solid rgba(255, 105, 180, 0.15);
|
||||||
|
animation: none;
|
||||||
|
transition: border-color 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
body.av-chromeless .av-slot-group.av-grouped:hover {
|
||||||
|
transform: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border-color: rgba(255, 105, 180, 0.3);
|
||||||
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ export const VISUALIZER_DIMENSIONS: Record<VisualizerType, VisualizerDimensions>
|
|||||||
"spectrum-line": { width: 200, height: 40 },
|
"spectrum-line": { width: 200, height: 40 },
|
||||||
"spectrum-bars": { width: 200, height: 40 },
|
"spectrum-bars": { width: 200, height: 40 },
|
||||||
oscilloscope: { width: 200, height: 40 },
|
oscilloscope: { width: 200, height: 40 },
|
||||||
vectorscope: { width: 60, height: 60 },
|
vectorscope: { width: 100, height: 40 },
|
||||||
"loudness-meter": { width: 160, height: 40 },
|
"loudness-meter": { width: 160, height: 40 },
|
||||||
none: { width: 0, height: 0 },
|
none: { width: 0, height: 0 },
|
||||||
};
|
};
|
||||||
@@ -80,8 +80,9 @@ export const POSITION_LABELS: Record<PositionId, string> = {
|
|||||||
right: "Right",
|
right: "Right",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const MINI_SUPPORTED = new Set<VisualizerType>(["oscilloscope"]);
|
export const MINI_SUPPORTED = new Set<VisualizerType>(["oscilloscope", "vectorscope"]);
|
||||||
|
|
||||||
export const MINI_DIMENSIONS: Partial<Record<VisualizerType, VisualizerDimensions>> = {
|
export const MINI_DIMENSIONS: Partial<Record<VisualizerType, VisualizerDimensions>> = {
|
||||||
oscilloscope: { width: 80, height: 60 },
|
oscilloscope: { width: 80, height: 60 },
|
||||||
|
vectorscope: { width: 72, height: 40 },
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ import { settings } from "../Settings";
|
|||||||
export const createVectorscope = (): Visualizer => {
|
export const createVectorscope = (): Visualizer => {
|
||||||
let ctx: CanvasRenderingContext2D | null = null;
|
let ctx: CanvasRenderingContext2D | null = null;
|
||||||
let canvas: HTMLCanvasElement | null = null;
|
let canvas: HTMLCanvasElement | null = null;
|
||||||
let trailCanvas: HTMLCanvasElement | null = null;
|
|
||||||
let trailCtx: CanvasRenderingContext2D | null = null;
|
|
||||||
let w = 0, h = 0;
|
let w = 0, h = 0;
|
||||||
let lastX = 0, lastY = 0;
|
let lastX = 0, lastY = 0;
|
||||||
let hasLast = false;
|
let hasLast = false;
|
||||||
@@ -18,22 +16,19 @@ export const createVectorscope = (): Visualizer => {
|
|||||||
|
|
||||||
init(cvs, _color) {
|
init(cvs, _color) {
|
||||||
canvas = cvs;
|
canvas = cvs;
|
||||||
ctx = cvs.getContext("2d")!;
|
const c = cvs.getContext("2d");
|
||||||
|
if (!c) return;
|
||||||
|
ctx = c;
|
||||||
w = cvs.width;
|
w = cvs.width;
|
||||||
h = cvs.height;
|
h = cvs.height;
|
||||||
hasLast = false;
|
hasLast = false;
|
||||||
|
|
||||||
trailCanvas = document.createElement("canvas");
|
|
||||||
trailCanvas.width = w;
|
|
||||||
trailCanvas.height = h;
|
|
||||||
trailCtx = trailCanvas.getContext("2d")!;
|
|
||||||
|
|
||||||
lastLissajous = !!settings.lissajous;
|
lastLissajous = !!settings.lissajous;
|
||||||
cvs.style.transform = lastLissajous ? "rotate(45deg) scale(0.707)" : "";
|
cvs.style.transform = lastLissajous ? "rotate(45deg) scale(0.707)" : "";
|
||||||
},
|
},
|
||||||
|
|
||||||
render(data: AudioData, color: string) {
|
render(data: AudioData, color: string) {
|
||||||
if (!ctx || !trailCtx || !trailCanvas || !canvas) return;
|
if (!ctx || !canvas) return;
|
||||||
|
|
||||||
const wantLissajous = !!settings.lissajous;
|
const wantLissajous = !!settings.lissajous;
|
||||||
if (wantLissajous !== lastLissajous) {
|
if (wantLissajous !== lastLissajous) {
|
||||||
@@ -41,64 +36,50 @@ export const createVectorscope = (): Visualizer => {
|
|||||||
canvas.style.transform = wantLissajous ? "rotate(45deg) scale(0.707)" : "";
|
canvas.style.transform = wantLissajous ? "rotate(45deg) scale(0.707)" : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fade the trail buffer by drawing it at reduced opacity onto itself
|
ctx.clearRect(0, 0, w, h);
|
||||||
trailCtx.save();
|
|
||||||
trailCtx.globalCompositeOperation = "destination-in";
|
|
||||||
trailCtx.fillStyle = "rgba(0, 0, 0, 0.82)";
|
|
||||||
trailCtx.fillRect(0, 0, w, h);
|
|
||||||
trailCtx.restore();
|
|
||||||
|
|
||||||
const left = data.leftTimeDomain;
|
const left = data.leftTimeDomain;
|
||||||
const right = data.rightTimeDomain;
|
const right = data.rightTimeDomain;
|
||||||
const len = Math.min(left.length, right.length);
|
const len = Math.min(left.length, right.length);
|
||||||
const lineWidth = Math.max(0.5, (settings.lineThickness ?? 1.0) * 0.5);
|
const lineWidth = Math.max(0.5, (settings.lineThickness ?? 1.0) * 0.5);
|
||||||
const scale = 2.25;
|
const inset = lineWidth;
|
||||||
|
const halfW = Math.max(1, w / 2 - inset);
|
||||||
|
const halfH = Math.max(1, h / 2 - inset);
|
||||||
|
|
||||||
trailCtx.strokeStyle = color;
|
ctx.strokeStyle = color;
|
||||||
trailCtx.lineWidth = lineWidth;
|
ctx.lineWidth = lineWidth;
|
||||||
trailCtx.lineJoin = "round";
|
ctx.lineJoin = "round";
|
||||||
trailCtx.lineCap = "round";
|
ctx.lineCap = "round";
|
||||||
trailCtx.globalAlpha = 0.9;
|
|
||||||
|
|
||||||
trailCtx.beginPath();
|
hasLast = false;
|
||||||
|
ctx.beginPath();
|
||||||
for (let i = 0; i < len; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
const x = left[i] * (w / scale) + w / 2;
|
const x = left[i] * halfW + w / 2;
|
||||||
const y = right[i] * (h / scale) + h / 2;
|
const y = right[i] * halfH + h / 2;
|
||||||
|
|
||||||
if (!hasLast) {
|
if (!hasLast) {
|
||||||
trailCtx.moveTo(x, y);
|
ctx.moveTo(x, y);
|
||||||
hasLast = true;
|
hasLast = true;
|
||||||
} else {
|
} else {
|
||||||
trailCtx.moveTo(lastX, lastY);
|
ctx.moveTo(lastX, lastY);
|
||||||
trailCtx.lineTo(x, y);
|
ctx.lineTo(x, y);
|
||||||
}
|
}
|
||||||
lastX = x;
|
lastX = x;
|
||||||
lastY = y;
|
lastY = y;
|
||||||
}
|
}
|
||||||
trailCtx.stroke();
|
ctx.stroke();
|
||||||
trailCtx.globalAlpha = 1.0;
|
|
||||||
|
|
||||||
// Composite trail onto visible canvas (fully transparent background)
|
|
||||||
ctx.clearRect(0, 0, w, h);
|
|
||||||
ctx.drawImage(trailCanvas, 0, 0);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
resize(width, height) {
|
resize(width, height) {
|
||||||
w = width;
|
w = width;
|
||||||
h = height;
|
h = height;
|
||||||
hasLast = false;
|
hasLast = false;
|
||||||
if (trailCanvas && trailCtx) {
|
|
||||||
trailCanvas.width = w;
|
|
||||||
trailCanvas.height = h;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
if (canvas) canvas.style.transform = "";
|
if (canvas) canvas.style.transform = "";
|
||||||
ctx = null;
|
ctx = null;
|
||||||
canvas = null;
|
canvas = null;
|
||||||
trailCtx = null;
|
|
||||||
trailCanvas = null;
|
|
||||||
hasLast = false;
|
hasLast = false;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -346,7 +346,7 @@ export const Settings = () => {
|
|||||||
/>
|
/>
|
||||||
<AnySwitch
|
<AnySwitch
|
||||||
title="Integrated Seek Bar"
|
title="Integrated Seek Bar"
|
||||||
desc="Move the seekbar to the top border of the player bar (inspired by Amethyst)"
|
desc="Move the seekbar to the top border of the player bar"
|
||||||
checked={integratedSeekBar}
|
checked={integratedSeekBar}
|
||||||
onChange={(_: unknown, checked: boolean) => {
|
onChange={(_: unknown, checked: boolean) => {
|
||||||
settings.integratedSeekBar = checked;
|
settings.integratedSeekBar = checked;
|
||||||
|
|||||||
Reference in New Issue
Block a user