/* For Copyright and License see LICENSE.txt and COPYING.txt in the root directory */ package com.nerdscentral.audio.volume; import java.util.List; import com.nerdscentral.audio.core.SFSignal; import com.nerdscentral.audio.core.SFSingleTranslator; import com.nerdscentral.sython.Caster; import com.nerdscentral.sython.SFPL_Operator; import com.nerdscentral.sython.SFPL_RuntimeException; public class SF_DirectMix implements SFPL_Operator { public static class Translator extends SFSingleTranslator { private final double toAdd; Translator(SFSignal input, double add) { super(input); toAdd = add; } @Override public double getSample(int index) { return getInputSample(index) + toAdd; } } /** * */ private static final long serialVersionUID = 1L; @Override public Object Interpret(final Object input) throws SFPL_RuntimeException { List<Object> l = Caster.makeBunch(input); double constant = Caster.makeDouble(l.get(0)); SFSignal in = (Caster.makeSFSignal(l.get(1))); return new Translator(in, constant); } @Override public String Word() { return Messages.getString("SF_DirectMix.0"); //$NON-NLS-1$ } }