Display recorded controller data (fix show all/existing automation).
[ardour.git] / libs / ardour / midi_playlist.cc
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Written by Dave Robillard, 2006
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9  
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14  
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <cassert>
21
22 #include <algorithm>
23
24 #include <stdlib.h>
25
26 #include <sigc++/bind.h>
27
28 #include <ardour/types.h>
29 #include <ardour/configuration.h>
30 #include <ardour/midi_playlist.h>
31 #include <ardour/midi_region.h>
32 #include <ardour/session.h>
33 #include <ardour/midi_ring_buffer.h>
34
35 #include <pbd/error.h>
36
37 #include "i18n.h"
38
39 using namespace ARDOUR;
40 using namespace sigc;
41 using namespace std;
42
43 MidiPlaylist::MidiPlaylist (Session& session, const XMLNode& node, bool hidden)
44                 : Playlist (session, node, DataType::MIDI, hidden)
45                 , _note_mode(Sustained)
46 {
47         const XMLProperty* prop = node.property("type");
48         assert(prop && DataType(prop->value()) == DataType::MIDI);
49
50         in_set_state++;
51         set_state (node);
52         in_set_state--;
53 }
54
55 MidiPlaylist::MidiPlaylist (Session& session, string name, bool hidden)
56                 : Playlist (session, name, DataType::MIDI, hidden)
57 {
58 }
59
60 MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, string name, bool hidden)
61                 : Playlist (other, name, hidden)
62 {
63         throw; // nope
64
65         /*
66         list<Region*>::const_iterator in_o  = other.regions.begin();
67         list<Region*>::iterator in_n = regions.begin();
68
69         while (in_o != other.regions.end()) {
70                 MidiRegion *ar = dynamic_cast<MidiRegion *>( (*in_o) );
71
72                 for (list<Crossfade *>::const_iterator xfades = other._crossfades.begin(); xfades != other._crossfades.end(); ++xfades) {
73                         if ( &(*xfades)->in() == ar) {
74                                 // We found one! Now copy it!
75
76                                 list<Region*>::const_iterator out_o = other.regions.begin();
77                                 list<Region*>::const_iterator out_n = regions.begin();
78
79                                 while (out_o != other.regions.end()) {
80
81                                         MidiRegion *ar2 = dynamic_cast<MidiRegion *>( (*out_o) );
82
83                                         if ( &(*xfades)->out() == ar2) {
84                                                 MidiRegion *in  = dynamic_cast<MidiRegion*>( (*in_n) );
85                                                 MidiRegion *out = dynamic_cast<MidiRegion*>( (*out_n) );
86                                                 Crossfade *new_fade = new Crossfade( *(*xfades), in, out);
87                                                 add_crossfade(*new_fade);
88                                                 break;
89                                         }
90
91                                         out_o++;
92                                         out_n++;
93                                 }
94                                 //                              cerr << "HUH!? second region in the crossfade not found!" << endl;
95                         }
96                 }
97
98                 in_o++;
99                 in_n++;
100         }
101 */
102 }
103
104 MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, nframes_t start, nframes_t dur, string name, bool hidden)
105                 : Playlist (other, start, dur, name, hidden)
106 {
107         /* this constructor does NOT notify others (session) */
108 }
109
110 MidiPlaylist::~MidiPlaylist ()
111 {
112         GoingAway (); /* EMIT SIGNAL */
113         
114         /* drop connections to signals */
115         
116         notify_callbacks ();
117 }
118
119 struct RegionSortByLayer {
120     bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
121             return a->layer() < b->layer();
122     }
123 };
124
125 /** Returns the number of frames in time duration read (eg could be large when 0 events are read) */
126 nframes_t
127 MidiPlaylist::read (MidiRingBuffer& dst, nframes_t start,
128                      nframes_t dur, unsigned chan_n)
129 {
130         /* this function is never called from a realtime thread, so
131            its OK to block (for short intervals).
132         */
133
134         Glib::Mutex::Lock rm (region_lock);
135
136         nframes_t end = start + dur - 1;
137
138         _read_data_count = 0;
139
140         // relevent regions overlapping start <--> end
141         vector<boost::shared_ptr<Region> > regs;
142
143         for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
144
145                 if ((*i)->coverage (start, end) != OverlapNone) {
146                         regs.push_back(*i);
147                 }
148         }
149
150         RegionSortByLayer layer_cmp;
151         sort(regs.begin(), regs.end(), layer_cmp);
152
153         for (vector<boost::shared_ptr<Region> >::iterator i = regs.begin(); i != regs.end(); ++i) {
154                 // FIXME: ensure time is monotonic here?
155                 boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(*i);
156                 if (mr) {
157                         mr->read_at (dst, start, dur, chan_n, _note_mode);
158                         _read_data_count += mr->read_data_count();
159                 }
160         }
161
162         return dur;
163 }
164
165
166 void
167 MidiPlaylist::remove_dependents (boost::shared_ptr<Region> region)
168 {
169         /* MIDI regions have no dependents (crossfades) */
170 }
171
172
173 void
174 MidiPlaylist::refresh_dependents (boost::shared_ptr<Region> r)
175 {
176         /* MIDI regions have no dependents (crossfades) */
177 }
178
179 void
180 MidiPlaylist::finalize_split_region (boost::shared_ptr<Region> original, boost::shared_ptr<Region> left, boost::shared_ptr<Region> right)
181 {
182         /* No MIDI crossfading (yet?), so nothing to do here */
183 }
184
185 void
186 MidiPlaylist::check_dependents (boost::shared_ptr<Region> r, bool norefresh)
187 {
188         /* MIDI regions have no dependents (crossfades) */
189 }
190
191
192 int
193 MidiPlaylist::set_state (const XMLNode& node)
194 {
195         in_set_state++;
196         freeze ();
197
198         Playlist::set_state (node);
199
200         thaw();
201         in_set_state--;
202
203         return 0;
204 }
205
206 void
207 MidiPlaylist::dump () const
208 {
209         boost::shared_ptr<Region> r;
210
211         cerr << "Playlist \"" << _name << "\" " << endl
212         << regions.size() << " regions "
213         << endl;
214
215         for (RegionList::const_iterator i = regions.begin(); i != regions.end(); ++i) {
216                 r = *i;
217                 cerr << "  " << r->name() << " @ " << r << " ["
218                 << r->start() << "+" << r->length()
219                 << "] at "
220                 << r->position()
221                 << " on layer "
222                 << r->layer ()
223                 << endl;
224         }
225 }
226
227 bool
228 MidiPlaylist::destroy_region (boost::shared_ptr<Region> region)
229 {
230         boost::shared_ptr<MidiRegion> r = boost::dynamic_pointer_cast<MidiRegion> (region);
231         bool changed = false;
232
233         if (r == 0) {
234                 PBD::fatal << _("programming error: non-midi Region passed to remove_overlap in midi playlist")
235                 << endmsg;
236                 /*NOTREACHED*/
237                 return false;
238         }
239
240         {
241                 RegionLock rlock (this);
242                 RegionList::iterator i;
243                 RegionList::iterator tmp;
244
245                 for (i = regions.begin(); i != regions.end(); ) {
246
247                         tmp = i;
248                         ++tmp;
249
250                         if ((*i) == region) {
251                                 regions.erase (i);
252                                 changed = true;
253                         }
254
255                         i = tmp;
256                 }
257         }
258
259
260         if (changed) {
261                 /* overload this, it normally means "removed", not destroyed */
262                 notify_region_removed (region);
263         }
264
265         return changed;
266 }
267
268 set<Parameter>
269 MidiPlaylist::contained_automation()
270 {
271         /* this function is never called from a realtime thread, so
272            its OK to block (for short intervals).
273         */
274
275         Glib::Mutex::Lock rm (region_lock);
276
277         set<Parameter> ret;
278
279         for (RegionList::const_iterator r = regions.begin(); r != regions.end(); ++r) {
280                 boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(*r);
281
282                 for (Automatable::Controls::iterator c = mr->model()->controls().begin();
283                                 c != mr->model()->controls().end(); ++c) {
284                         ret.insert(c->first);
285                 }
286         }
287
288         return ret;
289 }
290
291
292 bool
293 MidiPlaylist::region_changed (Change what_changed, boost::shared_ptr<Region> region)
294 {
295         if (in_flush || in_set_state) {
296                 return false;
297         }
298
299         // Feeling rather uninterested today, but thanks for the heads up anyway!
300         
301         Change our_interests = Change (/*MidiRegion::FadeInChanged|
302                                        MidiRegion::FadeOutChanged|
303                                        MidiRegion::FadeInActiveChanged|
304                                        MidiRegion::FadeOutActiveChanged|
305                                        MidiRegion::EnvelopeActiveChanged|
306                                        MidiRegion::ScaleAmplitudeChanged|
307                                        MidiRegion::EnvelopeChanged*/);
308         bool parent_wants_notify;
309
310         parent_wants_notify = Playlist::region_changed (what_changed, region);
311
312         if ((parent_wants_notify || (what_changed & our_interests))) {
313                 notify_modified ();
314         }
315
316         return true;
317 }
318