peacock/plugin/voiceboard.hpp

164 lines
3.9 KiB
C++
Raw Normal View History

2024-10-09 21:43:52 +00:00
/*
Peacock-8 VA polysynth
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#pragma once
2024-10-20 00:08:50 +00:00
#include <cstdint>
2024-10-09 21:43:52 +00:00
2024-10-20 00:08:50 +00:00
#define NUM_VOICES 8
class LFO {
public:
LFO();
void run();
int16_t lfoOut;
uint8_t rate;
private:
uint8_t
phase;
uint16_t holdoff;
uint16_t envelope;
enum { LFO_RUN,
LFO_HOLDOFF,
LFO_RAMP } delayPhase;
static const uint16_t lfoRateTable[128];
};
2024-10-11 23:15:00 +00:00
class Envelope {
public:
Envelope();
2024-10-20 21:12:22 +00:00
2024-10-11 23:15:00 +00:00
void run();
2024-10-12 22:36:34 +00:00
void on() {
phase = ENV_ATK;
}
void off() {
phase = ENV_RLS;
}
2024-10-15 21:10:57 +00:00
bool inRelease() {
return phase == ENV_RLS;
}
2024-10-20 21:12:22 +00:00
static uint16_t atk, dcy, stn, rls;
2024-10-11 23:15:00 +00:00
uint16_t level;
2024-10-20 21:12:22 +00:00
private:
static const uint16_t atkTable[128];
static const uint16_t dcyTable[128];
2024-10-11 23:15:00 +00:00
enum {
ENV_ATK,
ENV_DCY,
ENV_RLS,
ENV_IDLE
} phase;
};
class Voice {
public:
Voice();
2024-10-15 21:10:57 +00:00
uint8_t note = 0x3c; // middle C
2024-10-18 23:19:35 +00:00
void run(float *buffer, uint32_t pos, uint32_t samples);
2024-10-19 18:49:24 +00:00
void filter(float *buffer, uint32_t pos, uint32_t samples);
2024-10-15 21:10:57 +00:00
void update();
void on(uint8_t note);
void off();
2024-10-20 21:12:22 +00:00
// private:
2024-10-15 21:10:57 +00:00
Envelope env; // calculated envelope value
2024-10-13 22:27:54 +00:00
uint16_t pitch = 0x1818; // calculated pitch value with porta and master pitch etc
float delay = 0; // delay slot for polyblep
bool pulseStage = 0;
float pw = 0, lastpw = 0, pwrc = 0;
2024-10-15 21:56:18 +00:00
float subosc = -1;
float sub = 0, saw = 0;
2024-10-15 21:10:57 +00:00
float phase = 0, omega = 0;
2024-10-11 23:15:00 +00:00
enum { V_DONE,
V_OFF,
V_ON } voiceState;
2024-10-15 21:10:57 +00:00
void calcPitch();
2024-10-19 18:49:24 +00:00
2024-10-20 21:12:22 +00:00
float fb = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0, cut = 0.1, reso = 4;
2024-10-11 23:15:00 +00:00
};
2024-10-09 21:51:37 +00:00
class Synth {
2024-10-11 23:15:00 +00:00
friend Envelope;
2024-10-13 22:27:54 +00:00
friend Voice;
2024-10-11 23:15:00 +00:00
2024-10-09 21:51:37 +00:00
public:
Synth();
2024-10-11 23:15:00 +00:00
void run();
2024-10-09 21:51:37 +00:00
void voiceOn(uint8_t voice, uint8_t note);
void voiceOff(uint8_t voice);
void sustainSwitch(uint8_t val);
2024-10-13 22:27:54 +00:00
void buildTables(double sampleRate);
double sampleRate;
2024-10-18 23:19:35 +00:00
uint32_t bufferSize;
2024-10-09 21:51:37 +00:00
uint16_t masterPitch; // sum of bend and LFO, plus any other pitch-setting value
2024-10-15 21:10:57 +00:00
// protected:
2024-10-11 23:15:00 +00:00
uint16_t envAtk, envDcy, envStn, envRls;
2024-10-15 21:10:57 +00:00
int8_t portaCoeff;
bool sustained;
2024-10-13 22:27:54 +00:00
double pitchTable[104];
2024-10-19 18:49:24 +00:00
double filterTable[256];
2024-10-09 21:51:37 +00:00
2024-10-18 23:19:35 +00:00
float *noise;
2024-10-15 21:10:57 +00:00
// private:
2024-10-20 21:12:22 +00:00
uint8_t vcoBend = 42;
uint8_t vcfBend = 42;
2024-10-18 22:57:14 +00:00
2024-10-11 23:15:00 +00:00
Voice voices[NUM_VOICES];
LFO lfo;
2024-10-18 22:57:14 +00:00
uint16_t pitchBend = 0x2000;
uint8_t modWheel = 0x00;
2024-10-13 22:27:54 +00:00
2024-10-16 23:01:46 +00:00
float pwm;
2024-10-18 23:19:35 +00:00
uint32_t tr21;
2024-10-16 23:01:46 +00:00
struct {
uint8_t lfoRate = 0x3f;
uint8_t lfoDelay = 0x00;
uint8_t vcoLfoMod = 0x00;
uint8_t pwmLfoMod = 0x27;
uint8_t noiseLevel = 0x00;
uint8_t vcfCutoff = 0x4d;
uint8_t vcfReso = 0x14;
uint8_t vcfEnvMod = 0x04;
uint8_t vcfLfoMod = 0x00;
uint8_t vcfKeyTrk = 0x6f;
uint8_t vcaLevel = 0x22;
uint8_t attack = 0x0d;
uint8_t decay = 0x57;
uint8_t sustain = 0x58;
uint8_t release = 0x23;
uint8_t subLevel = 0x0e;
uint8_t switch1 = 0x1a;
uint8_t switch2 = 0x10;
} patchRam;
2024-10-18 22:57:14 +00:00
const static uint16_t lfoDelayTable[8];
const static uint8_t lfoDepthTable[128];
const static uint8_t portaTable[128];
2024-10-09 21:51:37 +00:00
};