627e556caded727e24d0d4284f90d90b19e1ad84
[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     $Id$
19 */
20
21 #ifndef __ardour_region_h__
22 #define __ardour_region_h__
23
24 #include <vector>
25 #include <boost/shared_ptr.hpp>
26 #include <boost/enable_shared_from_this.hpp>
27
28 #include <pbd/undo.h>
29 #include <pbd/statefuldestructible.h> 
30
31 #include <ardour/ardour.h>
32 #include <ardour/data_type.h>
33
34 class XMLNode;
35
36 namespace ARDOUR {
37
38 class Playlist;
39
40 enum RegionEditState {
41         EditChangesNothing = 0,
42         EditChangesName    = 1,
43         EditChangesID      = 2
44 };
45
46 class Region : public PBD::StatefulDestructible, 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                 //
71                 range_guarantoor = USHRT_MAX
72         };
73
74         static const Flag DefaultFlags = Flag (Opaque|DefaultFadeIn|DefaultFadeOut|FadeIn|FadeOut);
75
76         static Change FadeChanged;
77         static Change SyncOffsetChanged;
78         static Change MuteChanged;
79         static Change OpacityChanged;
80         static Change LockChanged;
81         static Change LayerChanged;
82         static Change HiddenChanged;
83
84         sigc::signal<void,Change> StateChanged;
85
86         virtual ~Region();
87
88         /* Note: changing the name of a Region does not constitute an edit */
89
90         string name() const { return _name; }
91         void set_name (string str);
92
93         const DataType& data_type() const { return _type; }
94
95         nframes_t position () const { return _position; }
96         nframes_t start ()    const { return _start; }
97         nframes_t length()    const { return _length; }
98         layer_t   layer ()    const { return _layer; }
99         
100         nframes_t sync_offset(int& dir) const;
101         nframes_t sync_position() const;
102
103         nframes_t adjust_to_sync (nframes_t);
104         
105         /* first_frame() is an alias; last_frame() just hides some math */
106
107         nframes_t first_frame() const { return _position; }
108         nframes_t last_frame() const { return _position + _length - 1; }
109
110         Flag flags()      const { return _flags; }
111         bool hidden()     const { return _flags & Hidden; }
112         bool muted()      const { return _flags & Muted; }
113         bool opaque ()    const { return _flags & Opaque; }
114         bool locked()     const { return _flags & Locked; }
115         bool automatic()  const { return _flags & Automatic; }
116         bool whole_file() const { return _flags & WholeFile ; }
117         bool captured()   const { return !(_flags & (Region::Flag (Region::Import|Region::External))); }
118
119         virtual bool should_save_state () const { return !(_flags & DoNotSaveState); };
120
121         void freeze ();
122         void thaw (const string& why);
123
124         bool covers (nframes_t frame) const {
125                 return first_frame() <= frame && frame < last_frame();
126         }
127
128         OverlapType coverage (nframes_t start, nframes_t end) const {
129                 return ARDOUR::coverage (first_frame(), last_frame(), start, end);
130         }
131         
132         bool equivalent (boost::shared_ptr<const Region>) const;
133         bool size_equivalent (boost::shared_ptr<const Region>) const;
134         bool overlap_equivalent (boost::shared_ptr<const Region>) const;
135         bool region_list_equivalent (boost::shared_ptr<const Region>) const;
136         bool source_equivalent (boost::shared_ptr<const Region>) const;
137         
138         /* EDITING OPERATIONS */
139
140         void set_length (nframes_t, void *src);
141         void set_start (nframes_t, void *src);
142         void set_position (nframes_t, void *src);
143         void set_position_on_top (nframes_t, void *src);
144         void special_set_position (nframes_t);
145         void nudge_position (long, void *src);
146
147         void move_to_natural_position (void *src);
148
149         void trim_start (nframes_t new_position, void *src);
150         void trim_front (nframes_t new_position, void *src);
151         void trim_end (nframes_t new_position, void *src);
152         void trim_to (nframes_t position, nframes_t length, void *src);
153         
154         void set_layer (layer_t l); /* ONLY Playlist can call this */
155         void raise ();
156         void lower ();
157         void raise_to_top ();
158         void lower_to_bottom ();
159
160         void set_sync_position (nframes_t n);
161         void clear_sync_position ();
162         void set_hidden (bool yn);
163         void set_muted (bool yn);
164         void set_opaque (bool yn);
165         void set_locked (bool yn);
166
167         virtual uint32_t read_data_count() const { return _read_data_count; }
168
169         ARDOUR::Playlist* playlist() const { return _playlist; }
170
171         void set_playlist (ARDOUR::Playlist*);
172
173         void source_deleted (boost::shared_ptr<Source>);
174
175         boost::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
176         uint32_t                  n_channels()          const { return _sources.size(); }
177
178         std::vector<string> master_source_names();
179
180
181         /* serialization */
182         
183         XMLNode&         get_state ();
184         virtual XMLNode& state (bool);
185         virtual int      set_state (const XMLNode&);
186         virtual int      set_live_state (const XMLNode&, Change&, bool send);
187
188         boost::shared_ptr<Region> get_parent();
189         
190         uint64_t last_layer_op() const { return _last_layer_op; }
191         void set_last_layer_op (uint64_t when);
192
193   protected:
194         friend class RegionFactory;
195
196         Region (boost::shared_ptr<Source> src, nframes_t start, nframes_t length, 
197                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
198         Region (SourceList& srcs, nframes_t start, nframes_t length, 
199                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
200         
201         Region (boost::shared_ptr<const Region>, nframes_t start, nframes_t length, const string& name, layer_t = 0, Flag flags = DefaultFlags);
202         Region (boost::shared_ptr<const Region>);
203         Region (boost::shared_ptr<Source> src, const XMLNode&);
204         Region (SourceList& srcs, const XMLNode&);
205
206   protected:
207         XMLNode& get_short_state (); /* used only by Session */
208
209         void send_change (Change);
210
211         void trim_to_internal (nframes_t position, nframes_t length, void *src);
212
213         bool copied() const { return _flags & Copied; }
214         void maybe_uncopy ();
215         void first_edit ();
216         
217         bool verify_start (jack_nframes_t);
218         bool verify_start_and_length (jack_nframes_t, jack_nframes_t);
219         bool verify_start_mutable (jack_nframes_t&_start);
220         bool verify_length (jack_nframes_t);
221         virtual void recompute_at_start () = 0;
222         virtual void recompute_at_end () = 0;
223         
224
225         PBD::ID                 _id;
226         string                  _name;
227         DataType                _type;
228         Flag                    _flags;
229         nframes_t          _start;
230         nframes_t          _length;
231         nframes_t          _position;
232         nframes_t          _sync_position;
233         layer_t                 _layer;
234         mutable RegionEditState _first_edit;
235         int                     _frozen;
236         mutable uint32_t        _read_data_count;  ///< modified in read()
237         Change                  _pending_changed;
238         uint64_t                _last_layer_op;  ///< timestamp
239         Glib::Mutex             _lock;
240         ARDOUR::Playlist*       _playlist;
241         SourceList              _sources;
242         /** Used when timefx are applied, so we can always use the original source */
243         SourceList              _master_sources;
244 };
245
246 } /* namespace ARDOUR */
247
248 #endif /* __ardour_region_h__ */