convert interface <> internal values for all automation
[ardour.git] / gtk2_ardour / automation_controller.cc
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <iomanip>
22 #include <cmath>
23
24 #include "pbd/error.h"
25
26 #include "ardour/automatable.h"
27 #include "ardour/automation_control.h"
28 #include "ardour/session.h"
29
30 #include "ardour_ui.h"
31 #include "automation_controller.h"
32 #include "gui_thread.h"
33
34 #include "i18n.h"
35
36 using namespace ARDOUR;
37 using namespace Gtk;
38
39 AutomationController::AutomationController(boost::shared_ptr<Automatable> printer, boost::shared_ptr<AutomationControl> ac, Adjustment* adj)
40         : BarController (*adj, ac)
41         , _ignore_change(false)
42         , _printer (printer)
43         , _controllable(ac)
44         , _adjustment(adj)
45 {
46         assert (_printer);
47
48         set_name (X_("ProcessorControlSlider"));
49
50         StartGesture.connect (sigc::mem_fun(*this, &AutomationController::start_touch));
51         StopGesture.connect (sigc::mem_fun(*this, &AutomationController::end_touch));
52
53         _adjustment->signal_value_changed().connect (
54                         sigc::mem_fun(*this, &AutomationController::value_adjusted));
55
56         _screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
57                         sigc::mem_fun (*this, &AutomationController::display_effective_value));
58
59         ac->Changed.connect (_changed_connection, invalidator (*this), boost::bind (&AutomationController::value_changed, this), gui_context());
60 }
61
62 AutomationController::~AutomationController()
63 {
64 }
65
66 boost::shared_ptr<AutomationController>
67 AutomationController::create(
68                 boost::shared_ptr<Automatable> printer,
69                 const Evoral::Parameter& param,
70                 boost::shared_ptr<AutomationControl> ac)
71 {
72         double const lo = ac->internal_to_interface(param.min());
73         double const up = ac->internal_to_interface(param.max());
74         Gtk::Adjustment* adjustment = manage (
75                         new Gtk::Adjustment (
76                                 ac->internal_to_interface(param.normal()),
77                                 lo, up,
78                                 // TODO we should use explicit step-sizes if provided by Plugin::ParameterDescriptor
79                                 (up - lo) / 100, (up - lo) / 10
80                                 )
81                         );
82
83         assert (ac);
84         assert(ac->parameter() == param);
85         return boost::shared_ptr<AutomationController>(new AutomationController(printer, ac, adjustment));
86 }
87
88 std::string
89 AutomationController::get_label (double& xpos)
90 {
91         xpos = 0.5;
92         return _printer->value_as_string (_controllable);
93 }
94
95 void
96 AutomationController::display_effective_value()
97 {
98         double const interface_value = _controllable->internal_to_interface(_controllable->get_value());
99
100         if (_adjustment->get_value () != interface_value) {
101                 _ignore_change = true;
102                 _adjustment->set_value (interface_value);
103                 _ignore_change = false;
104         }
105 }
106
107 void
108 AutomationController::value_adjusted ()
109 {
110         if (!_ignore_change) {
111                 _controllable->set_value (_controllable->interface_to_internal(_adjustment->get_value()));
112         }
113 }
114
115 void
116 AutomationController::start_touch()
117 {
118         _controllable->start_touch (_controllable->session().transport_frame());
119 }
120
121 void
122 AutomationController::end_touch ()
123 {
124         if (!_controllable->alist()) return;
125         if (_controllable->automation_state() == Touch) {
126
127                 bool mark = false;
128                 double when = 0;
129
130                 if (_controllable->session().transport_rolling()) {
131                         mark = true;
132                         when = _controllable->session().transport_frame();
133                 }
134
135                 _controllable->stop_touch (mark, when);
136         }
137 }
138
139 void
140 AutomationController::value_changed ()
141 {
142         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AutomationController::display_effective_value, this));
143 }
144
145 /** Stop updating our value from our controllable */
146 void
147 AutomationController::stop_updating ()
148 {
149         _screen_update_connection.disconnect ();
150 }