Merge branch 'ripple-mode-cc' into cairocanvas
[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_("PluginSlider")); // FIXME: get yer own name!
49         set_style (BarController::LeftToRight);
50         set_use_parent (true);
51
52         StartGesture.connect (sigc::mem_fun(*this, &AutomationController::start_touch));
53         StopGesture.connect (sigc::mem_fun(*this, &AutomationController::end_touch));
54
55         _adjustment->signal_value_changed().connect (
56                         sigc::mem_fun(*this, &AutomationController::value_adjusted));
57
58         _screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
59                         sigc::mem_fun (*this, &AutomationController::display_effective_value));
60
61         ac->Changed.connect (_changed_connection, invalidator (*this), boost::bind (&AutomationController::value_changed, this), gui_context());
62 }
63
64 AutomationController::~AutomationController()
65 {
66 }
67
68 boost::shared_ptr<AutomationController>
69 AutomationController::create(
70                 boost::shared_ptr<Automatable> printer,
71                 const Evoral::Parameter& param,
72                 boost::shared_ptr<AutomationControl> ac)
73 {
74         Gtk::Adjustment* adjustment = manage (
75                 new Gtk::Adjustment (
76                         ac->internal_to_interface (param.normal()),
77                         ac->internal_to_interface (param.min()),
78                         ac->internal_to_interface (param.max()),
79                         (param.max() - param.min()) / 100.0,
80                         (param.max() - param.min()) / 10.0
81                         )
82                 );
83
84         assert (ac);
85         assert(ac->parameter() == param);
86         return boost::shared_ptr<AutomationController>(new AutomationController(printer, ac, adjustment));
87 }
88
89 std::string
90 AutomationController::get_label (double& xpos)
91 {
92         xpos = 0.5;
93         return _printer->value_as_string (_controllable);
94 }
95
96 void
97 AutomationController::display_effective_value()
98 {
99         double const interface_value = _controllable->internal_to_interface (_controllable->get_value());
100
101         if (_adjustment->get_value () != interface_value) {
102                 _ignore_change = true;
103                 _adjustment->set_value (interface_value);
104                 _ignore_change = false;
105         }
106 }
107
108 void
109 AutomationController::value_adjusted ()
110 {
111         if (!_ignore_change) {
112                 _controllable->set_value (_controllable->interface_to_internal (_adjustment->get_value()));
113         }
114 }
115
116 void
117 AutomationController::start_touch()
118 {
119         _controllable->start_touch (_controllable->session().transport_frame());
120 }
121
122 void
123 AutomationController::end_touch ()
124 {
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 }