peacock/plugin/ic29.hpp

103 lines
2.4 KiB
C++
Raw Permalink 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
#include "peacock.hpp"
2024-10-11 23:15:00 +00:00
class Envelope {
public:
Envelope();
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-11 23:15:00 +00:00
uint16_t level;
2024-10-12 22:36:34 +00:00
// private:
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
void run(float *buffer, uint32_t samples);
void update();
void on(uint8_t note);
void off();
private:
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
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-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);
void pitchBend(int16_t bend);
void modWheel(uint8_t wheel);
2024-10-13 22:27:54 +00:00
void buildTables(double sampleRate);
double sampleRate;
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-09 21:51:37 +00:00
2024-10-15 21:10:57 +00:00
// private:
2024-10-13 22:27:54 +00:00
int16_t lfoPitch;
int16_t bendPitch;
2024-10-11 23:15:00 +00:00
Voice voices[NUM_VOICES];
2024-10-13 22:27:54 +00:00
2024-10-11 23:15:00 +00:00
void runLfo();
2024-10-13 22:27:54 +00:00
void basePitch();
2024-10-09 21:51:37 +00:00
};
2024-10-11 23:15:00 +00:00
// global
2024-10-13 22:27:54 +00:00
extern Synth ic29;