|
SynthLab SDK
|
PCM oscillator that plays wave-slices that are mapped to the C-major scale keys starting at middle C. More...
#include <waveslicecore.h>
Public Member Functions | |
| WaveSliceCore () | |
| Construction: Cores follow the same construction pattern. More... | |
| virtual | ~WaveSliceCore () |
| virtual bool | reset (CoreProcData &processInfo) override |
| Resets object to initialized state. More... | |
| virtual bool | update (CoreProcData &processInfo) override |
| Updates the object for the next block of audio processing. More... | |
| virtual bool | render (CoreProcData &processInfo) override |
| Renders the output of the module. More... | |
| virtual bool | doNoteOn (CoreProcData &processInfo) override |
| Note-on handler for the ModuleCore. More... | |
| virtual bool | doNoteOff (CoreProcData &processInfo) override |
| Note-off handler for the ModuleCore. More... | |
Public Member Functions inherited from SynthLab::ModuleCore | |
| ModuleCore () | |
| Constructs a ModuleCore. More... | |
| virtual int32_t | getState () |
| virtual bool | shutdown () |
| virtual void | setSustainOverride (bool sustain) |
| virtual void | setStandAloneMode (bool b) |
| bool | startGlideModulation (GlideInfo &glideInfo) |
| uint32_t | getModuleType () |
| const char * | getModuleName () |
| void * | getModuleHandle () |
| void | setModuleHandle (void *handle) |
| uint32_t | getModuleIndex () |
| void | setModuleIndex (uint32_t index) |
| int32_t | getPreferredModuleIndex () |
| void | setPreferredModuleIndex (uint32_t index) |
| ModuleCoreData & | getModuleData () |
| provides access to the core data: More... | |
Protected Member Functions | |
| void | checkAddSampleSet (std::string sampleDirectory, std::string sampleName, CoreProcData &processInfo, uint32_t index) |
| Query the database and add a set of PCM samples if not existing already. More... | |
Protected Attributes | |
| double | sampleRate = 0.0 |
| sample rate | |
| double | midiPitch = 0.0 |
| the midi pitch | |
| double | outputAmplitude = 1.0 |
| amplitude in dB | |
| double | panLeftGain = 0.707 |
| left channel gain | |
| double | panRightGain = 0.707 |
| right channel gain | |
| double | readIndex = 0.0 |
| must persist from update to render | |
| double | phaseInc = 0.0 |
| must persist from update to render | |
| uint32_t | currentIndex = 0 |
| must persist from update to render | |
| IPCMSampleSource * | selectedSampleSource = nullptr |
| selected PCM sample | |
| SynthLabPCMSource | pcmSources [MODULE_STRINGS] |
Protected Attributes inherited from SynthLab::ModuleCore | |
| uint32_t | moduleType = UNDEFINED_MODULE |
| type of module, LFO_MODULE, EG_MODULE, etc... | |
| const char * | moduleName = nullptr |
| module name must be set in derived constructor | |
| void * | moduleHandle = nullptr |
| used for dynamically loading cores from DLLs | |
| uint32_t | moduleIndex = 0 |
| index of this core | |
| int32_t | preferredIndex = -1 |
| preferred index of this DYNAMIC core | |
| ModuleCoreData | coreData |
| core strings (16) and mod knob labels (4) | |
| bool | standAloneMode = false |
| flag for stand-alone mode of operation outside of SynthLab | |
| std::unique_ptr< GlideModulator > | glideModulator |
| built-in glide modulator for oscillators | |
PCM oscillator that plays wave-slices that are mapped to the C-major scale keys starting at middle C.
Used Aubio tools to generate the slice WAV files, but may be done with any app.
Base Class: ModuleCore
GUI Parameters: PCMOscParameters
Access to Modulators is done via the thunk-barrier compliant CoreProcData argument
Access to audio buffers (I/O/FM) is done via the thunk-barrier compliant CoreProcData argument
Construction: Cores follow the same construction pattern
Standalone Mode:
Module Strings, zero-indexed for your GUI Control:
ModKnob Strings, for fixed GUI controls by index constant
Render:
| SynthLab::WaveSliceCore::WaveSliceCore | ( | ) |
Construction: Cores follow the same construction pattern.
simple default constructor
Core Specific:
|
inlinevirtual |
Destructor is empty: all resources are smart pointers
|
protected |
Query the database and add a set of PCM samples if not existing already.
| sampleDirectory | folder full of folders of samples |
| sampleName | name of sub-folder with set of PCM samples |
| processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
|
overridevirtual |
Note-off handler for the ModuleCore.
Core Specific:
| processInfo | is the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Note-on handler for the ModuleCore.
Core Specific:
| processInfo | is the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Renders the output of the module.
| processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Resets object to initialized state.
ModuleCore Overrides
| processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Updates the object for the next block of audio processing.
| processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.