a95d469d7f5c5e889d8c6f1f58a5610afb9b8594
[ardour.git] / gtk2_ardour / automation_controller.cc
1 /*
2     Copyright (C) 2007 Paul Davis 
3     Author: Dave 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 <pbd/error.h>
22 #include "ardour/automation_event.h"
23 #include "ardour/automation_control.h"
24 #include "ardour_ui.h"
25 #include "utils.h"
26 #include "automation_controller.h"
27 #include "gui_thread.h"
28
29 #include "i18n.h"
30
31 using namespace ARDOUR;
32 using namespace Gtk;
33
34
35 AutomationController::AutomationController(boost::shared_ptr<AutomationControl> ac, Adjustment* adj)
36         : BarController(*adj, *ac)
37         , _ignore_change(false)
38         , _controllable(ac)
39         , _adjustment(adj)
40 {
41         set_name (X_("PluginSlider")); // FIXME: get yer own name!
42         set_style (BarController::LeftToRight);
43         set_use_parent (true);
44         
45         label_callback = sigc::mem_fun(this, &AutomationController::update_label);
46         
47         StartGesture.connect (mem_fun(*this, &AutomationController::start_touch));
48         StopGesture.connect (mem_fun(*this, &AutomationController::end_touch));
49         
50         _adjustment->signal_value_changed().connect (
51                         mem_fun(*this, &AutomationController::value_adjusted));
52                 
53         _screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
54                         mem_fun (*this, &AutomationController::display_effective_value));
55         
56         ac->Changed.connect (mem_fun(*this, &AutomationController::value_changed));
57 }
58
59 AutomationController::~AutomationController()
60 {
61 }
62
63 boost::shared_ptr<AutomationController>
64 AutomationController::create(Session& s, boost::shared_ptr<AutomationList> al, boost::shared_ptr<AutomationControl> ac)
65 {
66         Gtk::Adjustment* adjustment = manage(new Gtk::Adjustment(al->default_value(), al->get_min_y(), al->get_max_y()));
67         if (!ac) {
68                 PBD::warning << "Creating AutomationController for " << al->param_id().to_string() << endmsg;
69                 ac = boost::shared_ptr<AutomationControl>(new AutomationControl(s, al));
70         }
71         return boost::shared_ptr<AutomationController>(new AutomationController(ac, adjustment));
72 }
73
74 void
75 AutomationController::update_label(char* label, int label_len)
76 {
77         if (label && label_len)
78                 snprintf(label, label_len, "%.3f", _controllable->get_value());
79 }
80
81 void
82 AutomationController::display_effective_value()
83 {
84         //if ( ! _controllable->list()->automation_playback())
85         //      return;
86
87         float value = _controllable->get_value();
88         
89         if (_adjustment->get_value() != value) {
90                 _ignore_change = true; 
91                 _adjustment->set_value (value);
92                 _ignore_change = false;
93         }
94 }
95
96 void
97 AutomationController::value_adjusted()
98 {
99         if (!_ignore_change) {
100                 _controllable->set_value(_adjustment->get_value());
101         }
102 }
103
104 void
105 AutomationController::start_touch()
106 {
107         _controllable->list()->start_touch();
108 }
109
110 void
111 AutomationController::end_touch()
112 {
113         _controllable->list()->stop_touch();
114 }
115
116 void
117 AutomationController::automation_state_changed ()
118 {
119         ENSURE_GUI_THREAD(mem_fun(*this, &AutomationController::automation_state_changed));
120
121         bool x = (_controllable->list()->automation_state() != Off);
122         
123         /* start watching automation so that things move */
124         
125         _screen_update_connection.disconnect();
126
127         if (x) {
128                 _screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
129                                 mem_fun (*this, &AutomationController::display_effective_value));
130         }
131 }
132
133 void
134 AutomationController::value_changed ()
135 {
136         Gtkmm2ext::UI::instance()->call_slot (
137                         mem_fun(*this, &AutomationController::display_effective_value));
138 }
139