Created
May 26, 2018 20:29
-
-
Save miselaytes-anton/7d795d6efcc7774b136c2b73dc38ed32 to your computer and use it in GitHub Desktop.
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
// Allows to set a parameter value for multiple nodes (of same kind) at the same time | |
function mergeParams(params){ | |
const singleParam = params[0] | |
const parameter = {}; | |
const audioNodeMethods = Object.getOwnPropertyNames(AudioParam.prototype) | |
.filter(prop => typeof singleParam[prop] === 'function') | |
//allows things like parameter.setValueAtTime(x, ctx.currentTime) | |
audioNodeMethods.forEach(method => { | |
parameter[method] = (...argums) => { | |
const args = Array.prototype.slice.call(argums); | |
params.forEach((param) => { | |
singleParam[method].apply(param, args); | |
}) | |
} | |
}) | |
//allows to do parameter.value = x | |
Object.defineProperties(parameter, { | |
value: { | |
get: function () { | |
return singleParam.value | |
}, | |
set: function (value) { | |
params.forEach(param => { | |
param.value = value | |
}) | |
} | |
} | |
}) | |
return parameter; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment