dramatic change in logic and naming for operations related to adding a MIDI region...
[ardour.git] / libs / ardour / ardour / midi_region.h
1 /*
2     Copyright (C) 2000-2006 Paul Davis
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: midiregion.h 733 2006-08-01 17:19:38Z drobilla $
19 */
20
21 #ifndef __ardour_midi_region_h__
22 #define __ardour_midi_region_h__
23
24 #include <vector>
25
26 #include "ardour/ardour.h"
27 #include "ardour/region.h"
28
29 class XMLNode;
30
31 namespace ARDOUR {
32         namespace Properties {
33                 /* this is pseudo-property: nothing has this as an actual
34                    property, but it allows us to signal changes to the
35                    MidiModel used by the MidiRegion
36                 */
37                 LIBARDOUR_API extern PBD::PropertyDescriptor<void*> midi_data;
38                 LIBARDOUR_API extern PBD::PropertyDescriptor<Evoral::MusicalTime> start_beats;
39                 LIBARDOUR_API extern PBD::PropertyDescriptor<Evoral::MusicalTime> length_beats;
40         }
41 }
42
43 namespace Evoral {
44 template<typename Time> class EventSink;
45 }
46
47 namespace ARDOUR {
48
49 class Route;
50 class Playlist;
51 class Session;
52 class MidiFilter;
53 class MidiModel;
54 class MidiSource;
55 class MidiStateTracker;
56
57 template<typename T> class MidiRingBuffer;
58
59 class LIBARDOUR_API MidiRegion : public Region
60 {
61   public:
62         static void make_property_quarks ();
63
64         ~MidiRegion();
65
66         boost::shared_ptr<MidiRegion> clone (std::string path = std::string()) const;
67         boost::shared_ptr<MidiRegion> clone (boost::shared_ptr<MidiSource>) const;
68
69         boost::shared_ptr<MidiSource> midi_source (uint32_t n=0) const;
70
71         /* Stub Readable interface */
72         virtual framecnt_t read (Sample*, framepos_t /*pos*/, framecnt_t /*cnt*/, int /*channel*/) const { return 0; }
73         virtual framecnt_t readable_length() const { return length(); }
74
75         framecnt_t read_at (Evoral::EventSink<framepos_t>& dst,
76                             framepos_t position,
77                             framecnt_t dur,
78                             uint32_t  chan_n = 0,
79                             NoteMode  mode = Sustained,
80                             MidiStateTracker* tracker = 0) const;
81
82         framecnt_t master_read_at (MidiRingBuffer<framepos_t>& dst,
83                                    framepos_t position,
84                                    framecnt_t dur,
85                                    uint32_t  chan_n = 0,
86                                    NoteMode  mode = Sustained) const;
87
88         XMLNode& state ();
89         int      set_state (const XMLNode&, int version);
90
91         int separate_by_channel (ARDOUR::Session&, std::vector< boost::shared_ptr<Region> >&) const;
92
93         /* automation */
94
95         boost::shared_ptr<Evoral::Control> control(const Evoral::Parameter& id, bool create=false);
96
97         virtual boost::shared_ptr<const Evoral::Control> control(const Evoral::Parameter& id) const;
98
99         /* export */
100
101         boost::shared_ptr<MidiModel> model();
102         boost::shared_ptr<const MidiModel> model() const;
103
104         void fix_negative_start ();
105         void transpose (int);
106
107   protected:
108
109         virtual bool can_trim_start_before_source_start () const {
110                 return true;
111         }
112
113   private:
114         friend class RegionFactory;
115         PBD::Property<Evoral::MusicalTime> _start_beats;
116         PBD::Property<Evoral::MusicalTime> _length_beats;
117
118         MidiRegion (const SourceList&);
119         MidiRegion (boost::shared_ptr<const MidiRegion>);
120         MidiRegion (boost::shared_ptr<const MidiRegion>, frameoffset_t offset);
121
122         framecnt_t _read_at (const SourceList&, Evoral::EventSink<framepos_t>& dst,
123                              framepos_t position,
124                              framecnt_t dur,
125                              uint32_t chan_n = 0,
126                              NoteMode mode = Sustained,
127                              MidiStateTracker* tracker = 0) const;
128
129         void register_properties ();
130         void post_set (const PBD::PropertyChange&);
131
132         void recompute_at_start ();
133         void recompute_at_end ();
134
135         void set_position_internal (framepos_t pos, bool allow_bbt_recompute);
136         void set_length_internal (framecnt_t len);
137         void set_start_internal (framecnt_t);
138         void update_length_beats ();
139
140         void model_changed ();
141         void model_automation_state_changed (Evoral::Parameter const &);
142         void model_contents_changed ();
143
144         void set_start_beats_from_start_frames ();
145         void update_after_tempo_map_change ();
146
147         std::set<Evoral::Parameter> _filtered_parameters; ///< parameters that we ask our source not to return when reading
148         PBD::ScopedConnection _model_connection;
149         PBD::ScopedConnection _source_connection;
150         PBD::ScopedConnection _model_contents_connection;
151
152         double _last_length_beats;
153 };
154
155 } /* namespace ARDOUR */
156
157
158 #endif /* __ardour_midi_region_h__ */