Convert old v4 Track monitoring session-state (untested)
[ardour.git] / libs / ardour / vca.cc
1 /*
2   Copyright (C) 2016 Paul Davis
3
4   This program is free software; you can redistribute it and/or modify it
5   under the terms of the GNU General Public License as published by the Free
6   Software Foundation; either version 2 of the License, or (at your option)
7   any later version.
8
9   This program is distributed in the hope that it will be useful, but WITHOUT
10   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12   for more details.
13
14   You should have received a copy of the GNU General Public License along
15   with this program; if not, write to the Free Software Foundation, Inc.,
16   675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include "pbd/convert.h"
20
21 #include "ardour/automation_control.h"
22 #include "ardour/debug.h"
23 #include "ardour/gain_control.h"
24 #include "ardour/monitor_control.h"
25 #include "ardour/rc_configuration.h"
26 #include "ardour/route.h"
27 #include "ardour/session.h"
28 #include "ardour/vca.h"
29
30 #include "pbd/i18n.h"
31
32 using namespace ARDOUR;
33 using namespace PBD;
34 using std::string;
35
36 Glib::Threads::Mutex VCA::number_lock;
37 int32_t VCA::next_number = 1;
38 string VCA::xml_node_name (X_("VCA"));
39
40 string
41 VCA::default_name_template ()
42 {
43         return _("VCA %n");
44 }
45
46 int32_t
47 VCA::next_vca_number ()
48 {
49         /* we could use atomic inc here, but elsewhere we need more complete
50            mutex semantics, so we have to do it here also.
51         */
52         Glib::Threads::Mutex::Lock lm (number_lock);
53         return next_number++;
54 }
55
56 void
57 VCA::set_next_vca_number (int32_t n)
58 {
59         Glib::Threads::Mutex::Lock lm (number_lock);
60         next_number = n;
61 }
62
63 int32_t
64 VCA::get_next_vca_number ()
65 {
66         Glib::Threads::Mutex::Lock lm (number_lock);
67         return next_number;
68 }
69
70 VCA::VCA (Session& s, int32_t num, const string& name)
71         : Stripable (s, name, PresentationInfo (num, PresentationInfo::VCA))
72         , Muteable (s, name)
73         , Automatable (s)
74         , _number (num)
75         , _gain_control (new GainControl (s, Evoral::Parameter (GainAutomation), boost::shared_ptr<AutomationList> ()))
76 {
77 }
78
79 int
80 VCA::init ()
81 {
82         _solo_control.reset (new SoloControl (_session, X_("solo"), *this, *this));
83         _mute_control.reset (new MuteControl (_session, X_("mute"), *this));
84
85         add_control (_gain_control);
86         add_control (_solo_control);
87         add_control (_mute_control);
88
89         return 0;
90 }
91
92 VCA::~VCA ()
93 {
94         DEBUG_TRACE (DEBUG::Destruction, string_compose ("delete VCA %1\n", number()));
95         {
96                 Glib::Threads::Mutex::Lock lm (number_lock);
97                 if (_number == next_number - 1) {
98                         /* this was the "last" VCA added, so rewind the next number so
99                          * that future VCAs get numbered as intended
100                          */
101                         next_number--;
102                 }
103         }
104 }
105
106 string
107 VCA::full_name() const
108 {
109         /* name() is never empty - default is VCA %n */
110         return string_compose (_("VCA %1 : %2"), _number, name());
111 }
112
113 XMLNode&
114 VCA::get_state ()
115 {
116         XMLNode* node = new XMLNode (xml_node_name);
117         node->set_property (X_("name"), name());
118         node->set_property (X_("number"), _number);
119
120         node->add_child_nocopy (_presentation_info.get_state());
121
122         node->add_child_nocopy (_gain_control->get_state());
123         node->add_child_nocopy (_solo_control->get_state());
124         node->add_child_nocopy (_mute_control->get_state());
125         node->add_child_nocopy (get_automation_xml_state());
126
127         node->add_child_nocopy (Slavable::get_state());
128
129         return *node;
130 }
131
132 int
133 VCA::set_state (XMLNode const& node, int version)
134 {
135         Stripable::set_state (node, version);
136
137         std::string str;
138         if (node.get_property ("name", str)) {
139                 set_name (str);
140         }
141
142         node.get_property ("number", _number);
143
144         XMLNodeList const &children (node.children());
145         for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
146                 if ((*i)->name() == Controllable::xml_node_name) {
147
148                         if (!(*i)->get_property ("name", str)) {
149                                 continue;
150                         }
151
152                         if (str == _gain_control->name()) {
153                                 _gain_control->set_state (**i, version);
154                         }
155                         if (str == _solo_control->name()) {
156                                 _solo_control->set_state (**i, version);
157                         }
158                         if (str == _mute_control->name()) {
159                                 _mute_control->set_state (**i, version);
160                         }
161                 } else if ((*i)->name() == Slavable::xml_node_name) {
162                         Slavable::set_state (**i, version);
163                 }
164         }
165
166         return 0;
167 }
168
169 void
170 VCA::clear_all_solo_state ()
171 {
172         _solo_control->clear_all_solo_state ();
173 }
174
175 MonitorState
176 VCA::monitoring_state () const
177 {
178         /* XXX this has to get more complex but not clear how */
179         return MonitoringInput;
180 }
181
182 bool
183 VCA::slaved () const
184 {
185         if (!_gain_control) {
186                 return false;
187         }
188         /* just test one particular control, not all of them */
189         return _gain_control->slaved ();
190 }
191
192 bool
193 VCA::slaved_to (boost::shared_ptr<VCA> vca) const
194 {
195         if (!vca || !_gain_control) {
196                 return false;
197         }
198
199         /* just test one particular control, not all of them */
200
201         return _gain_control->slaved_to (vca->gain_control());
202 }