codeformat
This commit is contained in:
parent
83dfbb84c2
commit
1e352fdf80
2 changed files with 111 additions and 109 deletions
|
|
@ -20,11 +20,8 @@ const fm = (osc, harmonicityRatio, modulationIndex, wave = 'sine') => {
|
|||
return mod(modfreq, modgain, wave);
|
||||
};
|
||||
|
||||
|
||||
export function registerSynthSounds() {
|
||||
['sine', 'square', 'triangle',
|
||||
'sawtooth', 'pink', 'white',
|
||||
'brown'].forEach((wave) => {
|
||||
['sine', 'square', 'triangle', 'sawtooth', 'pink', 'white', 'brown'].forEach((wave) => {
|
||||
registerSound(
|
||||
wave,
|
||||
(t, value, onended) => {
|
||||
|
|
@ -59,7 +56,11 @@ export function registerSynthSounds() {
|
|||
}
|
||||
// maybe pull out the above frequency resolution?? (there is also getFrequency but it has no default)
|
||||
// make oscillator
|
||||
const { node: o, stop, dry_node = null } = getOscillator({
|
||||
const {
|
||||
node: o,
|
||||
stop,
|
||||
dry_node = null,
|
||||
} = getOscillator({
|
||||
t,
|
||||
s: wave,
|
||||
freq,
|
||||
|
|
@ -71,7 +72,12 @@ export function registerSynthSounds() {
|
|||
// FM + FM envelope
|
||||
let stopFm, fmEnvelope;
|
||||
if (fmModulationIndex) {
|
||||
const { node: modulator, stop } = fm(dry_node !== null ? dry_node : o, fmHarmonicity, fmModulationIndex, fmWaveform);
|
||||
const { node: modulator, stop } = fm(
|
||||
dry_node !== null ? dry_node : o,
|
||||
fmHarmonicity,
|
||||
fmModulationIndex,
|
||||
fmWaveform,
|
||||
);
|
||||
if (![fmAttack, fmDecay, fmSustain, fmRelease, fmVelocity].find((v) => v !== undefined)) {
|
||||
// no envelope by default
|
||||
modulator.connect(dry_node !== null ? dry_node.frequency : o.frequency);
|
||||
|
|
@ -163,16 +169,16 @@ export function getNoiseOscillator({ t, ac, type = 'white' }) {
|
|||
output[i] = Math.random() * 2 - 1;
|
||||
} else if (type === 'brown') {
|
||||
let white = Math.random() * 2 - 1;
|
||||
output[i] = (lastOut + (0.02 * white)) / 1.02;
|
||||
output[i] = (lastOut + 0.02 * white) / 1.02;
|
||||
lastOut = output[i];
|
||||
} else if (type === 'pink') {
|
||||
let white = Math.random() * 2 - 1;
|
||||
b0 = 0.99886 * b0 + white * 0.0555179;
|
||||
b1 = 0.99332 * b1 + white * 0.0750759;
|
||||
b2 = 0.96900 * b2 + white * 0.1538520;
|
||||
b3 = 0.86650 * b3 + white * 0.3104856;
|
||||
b4 = 0.55000 * b4 + white * 0.5329522;
|
||||
b5 = -0.7616 * b5 - white * 0.0168980;
|
||||
b2 = 0.969 * b2 + white * 0.153852;
|
||||
b3 = 0.8665 * b3 + white * 0.3104856;
|
||||
b4 = 0.55 * b4 + white * 0.5329522;
|
||||
b5 = -0.7616 * b5 - white * 0.016898;
|
||||
output[i] = b0 + b1 + b2 + b3 + b4 + b5 + b6 + white * 0.5362;
|
||||
output[i] *= 0.11;
|
||||
b6 = white * 0.115926;
|
||||
|
|
@ -186,7 +192,7 @@ export function getNoiseOscillator({ t, ac, type = 'white' }) {
|
|||
|
||||
return {
|
||||
node: o,
|
||||
stop: (time) => o.stop(time)
|
||||
stop: (time) => o.stop(time),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -196,11 +202,11 @@ export function getOscillator({ s, freq, t, vib, vibmod, partials, noise }) {
|
|||
let o;
|
||||
|
||||
if (['pink', 'white', 'brown'].includes(s)) {
|
||||
let noiseOscillator = getNoiseOscillator({ t: t, ac: getAudioContext(), type: s })
|
||||
let noiseOscillator = getNoiseOscillator({ t: t, ac: getAudioContext(), type: s });
|
||||
return {
|
||||
node: noiseOscillator.node,
|
||||
stop: noiseOscillator.stop
|
||||
}
|
||||
stop: noiseOscillator.stop,
|
||||
};
|
||||
} else {
|
||||
if (!partials || s === 'sine') {
|
||||
o = getAudioContext().createOscillator();
|
||||
|
|
@ -249,8 +255,8 @@ export function getOscillator({ s, freq, t, vib, vibmod, partials, noise }) {
|
|||
vibrato_oscillator?.stop(time);
|
||||
o.stop(time);
|
||||
noiseOscillator.stop(time);
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
@ -262,4 +268,3 @@ export function getOscillator({ s, freq, t, vib, vibmod, partials, noise }) {
|
|||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,10 +35,7 @@ flavours of noise, here written from hard to soft.
|
|||
|
||||
Some amount of pink noise can also be added to any oscillator by using the `noise` paremeter:
|
||||
|
||||
<MiniRepl
|
||||
client:idle
|
||||
tune={`note("c3").noise("<0.1 0.25 0.5>").scope()`}
|
||||
/>
|
||||
<MiniRepl client:idle tune={`note("c3").noise("<0.1 0.25 0.5>").scope()`} />
|
||||
|
||||
### Additive Synthesis
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue