#include <ADSR.hxx>
Definition at line 48 of file 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 | ( | ) |
CLAM::ADSR::ADSR | ( | const ADSRConfig & | c | ) |
void CLAM::ADSR::HandleAttack | ( | void | ) | [protected] |
void CLAM::ADSR::HandleDecay | ( | void | ) | [protected] |
void CLAM::ADSR::HandleRelease | ( | void | ) | [protected] |
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::UpdateState | ( | void | ) | [inline, protected] |
Definition at line 90 of file ADSR.hxx.
References Done, and CLAM::OutControl::SendControl().
Referenced by Do().
int CLAM::ADSR::UpdateAmp | ( | TControlData | value | ) | [inline, protected] |
const char* CLAM::ADSR::GetClassName | ( | ) | const [inline, virtual] |
const ProcessingConfig& CLAM::ADSR::GetConfig | ( | ) | const [inline, virtual] |
Configuration getter.
Gets the configuration parameters used to create the object.
Reimplemented from CLAM::Processing.
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. |
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().
Definition at line 112 of file ADSR.cxx.
References Attack, Decay, Done, CLAM::Audio::GetSize(), HandleDecay(), Release, Sustain, and UpdateState().