9dc51e2d4a4bc447940c82917486612f9b806b11
[ardour.git] / libs / ardour / ardour / region.h
1 /*
2     Copyright (C) 2000-2001 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 */
19
20 #ifndef __ardour_region_h__
21 #define __ardour_region_h__
22
23 #include <vector>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/enable_shared_from_this.hpp>
26 #include <boost/utility.hpp>
27
28 #include "pbd/undo.h"
29 #include "pbd/signals.h"
30 #include "ardour/ardour.h"
31 #include "ardour/data_type.h"
32 #include "ardour/automatable.h"
33 #include "ardour/movable.h"
34 #include "ardour/readable.h"
35 #include "ardour/session_object.h"
36 #include "ardour/trimmable.h"
37
38 class XMLNode;
39
40 namespace ARDOUR {
41
42 namespace Properties {
43         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              muted;
44         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              opaque;
45         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              locked;
46         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              video_locked;
47         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              automatic;
48         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              whole_file;
49         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              import;
50         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              external;
51         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              sync_marked;
52         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              left_of_split;
53         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              right_of_split;
54         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              hidden;
55         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              position_locked;
56         LIBARDOUR_API extern PBD::PropertyDescriptor<bool>              valid_transients;
57         LIBARDOUR_API extern PBD::PropertyDescriptor<framepos_t>        start;
58         LIBARDOUR_API extern PBD::PropertyDescriptor<framecnt_t>        length;
59         LIBARDOUR_API extern PBD::PropertyDescriptor<framepos_t>        position;
60         LIBARDOUR_API extern PBD::PropertyDescriptor<double>            beat;
61         LIBARDOUR_API extern PBD::PropertyDescriptor<double>            pulse;
62         LIBARDOUR_API extern PBD::PropertyDescriptor<framecnt_t>        sync_position;
63         LIBARDOUR_API extern PBD::PropertyDescriptor<layer_t>           layer;
64         LIBARDOUR_API extern PBD::PropertyDescriptor<framepos_t>        ancestral_start;
65         LIBARDOUR_API extern PBD::PropertyDescriptor<framecnt_t>        ancestral_length;
66         LIBARDOUR_API extern PBD::PropertyDescriptor<float>             stretch;
67         LIBARDOUR_API extern PBD::PropertyDescriptor<float>             shift;
68         LIBARDOUR_API extern PBD::PropertyDescriptor<PositionLockStyle> position_lock_style;
69         LIBARDOUR_API extern PBD::PropertyDescriptor<uint64_t>          layering_index;
70 };
71
72 class Playlist;
73 class Filter;
74 class ExportSpecification;
75 class Progress;
76
77 enum LIBARDOUR_API RegionEditState {
78         EditChangesNothing = 0,
79         EditChangesName    = 1,
80         EditChangesID      = 2
81 };
82
83
84 class LIBARDOUR_API Region
85         : public SessionObject
86         , public boost::enable_shared_from_this<Region>
87         , public Readable
88         , public Trimmable
89         , public Movable
90 {
91   public:
92         typedef std::vector<boost::shared_ptr<Source> > SourceList;
93
94         static void make_property_quarks ();
95
96         static PBD::Signal2<void,boost::shared_ptr<ARDOUR::Region>, const PBD::PropertyChange&> RegionPropertyChanged;
97
98         virtual ~Region();
99
100         /** Note: changing the name of a Region does not constitute an edit */
101         bool set_name (const std::string& str);
102
103         const DataType& data_type () const { return _type; }
104
105         /** How the region parameters play together:
106          *
107          * POSITION: first frame of the region along the timeline
108          * START:    first frame of the region within its source(s)
109          * LENGTH:   number of frames the region represents
110          */
111         framepos_t position ()  const { return _position; }
112         framepos_t start ()     const { return _start; }
113         framecnt_t length ()    const { return _length; }
114         layer_t    layer ()     const { return _layer; }
115
116         framecnt_t source_length(uint32_t n) const;
117         uint32_t   max_source_level () const;
118
119         /* these two are valid ONLY during a StateChanged signal handler */
120
121         framepos_t last_position () const { return _last_position; }
122         framecnt_t last_length ()   const { return _last_length; }
123
124         framepos_t ancestral_start ()  const { return _ancestral_start; }
125         framecnt_t ancestral_length () const { return _ancestral_length; }
126
127         float stretch () const { return _stretch; }
128         float shift ()   const { return _shift; }
129
130         void set_ancestral_data (framepos_t start, framecnt_t length, float stretch, float shift);
131
132         frameoffset_t sync_offset (int& dir) const;
133         framepos_t sync_position () const;
134
135         framepos_t adjust_to_sync (framepos_t) const;
136
137         /* first_frame() is an alias; last_frame() just hides some math */
138
139         framepos_t first_frame () const { return _position; }
140         framepos_t last_frame ()  const { return _position + _length - 1; }
141
142         /** Return the earliest possible value of _position given the
143          *  value of _start within the region's sources
144          */
145         framepos_t earliest_possible_position () const;
146         /** Return the last possible value of _last_frame given the
147          *  value of _startin the regions's sources
148          */
149         framepos_t latest_possible_frame () const;
150
151         Evoral::Range<framepos_t> last_range () const {
152                 return Evoral::Range<framepos_t> (_last_position, _last_position + _last_length - 1);
153         }
154
155         Evoral::Range<framepos_t> range () const {
156                 return Evoral::Range<framepos_t> (first_frame(), last_frame());
157         }
158
159         bool hidden ()           const { return _hidden; }
160         bool muted ()            const { return _muted; }
161         bool opaque ()           const { return _opaque; }
162         bool locked ()           const { return _locked; }
163         bool position_locked ()  const { return _position_locked; }
164         bool video_locked ()     const { return _video_locked; }
165         bool automatic ()        const { return _automatic; }
166         bool whole_file ()       const { return _whole_file; }
167         bool captured ()         const { return !(_import || _external); }
168         bool can_move ()         const { return !_position_locked && !_locked; }
169         bool sync_marked ()      const { return _sync_marked; }
170         bool external ()         const { return _external; }
171         bool import ()           const { return _import; }
172
173         Trimmable::CanTrim can_trim () const;
174
175         PositionLockStyle position_lock_style () const { return _position_lock_style; }
176         void set_position_lock_style (PositionLockStyle ps);
177         void recompute_position_from_lock_style (const int32_t sub_num);
178
179         double beat () const { return _beat; }
180         void set_beat (double beat) { _beat = beat; }
181         double pulse () const { return _pulse; }
182         void set_pulse (double pulse) { _pulse = pulse; }
183
184         void suspend_property_changes ();
185
186         bool covers (framepos_t frame) const {
187                 return first_frame() <= frame && frame <= last_frame();
188         }
189
190         /** @return coverage of this region with the given range;
191          *  OverlapInternal: the range is internal to this region.
192          *  OverlapStart:    the range overlaps the start of this region.
193          *  OverlapEnd:      the range overlaps the end of this region.
194          *  OverlapExternal: the range overlaps all of this region.
195          */
196         Evoral::OverlapType coverage (framepos_t start, framepos_t end) const {
197                 return Evoral::coverage (first_frame(), last_frame(), start, end);
198         }
199
200         bool equivalent (boost::shared_ptr<const Region>) const;
201         bool size_equivalent (boost::shared_ptr<const Region>) const;
202         bool overlap_equivalent (boost::shared_ptr<const Region>) const;
203         bool region_list_equivalent (boost::shared_ptr<const Region>) const;
204         bool source_equivalent (boost::shared_ptr<const Region>) const;
205         bool any_source_equivalent (boost::shared_ptr<const Region>) const;
206         bool uses_source (boost::shared_ptr<const Source>, bool shallow = false) const;
207         void deep_sources (std::set<boost::shared_ptr<Source> >&) const;
208
209         std::string source_string () const;
210
211
212         /* EDITING OPERATIONS */
213
214         void set_length (framecnt_t, const int32_t sub_num);
215         void set_start (framepos_t);
216         void set_position (framepos_t, int32_t sub_num = 0);
217         void set_initial_position (framepos_t);
218         void special_set_position (framepos_t);
219         virtual void update_after_tempo_map_change (bool send_change = true);
220         void nudge_position (frameoffset_t);
221
222         bool at_natural_position () const;
223         void move_to_natural_position ();
224
225         void move_start (frameoffset_t distance, const int32_t sub_num = 0);
226         void trim_front (framepos_t new_position, const int32_t sub_num = 0);
227         void trim_end (framepos_t new_position, const int32_t sub_num = 0);
228         void trim_to (framepos_t position, framecnt_t length, const int32_t sub_num = 0);
229
230         virtual void fade_range (framepos_t, framepos_t) {}
231
232         void cut_front (framepos_t new_position, const int32_t sub_num = 0);
233         void cut_end (framepos_t new_position, const int32_t sub_num = 0);
234
235         void set_layer (layer_t l); /* ONLY Playlist can call this */
236         void raise ();
237         void lower ();
238         void raise_to_top ();
239         void lower_to_bottom ();
240
241         void set_sync_position (framepos_t n);
242         void clear_sync_position ();
243         void set_hidden (bool yn);
244         void set_muted (bool yn);
245         void set_whole_file (bool yn);
246         void set_automatic (bool yn);
247         void set_opaque (bool yn);
248         void set_locked (bool yn);
249         void set_video_locked (bool yn);
250         void set_position_locked (bool yn);
251
252         int apply (Filter &, Progress* progress = 0);
253
254         boost::shared_ptr<ARDOUR::Playlist> playlist () const { return _playlist.lock(); }
255         virtual void set_playlist (boost::weak_ptr<ARDOUR::Playlist>);
256
257         void source_deleted (boost::weak_ptr<Source>);
258
259         bool is_compound () const;
260
261         boost::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
262         uint32_t n_channels() const { return _sources.size(); }
263
264         const SourceList& sources ()        const { return _sources; }
265         const SourceList& master_sources () const { return _master_sources; }
266
267         std::vector<std::string> master_source_names();
268         void set_master_sources (const SourceList&);
269
270         /* automation */
271
272         virtual boost::shared_ptr<Evoral::Control>
273         control (const Evoral::Parameter& id, bool create=false) = 0;
274
275         virtual boost::shared_ptr<const Evoral::Control>
276         control (const Evoral::Parameter& id) const = 0;
277
278         /* serialization */
279
280         XMLNode&         get_state ();
281         virtual XMLNode& state ();
282         virtual int      set_state (const XMLNode&, int version);
283
284         virtual boost::shared_ptr<Region> get_parent() const;
285
286         uint64_t layering_index () const { return _layering_index; }
287         void set_layering_index (uint64_t when) { _layering_index = when; }
288
289         virtual bool is_dependent() const { return false; }
290         virtual bool depends_on (boost::shared_ptr<Region> /*other*/) const { return false; }
291
292         virtual void add_transient (framepos_t) {
293                 // no transients, but its OK
294         }
295
296         virtual void clear_transients () {
297                 // no transients, but its OK
298         }
299
300         virtual void update_transient (framepos_t /* old_position */, framepos_t /* new_position */) {
301                 // no transients, but its OK
302         }
303
304         virtual void remove_transient (framepos_t /* where */) {
305                 // no transients, but its OK
306         }
307
308         virtual void set_onsets (AnalysisFeatureList&) {
309                 // no transients, but its OK
310         }
311
312         /** merges _onsets and _user_transients into given list
313          * and removed exact duplicates.
314          */
315         void transients (AnalysisFeatureList&);
316
317         /** merges _onsets OR _transients with _user_transients into given list
318          * if _onsets and _transients are unset, run analysis.
319          * list is not thinned, duplicates remain in place.
320          *
321          * intended for: Playlist::find_next_transient ()
322          */
323         virtual void get_transients (AnalysisFeatureList&) {
324                 // no transients, but its OK
325         }
326
327         bool has_transients () const;
328
329         virtual int separate_by_channel (ARDOUR::Session&,
330                         std::vector< boost::shared_ptr<Region> >&) const {
331                 return 0;
332         }
333
334         void maybe_invalidate_transients ();
335
336         void drop_sources ();
337
338   protected:
339         friend class RegionFactory;
340
341         /** Construct a region from multiple sources*/
342         Region (const SourceList& srcs);
343
344         /** Construct a region from another region */
345         Region (boost::shared_ptr<const Region>);
346
347         /** Construct a region from another region, at an offset within that region */
348         Region (boost::shared_ptr<const Region>, frameoffset_t start_offset, const int32_t sub_num);
349
350         /** Construct a region as a copy of another region, but with different sources */
351         Region (boost::shared_ptr<const Region>, const SourceList&);
352
353         /** Constructor for derived types only */
354         Region (Session& s, framepos_t start, framecnt_t length, const std::string& name, DataType);
355
356         virtual bool can_trim_start_before_source_start () const {
357                 return false;
358         }
359
360   protected:
361
362         void send_change (const PBD::PropertyChange&);
363         virtual int _set_state (const XMLNode&, int version, PBD::PropertyChange& what_changed, bool send_signal);
364         void post_set (const PBD::PropertyChange&);
365         virtual void set_position_internal (framepos_t pos, bool allow_bbt_recompute, const int32_t sub_num);
366         virtual void set_length_internal (framecnt_t, const int32_t sub_num);
367         virtual void set_start_internal (framecnt_t, const int32_t sub_num = 0);
368         bool verify_start_and_length (framepos_t, framecnt_t&);
369         void first_edit ();
370
371         DataType _type;
372
373         PBD::Property<bool>        _sync_marked;
374         PBD::Property<bool>        _left_of_split;
375         PBD::Property<bool>        _right_of_split;
376         PBD::Property<bool>        _valid_transients;
377         PBD::Property<framepos_t>  _start;
378         PBD::Property<framecnt_t>  _length;
379         PBD::Property<framepos_t>  _position;
380         PBD::Property<double>      _beat;
381         PBD::Property<double>      _pulse;
382         /** Sync position relative to the start of our file */
383         PBD::Property<framepos_t>  _sync_position;
384
385         SourceList              _sources;
386         /** Used when timefx are applied, so we can always use the original source */
387         SourceList              _master_sources;
388
389         boost::weak_ptr<ARDOUR::Playlist> _playlist;
390
391         void merge_features (AnalysisFeatureList&, const AnalysisFeatureList&, const frameoffset_t) const;
392
393         AnalysisFeatureList     _onsets; // used by the Ferret (Aubio OnsetDetector)
394
395         // _transient_user_start is covered by  _valid_transients
396         AnalysisFeatureList     _user_transients; // user added
397         framepos_t              _transient_user_start; // region's _start relative to user_transients
398
399         // these are used by Playlist::find_next_transient() in absence of onsets
400         AnalysisFeatureList     _transients; // Source Analysis (QM Transient), user read-only
401         framepos_t              _transient_analysis_start;
402         framepos_t              _transient_analysis_end;
403
404   private:
405         void mid_thaw (const PBD::PropertyChange&);
406
407         virtual void trim_to_internal (framepos_t position, framecnt_t length, const int32_t sub_num);
408         void modify_front (framepos_t new_position, bool reset_fade, const int32_t sub_num);
409         void modify_end (framepos_t new_position, bool reset_fade, const int32_t sub_num);
410
411         void maybe_uncopy ();
412
413         bool verify_start (framepos_t);
414         bool verify_start_mutable (framepos_t&_start);
415         bool verify_length (framecnt_t&);
416
417         virtual void recompute_at_start () = 0;
418         virtual void recompute_at_end () = 0;
419
420         PBD::Property<bool>        _muted;
421         PBD::Property<bool>        _opaque;
422         PBD::Property<bool>        _locked;
423         PBD::Property<bool>        _video_locked;
424         PBD::Property<bool>        _automatic;
425         PBD::Property<bool>        _whole_file;
426         PBD::Property<bool>        _import;
427         PBD::Property<bool>        _external;
428         PBD::Property<bool>        _hidden;
429         PBD::Property<bool>        _position_locked;
430         PBD::Property<framepos_t>  _ancestral_start;
431         PBD::Property<framecnt_t>  _ancestral_length;
432         PBD::Property<float>       _stretch;
433         PBD::Property<float>       _shift;
434         PBD::EnumProperty<PositionLockStyle> _position_lock_style;
435         PBD::Property<uint64_t>    _layering_index;
436
437         framecnt_t              _last_length;
438         framepos_t              _last_position;
439         mutable RegionEditState _first_edit;
440         layer_t                 _layer;
441
442         void register_properties ();
443
444         void use_sources (SourceList const &);
445 };
446
447 } /* namespace ARDOUR */
448
449 #endif /* __ardour_region_h__ */