#include <ADSR.hxx>
Public Types | |
enum | Status { Attack = 0, Decay = 1, Sustain = 2, Release = 3, Done = 4 } |
typedef ADSRConfig | Config |
Public Member Functions | |
ADSR (const ADSRConfig &c=Config()) | |
~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 | HandleDecay () |
void | HandleRelease () |
void | HandleAmplitude () |
void | UpdateState () |
void | UpdateAmp (TControlData value) |
Definition at line 48 of file ADSR.hxx.
typedef ADSRConfig CLAM::ADSR::Config |
Reimplemented from CLAM::Processing.
enum CLAM::ADSR::Status |
CLAM::ADSR::ADSR | ( | const ADSRConfig & | c = Config() |
) |
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.
bool CLAM::ADSR::Do | ( | void | ) | [virtual] |
Supervised mode execution method (using ports).
Implements CLAM::Processing.
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 | ( | ) | [inline, protected] |
Definition at line 82 of file ADSR.hxx.
References HandleAttack(), and HandleRelease().
Referenced by UpdateAmp().
void CLAM::ADSR::HandleAttack | ( | void | ) | [protected] |
Definition at line 75 of file ADSR.cxx.
Referenced by HandleAmplitude().
void CLAM::ADSR::HandleRelease | ( | void | ) | [protected] |
Definition at line 88 of file ADSR.cxx.
Referenced by HandleAmplitude().
void CLAM::ADSR::UpdateAmp | ( | TControlData | value | ) | [inline, protected] |
Definition at line 99 of file ADSR.hxx.
References HandleAmplitude().
void CLAM::ADSR::UpdateState | ( | ) | [inline, protected] |
Definition at line 91 of file ADSR.hxx.
References Done, and CLAM::OutControl< ControlDataType >::SendControl().