|
- /*
- ZynAddSubFX - a software synthesizer
-
- Unison.h - Unison effect (multivoice chorus)
- Copyright (C) 2002-2009 Nasca Octavian Paul
- Author: Nasca Octavian Paul
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
-
- #ifndef UNISON_H
- #define UNISON_H
-
- #include "../Misc/Util.h"
-
- //how much the unison frequencies varies (always >= 1.0)
- #define UNISON_FREQ_SPAN 2.0f
-
- namespace zyncarla {
-
- class Allocator;
-
- class Unison
- {
- public:
- Unison(Allocator *alloc_, int update_period_samples_, float max_delay_sec_, float srate_f);
- ~Unison();
-
- void setSize(int new_size);
- void setBaseFrequency(float freq);
- void setBandwidth(float bandwidth_cents);
-
- void process(int bufsize, float *inbuf, float *outbuf = NULL);
-
- private:
- void updateParameters(void);
- void updateUnisonData(void);
-
- int unison_size;
- float base_freq;
- struct UnisonVoice {
- float step; //base LFO
- float position;
- float realpos1; //the position regarding samples
- float realpos2;
- float relative_amplitude;
- float lin_fpos;
- float lin_ffreq;
- UnisonVoice() {
- position = RND * 1.8f - 0.9f;
- realpos1 = 0.0f;
- realpos2 = 0.0f;
- step = 0.0f;
- relative_amplitude = 1.0f;
- }
- } *uv;
-
- int update_period_samples;
- int update_period_sample_k;
- int max_delay, delay_k;
- bool first_time;
- float *delay_buffer;
- float unison_amplitude_samples;
- float unison_bandwidth_cents;
-
- // current setup
- float samplerate_f;
- Allocator &alloc;
- };
-
- }
-
- #endif
|