Arduino STK  4.6.2
Generator.h
1 #ifndef STK_GENERATOR_H
2 #define STK_GENERATOR_H
3 
4 #include "Stk.h"
5 
6 namespace stk {
7 
8 /***************************************************/
18 /***************************************************/
19 
20 class Generator : public Stk
21 {
22  public:
23 
25  Generator( void ) { lastFrame_.resize( 1, 1, 0.0 ); };
26 
28  unsigned int channelsOut( void ) const { return lastFrame_.channels(); };
29 
31  const StkFrames& lastFrame( void ) const { return lastFrame_; };
32 
34 
41  virtual StkFrames& tick( StkFrames& frames, unsigned int channel = 0 ) = 0;
42 
43  protected:
44 
45  StkFrames lastFrame_;
46 };
47 
48 } // stk namespace
49 
50 #endif
STK abstract unit generator parent class.
Definition: Generator.h:21
const StkFrames & lastFrame(void) const
Return an StkFrames reference to the last output sample frame.
Definition: Generator.h:31
virtual StkFrames & tick(StkFrames &frames, unsigned int channel=0)=0
Fill the StkFrames object with computed sample frames, starting at the specified channel.
Generator(void)
Class constructor.
Definition: Generator.h:25
unsigned int channelsOut(void) const
Return the number of output channels for the class.
Definition: Generator.h:28
An STK class to handle vectorized audio data.
Definition: Stk.h:287
unsigned int channels(void) const
Return the number of channels represented by the data.
Definition: Stk.h:415
void resize(size_t nFrames, unsigned int nChannels=1)
Resize self to represent the specified number of channels and frames.
STK base class.
Definition: Stk.h:144
The STK namespace.
Definition: ADSR.h:8