2007-12-18 05:09:02 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* This program is free software; you can redistribute it and/or modify it */
|
|
|
|
/* under the terms of the GNU General Public License as published by the */
|
|
|
|
/* Free Software Foundation; either version 2 of the License, or (at your */
|
|
|
|
/* option) any later version. */
|
|
|
|
/* */
|
|
|
|
/* This program is distributed in the hope that it will be useful, but WITHOUT */
|
|
|
|
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
|
|
|
|
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for */
|
|
|
|
/* more details. */
|
|
|
|
/* */
|
|
|
|
/* You should have received a copy of the GNU General Public License along */
|
|
|
|
/* with This program; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#include <jack/jack.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2008-02-11 07:16:31 +01:00
|
|
|
#include <math.h>
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
#include "transport.H"
|
|
|
|
#include "common.h"
|
|
|
|
#include "const.h"
|
|
|
|
|
|
|
|
extern jack_client_t *client;
|
|
|
|
|
|
|
|
/* FIXME: use JackSyncCallback instead? (sync-callback) */
|
|
|
|
|
|
|
|
Transport transport;
|
|
|
|
|
|
|
|
static bool _done;
|
|
|
|
|
|
|
|
/** callback for when we're Timebase Master, mostly taken from
|
|
|
|
* transport.c in Jack's example clients. */
|
|
|
|
void
|
|
|
|
Transport::timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos, void *arg )
|
|
|
|
{
|
|
|
|
pos->valid = JackPositionBBT;
|
|
|
|
pos->beats_per_bar = transport._master_beats_per_bar;
|
|
|
|
pos->ticks_per_beat = PPQN;
|
|
|
|
|
|
|
|
/* FIXME: WTF is this? Quarter note? */
|
|
|
|
pos->beat_type = transport._master_beat_type;
|
|
|
|
|
|
|
|
pos->beats_per_minute = transport._master_beats_per_minute;
|
|
|
|
|
|
|
|
if ( new_pos || ! _done )
|
|
|
|
{
|
2008-02-11 07:18:45 +01:00
|
|
|
double wallclock = (double)pos->frame / (pos->frame_rate * 60);
|
2007-12-18 05:09:02 +01:00
|
|
|
|
|
|
|
unsigned long abs_tick = wallclock * pos->beats_per_minute * pos->ticks_per_beat;
|
|
|
|
unsigned long abs_beat = abs_tick / pos->ticks_per_beat;
|
|
|
|
|
|
|
|
pos->bar = abs_beat / pos->beats_per_bar;
|
|
|
|
pos->beat = abs_beat - (pos->bar * pos->beats_per_bar) + 1;
|
|
|
|
pos->tick = abs_tick - (abs_beat * pos->ticks_per_beat);
|
|
|
|
pos->bar_start_tick = pos->bar * pos->beats_per_bar * pos->ticks_per_beat;
|
|
|
|
pos->bar++;
|
|
|
|
|
|
|
|
_done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// FIXME: use ticks_per_period here?
|
|
|
|
pos->tick += nframes * pos->ticks_per_beat * pos->beats_per_minute / (pos->frame_rate * 60);
|
|
|
|
|
|
|
|
while (pos->tick >= pos->ticks_per_beat) {
|
|
|
|
pos->tick -= pos->ticks_per_beat;
|
|
|
|
if (++pos->beat > pos->beats_per_bar) {
|
|
|
|
pos->beat = 1;
|
|
|
|
++pos->bar;
|
|
|
|
pos->bar_start_tick +=
|
|
|
|
pos->beats_per_bar
|
|
|
|
* pos->ticks_per_beat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Transport::Transport ( void )
|
|
|
|
{
|
|
|
|
_master_beats_per_bar = 4;
|
|
|
|
_master_beat_type = 4;
|
|
|
|
_master_beats_per_minute = 120;
|
|
|
|
_done = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::poll ( void )
|
|
|
|
{
|
|
|
|
jack_transport_state_t ts;
|
|
|
|
jack_position_t pos;
|
|
|
|
|
|
|
|
ts = jack_transport_query( client, &pos );
|
|
|
|
|
|
|
|
rolling = ts == JackTransportRolling;
|
|
|
|
valid = pos.valid == JackPositionBBT;
|
|
|
|
bar = pos.bar;
|
|
|
|
beat = pos.beat;
|
|
|
|
tick = pos.tick;
|
|
|
|
|
|
|
|
/* bars and beats start at 1.. */
|
|
|
|
pos.bar--;
|
|
|
|
pos.beat--;
|
|
|
|
|
|
|
|
/* FIXME: these probably shouldn't be called from the RT
|
|
|
|
thread... Anyway, it happens infrequently. */
|
|
|
|
if ( pos.beats_per_minute != beats_per_minute )
|
|
|
|
signal_tempo_change( pos.beats_per_minute );
|
|
|
|
|
|
|
|
if ( pos.beats_per_bar != beats_per_bar )
|
|
|
|
signal_bpb_change( pos.beats_per_bar );
|
|
|
|
|
|
|
|
if ( pos.beat_type != beat_type )
|
|
|
|
signal_beat_change( pos.beat_type );
|
|
|
|
|
|
|
|
ticks_per_beat = pos.ticks_per_beat;
|
|
|
|
beats_per_bar = pos.beats_per_bar;
|
|
|
|
beat_type = pos.beat_type;
|
|
|
|
beats_per_minute = pos.beats_per_minute;
|
|
|
|
|
|
|
|
frame = pos.frame;
|
|
|
|
frame_rate = pos.frame_rate;
|
|
|
|
|
|
|
|
/* FIXME: this only needs to be calculated if bpm or framerate changes */
|
|
|
|
{
|
|
|
|
double frames_per_beat = frame_rate * 60 / beats_per_minute;
|
|
|
|
|
|
|
|
frames_per_tick = frames_per_beat / (double)PPQN;
|
|
|
|
ticks_per_period = nframes / frames_per_tick;
|
|
|
|
}
|
|
|
|
|
|
|
|
tick_t abs_tick = (pos.bar * pos.beats_per_bar + pos.beat) * pos.ticks_per_beat + pos.tick;
|
|
|
|
ticks = abs_tick * (PPQN / pos.ticks_per_beat);
|
|
|
|
// ticks = abs_tick / (pos.ticks_per_beat / PPQN);
|
|
|
|
|
|
|
|
tick = tick * (PPQN / pos.ticks_per_beat);
|
|
|
|
ticks_per_beat = PPQN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::start ( void )
|
|
|
|
{
|
|
|
|
MESSAGE( "Starting transport" );
|
|
|
|
jack_transport_start( client );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::stop ( void )
|
|
|
|
{
|
|
|
|
MESSAGE( "Stopping transport" );
|
|
|
|
jack_transport_stop( client );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::toggle ( void )
|
|
|
|
{
|
|
|
|
if ( rolling )
|
|
|
|
stop();
|
|
|
|
else
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::locate ( tick_t ticks )
|
|
|
|
{
|
2008-02-11 07:16:31 +01:00
|
|
|
jack_nframes_t frame = trunc( ticks * transport.frames_per_tick );
|
|
|
|
|
|
|
|
MESSAGE( "Relocating transport to %lu, %lu", ticks, frame );
|
|
|
|
|
|
|
|
jack_transport_locate( client, frame );
|
2007-12-18 05:09:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::set_beats_per_minute ( double n )
|
|
|
|
{
|
|
|
|
_master_beats_per_minute = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::set_beats_per_bar ( int n )
|
|
|
|
{
|
|
|
|
if ( n < 2 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
_master_beats_per_bar = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Transport::set_beat_type ( int n )
|
|
|
|
{
|
|
|
|
if ( n < 4 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
_master_beat_type = n;
|
|
|
|
}
|