add support for IP MIDI (multicast MIDI over IP UDP sockets) to ardour and use it...
[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
19 #include "pbd/compose.h"
20 #include "pbd/stacktrace.h"
21
22 #include "midi++/port.h"
23 #include "midi++/jack_midi_port.h"
24 #include "midi++/manager.h"
25
26 #include "evoral/midi_events.h"
27
28 #include "ardour/audioengine.h"
29 #include "ardour/ticker.h"
30 #include "ardour/session.h"
31 #include "ardour/tempo.h"
32 #include "ardour/debug.h"
33
34 using namespace ARDOUR;
35
36 MidiClockTicker::MidiClockTicker ()
37         : _midi_port (0)
38         , _ppqn (24)
39         , _last_tick (0.0)
40 {
41 }
42
43 void MidiClockTicker::set_session (Session* s)
44 {
45         SessionHandlePtr::set_session (s);
46         
47          if (_session) {
48                  _session->TransportStateChange.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::transport_state_changed, this));
49                  _session->PositionChanged.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::position_changed, this, _1));
50                  _session->TransportLooped.connect_same_thread (_session_connections, boost::bind (&MidiClockTicker::transport_looped, this));
51                  update_midi_clock_port();
52          }
53 }
54
55 void
56 MidiClockTicker::session_going_away ()
57 {
58         SessionHandlePtr::session_going_away();
59         _midi_port = 0;
60 }
61
62 void MidiClockTicker::update_midi_clock_port()
63 {
64         _midi_port = MIDI::Manager::instance()->midi_clock_output_port();
65 }
66
67 void MidiClockTicker::transport_state_changed()
68 {
69         if (_session->exporting()) {
70                 /* no midi clock during export, for now */
71                 return;
72         }
73
74         if (!_session->engine().running()) {
75                 /* Engine stopped, we can't do anything */
76                 return;
77         }
78
79         float      speed    = _session->transport_speed();
80         framepos_t position = _session->transport_frame();
81
82         DEBUG_TRACE (PBD::DEBUG::MidiClock,
83                      string_compose ("Transport state change @ %4, speed: %1 position: %2 play loop: %3\n", speed, position, _session->get_play_loop(), position)
84                 );
85
86         if (speed == 1.0f) {
87                 _last_tick = position;
88
89                 if (!Config->get_send_midi_clock())
90                         return;
91
92                 if (_session->get_play_loop()) {
93                         assert(_session->locations()->auto_loop_location());
94                         if (position == _session->locations()->auto_loop_location()->start()) {
95                                 send_start_event(0);
96                         } else {
97                                 send_continue_event(0);
98                         }
99                 } else if (position == 0) {
100                         send_start_event(0);
101                 } else {
102                         send_continue_event(0);
103                 }
104
105                 send_midi_clock_event(0);
106
107         } else if (speed == 0.0f) {
108                 if (!Config->get_send_midi_clock())
109                         return;
110
111                 send_stop_event(0);
112         }
113
114         tick (position);
115 }
116
117 void MidiClockTicker::position_changed (framepos_t position)
118 {
119         DEBUG_TRACE (PBD::DEBUG::MidiClock, string_compose ("Position change: %1\n", position));
120
121         _last_tick = position;
122 }
123
124 void MidiClockTicker::transport_looped()
125 {
126         Location* loop_location = _session->locations()->auto_loop_location();
127         assert(loop_location);
128
129         DEBUG_TRACE (PBD::DEBUG::MidiClock,
130                      string_compose ("Transport looped, position: %1, loop start: %2, loop end: %3, play loop: %4\n",
131                                      _session->transport_frame(), loop_location->start(), loop_location->end(), _session->get_play_loop())
132                 );
133
134         // adjust _last_tick, so that the next MIDI clock message is sent
135         // in due time (and the tick interval is still constant)
136
137         framecnt_t elapsed_since_last_tick = loop_location->end() - _last_tick;
138
139         if (loop_location->start() > elapsed_since_last_tick) {
140                 _last_tick = loop_location->start() - elapsed_since_last_tick;
141         } else {
142                 _last_tick = 0;
143         }
144 }
145
146 void MidiClockTicker::tick (const framepos_t& transport_frame)
147 {
148         if (!Config->get_send_midi_clock() || _session == 0 || _session->transport_speed() != 1.0f || _midi_port == 0) {
149                 return;
150         }
151
152         while (true) {
153                 double next_tick = _last_tick + one_ppqn_in_frames (transport_frame);
154                 frameoffset_t next_tick_offset = llrint (next_tick) - transport_frame;
155
156                 MIDI::JackMIDIPort* mp = dynamic_cast<MIDI::JackMIDIPort*> (_midi_port);
157                 
158                 DEBUG_TRACE (PBD::DEBUG::MidiClock,
159                              string_compose ("Transport: %1, last tick time: %2, next tick time: %3, offset: %4, cycle length: %5\n",
160                                              transport_frame, _last_tick, next_tick, next_tick_offset, mp ? mp->nframes_this_cycle() : 0));
161
162                 if (!mp || (next_tick_offset >= mp->nframes_this_cycle())) {
163                         break;
164                 }
165
166                 if (next_tick_offset >= 0) {
167                         send_midi_clock_event (next_tick_offset);
168                 }
169
170                 _last_tick = next_tick;
171         }
172 }
173
174 double MidiClockTicker::one_ppqn_in_frames (framepos_t transport_position)
175 {
176         const Tempo& current_tempo = _session->tempo_map().tempo_at (transport_position);
177         double frames_per_beat = current_tempo.frames_per_beat (_session->nominal_frame_rate());
178
179         double quarter_notes_per_beat = 4.0 / current_tempo.note_type();
180         double frames_per_quarter_note = frames_per_beat / quarter_notes_per_beat;
181
182         return frames_per_quarter_note / double (_ppqn);
183 }
184
185 void MidiClockTicker::send_midi_clock_event (pframes_t offset)
186 {
187         if (!_midi_port) {
188                 return;
189         }
190
191         DEBUG_TRACE (PBD::DEBUG::MidiClock, string_compose ("Tick with offset %1\n", offset));
192
193         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CLOCK };
194         _midi_port->write (_midi_clock_tick, 1, offset);
195 }
196
197 void MidiClockTicker::send_start_event (pframes_t offset)
198 {
199         if (!_midi_port) {
200                 return;
201         }
202
203         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_START };
204         _midi_port->write (_midi_clock_tick, 1, offset);
205 }
206
207 void MidiClockTicker::send_continue_event (pframes_t offset)
208 {
209         if (!_midi_port) {
210                 return;
211         }
212
213         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_CONTINUE };
214         _midi_port->write (_midi_clock_tick, 1, offset);
215 }
216
217 void MidiClockTicker::send_stop_event (pframes_t offset)
218 {
219         if (!_midi_port) {
220                 return;
221         }
222
223         static uint8_t _midi_clock_tick[1] = { MIDI_CMD_COMMON_STOP };
224         _midi_port->write (_midi_clock_tick, 1, offset);
225 }
226
227
228