add a bit of state to VCAs
[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         , _number (num)
51         , _name (name)
52         , _control (new GainControl (s, Evoral::Parameter (GainAutomation), boost::shared_ptr<AutomationList> ()))
53 {
54 }
55
56 void
57 VCA::set_value (double val, Controllable::GroupControlDisposition gcd)
58 {
59         _control->set_value (val, gcd);
60 }
61
62 double
63 VCA::get_value() const
64 {
65         return _control->get_value();
66 }
67
68 void
69 VCA::add (boost::shared_ptr<Route> r)
70 {
71         boost::dynamic_pointer_cast<GainControl>(r->gain_control())->add_master (_control);
72         std::cerr << name() << " now controlling " << r->name() << std::endl;
73 }
74
75 void
76 VCA::remove (boost::shared_ptr<Route> r)
77 {
78         r->gain_control()->remove_master (_control);
79 }
80
81 void
82 VCA::set_name (string const& str)
83 {
84         _name = str;
85 }
86
87 XMLNode&
88 VCA::get_state ()
89 {
90         XMLNode* node = new XMLNode (xml_node_name);
91         node->add_property (X_("name"), _name);
92         node->add_property (X_("number"), _number);
93         return *node;
94 }
95
96 int
97 VCA::set_state (XMLNode const& node, int /*version*/)
98 {
99         XMLProperty const* prop;
100
101         if ((prop = node.property ("name")) != 0) {
102                 set_name (prop->value());
103         }
104
105         if ((prop = node.property ("number")) != 0) {
106                 _number = atoi (prop->value());
107         }
108
109         return 0;
110 }