4 #include "synthfunctions.h" 5 #include "synthlabpcmsource.h" PCM oscillator that plays wave-slices that are mapped to the C-major scale keys starting at middle C...
Definition: pcmocore_III.h:10
double phaseInc
must persist from update to render
Definition: pcmocore_III.h:33
void checkAddSampleSet(std::string sampleDirectory, std::string sampleName, CoreProcData &processInfo)
Query the database and add a set of PCM samples if not existing already.
Definition: pcmocore_III.cpp:61
IPCMSampleSource * selectedSampleSource
selected PCM sample
Definition: pcmocore_III.h:39
double panRightGain
right channel gain
Definition: pcmocore_III.h:29
WaveSliceCore()
Construction: Cores follow the same construction pattern.
Definition: pcmocore_III.cpp:6
uint32_t currentIndex
must persist from update to render
Definition: pcmocore_III.h:36
double panLeftGain
left channel gain
Definition: pcmocore_III.h:28
virtual bool update(CoreProcData &processInfo)
Updates the object for the next block of audio processing.
Definition: pcmocore_III.cpp:70
double sampleRate
sample rate
Definition: pcmocore_III.h:25
Interface for PCM sample sources.
Definition: synthbase.h:948
virtual bool render(CoreProcData &processInfo)
Renders the output of the module.
Definition: pcmocore_III.cpp:138
Definition: analogegcore.cpp:4
virtual bool doNoteOff(CoreProcData &processInfo)
Note-off handler for the ModuleCore.
Definition: pcmocore_III.cpp:176
double readIndex
must persist from update to render
Definition: pcmocore_III.h:32
double midiPitch
the midi pitch
Definition: pcmocore_III.h:26
virtual bool doNoteOn(CoreProcData &processInfo)
Note-on handler for the ModuleCore.
Definition: pcmocore_III.cpp:162
double outputAmplitude
amplitude in dB
Definition: pcmocore_III.h:27
virtual bool reset(CoreProcData &processInfo)
Resets object to initialized state.
Definition: pcmocore_III.cpp:31
This structure holds all of the information needed to call functions on a ModuleCore object...
Definition: synthbase.h:1233
Abstract base class that encapsulates functionality of a module core; used with the Module-Core parad...
Definition: synthbase.h:1671