73 lines
1.6 KiB
C++
73 lines
1.6 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>
|
|
|
|
class Synth;
|
|
|
|
class Patch {
|
|
public:
|
|
float saw, sqr, sub;
|
|
};
|
|
|
|
class Voice {
|
|
public:
|
|
uint8_t note = 72;
|
|
|
|
void on(uint32_t key, bool reset);
|
|
|
|
void off();
|
|
|
|
bool isFree();
|
|
|
|
void run(Synth &s, float *buffer, uint32_t samples);
|
|
|
|
void gate();
|
|
|
|
private:
|
|
enum { ATTACK,
|
|
DECAY,
|
|
SUSTAIN,
|
|
RELEASE } envState = RELEASE;
|
|
enum { K_OFF,
|
|
K_WAIT,
|
|
K_ON,
|
|
K_SUSTAIN } keyState = K_OFF;
|
|
|
|
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;
|
|
};
|