Fixes for GCC 4.3.
[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(boost::shared_ptr<Automatable> parent, 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->parameter().to_string() << endmsg;
69                 ac = parent->control_factory(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                 // Hack to display CC rounded to int
79                 if (_controllable->parameter().type() == MidiCCAutomation)
80                         snprintf(label, label_len, "%d", (int)_controllable->get_value());
81                 else
82                         snprintf(label, label_len, "%.3f", _controllable->get_value());
83         }
84 }
85
86 void
87 AutomationController::display_effective_value()
88 {
89         //if ( ! _controllable->list()->automation_playback())
90         //      return;
91
92         float value = _controllable->get_value();
93         
94         if (_adjustment->get_value() != value) {
95                 _ignore_change = true; 
96                 _adjustment->set_value (value);
97                 _ignore_change = false;
98         }
99 }
100
101 void
102 AutomationController::value_adjusted()
103 {
104         if (!_ignore_change) {
105                 _controllable->set_value(_adjustment->get_value());
106         }
107 }
108
109 void
110 AutomationController::start_touch()
111 {
112         _controllable->list()->start_touch();
113 }
114
115 void
116 AutomationController::end_touch()
117 {
118         _controllable->list()->stop_touch();
119 }
120
121 void
122 AutomationController::automation_state_changed ()
123 {
124         ENSURE_GUI_THREAD(mem_fun(*this, &AutomationController::automation_state_changed));
125
126         bool x = (_controllable->list()->automation_state() != Off);
127         
128         /* start watching automation so that things move */
129         
130         _screen_update_connection.disconnect();
131
132         if (x) {
133                 _screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
134                                 mem_fun (*this, &AutomationController::display_effective_value));
135         }
136 }
137
138 void
139 AutomationController::value_changed ()
140 {
141         Gtkmm2ext::UI::instance()->call_slot (
142                         mem_fun(*this, &AutomationController::display_effective_value));
143 }
144