Previous Lecture | Lecture 08 |
Lecture 08, Tue 04/27
Demo from Phill:
- https://github.com/allolib-s21/demo1-pconrad/blob/master/tutorials/allolib-s21/040_FrereJacquesTwoVoices.cpp
- We see two
SynthVoice
classes:- a
SquareWave
class built with additive synthesis based on theSineEnv
class from01_SineEnv
- an
FM
class based on theFM
class from04_FM
- a
- We added an enum:
enum Instrument { INSTR_SQUARE, INSTR_FM, NUM_INSTRUMENTS };
-
Then, we added a parameter with a default value to our existing
playSequenceFJ
method:Previoiusly:
case '1': std::cout << "1 pressed!" << std::endl; playSequenceFJ(1.0, 120); return false; case '2': std::cout << "2 pressed!" << std::endl; playSequenceFJ(1.0, 60); return false; case '3': std::cout << "3 pressed!" << std::endl; playSequenceFJ(1.0, 240); return false; case '4': std::cout << "4 pressed!" << std::endl; playSequenceFJ(1.0, 30); return false;
New:
case 'a': std::cout << "q pressed!" << std::endl; playSequenceFJ(1.0, 120, INSTR_FM); return false; case 's': std::cout << "w pressed!" << std::endl; playSequenceFJ(1.0, 60, INSTR_FM); return false; case 'd': std::cout << "e pressed!" << std::endl; playSequenceFJ(1.0, 240, INSTR_FM); return false; case 'f': std::cout << "r pressed!" << std::endl; playSequenceFJ(1.0, 30, INSTR_FM); return false; }
Method definition:
void playSequenceFJ(float offset = 1.0, float bpm = 120.0, Instrument instrument = INSTR_SQUARE) { std::cout << "playSequenceFJ: offset=" << offset << " bpm=" << bpm << std::endl; Sequence *fjSequence = sequenceFJ(offset); playSequence(fjSequence, bpm, instrument); }
```cpp void playSequence(Sequence *s, float bpm, Instrument instrument = INSTR_SQUARE) { float secondsPerBeat = 60.0f / bpm;
std::vector
*notes = s->getNotes(); for (auto ¬e : *notes) { playNote( note.getFreq(), note.getTime() * secondsPerBeat, note.getDuration() * secondsPerBeat, note.getAmp(), note.getAttack(), note.getDecay(), instrument); } }
Changes to playNote
OLD
void playNote(float freq, float time, float duration = 0.5, float amp = 0.2, float attack = 0.1, float decay = 0.1)
{
auto *voice = synthManager.synth().getVoice<SquareWave>();
// amp, freq, attack, release, pan
voice->setTriggerParams({amp, freq, 0.1, 0.1, 0.0});
synthManager.synthSequencer().addVoiceFromNow(voice, time, duration);
}
NEW
void playNote(float freq, float time, float duration = 0.5, float amp = 0.2, float attack = 0.1, float decay = 0.1, Instrument instrument = INSTR_SQUARE)
{
SynthVoice *voice;
switch (instrument)
{
case INSTR_SQUARE:
voice = synthManager.synth().getVoice<SquareWave>();
voice->setInternalParameterValue("amplitude", amp);
voice->setInternalParameterValue("frequency", freq);
voice->setInternalParameterValue("attackTime", 0.1);
voice->setInternalParameterValue("releaseTime", 0.1);
voice->setInternalParameterValue("pan", -1.0);
break;
case INSTR_FM:
voice = synthManager.synth().getVoice<FM>();
voice->setInternalParameterValue("amplitude", amp);
voice->setInternalParameterValue("freq", freq);
voice->setInternalParameterValue("attackTime", 0.1);
voice->setInternalParameterValue("releaseTime", 0.1);
voice->setInternalParameterValue("pan", 1.0);
break;
default:
voice = nullptr;
break;
}
synthManager.synthSequencer().addVoiceFromNow(voice, time, duration);
}