SynthLab SDK
|
Now you can add the code to do the pitch modulation in the new additive oscillator's update() function. There are multiple pitch modultion sources and a couple of different ways of handling the modulation functions. The setup below follows the synth book and uses the same modulation array input slots as the other oscillators in SynthLab. It also uses the same GUI parameter controls as discussed in the book and these documents. You can find very similar code througout the oscillator cores and you can find different mechanisms for manipulating the rendered waveforms including shape (phase distortion) and hard sync. Also note that each SynthLab oscillator has a special modulation called the "Unique Modulation" and these vary a bit with the type of oscillator. Reading and digesting these other object's example code will help you see how to do more modulations – and of course the synth book is highly recommended.
All SynthLab oscillators implement an update function that is nearly identical because the majority of the function involves pitch modulation. The pitch shift calculation creates a scalar value that you multiply with the MIDI note pitch value in Hz. Chapter 6 in the synth book contains the modulation equation and explains the theory. SynthLab pitched oscillators have numerous pitch shift sources that will need to be applied together.
Pitched oscillators expose the following GUI controls and modulation inputs via the parameters structure:
GUI Controls
Modulation
Here is the new update function that implements the moduation and that you may use for pitch modulation; test it with your MinSynth voice or within your own test project.
Test your object again with pitch modulation from the LFO in MinSynth.