This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaultLFO = { | |
type: 'sine', | |
freq: 12, | |
volume: 40, | |
}; | |
// Uses same `duration` as "source" oscillator | |
vibrato(duration, options = {}) { | |
const config = Object.assign(defaultLFO, options); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaultOptions = { | |
speed: 10, | |
duration: 1, | |
volume: { | |
min: 0.1, | |
max: 1, | |
}, | |
}; | |
tremolo(options = {}) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_setGain(reverse, duration) { | |
this.gainNode.gain.setValueAtTime(1, this.context.currentTime); | |
if (reverse) { | |
this.gainNode.gain.exponentialRampToValueAtTime(0.5, this.context.currentTime + duration); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function reverseBuffer(buffer, context) { | |
const reverse = context.createBuffer( | |
buffer.numberOfChannels, | |
buffer.length, | |
buffer.sampleRate | |
); | |
for (let channels = 0; channels < buffer.numberOfChannels; channels++) { | |
const dest = reverse.getChannelData(channels); | |
const src = buffer.getChannelData(channels); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function distortionCurve(amount = 0) { | |
const sampleRate = 44100; | |
const curve = new Float32Array(sampleRate); | |
const deg = Math.PI / 180; | |
for (let i = 0; i < sampleRate; ++i) { | |
const x = (i * 2 / sampleRate) - 1; | |
curve[i] = ( | |
( | |
(3 + amount) * x * 20 * deg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function disabledAudio() { | |
return null; | |
} | |
export default class SoundToggle { | |
constructor(activator, sounds) { | |
this.activator = activator; | |
this.sounds = sounds; | |
this.keys = Object.keys(sounds); | |
this.backups = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let swappedNode = null; | |
draggable.on('drag:start', () => { | |
SoundFx.Synth.play('up'); | |
}); | |
draggable.on('swappable:swapped', ({swappedElement}) => { | |
swappedNode = swappedElement; | |
SoundFx.Synth.play('swap'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import synthPresets from './helpers/synth-presets'; | |
import methodPatch from './helpers/method-patch'; | |
import MobileAudioFix from './helpers/mobile-audio-fix'; | |
const initialGain = 0.001; | |
export default class Synth { | |
static synthKeys = Object.keys(synthPresets); | |
constructor() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const up = { | |
wave: 'sine', | |
freq: { | |
start: 392, | |
end: 493.88, | |
}, | |
volume: 1, | |
duration: 0.2, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const duration = 0.2; | |
const volume = { | |
min: 0.001, | |
max: 1, | |
}; | |
gainNode.gain.setValueAtTime( | |
volume.min, | |
context.currentTime | |
); |