merged with 2.0-ongoing changes 2582-2605 (not thoroughly tested but it compiles...
[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
33 class XMLNode;
34
35 namespace ARDOUR {
36
37 class Playlist;
38 class Filter;
39
40 enum RegionEditState {
41         EditChangesNothing = 0,
42         EditChangesName    = 1,
43         EditChangesID      = 2
44 };
45
46 class Region : public Automatable, public boost::enable_shared_from_this<Region>
47 {
48   public:
49         typedef std::vector<boost::shared_ptr<Source> > SourceList;
50
51         enum Flag {
52                 Muted = 0x1,
53                 Opaque = 0x2,
54                 EnvelopeActive = 0x4,
55                 DefaultFadeIn = 0x8,
56                 DefaultFadeOut = 0x10,
57                 Locked = 0x20,
58                 Automatic = 0x40,
59                 WholeFile = 0x80,
60                 FadeIn = 0x100,
61                 FadeOut = 0x200,
62                 Copied = 0x400,
63                 Import = 0x800,
64                 External = 0x1000,
65                 SyncMarked = 0x2000,
66                 LeftOfSplit = 0x4000,
67                 RightOfSplit = 0x8000,
68                 Hidden = 0x10000,
69                 DoNotSaveState = 0x20000,
70                 PositionLocked = 0x40000,
71                 //
72                 range_guarantoor = USHRT_MAX
73         };
74
75         static const Flag DefaultFlags = Flag (Opaque|DefaultFadeIn|DefaultFadeOut|FadeIn|FadeOut);
76
77         static Change FadeChanged;
78         static Change SyncOffsetChanged;
79         static Change MuteChanged;
80         static Change OpacityChanged;
81         static Change LockChanged;
82         static Change LayerChanged;
83         static Change HiddenChanged;
84
85         sigc::signal<void,Change> StateChanged;
86
87         virtual ~Region();
88
89         /** Note: changing the name of a Region does not constitute an edit */
90         bool set_name (const std::string& str);
91
92         const DataType& data_type() const { return _type; }
93
94         nframes_t position () const { return _position; }
95         nframes_t start ()    const { return _start; }
96         nframes_t length()    const { return _length; }
97         layer_t   layer ()    const { return _layer; }
98
99         nframes64_t ancestral_start () const { return _ancestral_start; }
100         nframes64_t ancestral_length () const { return _ancestral_length; }
101         float stretch() const { return _stretch; }
102
103         void set_ancestral_data (nframes64_t start, nframes64_t length, float stretch);
104
105         nframes_t sync_offset(int& dir) const;
106         nframes_t sync_position() const;
107
108         nframes_t adjust_to_sync (nframes_t);
109         
110         /* first_frame() is an alias; last_frame() just hides some math */
111
112         nframes_t first_frame() const { return _position; }
113         nframes_t last_frame() const { return _position + _length - 1; }
114
115         Flag flags()      const { return _flags; }
116         bool hidden()     const { return _flags & Hidden; }
117         bool muted()      const { return _flags & Muted; }
118         bool opaque ()    const { return _flags & Opaque; }
119         bool locked()     const { return _flags & Locked; }
120         bool position_locked() const { return _flags & PositionLocked; }
121         bool automatic()  const { return _flags & Automatic; }
122         bool whole_file() const { return _flags & WholeFile ; }
123         bool captured()   const { return !(_flags & (Region::Flag (Region::Import|Region::External))); }
124         bool can_move()   const { return !(_flags & (Locked|PositionLocked)); }
125
126         virtual bool should_save_state () const { return !(_flags & DoNotSaveState); };
127
128         void freeze ();
129         void thaw (const string& why);
130
131         bool covers (nframes_t frame) const {
132                 return first_frame() <= frame && frame < last_frame();
133         }
134
135         OverlapType coverage (nframes_t start, nframes_t end) const {
136                 return ARDOUR::coverage (first_frame(), last_frame(), start, end);
137         }
138         
139         bool equivalent (boost::shared_ptr<const Region>) const;
140         bool size_equivalent (boost::shared_ptr<const Region>) const;
141         bool overlap_equivalent (boost::shared_ptr<const Region>) const;
142         bool region_list_equivalent (boost::shared_ptr<const Region>) const;
143         bool source_equivalent (boost::shared_ptr<const Region>) const;
144         
145         /* EDITING OPERATIONS */
146
147         void set_length (nframes_t, void *src);
148         void set_start (nframes_t, void *src);
149         void set_position (nframes_t, void *src);
150         void set_position_on_top (nframes_t, void *src);
151         void special_set_position (nframes_t);
152         void nudge_position (long, void *src);
153
154         bool at_natural_position () const;
155         void move_to_natural_position (void *src);
156
157         void trim_start (nframes_t new_position, void *src);
158         void trim_front (nframes_t new_position, void *src);
159         void trim_end (nframes_t new_position, void *src);
160         void trim_to (nframes_t position, nframes_t length, void *src);
161         
162         void set_layer (layer_t l); /* ONLY Playlist can call this */
163         void raise_to_top ();
164         void lower_to_bottom ();
165
166         void set_sync_position (nframes_t n);
167         void clear_sync_position ();
168         void set_hidden (bool yn);
169         void set_muted (bool yn);
170         void set_opaque (bool yn);
171         void set_locked (bool yn);
172         void set_position_locked (bool yn);
173         
174         int apply (Filter&);
175
176         virtual uint32_t read_data_count() const { return _read_data_count; }
177
178         boost::shared_ptr<ARDOUR::Playlist> playlist() const { return _playlist.lock(); }
179         virtual void set_playlist (boost::weak_ptr<ARDOUR::Playlist>);
180
181         void source_deleted (boost::shared_ptr<Source>);
182         
183         boost::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
184         uint32_t                  n_channels()          const { return _sources.size(); }
185
186         const SourceList& sources() const { return _sources; }
187         const SourceList& master_sources() const { return _master_sources; }
188
189         std::vector<string> master_source_names();
190         void set_master_sources (SourceList&);
191         
192         /* serialization */
193         
194         XMLNode&         get_state ();
195         virtual XMLNode& state (bool);
196         virtual int      set_state (const XMLNode&);
197         virtual int      set_live_state (const XMLNode&, Change&, bool send);
198
199         virtual boost::shared_ptr<Region> get_parent() const;
200         
201         uint64_t last_layer_op() const { return _last_layer_op; }
202         void set_last_layer_op (uint64_t when);
203
204         virtual bool is_dependent() const { return false; }
205         virtual bool depends_on (boost::shared_ptr<Region> other) const { return false; }
206
207   protected:
208         friend class RegionFactory;
209
210         Region (boost::shared_ptr<Source> src, nframes_t start, nframes_t length, 
211                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
212         Region (SourceList& srcs, nframes_t start, nframes_t length, 
213                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
214         
215         Region (boost::shared_ptr<const Region>, nframes_t start, nframes_t length, const string& name, layer_t = 0, Flag flags = DefaultFlags);
216         Region (boost::shared_ptr<const Region>);
217         Region (boost::shared_ptr<Source> src, const XMLNode&);
218         Region (SourceList& srcs, const XMLNode&);
219
220         /* this one is for derived types of derived types */
221
222         Region (Session& s, nframes_t start, nframes_t length, const string& name, DataType, layer_t = 0, Flag flags = DefaultFlags);
223
224   protected:
225         XMLNode& get_short_state (); /* used only by Session */
226
227         void send_change (Change);
228
229         void trim_to_internal (nframes_t position, nframes_t length, void *src);
230
231         bool copied() const { return _flags & Copied; }
232         void maybe_uncopy ();
233         void first_edit ();
234         
235         virtual bool verify_start (nframes_t);
236         virtual bool verify_start_and_length (nframes_t, nframes_t);
237         virtual bool verify_start_mutable (nframes_t&_start);
238         virtual bool verify_length (nframes_t);
239         virtual void recompute_at_start () = 0;
240         virtual void recompute_at_end () = 0;
241
242         DataType                _type;
243         Flag                    _flags;
244         nframes_t               _start;
245         nframes_t               _length;
246         nframes_t               _position;
247         nframes_t               _sync_position;
248         layer_t                 _layer;
249         mutable RegionEditState _first_edit;
250         int                     _frozen;
251         nframes64_t             _ancestral_start;
252         nframes64_t             _ancestral_length;
253         float                   _stretch;
254         mutable uint32_t        _read_data_count;  ///< modified in read()
255         Change                  _pending_changed;
256         uint64_t                _last_layer_op;  ///< timestamp
257         Glib::Mutex             _lock;
258         SourceList              _sources;
259         /** Used when timefx are applied, so we can always use the original source */
260         SourceList              _master_sources;
261         
262         boost::weak_ptr<ARDOUR::Playlist> _playlist;
263 };
264
265 } /* namespace ARDOUR */
266
267 #endif /* __ardour_region_h__ */