mostly restore VCA state on session loading.
[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/gain_control.h"
23 #include "ardour/route.h"
24 #include "ardour/vca.h"
25
26 #include "i18n.h"
27
28 using namespace ARDOUR;
29 using namespace PBD;
30 using std::string;
31
32 gint VCA::next_number = 0;
33 string VCA::xml_node_name (X_("VCA"));
34
35 string
36 VCA::default_name_template ()
37 {
38         return _("VCA %n");
39 }
40
41 int
42 VCA::next_vca_number ()
43 {
44         /* recall that atomic_int_add() returns the value before the add */
45         return g_atomic_int_add (&next_number, 1) + 1;
46 }
47
48 VCA::VCA (Session& s, const string& name, uint32_t num)
49         : SessionHandleRef (s)
50         , Automatable (s)
51         , _number (num)
52         , _name (name)
53         , _control (new GainControl (s, Evoral::Parameter (GainAutomation), boost::shared_ptr<AutomationList> ()))
54 {
55         add_control (_control);
56 }
57
58 VCA::VCA (Session& s, XMLNode const & node, int version)
59         : SessionHandleRef (s)
60         , Automatable (s)
61         , _number (0)
62         , _control (new GainControl (s, Evoral::Parameter (GainAutomation), boost::shared_ptr<AutomationList> ()))
63 {
64         add_control (_control);
65
66         set_state (node, version);
67 }
68
69 void
70 VCA::set_value (double val, Controllable::GroupControlDisposition gcd)
71 {
72         _control->set_value (val, gcd);
73 }
74
75 double
76 VCA::get_value() const
77 {
78         return _control->get_value();
79 }
80
81 void
82 VCA::add (boost::shared_ptr<Route> r)
83 {
84         boost::dynamic_pointer_cast<GainControl>(r->gain_control())->add_master (_control);
85         std::cerr << name() << " now controlling " << r->name() << std::endl;
86 }
87
88 void
89 VCA::remove (boost::shared_ptr<Route> r)
90 {
91         r->gain_control()->remove_master (_control);
92 }
93
94 void
95 VCA::set_name (string const& str)
96 {
97         _name = str;
98 }
99
100 XMLNode&
101 VCA::get_state ()
102 {
103         XMLNode* node = new XMLNode (xml_node_name);
104         node->add_property (X_("name"), _name);
105         node->add_property (X_("number"), _number);
106
107         node->add_child_nocopy (_control->get_state());
108         node->add_child_nocopy (get_automation_xml_state());
109
110         return *node;
111 }
112
113 int
114 VCA::set_state (XMLNode const& node, int version)
115 {
116         XMLProperty const* prop;
117
118         if ((prop = node.property ("name")) != 0) {
119                 set_name (prop->value());
120         }
121
122         if ((prop = node.property ("number")) != 0) {
123                 _number = atoi (prop->value());
124         }
125
126         XMLNodeList const &children (node.children());
127         for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
128                 if ((*i)->name() == Controllable::xml_node_name) {
129                         XMLProperty* prop = (*i)->property ("name");
130                         if (prop && prop->value() == X_("gaincontrol")) {
131                                 _control->set_state (**i, version);
132                         }
133                 }
134         }
135
136         return 0;
137 }