CLAM-Development
1.1
|
#include <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 |
Definition at line 84 of file SimpleOscillator.hxx.
typedef InControlTmpl<SimpleOscillator> CLAM::SimpleOscillator::SimpleOscillatorCtrl [protected] |
Definition at line 94 of file SimpleOscillator.hxx.
Definition at line 58 of file SimpleOscillator.cxx.
References CLAM::Processing::Configure(), mAmpCtl, mFreqCtl, UpdateAmp(), and UpdateFreq().
Definition at line 75 of file SimpleOscillator.cxx.
References CLAM::Processing::Configure(), mAmpCtl, mFreqCtl, UpdateAmp(), and UpdateFreq().
CLAM::SimpleOscillator::~SimpleOscillator | ( | ) | [virtual] |
Definition at line 88 of file SimpleOscillator.cxx.
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().
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. |
true if the processing object is left in a consistent state, and can be executed.
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::SpectralAmplitudeModulation::Do(), CLAM::SpectralRingModulation::Do(), CLAM::SpectralPhaseModulation::Do(), CLAM::ThreeBandAM::Do(), and CLAM::OscillatingSpectralNotch::Do().
bool CLAM::SimpleOscillator::Do | ( | Audio & | out | ) |
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.
bool CLAM::SimpleOscillator::Do | ( | TData & | out | ) |
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.
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.
int CLAM::SimpleOscillator::UpdateAmp | ( | TControlData | value | ) | [protected] |
Definition at line 159 of file SimpleOscillator.cxx.
References mAmpUpdated.
Referenced by SimpleOscillator().
int CLAM::SimpleOscillator::UpdateFreq | ( | TControlData | value | ) | [protected] |
Definition at line 152 of file SimpleOscillator.cxx.
References mFreqUpdated.
Referenced by SimpleOscillator().
TData CLAM::SimpleOscillator::mAmp [protected] |
Definition at line 89 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), CLAM::Oscillator::ConcreteConfigure(), ConcreteConfigure(), CLAM::Oscillator::Do(), and Do().
SimpleOscillatorCtrl* CLAM::SimpleOscillator::mAmpCtl [protected] |
Definition at line 99 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), SimpleOscillator(), and ~SimpleOscillator().
bool CLAM::SimpleOscillator::mAmpUpdated [protected] |
Definition at line 97 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), and UpdateAmp().
Definition at line 88 of file SimpleOscillator.hxx.
Referenced by ConcreteConfigure(), and GetConfig().
TData CLAM::SimpleOscillator::mDeltaPhase [protected] |
Definition at line 91 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), CLAM::Oscillator::ConcreteConfigure(), ConcreteConfigure(), CLAM::Oscillator::Do(), and Do().
SimpleOscillatorCtrl* CLAM::SimpleOscillator::mFreqCtl [protected] |
Definition at line 98 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), SimpleOscillator(), and ~SimpleOscillator().
bool CLAM::SimpleOscillator::mFreqUpdated [protected] |
Definition at line 96 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), and UpdateFreq().
AudioOutPort CLAM::SimpleOscillator::mOutput [protected] |
Definition at line 87 of file SimpleOscillator.hxx.
Referenced by CLAM::Oscillator::Do(), and Do().
TData CLAM::SimpleOscillator::mPhase [protected] |
Definition at line 90 of file SimpleOscillator.hxx.
Referenced by CLAM::Oscillator::ConcreteConfigure(), ConcreteConfigure(), CLAM::Oscillator::Do(), and Do().
Definition at line 102 of file SimpleOscillator.hxx.
Referenced by ConcreteConfigure(), and Do().
TData CLAM::SimpleOscillator::mSamplingRate [protected] |
Definition at line 92 of file SimpleOscillator.hxx.
Referenced by ApplyFreqAndAmpControls(), CLAM::Oscillator::ConcreteConfigure(), and ConcreteConfigure().