2018-02-27 08:17:12 +08:00
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
This file was auto-generated!
|
|
|
|
|
|
|
|
It contains the basic framework code for a JUCE plugin processor.
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-07 14:04:35 +08:00
|
|
|
#include <JuceHeader.h>
|
2018-02-27 08:25:20 +08:00
|
|
|
#include "FluidSynthModel.h"
|
2018-03-19 07:35:29 +08:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
using namespace std;
|
2018-02-27 08:17:12 +08:00
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
/**
|
|
|
|
*/
|
2019-07-02 06:55:14 +08:00
|
|
|
class JuicySFAudioProcessor : public AudioProcessor
|
2018-02-27 08:17:12 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//==============================================================================
|
2018-02-27 08:39:50 +08:00
|
|
|
JuicySFAudioProcessor();
|
|
|
|
~JuicySFAudioProcessor();
|
2018-02-27 08:17:12 +08:00
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
void prepareToPlay (double sampleRate, int samplesPerBlock) override;
|
|
|
|
void releaseResources() override;
|
|
|
|
|
|
|
|
#ifndef JucePlugin_PreferredChannelConfigurations
|
|
|
|
bool isBusesLayoutSupported (const BusesLayout& layouts) const override;
|
|
|
|
#endif
|
|
|
|
|
2018-02-27 08:25:20 +08:00
|
|
|
void processBlock (AudioBuffer<float>& buffer, MidiBuffer& midiMessages) override;
|
2018-02-27 08:17:12 +08:00
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
AudioProcessorEditor* createEditor() override;
|
|
|
|
bool hasEditor() const override;
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
const String getName() const override;
|
|
|
|
|
|
|
|
bool acceptsMidi() const override;
|
|
|
|
bool producesMidi() const override;
|
|
|
|
double getTailLengthSeconds() const override;
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
int getNumPrograms() override;
|
|
|
|
int getCurrentProgram() override;
|
|
|
|
void setCurrentProgram (int index) override;
|
|
|
|
const String getProgramName (int index) override;
|
|
|
|
void changeProgramName (int index, const String& newName) override;
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
void getStateInformation (MemoryBlock& destData) override;
|
|
|
|
void setStateInformation (const void* data, int sizeInBytes) override;
|
|
|
|
|
2018-02-27 08:25:20 +08:00
|
|
|
bool supportsDoublePrecisionProcessing() const override;
|
|
|
|
|
2019-07-07 07:22:47 +08:00
|
|
|
FluidSynthModel& getFluidSynthModel();
|
2018-02-27 08:25:20 +08:00
|
|
|
|
|
|
|
MidiKeyboardState keyboardState;
|
|
|
|
|
2018-02-27 08:17:12 +08:00
|
|
|
private:
|
2018-02-27 08:25:20 +08:00
|
|
|
void initialiseSynth();
|
|
|
|
|
2019-07-04 06:38:56 +08:00
|
|
|
AudioProcessorValueTreeState valueTreeState;
|
2019-07-03 06:27:56 +08:00
|
|
|
|
2018-02-27 08:25:20 +08:00
|
|
|
FluidSynthModel fluidSynthModel;
|
|
|
|
Synthesiser synth;
|
|
|
|
|
2019-07-03 06:27:56 +08:00
|
|
|
AudioProcessorValueTreeState::ParameterLayout createParameterLayout();
|
|
|
|
|
2018-03-19 07:35:29 +08:00
|
|
|
static BusesProperties getBusesProperties();
|
2018-02-27 08:25:20 +08:00
|
|
|
|
2018-02-27 08:17:12 +08:00
|
|
|
//==============================================================================
|
2018-02-27 08:39:50 +08:00
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JuicySFAudioProcessor)
|
2018-02-27 08:17:12 +08:00
|
|
|
};
|