chassis/plugin/voice.hpp
2024-09-08 01:08:00 +01:00

87 lines
2.0 KiB
C++

/*
Chassis polysynth framework
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 <cstdint>
//uint16_t attack_table[128];
//uint16_t decay_table[128];
class Synth;
class Patch {
public:
float saw=1, sqr, sub;
uint16_t attack=0x1ff, decay=0x1ff, sustain=0x1000, release=0x1ff;
};
class Voice {
public:
// uint8_t note = 72;
uint8_t note = 60;
void on(uint32_t key, bool reset);
void off();
bool isFree();
void run(Synth &s, float *buffer, uint32_t samples);
void gate(Synth &s);
private:
enum { ATTACK,
DECAY,
SUSTAIN,
RELEASE } envState = RELEASE;
enum { K_OFF,
K_WAIT,
K_ON,
K_SUSTAIN } keyState = K_OFF;
bool ff00; // reset bit
bool ff07; // status bit
bool ff08; // set to indicate attack phase complete
bool ff10; // note on bit
bool ff11; // sustain flag
bool ff33; // releasing flag
uint16_t env;
float phase = 0, omega = 260 / 48000.0, subosc = 1;
// float env, target;
float delay;
uint8_t pulseStage = 0;
float pw_rc = 0;
float vr58c106 = 0;
};
class Synth {
public:
Patch patch;
Voice voice[8];
float lfo = 0, lfosw = 0.01;
float lastpw = 0;
uint32_t blockLeft;
uint32_t framesLeft = 0;
};