most of the 2.X->3.0 commit (up to rev 4299) except for gtk2_ardour/editor_canvas...
[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
27 #include <pbd/undo.h>
28
29 #include <ardour/ardour.h>
30 #include <ardour/data_type.h>
31 #include <ardour/automatable.h>
32 #include <ardour/readable.h>
33
34 class XMLNode;
35
36 namespace ARDOUR {
37
38 class Playlist;
39 class Filter;
40 class ExportSpecification;
41
42 enum RegionEditState {
43         EditChangesNothing = 0,
44         EditChangesName    = 1,
45         EditChangesID      = 2
46 };
47
48 class Region
49                 : public SessionObject
50                 , public boost::enable_shared_from_this<Region>
51                 , public Readable
52 {
53   public:
54         typedef std::vector<boost::shared_ptr<Source> > SourceList;
55
56         enum Flag {
57                 Muted = 0x1,
58                 Opaque = 0x2,
59                 EnvelopeActive = 0x4,
60                 DefaultFadeIn = 0x8,
61                 DefaultFadeOut = 0x10,
62                 Locked = 0x20,
63                 Automatic = 0x40,
64                 WholeFile = 0x80,
65                 FadeIn = 0x100,
66                 FadeOut = 0x200,
67                 Copied = 0x400,
68                 Import = 0x800,
69                 External = 0x1000,
70                 SyncMarked = 0x2000,
71                 LeftOfSplit = 0x4000,
72                 RightOfSplit = 0x8000,
73                 Hidden = 0x10000,
74                 DoNotSaveState = 0x20000,
75                 PositionLocked = 0x40000,
76                 //
77                 range_guarantoor = USHRT_MAX
78         };
79
80         enum PositionLockStyle {
81                 AudioTime,
82                 MusicTime
83         };
84
85         static const Flag DefaultFlags = Flag (Opaque|DefaultFadeIn|DefaultFadeOut|FadeIn|FadeOut);
86
87         static Change FadeChanged;
88         static Change SyncOffsetChanged;
89         static Change MuteChanged;
90         static Change OpacityChanged;
91         static Change LockChanged;
92         static Change LayerChanged;
93         static Change HiddenChanged;
94
95         sigc::signal<void,Change> StateChanged;
96         static sigc::signal<void,boost::shared_ptr<ARDOUR::Region> > 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         /**
106          * Thats how the region parameters play together:
107          * <PRE>
108          * |------------------------------------------------------------------- track
109          *                    |..........[------------------].....| region
110          * |-----------------------------| _position
111          *                               |------------------| _length
112          *                    |----------| _start
113          * </PRE>
114          */
115         nframes_t position () const { return _position; }
116         nframes_t start ()    const { return _start; }
117         nframes_t length()    const { return _length; }
118         layer_t   layer ()    const { return _layer; }
119
120         /* these two are valid ONLY during a StateChanged signal handler */
121
122         nframes_t last_position() const { return _last_position; }
123         nframes_t last_length() const { return _last_length; }
124
125         nframes64_t ancestral_start () const { return _ancestral_start; }
126         nframes64_t ancestral_length () const { return _ancestral_length; }
127         float stretch() const { return _stretch; }
128         float shift() const { return _shift; }
129
130         void set_ancestral_data (nframes64_t start, nframes64_t length, float stretch, float shift);
131
132         nframes_t sync_offset(int& dir) const;
133         nframes_t sync_position() const;
134         nframes_t sync_point () const;
135
136         nframes_t adjust_to_sync (nframes_t) const;
137         
138         /* first_frame() is an alias; last_frame() just hides some math */
139
140         nframes_t first_frame() const { return _position; }
141         nframes_t last_frame() const { return _position + _length - 1; }
142
143         Flag flags()      const { return _flags; }
144         bool hidden()     const { return _flags & Hidden; }
145         bool muted()      const { return _flags & Muted; }
146         bool opaque ()    const { return _flags & Opaque; }
147         bool locked()     const { return _flags & Locked; }
148         bool position_locked() const { return _flags & PositionLocked; }
149         bool automatic()  const { return _flags & Automatic; }
150         bool whole_file() const { return _flags & WholeFile ; }
151         bool captured()   const { return !(_flags & (Region::Flag (Region::Import|Region::External))); }
152         bool can_move()   const { return !(_flags & (Locked|PositionLocked)); }
153
154         PositionLockStyle positional_lock_style() const { return _positional_lock_style; }
155         void set_position_lock_style (PositionLockStyle ps);
156         void recompute_position_from_lock_style ();
157
158         virtual bool should_save_state () const { return !(_flags & DoNotSaveState); };
159
160         void freeze ();
161         void thaw (const string& why);
162
163         bool covers (nframes_t frame) const {
164                 return first_frame() <= frame && frame <= last_frame();
165         }
166
167         OverlapType coverage (nframes_t start, nframes_t end) const {
168                 return ARDOUR::coverage (first_frame(), last_frame(), start, end);
169         }
170         
171         bool equivalent (boost::shared_ptr<const Region>) const;
172         bool size_equivalent (boost::shared_ptr<const Region>) const;
173         bool overlap_equivalent (boost::shared_ptr<const Region>) const;
174         bool region_list_equivalent (boost::shared_ptr<const Region>) const;
175         bool source_equivalent (boost::shared_ptr<const Region>) const;
176         
177         /* EDITING OPERATIONS */
178
179         void set_length (nframes_t, void *src);
180         void set_start (nframes_t, void *src);
181         void set_position (nframes_t, void *src);
182         void set_position_on_top (nframes_t, void *src);
183         void special_set_position (nframes_t);
184         void update_position_after_tempo_map_change ();
185         void nudge_position (nframes64_t, void *src);
186
187         bool at_natural_position () const;
188         void move_to_natural_position (void *src);
189
190         void trim_start (nframes_t new_position, void *src);
191         void trim_front (nframes_t new_position, void *src);
192         void trim_end (nframes_t new_position, void *src);
193         void trim_to (nframes_t position, nframes_t length, void *src);
194         
195         void set_layer (layer_t l); /* ONLY Playlist can call this */
196         void raise ();
197         void lower ();
198         void raise_to_top ();
199         void lower_to_bottom ();
200
201         void set_sync_position (nframes_t n);
202         void clear_sync_position ();
203         void set_hidden (bool yn);
204         void set_muted (bool yn);
205         void set_opaque (bool yn);
206         void set_locked (bool yn);
207         void set_position_locked (bool yn);
208         
209         int apply (Filter&);
210
211         virtual uint32_t read_data_count() const { return _read_data_count; }
212
213         boost::shared_ptr<ARDOUR::Playlist> playlist() const { return _playlist.lock(); }
214         virtual void set_playlist (boost::weak_ptr<ARDOUR::Playlist>);
215
216         void source_deleted (boost::shared_ptr<Source>);
217         
218         boost::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
219         uint32_t                  n_channels()          const { return _sources.size(); }
220
221         const SourceList& sources() const { return _sources; }
222         const SourceList& master_sources() const { return _master_sources; }
223
224         std::vector<string> master_source_names();
225         void set_master_sources (const SourceList&);
226         
227         /* automation */
228         
229         virtual boost::shared_ptr<Evoral::Control>
230         control(const Evoral::Parameter& id, bool create=false) = 0;
231
232         virtual boost::shared_ptr<const Evoral::Control>
233         control(const Evoral::Parameter& id) const = 0;
234         
235         /* serialization */
236         
237         XMLNode&         get_state ();
238         virtual XMLNode& state (bool);
239         virtual int      set_state (const XMLNode&);
240         virtual int      set_live_state (const XMLNode&, Change&, bool send);
241
242         virtual boost::shared_ptr<Region> get_parent() const;
243         
244         uint64_t last_layer_op() const { return _last_layer_op; }
245         void set_last_layer_op (uint64_t when);
246
247         virtual bool is_dependent() const { return false; }
248         virtual bool depends_on (boost::shared_ptr<Region> other) const { return false; }
249
250         virtual int exportme (ARDOUR::Session&, ARDOUR::ExportSpecification&) = 0;
251
252         virtual int get_transients (AnalysisFeatureList&, bool force_new = false) { 
253                 // no transients, but its OK
254                 return 0;
255         }
256
257         void invalidate_transients ();  
258
259   protected:
260         friend class RegionFactory;
261
262         Region (boost::shared_ptr<Source> src, nframes_t start, nframes_t length, 
263                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
264         Region (const SourceList& srcs, nframes_t start, nframes_t length, 
265                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
266         
267         Region (boost::shared_ptr<const Region>, nframes_t start, nframes_t length, const string& name, layer_t = 0, Flag flags = DefaultFlags);
268         Region (boost::shared_ptr<const Region>, nframes_t length, const string& name, layer_t = 0, Flag flags = DefaultFlags);
269         Region (boost::shared_ptr<const Region>);
270         Region (boost::shared_ptr<Source> src, const XMLNode&);
271         Region (const SourceList& srcs, const XMLNode&);
272
273         Region (Session& s, nframes_t start, nframes_t length, const string& name, DataType, layer_t = 0, Flag flags = DefaultFlags);
274
275   protected:
276         void copy_stuff (boost::shared_ptr<const Region>, nframes_t start, nframes_t length, const string& name, layer_t, Flag flags);
277
278         XMLNode& get_short_state (); /* used only by Session */
279
280         void send_change (Change);
281
282         void trim_to_internal (nframes_t position, nframes_t length, void *src);
283         void set_position_internal (nframes_t pos, bool allow_bbt_recompute);
284
285         bool copied() const { return _flags & Copied; }
286         void maybe_uncopy ();
287         void first_edit ();
288         
289         bool verify_start (nframes_t);
290         bool verify_start_and_length (nframes_t, nframes_t&);
291         bool verify_start_mutable (nframes_t&_start);
292         bool verify_length (nframes_t);
293         
294         virtual void recompute_at_start () = 0;
295         virtual void recompute_at_end () = 0;
296
297         DataType                _type;
298         Flag                    _flags;
299         nframes_t               _start;
300         nframes_t               _length;
301         nframes_t               _last_length;
302         nframes_t               _position;
303         nframes_t               _last_position;
304         PositionLockStyle       _positional_lock_style;
305         nframes_t               _sync_position;
306         layer_t                 _layer;
307         mutable RegionEditState _first_edit;
308         int                     _frozen;
309         nframes64_t             _ancestral_start;
310         nframes64_t             _ancestral_length;
311         float                   _stretch;
312         float                   _shift;
313         BBT_Time                _bbt_time;
314         AnalysisFeatureList     _transients;
315         bool                    _valid_transients;
316         mutable uint32_t        _read_data_count;  ///< modified in read()
317         Change                  _pending_changed;
318         uint64_t                _last_layer_op;  ///< timestamp
319         Glib::Mutex             _lock;
320         SourceList              _sources;
321         /** Used when timefx are applied, so we can always use the original source */
322         SourceList              _master_sources;
323         
324         boost::weak_ptr<ARDOUR::Playlist> _playlist;
325 };
326
327 } /* namespace ARDOUR */
328
329 #endif /* __ardour_region_h__ */