[go: up one dir, main page]

Menu

[r40]: / Source / SynthVoice.h  Maximize  Restore  History

Download this file

117 lines (81 with data), 3.6 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**************************************************************************
Copyright (C) 2019 Arnaud Champenois arthelion@free.fr
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
#include "VCO.h"
#include "TVF.h"
#include "TVA.h"
#include "Pitch.h"
#include "Utils.h"
#include <array>
class MolossI;
class SynthVoice :
public SynthesiserVoice
{
public:
SynthVoice(double sampleRate, int samplePerBlock, MolossI& proc);
~SynthVoice();
// Herited from SynthesiserVoice
virtual bool canPlaySound(SynthesiserSound *) override;
virtual bool isPlayingChannel(const int midiChannel) const override;
virtual void startNote(int midiNoteNumber, float velocity, SynthesiserSound * sound, int currentPitchWheelPosition) override;
void changeNote(int midiNoteNumber);
bool isOn() const { return mIsOn; }
virtual void stopNote(float velocity, bool allowTailOff) override;
virtual void pitchWheelMoved(int newPitchWheelValue) override;
virtual void controllerMoved(int controllerNumber, int newControllerValue) override;
virtual void aftertouchChanged(int newAftertouchValue) override;
virtual void channelPressureChanged(int newAftertouchValue) override;
virtual void renderNextBlock(AudioBuffer<float>& outputBuffer, int startSample, int numSamples) override;
void unlockVoices();
void lockVoices();
void moveLFOToPhase();
void moveLFO(int v);
// Parameters update notifications
void updateLFO(int lfoNum);
void updateADSR(int adsrNum);
void updateVCO(int vcoNum);
void updateTVF(int tvfNum);
void updateTVA(int tvaNum);
void updatePitch(int pitchNum);
void updateInternalValues();
// Force the voice to go off progressively
void forceExtinction();
void resetLFOPhase();
private:
bool mIsOn;
double mExtinctionRamp = 0.0;
double mExtinctionFader = 0.0;
std::vector<std::unique_ptr<Pitch>> mPitchArray;
std::vector<std::unique_ptr<VCO>> mVCOArray;
std::vector<std::unique_ptr<TVF>> mTVFArray;
std::vector<std::unique_ptr<TVA>> mTVAArray;
// Lists of abstract interfaces
std::vector<LFOModulated*> mLFOArray; // All LFO Modulated components
std::vector<TimeVariant*> mTVArray; // All TimeVariant components
std::vector<ControllerResponsive*> mCtrlArray; // All components responding to controllers
const SynthParameters&mP;
std::array<double, VCO_NUMBER> mVCODepthL;
std::array<double, VCO_NUMBER> mVCODepthR;
std::array<double, VCO_NUMBER> mVCOBalLFODepth;
std::array<double, VCO_NUMBER - 1> mVCOFMDepth;
std::array<double, VCO_NUMBER - 1> mVCORingDepth;
std::array<bool, VCO_NUMBER> mVCOIsActive;
std::array<int, VCO_NUMBER> mVCOMinNote;
std::array<int, VCO_NUMBER> mVCOMaxNote;
static bool mVoiceInitialized;
unsigned mSkippedSamples = 0;
std::unique_ptr<LFOModulated> mBalanceLFO;
CriticalSection voiceLock;
};