Clean up and hopefully fix handling of logarithmic plugin parameters (fixes #3769).
[ardour.git] / libs / ardour / pannable.cc
1 /*
2     Copyright (C) 2011 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 */
19
20 #include "pbd/error.h"
21 #include "pbd/convert.h"
22
23 #include "ardour/debug.h"
24 #include "ardour/automation_control.h"
25 #include "ardour/automation_list.h"
26 #include "ardour/pannable.h"
27 #include "ardour/panner.h"
28 #include "ardour/pan_controllable.h"
29 #include "ardour/session.h"
30
31 using namespace std;
32 using namespace PBD;
33 using namespace ARDOUR;
34
35 Pannable::Pannable (Session& s)
36         : Automatable (s)
37         , SessionHandleRef (s)
38         , pan_azimuth_control (new PanControllable (s, "", this, PanAzimuthAutomation))
39         , pan_elevation_control (new PanControllable (s, "", this, PanElevationAutomation))
40         , pan_width_control (new PanControllable (s, "", this, PanWidthAutomation))
41         , pan_frontback_control (new PanControllable (s, "", this, PanFrontBackAutomation))
42         , pan_lfe_control (new PanControllable (s, "", this, PanLFEAutomation))
43         , _auto_state (Off)
44         , _auto_style (Absolute)
45         , _has_state (false)
46         , _responding_to_control_auto_state_change (0)
47 {
48         add_control (pan_azimuth_control);
49         add_control (pan_elevation_control);
50         add_control (pan_width_control);
51         add_control (pan_frontback_control);
52         add_control (pan_lfe_control);
53
54         /* all controls change state together */
55
56         pan_azimuth_control->alist()->automation_state_changed.connect_same_thread (*this, boost::bind (&Pannable::control_auto_state_changed, this, _1));
57         pan_elevation_control->alist()->automation_state_changed.connect_same_thread (*this, boost::bind (&Pannable::control_auto_state_changed, this, _1));
58         pan_width_control->alist()->automation_state_changed.connect_same_thread (*this, boost::bind (&Pannable::control_auto_state_changed, this, _1));
59         pan_frontback_control->alist()->automation_state_changed.connect_same_thread (*this, boost::bind (&Pannable::control_auto_state_changed, this, _1));
60         pan_lfe_control->alist()->automation_state_changed.connect_same_thread (*this, boost::bind (&Pannable::control_auto_state_changed, this, _1));
61 }
62
63 Pannable::~Pannable ()
64 {
65         DEBUG_TRACE (DEBUG::Destruction, string_compose ("pannable @ %1 destructor\n", this));
66 }
67
68 void
69 Pannable::control_auto_state_changed (AutoState new_state)
70 {
71         if (_responding_to_control_auto_state_change) {
72                 return;
73         }
74
75         _responding_to_control_auto_state_change++;
76
77         pan_azimuth_control->set_automation_state (new_state);
78         pan_width_control->set_automation_state (new_state);
79         pan_elevation_control->set_automation_state (new_state);
80         pan_frontback_control->set_automation_state (new_state);
81         pan_lfe_control->set_automation_state (new_state);
82
83         _responding_to_control_auto_state_change--;
84
85         _auto_state = new_state;
86         automation_state_changed (new_state);  /* EMIT SIGNAL */
87 }
88
89 void
90 Pannable::set_panner (boost::shared_ptr<Panner> p)
91 {
92         _panner = p;
93 }
94
95 void
96 Pannable::set_automation_state (AutoState state)
97 {
98         if (state != _auto_state) {
99                 _auto_state = state;
100
101                 const Controls& c (controls());
102         
103                 for (Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
104                         boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl>(ci->second);
105                         if (ac) {
106                                 ac->alist()->set_automation_state (state);
107                         }
108                 }
109                 
110                 session().set_dirty ();
111                 automation_state_changed (_auto_state);
112         }
113 }
114
115 void
116 Pannable::set_automation_style (AutoStyle style)
117 {
118         if (style != _auto_style) {
119                 _auto_style = style;
120
121                 const Controls& c (controls());
122                 
123                 for (Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
124                         boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl>(ci->second);
125                         if (ac) {
126                                 ac->alist()->set_automation_style (style);
127                         }
128                 }
129                 
130                 session().set_dirty ();
131                 automation_style_changed ();
132         }
133 }
134
135 void
136 Pannable::start_touch (double when)
137 {
138         const Controls& c (controls());
139         
140         for (Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
141                 boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl>(ci->second);
142                 if (ac) {
143                         ac->alist()->start_touch (when);
144                 }
145         }
146         g_atomic_int_set (&_touching, 1);
147 }
148
149 void
150 Pannable::stop_touch (bool mark, double when)
151 {
152         const Controls& c (controls());
153         
154         for (Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
155                 boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl>(ci->second);
156                 if (ac) {
157                         ac->alist()->stop_touch (mark, when);
158                 }
159         }
160         g_atomic_int_set (&_touching, 0);
161 }
162
163 XMLNode&
164 Pannable::get_state ()
165 {
166         return state (true);
167 }
168
169 XMLNode&
170 Pannable::state (bool full)
171 {
172         XMLNode* node = new XMLNode (X_("Pannable"));
173         XMLNode* control_node;
174         char buf[32];
175
176         control_node = new XMLNode (X_("azimuth"));
177         snprintf (buf, sizeof(buf), "%.12g", pan_azimuth_control->get_value());
178         control_node->add_property (X_("value"), buf);
179         node->add_child_nocopy (*control_node);
180         
181         control_node = new XMLNode (X_("width"));
182         snprintf (buf, sizeof(buf), "%.12g", pan_width_control->get_value());
183         control_node->add_property (X_("value"), buf);
184         node->add_child_nocopy (*control_node);
185
186         control_node = new XMLNode (X_("elevation"));
187         snprintf (buf, sizeof(buf), "%.12g", pan_elevation_control->get_value());
188         control_node->add_property (X_("value"), buf);
189         node->add_child_nocopy (*control_node);
190
191         control_node = new XMLNode (X_("frontback"));
192         snprintf (buf, sizeof(buf), "%.12g", pan_frontback_control->get_value());
193         control_node->add_property (X_("value"), buf);
194         node->add_child_nocopy (*control_node);
195
196         control_node = new XMLNode (X_("lfe"));
197         snprintf (buf, sizeof(buf), "%.12g", pan_lfe_control->get_value());
198         control_node->add_property (X_("value"), buf);
199         node->add_child_nocopy (*control_node);
200         
201         node->add_child_nocopy (get_automation_xml_state ());
202
203      return *node;
204 }
205
206 int
207 Pannable::set_state (const XMLNode& root, int /*version - not used*/)
208 {
209         if (root.name() != X_("Pannable")) {
210                 warning << string_compose (_("Pannable given XML data for %1 - ignored"), root.name()) << endmsg;
211                 return -1;
212         }
213         
214         XMLNodeList nlist;
215         XMLNodeConstIterator niter;
216         const XMLProperty *prop;
217
218         nlist = root.children();
219
220         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
221                 if ((*niter)->name() == X_("azimuth")) {
222                         prop = (*niter)->property (X_("value"));
223                         if (prop) {
224                                 pan_azimuth_control->set_value (atof (prop->value()));
225                         }
226                 } else if ((*niter)->name() == X_("width")) {
227                         prop = (*niter)->property (X_("value"));
228                         if (prop) {
229                                 pan_width_control->set_value (atof (prop->value()));
230                         }
231                 } else if ((*niter)->name() == X_("elevation")) {
232                         prop = (*niter)->property (X_("value"));
233                         if (prop) {
234                                 pan_elevation_control->set_value (atof (prop->value()));
235                         }
236                 } else if ((*niter)->name() == X_("azimuth")) {
237                         prop = (*niter)->property (X_("value"));
238                         if (prop) {
239                                 pan_frontback_control->set_value (atof (prop->value()));
240                         }
241                 } else if ((*niter)->name() == X_("lfe")) {
242                         prop = (*niter)->property (X_("value"));
243                         if (prop) {
244                                 pan_lfe_control->set_value (atof (prop->value()));
245                         }
246                 } else if ((*niter)->name() == Automatable::xml_node_name) {
247                         set_automation_xml_state (**niter, PanAzimuthAutomation);
248                 }
249         }
250         
251         _has_state = true;
252
253         return 0;
254 }
255
256 string 
257 Pannable::value_as_string (boost::shared_ptr<AutomationControl> ac) const
258 {
259         boost::shared_ptr<Panner> p = panner ();
260
261         if (p) {
262                 return p->value_as_string (ac);
263         } 
264
265         return Automatable::value_as_string (ac);
266 }