129 lines
3.4 KiB
C++
129 lines
3.4 KiB
C++
|
|
#ifndef LUPPP_JACK_H
|
|
#define LUPPP_JACK_H
|
|
|
|
// Library
|
|
#include <vector>
|
|
#include <cstring>
|
|
#include <jack/jack.h>
|
|
#include <jack/midiport.h>
|
|
#include <jack/transport.h>
|
|
|
|
#include "state/state.hxx"
|
|
|
|
#include "logic.hxx"
|
|
#include "config.hxx"
|
|
#include "looper.hxx"
|
|
#include "metronome.hxx"
|
|
#include "gridlogic.hxx"
|
|
#include "trackoutput.hxx"
|
|
#include "timemanager.hxx"
|
|
#include "controllerupdater.hxx"
|
|
|
|
#include "dsp/dsp_reverb.hxx"
|
|
#include "dsp/dsp_dbmeter.hxx"
|
|
#include "dsp/dsp_sidechain_gain.hxx"
|
|
|
|
using namespace std;
|
|
|
|
/** Jack
|
|
This code contains the JACK client.
|
|
It allows reading / writing of audio / midi.
|
|
**/
|
|
class Jack
|
|
{
|
|
public:
|
|
Jack();
|
|
|
|
void activate();
|
|
int getBuffersize();
|
|
int getSamplerate();
|
|
|
|
/// get functions for components owned by Jack
|
|
Looper* getLooper(int t);
|
|
TrackOutput* getTrackOutput(int t);
|
|
|
|
State* getState(){return state;}
|
|
Logic* getLogic(){return logic;}
|
|
Metronome* getMetronome(){return metronome;}
|
|
GridLogic* getGridLogic(){return gridLogic;}
|
|
TimeManager* getTimeManager(){return &timeManager;}
|
|
ControllerUpdater* getControllerUpdater(){return controllerUpdater;}
|
|
|
|
/// register MIDI observers: they're called when a MIDI message arrives on
|
|
/// a port they're watching
|
|
void registerMidiObserver( MidiObserver* mo, std::string name );
|
|
|
|
/// writes MIDI messages to a MidiObserver's port
|
|
void midiObserverWriteMIDI( int portIndex, unsigned char* data );
|
|
|
|
|
|
void masterVolume( float vol ){masterVol = vol;}
|
|
|
|
/// sets reverb bus parameters
|
|
void setReverb( bool e, float d, float s );
|
|
|
|
|
|
private:
|
|
jack_client_t* client;
|
|
|
|
Buffers buffers;
|
|
TimeManager timeManager;
|
|
Metronome* metronome;
|
|
State* state;
|
|
Logic* logic;
|
|
GridLogic* gridLogic;
|
|
ControllerUpdater* controllerUpdater;
|
|
|
|
vector<Looper*> loopers;
|
|
vector<TrackOutput*> trackOutputs;
|
|
|
|
// FIXME: refactor MidiObserver ports / buffers into one class, single vector
|
|
vector<MidiObserver*> midiObservers;
|
|
vector<jack_port_t*> midiObserverInputPorts;
|
|
vector<jack_port_t*> midiObserverOutputPorts;
|
|
vector<void*> midiObserverInputBuffers;
|
|
vector<void*> midiObserverOutputBuffers;
|
|
|
|
// FX
|
|
Reverb* reverb;
|
|
SidechainGain* sidechainGain;
|
|
DBMeter* reverbMeter;
|
|
DBMeter* masterMeter;
|
|
float masterVol;
|
|
|
|
// JACK member variables
|
|
bool clientActive;
|
|
|
|
jack_port_t* masterInput;
|
|
jack_port_t* masterOutputL;
|
|
jack_port_t* masterOutputR;
|
|
|
|
jack_port_t* apcMidiInput;
|
|
jack_port_t* apcMidiOutput;
|
|
jack_port_t* masterMidiInput;
|
|
|
|
// JACK callbacks
|
|
int process (jack_nframes_t);
|
|
|
|
int timebase(jack_transport_state_t,
|
|
jack_nframes_t,
|
|
jack_position_t*,
|
|
int );
|
|
|
|
// static JACK callbacks
|
|
static int static_process (jack_nframes_t, void *);
|
|
|
|
static int static_timebase (jack_transport_state_t,
|
|
jack_nframes_t,
|
|
jack_position_t*,
|
|
int,
|
|
void* );
|
|
|
|
// UI update variables
|
|
int uiUpdateCounter;
|
|
int uiUpdateConstant;
|
|
};
|
|
|
|
#endif // LUPPP_JACK_H
|
|
|