#include <SimpleOscillator.hxx>
Definition at line 84 of file SimpleOscillator.hxx.
Public Member Functions | |
SimpleOscillator () | |
SimpleOscillator (const SimpleOscillatorConfig &c) | |
virtual | ~SimpleOscillator () |
const char * | GetClassName () const |
Override it in every subclass and retur the name of that class. | |
virtual const ProcessingConfig & | GetConfig () const |
Configuration getter. | |
virtual bool | ConcreteConfigure (const ProcessingConfig &c) |
Configuration method interface. | |
virtual bool | Do (void) |
Supervised mode execution method (using ports). | |
bool | Do (Audio &out) |
bool | Do (TData &out) |
Do for generating one sample at a time: useful to use the oscillator as a LFO. | |
Protected Types | |
typedef InControlTmpl < SimpleOscillator > | SimpleOscillatorCtrl |
Protected Member Functions | |
void | ApplyFreqAndAmpControls () |
int | UpdateFreq (TControlData) |
int | UpdateAmp (TControlData) |
Protected Attributes | |
AudioOutPort | mOutput |
SimpleOscillatorConfig | mConfig |
TData | mAmp |
TData | mPhase |
TData | mDeltaPhase |
TData | mSamplingRate |
bool | mFreqUpdated |
bool | mAmpUpdated |
SimpleOscillatorCtrl * | mFreqCtl |
SimpleOscillatorCtrl * | mAmpCtl |
InControl | mSamplesBetweenCallsCtl |
typedef InControlTmpl<SimpleOscillator> CLAM::SimpleOscillator::SimpleOscillatorCtrl [protected] |
Definition at line 94 of file SimpleOscillator.hxx.
CLAM::SimpleOscillator::SimpleOscillator | ( | ) |
Definition at line 58 of file SimpleOscillator.cxx.
References CLAM::Processing::Configure(), mAmpCtl, mFreqCtl, UpdateAmp(), and UpdateFreq().
CLAM::SimpleOscillator::SimpleOscillator | ( | const SimpleOscillatorConfig & | c | ) |
Definition at line 75 of file SimpleOscillator.cxx.
References CLAM::Processing::Configure(), mAmpCtl, mFreqCtl, UpdateAmp(), and UpdateFreq().
CLAM::SimpleOscillator::~SimpleOscillator | ( | ) | [virtual] |
void CLAM::SimpleOscillator::ApplyFreqAndAmpControls | ( | ) | [inline, protected] |
Definition at line 105 of file SimpleOscillator.hxx.
References CLAM::InControl::GetLastValue(), mAmp, mAmpCtl, mAmpUpdated, mDeltaPhase, mFreqCtl, mFreqUpdated, mSamplingRate, and PI.
Referenced by Do().
int CLAM::SimpleOscillator::UpdateFreq | ( | TControlData | value | ) | [protected] |
Definition at line 152 of file SimpleOscillator.cxx.
References mFreqUpdated.
Referenced by SimpleOscillator().
int CLAM::SimpleOscillator::UpdateAmp | ( | TControlData | value | ) | [protected] |
Definition at line 159 of file SimpleOscillator.cxx.
References mAmpUpdated.
Referenced by SimpleOscillator().
const char* CLAM::SimpleOscillator::GetClassName | ( | ) | const [inline, virtual] |
Override it in every subclass and retur the name of that class.
Implements CLAM::Processing.
Reimplemented in CLAM::Oscillator.
Definition at line 130 of file SimpleOscillator.hxx.
virtual const ProcessingConfig& CLAM::SimpleOscillator::GetConfig | ( | ) | const [inline, virtual] |
Configuration getter.
Gets the configuration parameters used to create the object.
Reimplemented from CLAM::Processing.
Reimplemented in CLAM::Oscillator.
Definition at line 132 of file SimpleOscillator.hxx.
References mConfig.
bool CLAM::SimpleOscillator::ConcreteConfigure | ( | const ProcessingConfig & | ) | [virtual] |
Configuration method interface.
The Processing base class forces all the concrete classes derived from it to implement this method, which must actually perform the specific configuration tasks.
Note that the user can not call this method directly. He will use Configure instead. The argument is expected to be an object of the necesary concrete configuration class.
Reference | to the configuration object. |
This | method must throw a bad_cast exception if the argument is not an object of the expected configuration class. |
Reimplemented from CLAM::Processing.
Reimplemented in CLAM::Oscillator.
Definition at line 94 of file SimpleOscillator.cxx.
References CLAM::Processing::CopyAsConcreteConfig(), CLAM::InControl::DoControl(), mAmp, mConfig, mDeltaPhase, mPhase, mSamplesBetweenCallsCtl, mSamplingRate, and PI.
bool CLAM::SimpleOscillator::Do | ( | void | ) | [virtual] |
Supervised mode execution method (using ports).
Implements CLAM::Processing.
Reimplemented in CLAM::Oscillator.
Definition at line 108 of file SimpleOscillator.cxx.
References CLAM::AudioOutPort::GetAudio(), mOutput, and CLAM::OutPort< Token >::Produce().
Referenced by CLAM::SpectralRingModulation::Do(), CLAM::SpectralPhaseModulation::Do(), CLAM::SpectralAmplitudeModulation::Do(), CLAM::Oscillator::Do(), CLAM::OscillatingSpectralNotch::Do(), and CLAM::ThreeBandAM::Do().
Reimplemented in CLAM::Oscillator.
Definition at line 116 of file SimpleOscillator.cxx.
References CLAM::Processing::AbleToExecute(), ApplyFreqAndAmpControls(), CLAM::Audio::GetSize(), mAmp, mDeltaPhase, mPhase, and PI.
Do for generating one sample at a time: useful to use the oscillator as a LFO.
Definition at line 136 of file SimpleOscillator.cxx.
References CLAM::Processing::AbleToExecute(), ApplyFreqAndAmpControls(), CLAM::InControl::GetLastValue(), mAmp, mDeltaPhase, mPhase, mSamplesBetweenCallsCtl, and PI.
AudioOutPort CLAM::SimpleOscillator::mOutput [protected] |
Definition at line 88 of file SimpleOscillator.hxx.
Referenced by ConcreteConfigure(), and GetConfig().
TData CLAM::SimpleOscillator::mAmp [protected] |
Definition at line 89 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), ConcreteConfigure(), CLAM::Oscillator::ConcreteConfigure(), Do(), and CLAM::Oscillator::Do().
TData CLAM::SimpleOscillator::mPhase [protected] |
Definition at line 90 of file SimpleOscillator.hxx.
Referenced by ConcreteConfigure(), CLAM::Oscillator::ConcreteConfigure(), Do(), and CLAM::Oscillator::Do().
TData CLAM::SimpleOscillator::mDeltaPhase [protected] |
Definition at line 91 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), ConcreteConfigure(), CLAM::Oscillator::ConcreteConfigure(), Do(), and CLAM::Oscillator::Do().
TData CLAM::SimpleOscillator::mSamplingRate [protected] |
Definition at line 92 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), ConcreteConfigure(), and CLAM::Oscillator::ConcreteConfigure().
bool CLAM::SimpleOscillator::mFreqUpdated [protected] |
Definition at line 96 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), and UpdateFreq().
bool CLAM::SimpleOscillator::mAmpUpdated [protected] |
Definition at line 97 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), and UpdateAmp().
SimpleOscillatorCtrl* CLAM::SimpleOscillator::mFreqCtl [protected] |
Definition at line 98 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), SimpleOscillator(), and ~SimpleOscillator().
SimpleOscillatorCtrl* CLAM::SimpleOscillator::mAmpCtl [protected] |
Definition at line 99 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), SimpleOscillator(), and ~SimpleOscillator().