Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions client/src/engine/milkdrop/MilkdropBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ export const MILKDROP_PRESET_NAMES = [
"Flexi - intensive shader fractal",
"Flexi - Julia fractal",
"martin + flexi - mandelbox explorer - high speed oversustained bipolar",
"Various - Fire and Brimstone",
"a crappy reality = you did well",
"LuxXx - RapePlay v3 (the war within all of us)",
"LuxXx - GrindFace 225 mg dose ",
"fiShbRaiN + Flexi - witchcraft unleashed",
] as const;

export type MilkdropPresetName = typeof MILKDROP_PRESET_NAMES[number];
Expand Down Expand Up @@ -128,6 +133,11 @@ export const MILKDROP_PRESET_MAP: Record<string, string> = {
"MilkDrop: Shader Fractal": "Flexi - intensive shader fractal",
"MilkDrop: Julia Fractal": "Flexi - Julia fractal",
"MilkDrop: Mandelbox Bipolar": "martin + flexi - mandelbox explorer - high speed oversustained bipolar",
"MilkDrop: Fire Brimstone": "Various - Fire and Brimstone",
"MilkDrop: Crappy Reality": "a crappy reality = you did well",
"MilkDrop: War Within": "LuxXx - RapePlay v3 (the war within all of us)",
"MilkDrop: Grind Face": "LuxXx - GrindFace 225 mg dose ",
"MilkDrop: Witchcraft Unleashed": "fiShbRaiN + Flexi - witchcraft unleashed",
};

export function isMilkdropPreset(name: string): boolean {
Expand Down
5 changes: 5 additions & 0 deletions client/src/engine/milkdrop/MilkdropTextureBridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ const JSON_PRESET_LOADERS: Record<string, () => Promise<any>> = {
"Flexi - intensive shader fractal": () => import("butterchurn-presets/presets/converted/Flexi - intensive shader fractal.json"),
"Flexi - Julia fractal": () => import("butterchurn-presets/presets/converted/Flexi - Julia fractal.json"),
"martin + flexi - mandelbox explorer - high speed oversustained bipolar": () => import("butterchurn-presets/presets/converted/martin + flexi - mandelbox explorer - high speed oversustained bipolar.json"),
"Various - Fire and Brimstone": () => import("butterchurn-presets/presets/converted/Various - Fire and Brimstone.json"),
"a crappy reality = you did well": () => import("butterchurn-presets/presets/converted/a crappy reality = you did well.json"),
"LuxXx - RapePlay v3 (the war within all of us)": () => import("butterchurn-presets/presets/converted/LuxXx - RapePlay v3 (the war within all of us).json"),
"LuxXx - GrindFace 225 mg dose ": () => import("butterchurn-presets/presets/converted/LuxXx - GrindFace 225 mg dose .json"),
"fiShbRaiN + Flexi - witchcraft unleashed": () => import("butterchurn-presets/presets/converted/fiShbRaiN + Flexi - witchcraft unleashed.json"),
};

const CANVAS_WIDTH = 1280;
Expand Down
10 changes: 10 additions & 0 deletions client/src/lib/visualizer-presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,11 @@ export const presets = [
"MilkDrop: Shader Fractal",
"MilkDrop: Julia Fractal",
"MilkDrop: Mandelbox Bipolar",
"MilkDrop: Fire Brimstone",
"MilkDrop: Crappy Reality",
"MilkDrop: War Within",
"MilkDrop: Grind Face",
"MilkDrop: Witchcraft Unleashed",
] as const;

export type PresetName = typeof presets[number];
Expand Down Expand Up @@ -320,6 +325,11 @@ export const presetCategories = [
{ name: "MilkDrop: Shader Fractal" as PresetName, icon: "milkdrop", shortName: "Shader" },
{ name: "MilkDrop: Julia Fractal" as PresetName, icon: "milkdrop", shortName: "Julia" },
{ name: "MilkDrop: Mandelbox Bipolar" as PresetName, icon: "milkdrop", shortName: "Bipolar" },
{ name: "MilkDrop: Fire Brimstone" as PresetName, icon: "milkdrop", shortName: "FireStone" },
{ name: "MilkDrop: Crappy Reality" as PresetName, icon: "milkdrop", shortName: "Reality" },
{ name: "MilkDrop: War Within" as PresetName, icon: "milkdrop", shortName: "WarWithin" },
{ name: "MilkDrop: Grind Face" as PresetName, icon: "milkdrop", shortName: "GrindFace" },
{ name: "MilkDrop: Witchcraft Unleashed" as PresetName, icon: "milkdrop", shortName: "Witchcraft" },
],
},
] as const;
Expand Down
Loading