A few fixes to interpolation of MIDI controller data. Don't interpolate
[ardour.git] / gtk2_ardour / automation_region_view.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 #include "pbd/memento_command.h"
21 #include "ardour/automation_control.h"
22 #include "ardour/event_type_map.h"
23 #include "ardour/session.h"
24 #include "ardour/source.h"
25
26 #include "automation_region_view.h"
27 #include "gui_thread.h"
28 #include "public_editor.h"
29
30 #include "i18n.h"
31
32 AutomationRegionView::AutomationRegionView(ArdourCanvas::Group*                      parent,
33                                            AutomationTimeAxisView&                   time_axis,
34                                            boost::shared_ptr<ARDOUR::Region>         region,
35                                            const Evoral::Parameter&                  param,
36                                            boost::shared_ptr<ARDOUR::AutomationList> list,
37                                            double                                    spu,
38                                            Gdk::Color const &                        basic_color)
39         : RegionView(parent, time_axis, region, spu, basic_color)
40         , _parameter(param)
41 {
42         if (list) {
43                 assert(list->parameter() == param);
44                 create_line(list);
45         }
46
47         group->signal_event().connect (sigc::mem_fun (this, &AutomationRegionView::canvas_event), false);
48         group->raise_to_top();
49 }
50
51 void
52 AutomationRegionView::init (Gdk::Color const & basic_color, bool /*wfd*/)
53 {
54         _enable_display = false;
55
56         RegionView::init(basic_color, false);
57
58         compute_colors (basic_color);
59
60         reset_width_dependent_items ((double) _region->length() / samples_per_unit);
61
62         set_height (trackview.current_height());
63
64         _region->PropertyChanged.connect (*this, invalidator (*this), ui_bind (&RegionView::region_changed, this, _1), gui_context());
65
66         set_colors ();
67
68         _enable_display = true;
69 }
70
71 void
72 AutomationRegionView::create_line (boost::shared_ptr<ARDOUR::AutomationList> list)
73 {
74         _line = boost::shared_ptr<AutomationLine>(new AutomationLine(
75                                 ARDOUR::EventTypeMap::instance().to_symbol(list->parameter()),
76                                 trackview, *get_canvas_group(), list, &_time_converter));
77         _line->set_colors();
78         _line->set_height ((uint32_t)rint(trackview.current_height() - NAME_HIGHLIGHT_SIZE));
79         _line->show();
80         _line->show_all_control_points();
81 }
82
83 bool
84 AutomationRegionView::canvas_event(GdkEvent* ev)
85 {
86         if (ev->type == GDK_BUTTON_RELEASE) {
87
88                 double x = ev->button.x;
89                 double y = ev->button.y;
90
91                 /* convert to item coordinates in the time axis view */
92                 automation_view()->canvas_display()->w2i (x, y);
93
94                 add_automation_event (ev, trackview.editor().pixel_to_frame (x) - _region->position(), y);
95         }
96
97         return false;
98 }
99
100 /** @param when Position in frames, where 0 is the start of the region.
101  *  @param y y position, relative to our TimeAxisView.
102  */
103 void
104 AutomationRegionView::add_automation_event (GdkEvent *, nframes_t when, double y)
105 {
106         if (!_line) {
107                 boost::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
108                 boost::shared_ptr<ARDOUR::AutomationControl> ac
109                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
110                 assert(ac);
111                 create_line(ac->alist());
112         }
113         assert(_line);
114
115         AutomationTimeAxisView* const view = automation_view ();
116         
117         /* compute vertical fractional position */
118
119         const double h = trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2;
120         y = 1.0 - (y / h);
121
122         /* map using line */
123
124         double when_d = when;
125         _line->view_to_model_coord (when_d, y);
126
127         view->session()->begin_reversible_command (_("add automation event"));
128         XMLNode& before = _line->the_list()->get_state();
129
130         _line->the_list()->add (when_d, y);
131
132         XMLNode& after = _line->the_list()->get_state();
133         view->session()->commit_reversible_command (new MementoCommand<ARDOUR::AutomationList>(
134                         *_line->the_list(), &before, &after));
135
136         view->session()->set_dirty ();
137 }
138
139 void
140 AutomationRegionView::set_height (double h)
141 {
142         RegionView::set_height(h);
143
144         if (_line)
145                 _line->set_height ((uint32_t)rint(h - NAME_HIGHLIGHT_SIZE));
146 }
147
148 bool
149 AutomationRegionView::set_position (nframes64_t pos, void* src, double* ignored)
150 {
151         return RegionView::set_position(pos, src, ignored);
152 }
153
154
155 void
156 AutomationRegionView::reset_width_dependent_items (double pixel_width)
157 {
158         RegionView::reset_width_dependent_items(pixel_width);
159
160         if (_line)
161                 _line->reset();
162 }
163
164
165 void
166 AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
167 {
168         RegionView::region_resized(what_changed);
169
170         if (_line)
171                 _line->reset();
172 }
173
174
175 void
176 AutomationRegionView::entered()
177 {
178         if (_line)
179                 _line->track_entered();
180 }
181
182
183 void
184 AutomationRegionView::exited()
185 {
186         if (_line)
187                 _line->track_exited();
188 }
189