Previous Lecture Lecture 08

Lecture 08, Tue 04/27

Demo from Phill:

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);
    }