86 lines
2.8 KiB
C++
86 lines
2.8 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.
|
|
*/
|
|
|
|
#ifndef _CHASSIS_HPP
|
|
#define _CHASSIS_HPP
|
|
|
|
#define NUM_VOICES 8
|
|
|
|
#include "DistrhoPlugin.hpp"
|
|
|
|
START_NAMESPACE_DISTRHO
|
|
|
|
class Chassis : public Plugin {
|
|
public:
|
|
Chassis();
|
|
|
|
protected:
|
|
const char *getLabel() const override { return "chassis"; }
|
|
const char *getDescription() const override {
|
|
return "simple polysynth";
|
|
}
|
|
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', 'h', 'e', 'r'); }
|
|
|
|
// Initialisation
|
|
void initAudioPort(bool input, uint32_t index, AudioPort &port) override;
|
|
void initParameter(uint32_t index, Parameter ¶meter) override;
|
|
|
|
void setParameterValue(uint32_t index, float value) override;
|
|
float getParameterValue(uint32_t index) const override;
|
|
|
|
void initProgramName(uint32_t index, String &programName) override;
|
|
void loadProgram(uint32_t index) override;
|
|
|
|
// Processing
|
|
void activate() override;
|
|
// void deactivate() override;
|
|
void run(const float **, float **outputs, uint32_t frames, const MidiEvent *midiEvents, uint32_t midiEventCount) override;
|
|
|
|
private:
|
|
double sampleRate;
|
|
struct {
|
|
uint8_t lfoRate = 0x30; // lookup value defaults to 0x0200
|
|
uint8_t lfoDelay = 0x00;
|
|
uint8_t vcoLfo = 0x0a;
|
|
uint8_t pwmLfo = 0x30;
|
|
uint8_t noise = 0x00;
|
|
uint8_t vcfFreq = 0x3c; // 0x3f80
|
|
uint8_t vcfReso = 0x00;
|
|
uint8_t vcfEnv = 0x2e;
|
|
uint8_t vcfLfo = 0;
|
|
uint8_t vcfKey = 0x47;
|
|
uint8_t vca = 0x28;
|
|
uint8_t env_a = 0x1b;
|
|
uint8_t env_d = 0x39;
|
|
uint8_t env_s = 0x39; // 0x3f80
|
|
uint8_t env_r = 0x30;
|
|
uint8_t sub = 0x00;
|
|
uint8_t switch1 = 0x1a;
|
|
uint8_t switch2 = 0x18;
|
|
} patchRam;
|
|
|
|
DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(Chassis);
|
|
};
|
|
|
|
END_NAMESPACE_DISTRHO
|
|
|
|
#endif
|