188 lines
5.3 KiB
C++
188 lines
5.3 KiB
C++
|
|
#include "jack.hxx"
|
|
|
|
#include <sstream>
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
#include "eventhandler.hxx"
|
|
|
|
using namespace std;
|
|
|
|
extern int jackSamplerate;
|
|
|
|
Jack::Jack()
|
|
{
|
|
// open the client
|
|
client = jack_client_open ( "Luppp", JackNullOption , 0 , 0 );
|
|
|
|
buffers.nframes = jack_get_buffer_size( client );
|
|
buffers.samplerate = jack_get_sample_rate( client );
|
|
|
|
masterOutput = jack_port_register( client,
|
|
"master_out",
|
|
JACK_DEFAULT_AUDIO_TYPE,
|
|
JackPortIsOutput,
|
|
0 );
|
|
|
|
masterInput = jack_port_register( client,
|
|
"master_in",
|
|
JACK_DEFAULT_AUDIO_TYPE,
|
|
JackPortIsInput,
|
|
0 );
|
|
|
|
masterMidiInput = jack_port_register( client,
|
|
"midi_in",
|
|
JACK_DEFAULT_MIDI_TYPE,
|
|
JackPortIsInput,
|
|
0 );
|
|
|
|
apcMidiInput = jack_port_register( client,
|
|
"apc_in",
|
|
JACK_DEFAULT_MIDI_TYPE,
|
|
JackPortIsInput,
|
|
0 );
|
|
|
|
apcMidiOutput = jack_port_register( client,
|
|
"apc_out",
|
|
JACK_DEFAULT_MIDI_TYPE,
|
|
JackPortIsOutput,
|
|
0 );
|
|
|
|
if ( jack_set_process_callback( client,
|
|
static_process,
|
|
static_cast<void*>(this)) )
|
|
{
|
|
cerr << "Jack() error setting process callback" << endl;
|
|
}
|
|
|
|
if ( jack_set_timebase_callback(client,
|
|
0,
|
|
(JackTimebaseCallback)static_timebase,
|
|
static_cast<void*>(this)) )
|
|
{
|
|
cerr << "Jack() error setting timebase callback" << endl;
|
|
}
|
|
|
|
for(int i = 0; i < NTRACKS; i++)
|
|
{
|
|
loopers.push_back( new Looper(i) );
|
|
timeManager.registerObserver( loopers.back() );
|
|
}
|
|
|
|
timeManager.registerObserver( &metronome );
|
|
|
|
jack_transport_start(client);
|
|
}
|
|
|
|
|
|
void Jack::activate()
|
|
{
|
|
jack_activate( client );
|
|
}
|
|
|
|
|
|
int Jack::process (jack_nframes_t nframes)
|
|
{
|
|
// get buffers
|
|
buffers.audio[Buffers::MASTER_INPUT] = (float*)jack_port_get_buffer( masterInput , nframes);
|
|
buffers.audio[Buffers::MASTER_OUTPUT] = (float*)jack_port_get_buffer( masterOutput, nframes);
|
|
buffers.midi[Buffers::MASTER_MIDI_INPUT]= (void*) jack_port_get_buffer( masterMidiInput, nframes );
|
|
buffers.midi[Buffers::APC_INPUT] = (void*) jack_port_get_buffer( apcMidiInput , nframes );
|
|
buffers.midi[Buffers::APC_OUTPUT] = (void*) jack_port_get_buffer( apcMidiOutput , nframes );
|
|
|
|
// pre-zero output buffers
|
|
memset( buffers.audio[Buffers::MASTER_OUTPUT], 0, sizeof(float) * nframes );
|
|
jack_midi_clear_buffer( buffers.midi[Buffers::APC_OUTPUT] );
|
|
|
|
|
|
// do events from the ringbuffer
|
|
handleDspEvents();
|
|
|
|
// process incoming MIDI
|
|
jack_midi_event_t in_event;
|
|
|
|
|
|
int masterMidiInputIndex = 0;
|
|
int event_count = (int) jack_midi_get_event_count( buffers.midi[Buffers::MASTER_MIDI_INPUT] );
|
|
|
|
while ( masterMidiInputIndex < event_count )
|
|
{
|
|
jack_midi_event_get(&in_event, buffers.midi[Buffers::MASTER_MIDI_INPUT], masterMidiInputIndex);
|
|
|
|
char buffer [50];
|
|
sprintf (buffer, "MIDI %i %i %i", int(in_event.buffer[0]), int(in_event.buffer[1]), int(in_event.buffer[2]) );
|
|
EventGuiPrint e( buffer );
|
|
writeToGuiRingbuffer( &e );
|
|
|
|
// check each looper for MIDI match
|
|
for(int i = 0; i < loopers.size(); i++)
|
|
loopers.at(i)->midi( (unsigned char*)&in_event.buffer[0] );
|
|
|
|
masterMidiInputIndex++;
|
|
}
|
|
|
|
for(uint i = 0; i < loopers.size(); i++)
|
|
loopers.at(i)->process( nframes, &buffers );
|
|
|
|
metronome.process( nframes, &buffers );
|
|
|
|
return false;
|
|
}
|
|
|
|
int Jack::getBuffersize()
|
|
{
|
|
return jack_get_buffer_size( client );
|
|
}
|
|
|
|
int Jack::getSamplerate()
|
|
{
|
|
return jack_get_sample_rate( client );
|
|
}
|
|
|
|
void Jack::writeApcOutput( unsigned char* data )
|
|
{
|
|
void* apcOutput = buffers.midi[Buffers::APC_OUTPUT];
|
|
|
|
unsigned char* buf = jack_midi_event_reserve( apcOutput, 0, 3);
|
|
if( buf != 0 )
|
|
{
|
|
memcpy( buf, data, sizeof( unsigned char ) * 3);
|
|
//cout << "writeApcOutput " << int(buf[0]) << ", " << int(buf[1]) << ", " << int(buf[2]) << endl;
|
|
}
|
|
else
|
|
{
|
|
EventGuiPrint e( "__FILE__ __LINE__ Buffer not valid" );
|
|
writeToGuiRingbuffer( &e );
|
|
}
|
|
}
|
|
|
|
int Jack::timebase(jack_transport_state_t state,
|
|
jack_nframes_t nframes,
|
|
jack_position_t* pos,
|
|
int newPos)
|
|
{
|
|
// fill buffers with data, then pass to timeManager
|
|
buffers.transportFrame = jack_get_current_transport_frame(client);
|
|
buffers.transportPosition = pos;
|
|
buffers.transportState =&state;
|
|
|
|
// update "time" from JACK master, or write master?
|
|
timeManager.process( &buffers );
|
|
|
|
return 0;
|
|
}
|
|
|
|
int Jack::static_process(jack_nframes_t nframes, void *instance)
|
|
{
|
|
return static_cast<Jack*>(instance)->process(nframes);
|
|
}
|
|
|
|
int Jack::static_timebase(jack_transport_state_t state,
|
|
jack_nframes_t nframes,
|
|
jack_position_t* pos,
|
|
int newPos,
|
|
void* instance)
|
|
{
|
|
return static_cast<Jack*>(instance)->timebase(state,nframes, pos, newPos );
|
|
}
|