X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fticker.cc;h=0b4e64e0df3917e75c44adb1e942c0acf9865a0b;hb=04724c21b66fd6e81fd0fbf0ac7cae9c7d9b3b8a;hp=46e21a66de94d160c214c2d650caed1f67a4153c;hpb=ca21a5ac7b43d01e2548bcd871e601f3e4e38dfe;p=ardour.git diff --git a/libs/ardour/ticker.cc b/libs/ardour/ticker.cc index 46e21a66de..0b4e64e0df 100644 --- a/libs/ardour/ticker.cc +++ b/libs/ardour/ticker.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2008 Hans Baier + Copyright (C) 2008 Hans Baier 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 @@ -18,57 +18,69 @@ $Id$ */ +#include "midi++/port.h" +#include "midi++/manager.h" +#include "evoral/midi_events.h" #include "ardour/ticker.h" #include "ardour/session.h" #include "ardour/tempo.h" +#include "ardour/debug.h" -#define DEBUG_TICKER 0 +using namespace ARDOUR; -namespace ARDOUR +void Ticker::set_session (Session* s) { + SessionHandlePtr::set_session (s); + if (_session) { + _session->tick.connect_same_thread (_session_connections, boost::bind (&Ticker::tick, this, _1, _2, _3)); + } +} -void Ticker::set_session(Session& s) +void MidiClockTicker::set_session (Session* s) { - _session = &s; - - if(_session) { - _session->tick.connect(mem_fun (*this, &Ticker::tick)); - _session->GoingAway.connect(mem_fun (*this, &Ticker::going_away)); + Ticker::set_session (s); + + if (_session) { + _session->TransportStateChange.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::transport_state_changed, this)); + _session->PositionChanged.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::position_changed, this, _1)); + _session->TransportLooped.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::transport_looped, this)); + update_midi_clock_port(); } } -void MidiClockTicker::set_session(Session& s) +void +MidiClockTicker::session_going_away () { - Ticker::set_session(s); - - if(_session) { - _session->MIDIClock_PortChanged.connect(mem_fun (*this, &MidiClockTicker::update_midi_clock_port)); - _session->TransportStateChange .connect(mem_fun (*this, &MidiClockTicker::transport_state_changed)); - _session->PositionChanged .connect(mem_fun (*this, &MidiClockTicker::position_changed)); - _session->TransportLooped .connect(mem_fun (*this, &MidiClockTicker::transport_looped)); - update_midi_clock_port(); - } + SessionHandlePtr::session_going_away(); + _midi_port = 0; } void MidiClockTicker::update_midi_clock_port() { - _midi_port = _session->midi_clock_port(); + _midi_port = MIDI::Manager::instance()->midi_clock_output_port(); } void MidiClockTicker::transport_state_changed() { - float speed = _session->transport_speed(); - nframes_t position = _session->transport_frame(); -#if DEBUG_TICKER - cerr << "Transport state change, speed:" << speed << "position:" << position<< " play loop " << _session->get_play_loop() << endl; -#endif + if (_session->exporting()) { + /* no midi clock during export, for now */ + return; + } + + float speed = _session->transport_speed(); + framepos_t position = _session->transport_frame(); + + DEBUG_TRACE (PBD::DEBUG::MidiClock, + string_compose ("Transport state change, speed: %1 position: %2 play loop: %3\n", speed, position, _session->get_play_loop()) + ); + if (speed == 1.0f) { _last_tick = position; - - if (!Config->get_send_midi_clock()) + + if (!Config->get_send_midi_clock()) return; - + if (_session->get_play_loop()) { assert(_session->locations()->auto_loop_location()); if (position == _session->locations()->auto_loop_location()->start()) { @@ -81,24 +93,23 @@ void MidiClockTicker::transport_state_changed() } else { send_continue_event(0); } - + send_midi_clock_event(0); - + } else if (speed == 0.0f) { - if (!Config->get_send_midi_clock()) + if (!Config->get_send_midi_clock()) return; - + send_stop_event(0); } - - tick(position, *((ARDOUR::BBT_Time *) 0), *((SMPTE::Time *)0)); + + tick(position, *((Timecode::BBT_Time *) 0), *((Timecode::Time *)0)); } -void MidiClockTicker::position_changed(nframes_t position) +void MidiClockTicker::position_changed (framepos_t position) { -#if DEBUG_TICKER - cerr << "Position changed:" << position << endl; -#endif + DEBUG_TRACE (PBD::DEBUG::MidiClock, string_compose ("Position change: %1\n", position)); + _last_tick = position; } @@ -107,52 +118,42 @@ void MidiClockTicker::transport_looped() Location* loop_location = _session->locations()->auto_loop_location(); assert(loop_location); -#if DEBUG_TICKER - cerr << "Transport looped, position:" << p_session->transport_frame() - << " loop start " << loop_location->start( ) - << " loop end " << loop_location->end( ) - << " play loop " << _session->get_play_loop() - << endl; -#endif - - // adjust _last_tick, so that the next MIDI clock message is sent + DEBUG_TRACE (PBD::DEBUG::MidiClock, + string_compose ("Transport looped, position: %1, loop start: %2, loop end: %3, play loop: %4\n", + _session->transport_frame(), loop_location->start(), loop_location->end(), _session->get_play_loop()) + ); + + // adjust _last_tick, so that the next MIDI clock message is sent // in due time (and the tick interval is still constant) - nframes_t elapsed_since_last_tick = loop_location->end() - _last_tick; + framecnt_t elapsed_since_last_tick = loop_location->end() - _last_tick; _last_tick = loop_location->start() - elapsed_since_last_tick; } -void MidiClockTicker::tick(const nframes_t& transport_frames, const BBT_Time& transport_bbt, const SMPTE::Time& transport_smpt) +void MidiClockTicker::tick (const framepos_t& transport_frames, const Timecode::BBT_Time& /*transport_bbt*/, const Timecode::Time& /*transport_smpt*/) { -#ifdef WITH_JACK_MIDI - if (!Config->get_send_midi_clock() || _session == 0 || _session->transport_speed() != 1.0f) + if (!Config->get_send_midi_clock() || _session == 0 || _session->transport_speed() != 1.0f || _midi_port == 0) return; - MIDI::Jack_MidiPort & jack_port (dynamic_cast (*_midi_port)); - while (true) { double next_tick = _last_tick + one_ppqn_in_frames(transport_frames); - nframes_t next_tick_offset = nframes_t(next_tick) - transport_frames; - -#if DEBUG_TICKER - cerr << "Transport:" << transport_frames - << ":Last tick time:" << _last_tick << ":" - << ":Next tick time:" << next_tick << ":" - << "Offset:" << next_tick_offset << ":" - << "cycle length:" << jack_port.nframes_this_cycle() - << endl; -#endif - - if (next_tick_offset >= jack_port.nframes_this_cycle()) + framecnt_t next_tick_offset = framecnt_t(next_tick) - transport_frames; + + DEBUG_TRACE (PBD::DEBUG::MidiClock, + string_compose ("Transport: %1, last tick time: %2, next tick time: %3, offset: %4, cycle length: %5\n", + transport_frames, _last_tick, next_tick, next_tick_offset, _midi_port->nframes_this_cycle() + ) + ); + + if (next_tick_offset >= _midi_port->nframes_this_cycle()) return; - + send_midi_clock_event(next_tick_offset); - + _last_tick = next_tick; } -#endif // WITH_JACK_MIDI } -double MidiClockTicker::one_ppqn_in_frames(nframes_t transport_position) +double MidiClockTicker::one_ppqn_in_frames (framepos_t transport_position) { const Tempo& current_tempo = _session->tempo_map().tempo_at(transport_position); const Meter& current_meter = _session->tempo_map().meter_at(transport_position); @@ -166,35 +167,47 @@ double MidiClockTicker::one_ppqn_in_frames(nframes_t transport_position) return frames_per_quarter_note / double (_ppqn); } -void MidiClockTicker::send_midi_clock_event(nframes_t offset) +void MidiClockTicker::send_midi_clock_event (pframes_t offset) { -#ifdef WITH_JACK_MIDI - assert (MIDI::JACK_MidiPort::is_process_thread()); -#endif // WITH_JACK_MIDI -#if DEBUG_TICKER - cerr << "Tick with offset " << offset << endl; -#endif // DEBUG_TICKER + if (!_midi_port) { + return; + } + + DEBUG_TRACE (PBD::DEBUG::MidiClock, string_compose ("Tick with offset %1\n", offset)); + static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CLOCK }; - _midi_port->write(_midi_clock_tick, 1, offset); + _midi_port->write (_midi_clock_tick, 1, offset); } -void MidiClockTicker::send_start_event(nframes_t offset) +void MidiClockTicker::send_start_event (pframes_t offset) { + if (!_midi_port) { + return; + } + static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_START }; - _midi_port->write(_midi_clock_tick, 1, offset); + _midi_port->write (_midi_clock_tick, 1, offset); } -void MidiClockTicker::send_continue_event(nframes_t offset) +void MidiClockTicker::send_continue_event (pframes_t offset) { + if (!_midi_port) { + return; + } + static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CONTINUE }; - _midi_port->write(_midi_clock_tick, 1, offset); + _midi_port->write (_midi_clock_tick, 1, offset); } -void MidiClockTicker::send_stop_event(nframes_t offset) +void MidiClockTicker::send_stop_event (pframes_t offset) { + if (!_midi_port) { + return; + } + static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_STOP }; - _midi_port->write(_midi_clock_tick, 1, offset); + _midi_port->write (_midi_clock_tick, 1, offset); } -} +