2024-09-03 11:42:16 +00:00
|
|
|
/*
|
2024-09-03 15:17:32 +00:00
|
|
|
Chassis polysynth framework
|
2024-09-03 11:42:16 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2024-09-03 22:30:08 +00:00
|
|
|
#pragma once
|
2024-09-03 11:42:16 +00:00
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2024-09-03 22:41:01 +00:00
|
|
|
class Synth;
|
|
|
|
|
2024-09-03 22:30:08 +00:00
|
|
|
class Patch {
|
2024-09-04 20:08:27 +00:00
|
|
|
public:
|
|
|
|
float saw, sqr, sub;
|
2024-09-03 22:30:08 +00:00
|
|
|
};
|
|
|
|
|
2024-09-03 11:42:16 +00:00
|
|
|
class Voice {
|
|
|
|
public:
|
2024-09-03 23:26:02 +00:00
|
|
|
uint8_t note = 72;
|
2024-09-03 12:50:46 +00:00
|
|
|
|
2024-09-03 14:22:56 +00:00
|
|
|
void on(uint32_t key, bool reset);
|
2024-09-03 12:50:46 +00:00
|
|
|
|
2024-09-03 14:22:56 +00:00
|
|
|
void off();
|
2024-09-03 12:50:46 +00:00
|
|
|
|
2024-09-03 14:31:54 +00:00
|
|
|
bool isFree();
|
2024-09-03 12:50:46 +00:00
|
|
|
|
2024-09-03 22:41:01 +00:00
|
|
|
void run(Synth &s, float *buffer, uint32_t samples);
|
2024-09-03 12:50:46 +00:00
|
|
|
|
2024-09-05 22:18:41 +00:00
|
|
|
void gate();
|
|
|
|
|
2024-09-03 12:50:46 +00:00
|
|
|
private:
|
|
|
|
enum { ATTACK,
|
|
|
|
DECAY,
|
|
|
|
SUSTAIN,
|
|
|
|
RELEASE } envState = RELEASE;
|
|
|
|
enum { K_OFF,
|
2024-09-05 22:18:41 +00:00
|
|
|
K_WAIT,
|
2024-09-03 12:50:46 +00:00
|
|
|
K_ON,
|
|
|
|
K_SUSTAIN } keyState = K_OFF;
|
2024-09-05 22:18:41 +00:00
|
|
|
|
2024-09-04 20:08:27 +00:00
|
|
|
float phase = 0, omega = 260 / 48000.0;
|
2024-09-03 12:50:46 +00:00
|
|
|
float env, target;
|
2024-09-04 20:08:27 +00:00
|
|
|
|
|
|
|
float pw_rc = 0;
|
2024-09-03 11:42:16 +00:00
|
|
|
};
|
|
|
|
|
2024-09-03 22:30:08 +00:00
|
|
|
class Synth {
|
2024-09-04 20:08:27 +00:00
|
|
|
public:
|
|
|
|
Patch p;
|
|
|
|
Voice voice[8];
|
|
|
|
float lfo = 0, lfosw = 0.01;
|
|
|
|
float lastpw = 0;
|
2024-09-05 09:01:22 +00:00
|
|
|
uint32_t blockLeft;
|
|
|
|
uint32_t framesLeft = 0;
|
2024-09-03 22:30:08 +00:00
|
|
|
};
|