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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VOICE_HPP
|
|
|
|
#define _VOICE_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
class Voice {
|
|
|
|
public:
|
|
|
|
uint8_t note;
|
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 14:22:56 +00:00
|
|
|
void run(float *buffer, uint32_t samples);
|
2024-09-03 12:50:46 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
enum { ATTACK,
|
|
|
|
DECAY,
|
|
|
|
SUSTAIN,
|
|
|
|
RELEASE } envState = RELEASE;
|
|
|
|
enum { K_OFF,
|
|
|
|
K_ON,
|
|
|
|
K_SUSTAIN } keyState = K_OFF;
|
|
|
|
float phase, omega;
|
|
|
|
float env, target;
|
2024-09-03 11:42:16 +00:00
|
|
|
};
|
|
|
|
|
2024-09-03 12:50:46 +00:00
|
|
|
#endif // _VOICE_HPP
|