Skip to content
Snippets Groups Projects
Commit b7b1a38e authored by Robert Long's avatar Robert Long
Browse files

Don't use events for audio-feedback

parent 20d6d328
No related branches found
No related tags found
No related merge requests found
AFRAME.registerComponent("networked-audio-analyser", { AFRAME.registerComponent("networked-audio-analyser", {
schema: {},
async init() { async init() {
this.volume = 0;
this.el.addEventListener("sound-source-set", event => { this.el.addEventListener("sound-source-set", event => {
const ctx = THREE.AudioContext.getContext(); const ctx = THREE.AudioContext.getContext();
this.analyser = ctx.createAnalyser(); this.analyser = ctx.createAnalyser();
...@@ -20,60 +20,38 @@ AFRAME.registerComponent("networked-audio-analyser", { ...@@ -20,60 +20,38 @@ AFRAME.registerComponent("networked-audio-analyser", {
sum += this.levels[i]; sum += this.levels[i];
} }
this.volume = sum / this.levels.length; this.volume = sum / this.levels.length;
this.el.emit("audioFrequencyChange", {
volume: this.volume,
levels: this.levels
});
} }
}); });
AFRAME.registerComponent("matcolor-audio-feedback", { AFRAME.registerComponent("matcolor-audio-feedback", {
schema: { tick() {
analyserSrc: { type: "selector" } if (!this.mat) return;
},
init: function() {
this.onAudioFrequencyChange = this.onAudioFrequencyChange.bind(this);
},
play() { const audioAnalyser = this.el.components["networked-audio-analyser"];
(this.data.analyserSrc || this.el).addEventListener("audioFrequencyChange", this.onAudioFrequencyChange);
},
pause() { if (!audioAnalyser) return;
(this.data.analyserSrc || this.el).removeEventListener("audioFrequencyChange", this.onAudioFrequencyChange);
},
onAudioFrequencyChange(e) { this.object3D.mesh.color.setScalar(1 + audioAnalyser.volume / 255 * 2);
if (!this.mat) return;
this.object3D.mesh.color.setScalar(1 + e.detail.volume / 255 * 2);
} }
}); });
AFRAME.registerComponent("scale-audio-feedback", { AFRAME.registerComponent("scale-audio-feedback", {
schema: { schema: {
analyserSrc: { type: "selector" },
minScale: { default: 1 }, minScale: { default: 1 },
maxScale: { default: 2 } maxScale: { default: 2 }
}, },
init() { tick() {
this.onAudioFrequencyChange = this.onAudioFrequencyChange.bind(this);
},
play() {
(this.data.analyserSrc || this.el).addEventListener("audioFrequencyChange", this.onAudioFrequencyChange);
},
pause() {
(this.data.analyserSrc || this.el).removeEventListener("audioFrequencyChange", this.onAudioFrequencyChange);
},
onAudioFrequencyChange(e) {
// TODO: come up with a cleaner way to handle this. // TODO: come up with a cleaner way to handle this.
// bone's are "hidden" by scaling them with bone-visibility, without this we would overwrite that. // bone's are "hidden" by scaling them with bone-visibility, without this we would overwrite that.
if (!this.el.object3D.visible) return; if (!this.el.object3D.visible) return;
const { minScale, maxScale } = this.data; const { minScale, maxScale } = this.data;
this.el.object3D.scale.setScalar(minScale + (maxScale - minScale) * e.detail.volume / 255);
const audioAnalyser = this.el.components["networked-audio-analyser"];
if (!audioAnalyser) return;
this.el.object3D.scale.setScalar(minScale + (maxScale - minScale) * audioAnalyser.volume / 255);
} }
}); });
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment