* fix broken MidiClockTicker (introduced by revision 4361)
[ardour.git] / libs / ardour / ticker.cc
1 /*
2     Copyright (C) 2008 Hans Baier 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include "ardour/ticker.h"
22 #include "ardour/session.h"
23 #include "ardour/tempo.h"
24
25 #define DEBUG_TICKER 0
26
27 namespace ARDOUR
28 {
29
30
31 void Ticker::set_session(Session& s) 
32 {
33          _session = &s;
34          
35          if(_session) {
36                  _session->tick.connect(mem_fun (*this, &Ticker::tick));
37                  _session->GoingAway.connect(mem_fun (*this, &Ticker::going_away));
38          }
39 }
40
41 void MidiClockTicker::set_session(Session& s) 
42 {
43          Ticker::set_session(s);
44          
45          if(_session) {
46                  _session->MIDIClock_PortChanged.connect(mem_fun (*this, &MidiClockTicker::update_midi_clock_port));
47                  _session->TransportStateChange .connect(mem_fun (*this, &MidiClockTicker::transport_state_changed));
48                  _session->PositionChanged      .connect(mem_fun (*this, &MidiClockTicker::position_changed));           
49                  _session->TransportLooped      .connect(mem_fun (*this, &MidiClockTicker::transport_looped));           
50                  update_midi_clock_port();
51          }
52 }
53
54 void MidiClockTicker::update_midi_clock_port()
55 {
56          _midi_port = _session->midi_clock_port();
57 }
58
59 void MidiClockTicker::transport_state_changed()
60 {
61         float     speed     = _session->transport_speed();
62         nframes_t position  = _session->transport_frame();
63 #if DEBUG_TICKER        
64         cerr << "Transport state change, speed:" << speed << "position:" << position<< " play loop " << _session->get_play_loop() << endl;
65 #endif  
66         if (speed == 1.0f) {
67                 _last_tick = position;
68                 
69                 if (!Config->get_send_midi_clock()) 
70                         return;
71                 
72                 if (_session->get_play_loop()) {
73                         assert(_session->locations()->auto_loop_location());
74                         if (position == _session->locations()->auto_loop_location()->start()) {
75                                 send_start_event(0);
76                         } else {
77                                 send_continue_event(0);
78                         }
79                 } else if (position == 0) {
80                         send_start_event(0);
81                 } else {
82                         send_continue_event(0);
83                 }
84                 
85                 send_midi_clock_event(0);
86                 
87         } else if (speed == 0.0f) {
88                 if (!Config->get_send_midi_clock()) 
89                         return;
90                 
91                 send_stop_event(0);
92         }
93         
94         tick(position, *((ARDOUR::BBT_Time *) 0), *((SMPTE::Time *)0));
95 }
96
97 void MidiClockTicker::position_changed(nframes_t position)
98 {
99 #if DEBUG_TICKER        
100         cerr << "Position changed:" << position << endl;
101 #endif  
102         _last_tick = position;
103 }
104
105 void MidiClockTicker::transport_looped()
106 {
107         Location* loop_location = _session->locations()->auto_loop_location();
108         assert(loop_location);
109
110 #if DEBUG_TICKER        
111         cerr << "Transport looped, position:" <<  _session->transport_frame()
112              << " loop start " << loop_location->start( )
113              << " loop end " << loop_location->end( )
114              << " play loop " << _session->get_play_loop()
115              <<  endl;
116 #endif
117         
118         // adjust _last_tick, so that the next MIDI clock message is sent 
119         // in due time (and the tick interval is still constant)
120         nframes_t elapsed_since_last_tick = loop_location->end() - _last_tick;
121         _last_tick = loop_location->start() - elapsed_since_last_tick;
122 }
123
124 void MidiClockTicker::tick(const nframes_t& transport_frames, const BBT_Time& transport_bbt, const SMPTE::Time& transport_smpt)
125 {
126 #ifdef WITH_JACK_MIDI
127         if (!Config->get_send_midi_clock() || _session == 0 || _session->transport_speed() != 1.0f)
128                 return;
129
130         MIDI::JACK_MidiPort* jack_port = dynamic_cast<MIDI::JACK_MidiPort*>(_midi_port);
131         assert(jack_port);
132         
133         while (true) {
134                 double next_tick = _last_tick + one_ppqn_in_frames(transport_frames);
135                 nframes_t next_tick_offset = nframes_t(next_tick) - transport_frames;
136                 
137 #if DEBUG_TICKER        
138                 cerr << "Transport:" << transport_frames 
139                          << ":Last tick time:" << _last_tick << ":" 
140                          << ":Next tick time:" << next_tick << ":" 
141                          << "Offset:" << next_tick_offset << ":"
142                          << "cycle length:" << jack_port->nframes_this_cycle() 
143                          << endl; 
144 #endif  
145                 
146                 if (next_tick_offset >= jack_port->nframes_this_cycle())
147                         return;
148         
149                 send_midi_clock_event(next_tick_offset);
150                 
151                 _last_tick = next_tick;
152         }
153 #endif // WITH_JACK_MIDI
154 }
155
156 double MidiClockTicker::one_ppqn_in_frames(nframes_t transport_position)
157 {
158         const Tempo& current_tempo = _session->tempo_map().tempo_at(transport_position);
159         const Meter& current_meter = _session->tempo_map().meter_at(transport_position);
160         double frames_per_beat =
161                 current_tempo.frames_per_beat(_session->nominal_frame_rate(),
162                                               current_meter);
163
164         double quarter_notes_per_beat = 4.0 / current_tempo.note_type();
165         double frames_per_quarter_note = frames_per_beat / quarter_notes_per_beat;
166
167         return frames_per_quarter_note / double (_ppqn);
168 }
169
170 void MidiClockTicker::send_midi_clock_event(nframes_t offset)
171 {
172 #ifdef WITH_JACK_MIDI
173         assert (MIDI::JACK_MidiPort::is_process_thread());
174 #endif // WITH_JACK_MIDI
175 #if DEBUG_TICKER        
176         cerr << "Tick with offset " << offset << endl;
177 #endif // DEBUG_TICKER
178         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CLOCK };
179         _midi_port->write(_midi_clock_tick, 1, offset);
180 }
181
182 void MidiClockTicker::send_start_event(nframes_t offset)
183 {
184         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_START };
185         _midi_port->write(_midi_clock_tick, 1, offset);
186 }
187
188 void MidiClockTicker::send_continue_event(nframes_t offset)
189 {
190         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CONTINUE };
191         _midi_port->write(_midi_clock_tick, 1, offset);
192 }
193
194 void MidiClockTicker::send_stop_event(nframes_t offset)
195 {
196         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_STOP };
197         _midi_port->write(_midi_clock_tick, 1, offset);
198 }
199
200 }
201