CLAM-Development
1.1
|
#include <ADSR.hxx>
Public Types | |
enum | Status { Attack = 0, Decay = 1, Sustain = 2, Release = 3, Done = 4 } |
Public Member Functions | |
ADSR () | |
ADSR (const ADSRConfig &c) | |
~ADSR () | |
const char * | GetClassName () const |
Override it in every subclass and retur the name of that class. | |
const ProcessingConfig & | GetConfig () const |
Configuration getter. | |
bool | ConcreteConfigure (const ProcessingConfig &c) |
Configuration method interface. | |
bool | Do (void) |
Supervised mode execution method (using ports) | |
bool | Do (Audio &out) |
Public Attributes | |
AudioOutPort | mOutput |
Protected Member Functions | |
void | HandleAttack (void) |
void | HandleDecay (void) |
void | HandleRelease (void) |
void | HandleAmplitude (void) |
void | UpdateState (void) |
int | UpdateAmp (TControlData value) |
enum CLAM::ADSR::Status |
CLAM::ADSR::ADSR | ( | ) |
Definition at line 54 of file ADSR.cxx.
References CLAM::Processing::Configure().
CLAM::ADSR::ADSR | ( | const ADSRConfig & | c | ) |
Definition at line 68 of file ADSR.cxx.
References CLAM::Processing::Configure().
CLAM::ADSR::~ADSR | ( | ) | [inline] |
bool CLAM::ADSR::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.
Definition at line 80 of file ADSR.cxx.
References CLAM::Processing::CopyAsConcreteConfig().
bool CLAM::ADSR::Do | ( | void | ) | [virtual] |
Supervised mode execution method (using ports)
Implements CLAM::Processing.
Definition at line 217 of file ADSR.cxx.
References CLAM::AudioOutPort::GetAudio(), mOutput, and CLAM::OutPort< Token >::Produce().
bool CLAM::ADSR::Do | ( | Audio & | out | ) |
Definition at line 112 of file ADSR.cxx.
References Attack, Decay, Done, CLAM::Audio::GetSize(), HandleDecay(), Release, Sustain, and UpdateState().
const char* CLAM::ADSR::GetClassName | ( | ) | const [inline, virtual] |
Override it in every subclass and retur the name of that class.
Implements CLAM::Processing.
const ProcessingConfig& CLAM::ADSR::GetConfig | ( | ) | const [inline, virtual] |
Configuration getter.
Gets the configuration parameters used to create the object.
Reimplemented from CLAM::Processing.
void CLAM::ADSR::HandleAmplitude | ( | void | ) | [inline, protected] |
Definition at line 81 of file ADSR.hxx.
References HandleAttack(), and HandleRelease().
Referenced by UpdateAmp().
void CLAM::ADSR::HandleAttack | ( | void | ) | [protected] |
void CLAM::ADSR::HandleDecay | ( | void | ) | [protected] |
void CLAM::ADSR::HandleRelease | ( | void | ) | [protected] |
int CLAM::ADSR::UpdateAmp | ( | TControlData | value | ) | [inline, protected] |
Definition at line 98 of file ADSR.hxx.
References HandleAmplitude().
void CLAM::ADSR::UpdateState | ( | void | ) | [inline, protected] |
Definition at line 90 of file ADSR.hxx.
References Done, and CLAM::OutControl::SendControl().
Referenced by Do().