|
| 1 | +import { Component, OnInit, OnDestroy, AfterContentInit, ElementRef, isDevMode } from '@angular/core'; |
| 2 | +import { Router } from '@angular/router'; |
| 3 | +import { ViewChild } from '@angular/core'; |
| 4 | +import * as d3 from 'd3'; |
| 5 | + |
| 6 | +import { AreaChartComponent } from './../area-chart/area-chart.component'; |
| 7 | +import { ChartControlsService } from '../chart-controls.service'; |
| 8 | +import { DeliveryMetric } from '../order-delivery/order-delivery.component'; |
| 9 | +import { IWindow } from '../app.component'; |
| 10 | + |
| 11 | +@Component({ |
| 12 | + selector: 'app-flash-mob', |
| 13 | + templateUrl: './flash-mob.component.html', |
| 14 | + styleUrls: ['./flash-mob.component.scss'] |
| 15 | +}) |
| 16 | +export class FlashMobComponent implements OnInit, OnDestroy, AfterContentInit { |
| 17 | + @ViewChild('areaChart', { static: true }) chart: AreaChartComponent; |
| 18 | + @ViewChild('audio', { static: true }) audio: ElementRef; |
| 19 | + |
| 20 | + chartData = []; |
| 21 | + |
| 22 | + transitionTime = 200; |
| 23 | + refreshInterval; |
| 24 | + |
| 25 | + audioContext; |
| 26 | + analyzer; |
| 27 | + dataArray; |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + constructor(private chartControlsService: ChartControlsService) { |
| 32 | + this.chartControlsService.fullScreen = true; |
| 33 | + } |
| 34 | + |
| 35 | + ngOnInit() { |
| 36 | + |
| 37 | + // if(isDevMode()) { |
| 38 | + // this.audio.nativeElement.source = 'assets/xlf.m4a'; |
| 39 | + // } |
| 40 | + |
| 41 | + } |
| 42 | + |
| 43 | + initialize() { |
| 44 | + |
| 45 | + if ('AudioContext' in window) { |
| 46 | + const audioContext = new AudioContext(); |
| 47 | + const audioSrc = audioContext.createMediaElementSource(this.audio.nativeElement); |
| 48 | + this.analyzer = audioContext.createAnalyser(); |
| 49 | + |
| 50 | + |
| 51 | + const bufferLength = this.analyzer.frequencyBinCount; |
| 52 | + console.log('bufferlength', bufferLength); |
| 53 | + this.dataArray = new Uint8Array(bufferLength); |
| 54 | + this.analyzer.fftSize = 2048; |
| 55 | + audioSrc.connect(this.analyzer); |
| 56 | + audioSrc.connect(audioContext.destination); |
| 57 | + this.analyzer.getByteFrequencyData(this.dataArray); |
| 58 | + |
| 59 | + } |
| 60 | + |
| 61 | + |
| 62 | + if (this.refreshInterval) { |
| 63 | + clearInterval(this.refreshInterval); |
| 64 | + } |
| 65 | + this.generateData(); |
| 66 | + this.chart.data = [...this.chartData]; |
| 67 | + this.audio.nativeElement.play(); |
| 68 | + this.refreshInterval = setInterval(() => { |
| 69 | + if(document.hasFocus()) { |
| 70 | + this.generateData(); |
| 71 | + this.chart.data = [...this.chartData]; |
| 72 | + } |
| 73 | + }, this.transitionTime); |
| 74 | + |
| 75 | + } |
| 76 | + |
| 77 | + ngOnDestroy() { |
| 78 | + if (this.refreshInterval) { |
| 79 | + clearInterval(this.refreshInterval); |
| 80 | + } |
| 81 | + } |
| 82 | + |
| 83 | + ngAfterContentInit() { |
| 84 | + this.initialize(); |
| 85 | + } |
| 86 | + |
| 87 | + generateData() { |
| 88 | + this.chartData = []; |
| 89 | + let maxDecibelRatio = 1; |
| 90 | + let mf = 1.0; |
| 91 | + if (this.analyzer) { |
| 92 | + |
| 93 | + this.analyzer.getByteFrequencyData(this.dataArray); |
| 94 | + // maxDecibelRatio = this.analyzer.maxDecibels / 100 ; |
| 95 | + // console.log(maxDecibelRatio); |
| 96 | + console.log('data array mean', 1.1 * d3.mean(this.dataArray)); |
| 97 | + mf = 200.0 / d3.mean(this.dataArray) ; |
| 98 | + console.log(mf); |
| 99 | + |
| 100 | + //this.chartData.push(this.dataArray); |
| 101 | + } |
| 102 | + const meanPrepTime = randomInt(10, 11) + 0.0 ; |
| 103 | + const meanWaitTime = randomInt(8, 9) + 0.0; |
| 104 | + const meanTransitTime = randomInt(9, 10) + 0.0; |
| 105 | + |
| 106 | + const meanTotalTime = meanPrepTime + meanWaitTime + meanTransitTime; |
| 107 | + |
| 108 | + // const sigmaPrepTime = mf * randomInt(1, 1) ; |
| 109 | + const sigmaPrepTime = mf * randomInt(1, 2) ; |
| 110 | + console.log('sprep', mf); |
| 111 | + const sigmaWaitTime = randomInt(2, 3); |
| 112 | + const sigmaTransitTime = randomInt(1, 2); |
| 113 | + |
| 114 | + const sigmaTotalTime = Math.floor( |
| 115 | + Math.sqrt(Math.pow(sigmaPrepTime, 2) + |
| 116 | + Math.pow(sigmaWaitTime, 2) + |
| 117 | + Math.pow(sigmaTransitTime, 2)) |
| 118 | + ); |
| 119 | + |
| 120 | + |
| 121 | + let prandomizer = d3.randomNormal(8, sigmaPrepTime); |
| 122 | + let wrandomizer = d3.randomNormal(16, sigmaPrepTime); |
| 123 | + let trandomizer = d3.randomNormal(24, sigmaPrepTime); |
| 124 | + let qrandomizer = d3.randomNormal(32, sigmaPrepTime); |
| 125 | + let srandomizer = d3.randomNormal(40, sigmaPrepTime); |
| 126 | + |
| 127 | + const ptimes = []; |
| 128 | + const wtimes = []; |
| 129 | + const ttimes = []; |
| 130 | + const qtimes = []; |
| 131 | + const stimes = []; |
| 132 | + for (let i = 0; i < 1000; i++) { |
| 133 | + const p = Math.floor(prandomizer()); |
| 134 | + const w = Math.floor(wrandomizer()); |
| 135 | + const t = Math.floor(trandomizer()); |
| 136 | + const q = Math.floor(qrandomizer()); |
| 137 | + const s = srandomizer(); |
| 138 | + ptimes.push(p); |
| 139 | + wtimes.push(w); |
| 140 | + ttimes.push(t); |
| 141 | + qtimes.push(q); |
| 142 | + stimes.push(s); |
| 143 | + } |
| 144 | + this.chartData.push(ptimes); |
| 145 | + this.chartData.push(wtimes); |
| 146 | + this.chartData.push(ttimes); |
| 147 | + this.chartData.push(qtimes); |
| 148 | + this.chartData.push(stimes); |
| 149 | + // this.chartData.push(totaltimes); |
| 150 | + } |
| 151 | + |
| 152 | +} |
| 153 | + |
| 154 | +export function randomInt(min, max) { |
| 155 | + return Math.floor(Math.random() * (max - min + 1)) + min; |
| 156 | +} |
| 157 | + |
0 commit comments