All Downloads are FREE. Search and download functionalities are using the official Maven repository.

art.jmusic.1.6.4.1.source-code.NoiseCombInst Maven / Gradle / Ivy

The newest version!
import jm.audio.io.SampleOut;
import jm.audio.synth.Comb;
import jm.audio.synth.Envelope;
import jm.audio.synth.Noise;

public final class NoiseCombInst extends jm.audio.Instrument {
    private int sampleRate;
    private int channels;
    private int delay;
    private double decay;

    /**
     * Constructor
     */
    public NoiseCombInst(int sampleRate) {
        this(sampleRate, 1, 0.5);
    }

    public NoiseCombInst(int sampleRate, int delay, double decay) {
        this.sampleRate = sampleRate;
        this.delay = delay;
        this.decay = decay;
        this.channels = 1;
    }

    /**
     * This method is automatically called on startup to initialise
     * any AudioObjects used by this instrument
     */
    public void createChain() {
        Noise osc = new Noise(this, Noise.WHITE_NOISE, this.sampleRate,
                this.channels);
        Envelope env = new Envelope(osc, new double[]{0.0, 0.0, 0.1, 1.0, 0.3, 0.0});
        Comb comb = new Comb(env, delay, decay);
        SampleOut sout = new SampleOut(comb);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy