Merged with trunk R992.
[ardour.git] / libs / ardour / track.cc
1 /*
2     Copyright (C) 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 #include <pbd/error.h>
19 #include <sigc++/retype.h>
20 #include <sigc++/retype_return.h>
21 #include <sigc++/bind.h>
22
23 #include <ardour/track.h>
24 #include <ardour/diskstream.h>
25 #include <ardour/session.h>
26 #include <ardour/redirect.h>
27 #include <ardour/audioregion.h>
28 #include <ardour/audiosource.h>
29 #include <ardour/route_group_specialized.h>
30 #include <ardour/insert.h>
31 #include <ardour/audioplaylist.h>
32 #include <ardour/panner.h>
33 #include <ardour/utils.h>
34 #include <ardour/connection.h>
35
36 #include "i18n.h"
37
38 using namespace std;
39 using namespace ARDOUR;
40 using namespace PBD;
41
42 Track::Track (Session& sess, string name, Route::Flag flag, TrackMode mode, DataType default_type)
43         : Route (sess, name, 1, -1, -1, -1, flag, default_type)
44         ,  _rec_enable_control (*this)
45 {
46         _declickable = true;
47         _freeze_record.state = NoFreeze;
48         _saved_meter_point = _meter_point;
49         _mode = mode;
50 }
51
52 Track::Track (Session& sess, const XMLNode& node, DataType default_type)
53         : Route (sess, "to be renamed", 0, 0, -1, -1, Route::Flag(0), default_type)
54         , _rec_enable_control (*this)
55 {
56         _freeze_record.state = NoFreeze;
57         _declickable = true;
58         _saved_meter_point = _meter_point;
59 }
60
61 Track::~Track ()
62 {
63 }
64
65 void
66 Track::set_meter_point (MeterPoint p, void *src)
67 {
68         Route::set_meter_point (p, src);
69 }
70
71 XMLNode&
72 Track::get_state ()
73 {
74         return state (true);
75 }
76
77 XMLNode&
78 Track::get_template ()
79 {
80         return state (false);
81 }
82
83 void
84 Track::toggle_monitor_input ()
85 {
86         for (PortSet::iterator i = _inputs.begin(); i != _inputs.end(); ++i) {
87                 i->ensure_monitor_input(!i->monitoring_input());
88         }
89 }
90
91 ARDOUR::nframes_t
92 Track::update_total_latency ()
93 {
94         _own_latency = 0;
95
96         for (RedirectList::iterator i = _redirects.begin(); i != _redirects.end(); ++i) {
97                 if ((*i)->active ()) {
98                         _own_latency += (*i)->latency ();
99                 }
100         }
101
102         set_port_latency (_own_latency);
103
104         return _own_latency;
105 }
106
107
108 Track::FreezeRecord::~FreezeRecord ()
109 {
110         for (vector<FreezeRecordInsertInfo*>::iterator i = insert_info.begin(); i != insert_info.end(); ++i) {
111                 delete *i;
112         }
113 }
114
115 Track::FreezeState
116 Track::freeze_state() const
117 {
118         return _freeze_record.state;
119 }
120
121 Track::RecEnableControllable::RecEnableControllable (Track& s)
122         : Controllable (X_("recenable")), track (s)
123 {
124 }
125
126 void
127 Track::RecEnableControllable::set_value (float val)
128 {
129         bool bval = ((val >= 0.5f) ? true: false);
130         track.set_record_enable (bval, this);
131 }
132
133 float
134 Track::RecEnableControllable::get_value (void) const
135 {
136         if (track.record_enabled()) { return 1.0f; }
137         return 0.0f;
138 }
139
140 bool
141 Track::record_enabled () const
142 {
143         return _diskstream->record_enabled ();
144 }
145
146 bool
147 Track::can_record()
148 {
149         bool will_record = true;
150         for (PortSet::iterator i = _inputs.begin(); i != _inputs.end() && will_record; ++i) {
151                 if (!i->connected())
152                         will_record = false;
153         }
154
155         return will_record;
156 }
157         
158 void
159 Track::set_record_enable (bool yn, void *src)
160 {
161         if (_freeze_record.state == Frozen) {
162                 return;
163         }
164
165         if (_mix_group && src != _mix_group && _mix_group->is_active()) {
166                 _mix_group->apply (&Track::set_record_enable, yn, _mix_group);
167                 return;
168         }
169
170         /* keep track of the meter point as it was before we rec-enabled */
171         if (!_diskstream->record_enabled()) {
172                 _saved_meter_point = _meter_point;
173         }
174         
175         _diskstream->set_record_enabled (yn);
176
177         if (_diskstream->record_enabled()) {
178                 set_meter_point (MeterInput, this);
179         } else {
180                 set_meter_point (_saved_meter_point, this);
181         }
182
183         _rec_enable_control.Changed ();
184 }
185
186 void
187 Track::set_mode (TrackMode m)
188 {
189         if (_diskstream) {
190                 if (_mode != m) {
191                         _mode = m;
192                         _diskstream->set_destructive (m == Destructive);
193                         ModeChanged();
194                 }
195         }
196 }
197
198 int
199 Track::set_name (string str, void *src)
200 {
201         int ret;
202
203         if (record_enabled() && _session.actively_recording()) {
204                 /* this messes things up if done while recording */
205                 return -1;
206         }
207
208         if (_diskstream->set_name (str)) {
209                 return -1;
210         }
211
212         /* save state so that the statefile fully reflects any filename changes */
213
214         if ((ret = IO::set_name (str, src)) == 0) {
215                 _session.save_state ("");
216         }
217         return ret;
218 }
219
220 void
221 Track::set_latency_delay (nframes_t longest_session_latency)
222 {
223         Route::set_latency_delay (longest_session_latency);
224         _diskstream->set_roll_delay (_roll_delay);
225 }
226