Spaces:
Sleeping
Sleeping
File size: 17,432 Bytes
6a03d7f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 |
// Configuration loader and manager for the visualizer
import type { ParticleSystemParams } from '../types/visualization'
export interface VisualizerConfig {
visualization: {
general: {
maxSpheres: number
defaultActiveSpheres: number
performanceMode: boolean
debugLogging: boolean
debugLogFrequency: number
}
particles: {
defaultParticleCount: number
minParticleCount: number
maxParticleCount: number
particleSize: number
particleLifetime: number
particleSizeVariation: number
particleOpacity: number
}
spheres: {
baseRadius: number
radiusIncrement: number
innerSphereRadius: number
maxSphereRadius: number
containmentPullback: number
overflowDamping: number
}
physics: {
turbulenceStrength: number
noiseScale: number
noiseScaleVariation: number
noiseSpeed: number
defaultDamping: number
velocityDecay: number
beatForceMultiplier: number
maxVelocity: number
stabilityThreshold: number
emergencyDamping: number
}
rotation: {
rotationSpeedMin: number
rotationSpeedMax: number
rotationSpeedIncrement: number
rotationSmoothness: number
autoRotateSpeed: number
}
}
audio: {
frequencyRanges: Array<{
name: string
minFrequency: number
maxFrequency: number
beatThreshold: number
volumeChangeThreshold: number
}>
beatDetection: {
energyHistoryLength: number
minTimeBetweenPeaks: number
beatStrength: number
waveDecayRate: number
peakThresholdMultiplier: number
}
volumeSmoothing: {
enabled: boolean
smoothingFactor: number
changeThresholdDefault: number
}
}
entronaut: {
enabled: boolean
sefaAnalysis: {
fieldSize: number
fieldWidth: number
fieldHeight: number
updateFrequency: number
temporalSmoothing: number
intensitySmoothing: number
}
weights: {
alpha_amplitude: number
alpha_phase: number
alpha_entropy: number
alpha_curvature: number
alpha_spectral: number
}
adaptiveCoupling: {
enabled: boolean
updateFrequency: number
dampingBase: number
dampingVariation: number
diffusionBase: number
diffusionVariation: number
couplingBase: number
couplingVariation: number
flockingRadius: number
flockingInfluence: number
metabolicPulseStrength: number
neighborCheckStep: number
neighborRange: number
}
biomimeticBehavior: {
collectiveMemory: number
emergenceThreshold: number
coherenceWeight: number
complexityWeight: number
networkInfluence: number
syncPulseStrength: number
}
}
tendrils: {
enabled: boolean
maxTendrils: number
defaultDensity: number
maxTendrilLength: number
tendrilSegments: number
updateInterval: number
sampleParticlesPerSphere: number
particleSampleStep: number
curvature: {
midPointMultiplier: number
undulationStrength: number
timeFactorBase: number
timeFactorCurve: number
spatialFrequency: number
}
visual: {
baseOpacity: number
glowIntensity: number
colorIntensityBase: number
colorIntensityVariation: number
blendingMode: string
}
}
cymatics: {
enabled: boolean
intensity: number
patterns: {
radialWaves: {
frequencyFactor: number
petalCount: number
amplitudeZ: number
}
sphericalHarmonics: {
lMultiplier: number
mMultiplier: number
timeMultiplier: number
}
geometricLattice: {
frequencyFactor: number
}
flowerOfLife: {
frequencyFactor: number
basePetals: number
petalVariation: number
amplitudeZ: number
}
}
breathing: {
enabled: boolean
speed: number
intensityBase: number
intensityVariation: number
}
}
colors: {
sphereColorSchemes: Array<{
name: string
start: string
end: string
}>
tendrilColors: {
baseColor: [number, number, number]
frequencyColorMap: {
lowFreq: [number, number, number]
midFreq: [number, number, number]
highFreq: [number, number, number]
}
}
}
camera: {
defaultPosition: [number, number, number]
fov: number
near: number
far: number
controls: {
enableDamping: boolean
dampingFactor: number
maxDistance: number
minDistance: number
maxPolarAngle: number
autoRotateSpeed: number
}
presets: {
[key: string]: [number, number, number]
}
}
fog: {
enabled: boolean
color: string
near: number
far: number
density: number
}
rendering: {
antialias: boolean
background: string
particleBlending: string
targetFPS: number
adaptiveQuality: {
enabled: boolean
minFPS: number
qualityReductionStep: number
qualityRecoveryDelay: number
}
}
ui: {
controls: {
defaultCollapsed: boolean
position: string
maxWidth: string
opacity: number
}
about: {
defaultCollapsed: boolean
position: string
width: string
}
animation: {
transitionDuration: string
hoverScale: number
backdropBlur: string
}
}
performance: {
adaptiveSettings: {
enabled: boolean
thresholds: {
particleReduction: number
tendrilReduction: number
sefaDisable: number
couplingDisable: number
}
}
optimizations: {
particleUpdateStep: number
tendrilUpdateStep: number
sefaUpdateStep: number
couplingUpdateStep: number
neighborCheckReduction: number
}
}
presets: {
[key: string]: Partial<VisualizerConfig>
}
}
class ConfigLoader {
private config: VisualizerConfig | null = null
private loadPromise: Promise<VisualizerConfig> | null = null
async loadConfig(): Promise<VisualizerConfig> {
if (this.config) {
return this.config
}
if (this.loadPromise) {
return this.loadPromise
}
this.loadPromise = this.fetchConfig()
this.config = await this.loadPromise
return this.config
}
private async fetchConfig(): Promise<VisualizerConfig> {
try {
const response = await fetch('/config.json')
if (!response.ok) {
throw new Error(`Failed to load config: ${response.statusText}`)
}
const config = await response.json()
console.log('✅ Configuration loaded successfully')
return config
} catch (error) {
console.error('❌ Failed to load configuration, using defaults:', error)
return this.getDefaultConfig()
}
}
private getDefaultConfig(): VisualizerConfig {
// Fallback default configuration
return {
visualization: {
general: {
maxSpheres: 5,
defaultActiveSpheres: 5,
performanceMode: false,
debugLogging: true,
debugLogFrequency: 0.005
},
particles: {
defaultParticleCount: 15000,
minParticleCount: 1000,
maxParticleCount: 30000,
particleSize: 1.0,
particleLifetime: 20.0,
particleSizeVariation: 0.2,
particleOpacity: 0.8
},
spheres: {
baseRadius: 1.0,
radiusIncrement: 0.08,
innerSphereRadius: 0.7,
maxSphereRadius: 2.0,
containmentPullback: 0.1,
overflowDamping: 0.9
},
physics: {
turbulenceStrength: 0.008,
noiseScale: 3.0,
noiseScaleVariation: 0.4,
noiseSpeed: 0.5,
defaultDamping: 0.95,
velocityDecay: 0.95,
beatForceMultiplier: 0.001,
maxVelocity: 0.1,
stabilityThreshold: 10.0,
emergencyDamping: 0.1
},
rotation: {
rotationSpeedMin: 0.001,
rotationSpeedMax: 0.06,
rotationSpeedIncrement: 0.008,
rotationSmoothness: 0.1,
autoRotateSpeed: 0.5
}
},
audio: {
frequencyRanges: [
{ name: "sub-bass", minFrequency: 20, maxFrequency: 80, beatThreshold: 0.6, volumeChangeThreshold: 0.05 },
{ name: "bass", minFrequency: 120, maxFrequency: 250, beatThreshold: 0.65, volumeChangeThreshold: 0.08 },
{ name: "mid", minFrequency: 250, maxFrequency: 800, beatThreshold: 0.7, volumeChangeThreshold: 0.1 },
{ name: "high-mid", minFrequency: 1000, maxFrequency: 4000, beatThreshold: 0.75, volumeChangeThreshold: 0.12 },
{ name: "high", minFrequency: 5000, maxFrequency: 10000, beatThreshold: 0.8, volumeChangeThreshold: 0.15 }
],
beatDetection: {
energyHistoryLength: 30,
minTimeBetweenPeaks: 200,
beatStrength: 0.02,
waveDecayRate: 0.98,
peakThresholdMultiplier: 1.3
},
volumeSmoothing: {
enabled: true,
smoothingFactor: 0.1,
changeThresholdDefault: 0.1
}
},
entronaut: {
enabled: true,
sefaAnalysis: {
fieldSize: 1024,
fieldWidth: 32,
fieldHeight: 32,
updateFrequency: 3,
temporalSmoothing: 0.9,
intensitySmoothing: 0.1
},
weights: {
alpha_amplitude: 1.2,
alpha_phase: 0.8,
alpha_entropy: 1.5,
alpha_curvature: 1.0,
alpha_spectral: 1.0
},
adaptiveCoupling: {
enabled: true,
updateFrequency: 4,
dampingBase: 0.9,
dampingVariation: 0.3,
diffusionBase: 0.01,
diffusionVariation: 0.6,
couplingBase: 0.02,
couplingVariation: 0.04,
flockingRadius: 0.25,
flockingInfluence: 0.2,
metabolicPulseStrength: 0.5,
neighborCheckStep: 5,
neighborRange: 20
},
biomimeticBehavior: {
collectiveMemory: 0.9,
emergenceThreshold: 0.5,
coherenceWeight: 1.0,
complexityWeight: 1.0,
networkInfluence: 0.1,
syncPulseStrength: 0.2
}
},
tendrils: {
enabled: true,
maxTendrils: 2000,
defaultDensity: 0.3,
maxTendrilLength: 0.8,
tendrilSegments: 8,
updateInterval: 100,
sampleParticlesPerSphere: 10,
particleSampleStep: 1000,
curvature: {
midPointMultiplier: 0.2,
undulationStrength: 0.05,
timeFactorBase: 0.001,
timeFactorCurve: 0.0015,
spatialFrequency: 10
},
visual: {
baseOpacity: 0.3,
glowIntensity: 1.0,
colorIntensityBase: 0.3,
colorIntensityVariation: 0.7,
blendingMode: "additive"
}
},
cymatics: {
enabled: true,
intensity: 0.002,
patterns: {
radialWaves: { frequencyFactor: 0.1, petalCount: 6, amplitudeZ: 0.5 },
sphericalHarmonics: { lMultiplier: 0.5, mMultiplier: 0.3, timeMultiplier: 2 },
geometricLattice: { frequencyFactor: 0.2 },
flowerOfLife: { frequencyFactor: 0.15, basePetals: 6, petalVariation: 0.1, amplitudeZ: 0.3 }
},
breathing: { enabled: true, speed: 0.5, intensityBase: 0.3, intensityVariation: 0.7 }
},
colors: {
sphereColorSchemes: [
{ name: "sub-bass", start: "#ff3366", end: "#3366ff" },
{ name: "bass", start: "#ff6b35", end: "#c44569" },
{ name: "mid", start: "#f7931e", end: "#f8b500" },
{ name: "high-mid", start: "#ffe66d", end: "#feca57" },
{ name: "high", start: "#4ecdc4", end: "#45b7d1" }
],
tendrilColors: {
baseColor: [0.3, 0.3, 0.3],
frequencyColorMap: {
lowFreq: [0.8, 0.2, 0.2],
midFreq: [0.2, 0.8, 0.2],
highFreq: [0.2, 0.2, 0.8]
}
}
},
camera: {
defaultPosition: [0, 0, 2.5],
fov: 75,
near: 0.1,
far: 1000,
controls: {
enableDamping: true,
dampingFactor: 0.05,
maxDistance: 50,
minDistance: 0.1,
maxPolarAngle: 3.14159,
autoRotateSpeed: 0.5
},
presets: {
default: [0, 0, 2.5],
inside: [0, 0, 0.5],
far: [0, 0, 8],
top: [0, 5, 0],
side: [5, 0, 0]
}
},
fog: {
enabled: true,
color: "#000000",
near: 2.7,
far: 3.7,
density: 0.1
},
rendering: {
antialias: true,
background: "#000000",
particleBlending: "additive",
targetFPS: 60,
adaptiveQuality: {
enabled: true,
minFPS: 30,
qualityReductionStep: 0.1,
qualityRecoveryDelay: 2000
}
},
ui: {
controls: {
defaultCollapsed: true,
position: "bottom-right",
maxWidth: "250px",
opacity: 0.8
},
about: {
defaultCollapsed: true,
position: "bottom-center",
width: "350px"
},
animation: {
transitionDuration: "0.3s",
hoverScale: 1.1,
backdropBlur: "10px"
}
},
performance: {
adaptiveSettings: {
enabled: true,
thresholds: {
particleReduction: 25,
tendrilReduction: 20,
sefaDisable: 15,
couplingDisable: 10
}
},
optimizations: {
particleUpdateStep: 1,
tendrilUpdateStep: 4,
sefaUpdateStep: 10,
couplingUpdateStep: 4,
neighborCheckReduction: 5
}
},
presets: {}
}
}
applyPreset(presetName: string): void {
if (!this.config) {
console.warn('Config not loaded, cannot apply preset')
return
}
const preset = this.config.presets[presetName]
if (!preset) {
console.warn(`Preset '${presetName}' not found`)
return
}
// Deep merge preset into current config
this.config = this.deepMerge(this.config, preset)
console.log(`✅ Applied preset: ${presetName}`)
}
private deepMerge(target: any, source: any): any {
const result = { ...target }
for (const key in source) {
if (source[key] && typeof source[key] === 'object' && !Array.isArray(source[key])) {
result[key] = this.deepMerge(target[key] || {}, source[key])
} else {
result[key] = source[key]
}
}
return result
}
getConfig(): VisualizerConfig | null {
return this.config
}
// Helper methods to get specific config sections
getParticleParams(sphereIndex: number): Partial<ParticleSystemParams> {
if (!this.config) return {}
const audioRange = this.config.audio.frequencyRanges[sphereIndex] || this.config.audio.frequencyRanges[0]
const colors = this.config.colors.sphereColorSchemes[sphereIndex] || this.config.colors.sphereColorSchemes[0]
return {
enabled: true,
particleCount: this.config.visualization.particles.defaultParticleCount,
particleSize: this.config.visualization.particles.particleSize,
particleLifetime: this.config.visualization.particles.particleLifetime,
sphereRadius: this.config.visualization.spheres.baseRadius + (sphereIndex * this.config.visualization.spheres.radiusIncrement),
innerSphereRadius: this.config.visualization.spheres.innerSphereRadius,
turbulenceStrength: this.config.visualization.physics.turbulenceStrength,
noiseScale: this.config.visualization.physics.noiseScale + (sphereIndex * this.config.visualization.physics.noiseScaleVariation),
noiseSpeed: this.config.visualization.physics.noiseSpeed,
rotationSpeedMin: this.config.visualization.rotation.rotationSpeedMin,
rotationSpeedMax: this.config.visualization.rotation.rotationSpeedMax + (sphereIndex * this.config.visualization.rotation.rotationSpeedIncrement),
rotationSmoothness: this.config.visualization.rotation.rotationSmoothness,
beatStrength: this.config.audio.beatDetection.beatStrength,
beatThreshold: audioRange.beatThreshold,
volumeChangeThreshold: audioRange.volumeChangeThreshold,
minFrequency: audioRange.minFrequency,
maxFrequency: audioRange.maxFrequency,
colorStart: colors.start,
colorEnd: colors.end,
dynamicNoiseScale: true
}
}
getCymateIntensity(): number {
return this.config?.cymatics.intensity || 0.002
}
getTendrilConfig(): any {
return this.config?.tendrils || {}
}
getEntronautConfig(): any {
return this.config?.entronaut || {}
}
getFogConfig(): any {
return this.config?.fog || {}
}
getCameraConfig(): any {
return this.config?.camera || {}
}
// Hot reload support for development
async reloadConfig(): Promise<VisualizerConfig> {
this.config = null
this.loadPromise = null
return this.loadConfig()
}
}
// Singleton instance
export const configLoader = new ConfigLoader()
// Export for use in components
export default configLoader |