Merge branch 'master' into windows
[ardour.git] / libs / ardour / ardour / midi_playlist.h
1 /*
2     Copyright (C) 2006 Paul Davis
3     Author: David Robillard
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 #ifndef __ardour_midi_playlist_h__
21 #define __ardour_midi_playlist_h__
22
23 #include <vector>
24 #include <list>
25
26 #include "ardour/ardour.h"
27 #include "ardour/playlist.h"
28 #include "ardour/midi_state_tracker.h"
29 #include "evoral/Parameter.hpp"
30
31 namespace ARDOUR
32 {
33
34 class Session;
35 class MidiRegion;
36 class Source;
37 template<typename T> class MidiRingBuffer;
38
39 class MidiPlaylist : public ARDOUR::Playlist
40 {
41 public:
42         MidiPlaylist (Session&, const XMLNode&, bool hidden = false);
43         MidiPlaylist (Session&, std::string name, bool hidden = false);
44         MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, std::string name, bool hidden = false);
45         MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, framepos_t start, framecnt_t cnt,
46                       std::string name, bool hidden = false);
47
48         ~MidiPlaylist ();
49
50         framecnt_t read (Evoral::EventSink<framepos_t>& buf,
51                          framepos_t start, framecnt_t cnt, uint32_t chan_n = 0);
52
53         int set_state (const XMLNode&, int version);
54
55         bool destroy_region (boost::shared_ptr<Region>);
56
57         void set_note_mode (NoteMode m) { _note_mode = m; }
58
59         std::set<Evoral::Parameter> contained_automation();
60
61         void clear_note_trackers ();
62
63 protected:
64
65         void remove_dependents (boost::shared_ptr<Region> region);
66
67 private:
68         void dump () const;
69
70         bool region_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
71
72         NoteMode _note_mode;
73
74         typedef std::map<Region*,MidiStateTracker*> NoteTrackers;
75         NoteTrackers _note_trackers;
76
77 };
78
79 } /* namespace ARDOUR */
80
81 #endif  /* __ardour_midi_playlist_h__ */
82
83