2024-09-02 21:11:57 +00:00
|
|
|
/*
|
2024-09-03 15:17:32 +00:00
|
|
|
Chassis polysynth framework
|
2024-09-02 21:11:57 +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 11:42:16 +00:00
|
|
|
#ifndef _CHASSIS_HPP
|
|
|
|
#define _CHASSIS_HPP
|
2024-09-02 21:11:57 +00:00
|
|
|
|
2024-09-03 13:15:02 +00:00
|
|
|
#define NUM_VOICES 8
|
2024-09-02 21:52:53 +00:00
|
|
|
|
2024-09-02 21:11:57 +00:00
|
|
|
#include "DistrhoPlugin.hpp"
|
2024-09-03 11:42:16 +00:00
|
|
|
#include "voice.hpp"
|
2024-09-02 21:11:57 +00:00
|
|
|
|
|
|
|
START_NAMESPACE_DISTRHO
|
|
|
|
|
2024-09-08 10:13:23 +00:00
|
|
|
// uint16_t attack_table[128];
|
|
|
|
// uint16_t decay_table[128];
|
2024-09-08 00:08:00 +00:00
|
|
|
|
2024-09-02 21:11:57 +00:00
|
|
|
class Chassis : public Plugin {
|
|
|
|
public:
|
|
|
|
enum Parameters {
|
2024-09-08 20:50:42 +00:00
|
|
|
paramLFORate,
|
|
|
|
paramLFODelay,
|
|
|
|
|
|
|
|
paramVCORange,
|
|
|
|
paramVCOLFO,
|
|
|
|
paramPWMLFO,
|
|
|
|
paramPWMMode,
|
2024-09-08 19:48:10 +00:00
|
|
|
paramSaw,
|
|
|
|
paramSqr,
|
|
|
|
paramSub,
|
2024-09-08 20:50:42 +00:00
|
|
|
paramNoise,
|
|
|
|
|
|
|
|
paramHPF,
|
|
|
|
|
|
|
|
paramVCFFreq,
|
|
|
|
paramVCFReso,
|
|
|
|
paramVCFMode,
|
|
|
|
paramVCFEnv,
|
|
|
|
paramVCFLFO,
|
|
|
|
paramVCFKey,
|
|
|
|
|
|
|
|
paramEnvGate,
|
|
|
|
paramVCALevel,
|
|
|
|
|
2024-09-08 19:48:10 +00:00
|
|
|
paramAttack,
|
|
|
|
paramDecay,
|
|
|
|
paramSustain,
|
|
|
|
paramRelease,
|
2024-09-08 20:50:42 +00:00
|
|
|
|
2024-09-08 19:48:10 +00:00
|
|
|
parameterCount
|
2024-09-02 21:11:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Chassis();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const char *getLabel() const override { return "chassis"; }
|
|
|
|
const char *getDescription() const override {
|
|
|
|
return "MIDIVerb emulation, a tribute to Keith Barr";
|
|
|
|
}
|
|
|
|
const char *getMaker() const override { return "Gordonjcp"; }
|
|
|
|
const char *getLicense() const override { return "ISC"; }
|
|
|
|
uint32_t getVersion() const override { return d_version(1, 0, 0); }
|
|
|
|
int64_t getUniqueId() const override { return d_cconst('P', 'f', 'a', 'u'); }
|
|
|
|
|
|
|
|
// Initialisation
|
|
|
|
void initAudioPort(bool input, uint32_t index, AudioPort &port) override;
|
2024-09-03 22:30:08 +00:00
|
|
|
void initParameter(uint32_t index, Parameter ¶meter) override;
|
2024-09-02 21:11:57 +00:00
|
|
|
|
2024-09-03 22:30:08 +00:00
|
|
|
void setParameterValue(uint32_t index, float value) override;
|
2024-09-08 19:48:10 +00:00
|
|
|
float getParameterValue(uint32_t index) const override;
|
2024-09-02 21:11:57 +00:00
|
|
|
|
2024-09-03 11:42:16 +00:00
|
|
|
// void initProgramName(uint32_t index, String &programName) override;
|
|
|
|
// void loadProgram(uint32_t index) override;
|
2024-09-02 21:11:57 +00:00
|
|
|
|
|
|
|
// Processing
|
|
|
|
void activate() override;
|
|
|
|
void deactivate() override;
|
2024-09-05 13:30:16 +00:00
|
|
|
void run(const float **, float **outputs, uint32_t frames, const MidiEvent *midiEvents, uint32_t midiEventCount) override;
|
2024-09-02 21:11:57 +00:00
|
|
|
|
2024-09-03 11:42:16 +00:00
|
|
|
void noteOn(uint8_t note);
|
|
|
|
void noteOff(uint8_t note);
|
2024-09-02 21:52:53 +00:00
|
|
|
|
2024-09-02 21:11:57 +00:00
|
|
|
private:
|
2024-09-08 10:13:23 +00:00
|
|
|
void doMidi(const MidiEvent *ev, uint32_t count, uint32_t timelimit);
|
|
|
|
double sampleRate;
|
|
|
|
uint32_t lastEvent;
|
2024-09-03 22:30:08 +00:00
|
|
|
// Voice voice[NUM_VOICES];
|
2024-09-03 13:15:02 +00:00
|
|
|
uint8_t vPtr;
|
2024-09-02 21:11:57 +00:00
|
|
|
|
2024-09-03 22:30:08 +00:00
|
|
|
Synth s;
|
|
|
|
|
2024-09-02 21:11:57 +00:00
|
|
|
DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(Chassis);
|
|
|
|
};
|
|
|
|
|
|
|
|
END_NAMESPACE_DISTRHO
|
|
|
|
|
2024-09-03 11:42:16 +00:00
|
|
|
#endif // _CHASSIS_HPP
|