substantive change to try to provide some rationality for region gain line visibility...
[ardour.git] / gtk2_ardour / automation_line.cc
1 /*
2     Copyright (C) 2002-2003 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cmath>
21 #include <climits>
22 #include <vector>
23 #include <fstream>
24
25 #include "pbd/stl_delete.h"
26 #include "pbd/memento_command.h"
27 #include "pbd/stacktrace.h"
28
29 #include "ardour/automation_list.h"
30 #include "ardour/dB.h"
31 #include "evoral/Curve.hpp"
32
33 #include "simplerect.h"
34 #include "automation_line.h"
35 #include "control_point.h"
36 #include "gui_thread.h"
37 #include "rgb_macros.h"
38 #include "ardour_ui.h"
39 #include "public_editor.h"
40 #include "utils.h"
41 #include "selection.h"
42 #include "time_axis_view.h"
43 #include "point_selection.h"
44 #include "automation_time_axis.h"
45
46 #include "ardour/event_type_map.h"
47 #include "ardour/session.h"
48
49 #include "i18n.h"
50
51 using namespace std;
52 using namespace ARDOUR;
53 using namespace PBD;
54 using namespace Editing;
55 using namespace Gnome; // for Canvas
56
57 /** @param converter A TimeConverter whose origin_b is the start time of the AutomationList in session frames.
58  *  This will not be deleted by AutomationLine.
59  */
60 AutomationLine::AutomationLine (const string& name, TimeAxisView& tv, ArdourCanvas::Group& parent,
61                 boost::shared_ptr<AutomationList> al,
62                 Evoral::TimeConverter<double, framepos_t>* converter)
63         : trackview (tv)
64         , _name (name)
65         , alist (al)
66         , _time_converter (converter ? converter : new Evoral::IdentityConverter<double, framepos_t>)
67         , _parent_group (parent)
68         , _offset (0)
69         , _maximum_time (max_framepos)
70 {
71         if (converter) {
72                 _time_converter = converter;
73                 _our_time_converter = false;
74         } else {
75                 _time_converter = new Evoral::IdentityConverter<double, framepos_t>;
76                 _our_time_converter = true;
77         }
78         
79         _visible = Line;
80
81         update_pending = false;
82         _uses_gain_mapping = false;
83         no_draw = false;
84         _is_boolean = false;
85         terminal_points_can_slide = true;
86         _height = 0;
87
88         group = new ArdourCanvas::Group (parent);
89         group->property_x() = 0.0;
90         group->property_y() = 0.0;
91
92         line = new ArdourCanvas::Line (*group);
93         line->property_width_pixels() = (guint)1;
94         line->set_data ("line", this);
95
96         line->signal_event().connect (sigc::mem_fun (*this, &AutomationLine::event_handler));
97
98         trackview.session()->register_with_memento_command_factory(alist->id(), this);
99
100         if (alist->parameter().type() == GainAutomation ||
101             alist->parameter().type() == EnvelopeAutomation) {
102                 set_uses_gain_mapping (true);
103         }
104
105         interpolation_changed (alist->interpolation ());
106
107         connect_to_list ();
108 }
109
110 AutomationLine::~AutomationLine ()
111 {
112         vector_delete (&control_points);
113         delete group;
114
115         if (_our_time_converter) {
116                 delete _time_converter;
117         }
118 }
119
120 bool
121 AutomationLine::event_handler (GdkEvent* event)
122 {
123         return PublicEditor::instance().canvas_line_event (event, line, this);
124 }
125
126 void
127 AutomationLine::queue_reset ()
128 {
129         if (!update_pending) {
130                 update_pending = true;
131                 Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AutomationLine::reset, this));
132         }
133 }
134
135 void
136 AutomationLine::show ()
137 {
138         if (_visible & Line) {
139                 if (alist->interpolation() != AutomationList::Discrete) {
140                         line->show();
141                 } else {
142                         line->hide ();
143                 }
144         } else {
145                 line->hide();
146         }
147
148         if (_visible & ControlPoints) {
149                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
150                         (*i)->set_visible (true);
151                         (*i)->show ();
152                 }
153         } else if (_visible & SelectedControlPoints) {
154                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
155                         (*i)->set_visible ((*i)->get_selected());
156                 }
157         } else {
158                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
159                         (*i)->set_visible (false);
160                 }
161         }
162 }
163
164 void
165 AutomationLine::hide ()
166 {
167         set_visibility (VisibleAspects (0));
168 }
169
170 double
171 AutomationLine::control_point_box_size ()
172 {
173         if (alist->interpolation() == AutomationList::Discrete) {
174                 return max((_height*4.0) / (double)(alist->parameter().max() - alist->parameter().min()),
175                                 4.0);
176         }
177
178         if (_height > TimeAxisView::preset_height (HeightLarger)) {
179                 return 8.0;
180         } else if (_height > (guint32) TimeAxisView::preset_height (HeightNormal)) {
181                 return 6.0;
182         }
183         return 4.0;
184 }
185
186 void
187 AutomationLine::set_height (guint32 h)
188 {
189         if (h != _height) {
190                 _height = h;
191
192                 double bsz = control_point_box_size();
193
194                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
195                         (*i)->set_size (bsz);
196                 }
197
198                 reset ();
199         }
200 }
201
202 void
203 AutomationLine::set_line_color (uint32_t color)
204 {
205         _line_color = color;
206         line->property_fill_color_rgba() = color;
207 }
208
209 void
210 AutomationLine::set_uses_gain_mapping (bool yn)
211 {
212         if (yn != _uses_gain_mapping) {
213                 _uses_gain_mapping = yn;
214                 reset ();
215         }
216 }
217
218 ControlPoint*
219 AutomationLine::nth (uint32_t n)
220 {
221         if (n < control_points.size()) {
222                 return control_points[n];
223         } else {
224                 return 0;
225         }
226 }
227
228 ControlPoint const *
229 AutomationLine::nth (uint32_t n) const
230 {
231         if (n < control_points.size()) {
232                 return control_points[n];
233         } else {
234                 return 0;
235         }
236 }
237
238 void
239 AutomationLine::modify_point_y (ControlPoint& cp, double y)
240 {
241         /* clamp y-coord appropriately. y is supposed to be a normalized fraction (0.0-1.0),
242            and needs to be converted to a canvas unit distance.
243         */
244
245         y = max (0.0, y);
246         y = min (1.0, y);
247         y = _height - (y * _height);
248
249         double const x = trackview.editor().frame_to_unit (_time_converter->to((*cp.model())->when) - _offset);
250
251         trackview.editor().session()->begin_reversible_command (_("automation event move"));
252         trackview.editor().session()->add_command (
253                 new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0)
254                 );
255
256         cp.move_to (x, y, ControlPoint::Full);
257
258         reset_line_coords (cp);
259
260         if (line_points.size() > 1) {
261                 line->property_points() = line_points;
262         }
263
264         alist->freeze ();
265         sync_model_with_view_point (cp, 0);
266         alist->thaw ();
267
268         update_pending = false;
269
270         trackview.editor().session()->add_command (
271                 new MementoCommand<AutomationList> (memento_command_binder(), 0, &alist->get_state())
272                 );
273
274         trackview.editor().session()->commit_reversible_command ();
275         trackview.editor().session()->set_dirty ();
276 }
277
278 void
279 AutomationLine::reset_line_coords (ControlPoint& cp)
280 {
281         if (cp.view_index() < line_points.size()) {
282                 line_points[cp.view_index()].set_x (cp.get_x());
283                 line_points[cp.view_index()].set_y (cp.get_y());
284         }
285 }
286
287 void
288 AutomationLine::sync_model_with_view_points (list<ControlPoint*> cp, int64_t distance)
289 {
290         update_pending = true;
291
292         for (list<ControlPoint*>::iterator i = cp.begin(); i != cp.end(); ++i) {
293                 sync_model_with_view_point (**i, distance);
294         }
295 }
296
297 string
298 AutomationLine::get_verbose_cursor_string (double fraction) const
299 {
300         std::string s = fraction_to_string (fraction);
301         if (_uses_gain_mapping) {
302                 s += " dB";
303         }
304
305         return s;
306 }
307
308 /**
309  *  @param fraction y fraction
310  *  @return string representation of this value, using dB if appropriate.
311  */
312 string
313 AutomationLine::fraction_to_string (double fraction) const
314 {
315         char buf[32];
316
317         if (_uses_gain_mapping) {
318                 if (fraction == 0.0) {
319                         snprintf (buf, sizeof (buf), "-inf");
320                 } else {
321                         snprintf (buf, sizeof (buf), "%.1f", accurate_coefficient_to_dB (slider_position_to_gain_with_max (fraction, Config->get_max_gain())));
322                 }
323         } else {
324                 view_to_model_coord_y (fraction);
325                 if (EventTypeMap::instance().is_integer (alist->parameter())) {
326                         snprintf (buf, sizeof (buf), "%d", (int)fraction);
327                 } else {
328                         snprintf (buf, sizeof (buf), "%.2f", fraction);
329                 }
330         }
331
332         return buf;
333 }
334
335
336 /**
337  *  @param s Value string in the form as returned by fraction_to_string.
338  *  @return Corresponding y fraction.
339  */
340 double
341 AutomationLine::string_to_fraction (string const & s) const
342 {
343         if (s == "-inf") {
344                 return 0;
345         }
346
347         double v;
348         sscanf (s.c_str(), "%lf", &v);
349
350         if (_uses_gain_mapping) {
351                 v = gain_to_slider_position_with_max (dB_to_coefficient (v), Config->get_max_gain());
352         } else {
353                 double dummy = 0.0;
354                 model_to_view_coord (dummy, v);
355         }
356
357         return v;
358 }
359
360 /** Start dragging a single point, possibly adding others if the supplied point is selected and there
361  *  are other selected points.
362  *
363  *  @param cp Point to drag.
364  *  @param x Initial x position (units).
365  *  @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
366  */
367 void
368 AutomationLine::start_drag_single (ControlPoint* cp, double x, float fraction)
369 {
370         trackview.editor().session()->begin_reversible_command (_("automation event move"));
371         trackview.editor().session()->add_command (
372                 new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0)
373                 );
374
375         _drag_points.clear ();
376         _drag_points.push_back (cp);
377
378         if (cp->get_selected ()) {
379                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
380                         if (*i != cp && (*i)->get_selected()) {
381                                 _drag_points.push_back (*i);
382                         }
383                 }
384         }
385
386         start_drag_common (x, fraction);
387 }
388
389 /** Start dragging a line vertically (with no change in x)
390  *  @param i1 Control point index of the `left' point on the line.
391  *  @param i2 Control point index of the `right' point on the line.
392  *  @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
393  */
394 void
395 AutomationLine::start_drag_line (uint32_t i1, uint32_t i2, float fraction)
396 {
397         trackview.editor().session()->begin_reversible_command (_("automation range move"));
398         trackview.editor().session()->add_command (
399                 new MementoCommand<AutomationList> (memento_command_binder (), &get_state(), 0)
400                 );
401
402         _drag_points.clear ();
403         for (uint32_t i = i1; i <= i2; i++) {
404                 _drag_points.push_back (nth (i));
405         }
406
407         start_drag_common (0, fraction);
408 }
409
410 /** Start dragging multiple points (with no change in x)
411  *  @param cp Points to drag.
412  *  @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
413  */
414 void
415 AutomationLine::start_drag_multiple (list<ControlPoint*> cp, float fraction, XMLNode* state)
416 {
417         trackview.editor().session()->begin_reversible_command (_("automation range move"));
418         trackview.editor().session()->add_command (
419                 new MementoCommand<AutomationList> (memento_command_binder(), state, 0)
420                 );
421
422         _drag_points = cp;
423         start_drag_common (0, fraction);
424 }
425
426
427 struct ControlPointSorter
428 {
429         bool operator() (ControlPoint const * a, ControlPoint const * b) {
430                 return a->get_x() < b->get_x();
431         }
432 };
433
434 /** Common parts of starting a drag.
435  *  @param x Starting x position in units, or 0 if x is being ignored.
436  *  @param fraction Starting y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
437  */
438 void
439 AutomationLine::start_drag_common (double x, float fraction)
440 {
441         _drag_x = x;
442         _drag_distance = 0;
443         _last_drag_fraction = fraction;
444         _drag_had_movement = false;
445         did_push = false;
446
447         _drag_points.sort (ControlPointSorter ());
448
449         /* find the additional points that will be dragged when the user is holding
450            the "push" modifier
451         */
452
453         uint32_t i = _drag_points.back()->view_index () + 1;
454         ControlPoint* p = 0;
455         _push_points.clear ();
456         while ((p = nth (i)) != 0 && p->can_slide()) {
457                 _push_points.push_back (p);
458                 ++i;
459         }
460 }
461
462 /** Should be called to indicate motion during a drag.
463  *  @param x New x position of the drag in canvas units, or undefined if ignore_x == true.
464  *  @param fraction New y fraction.
465  *  @return x position and y fraction that were actually used (once clamped).
466  */
467 pair<double, float>
468 AutomationLine::drag_motion (double x, float fraction, bool ignore_x, bool with_push)
469 {
470         /* setup the points that are to be moved this time round */
471         list<ControlPoint*> points = _drag_points;
472         if (with_push) {
473                 copy (_push_points.begin(), _push_points.end(), back_inserter (points));
474                 points.sort (ControlPointSorter ());
475         }
476
477         double dx = ignore_x ? 0 : (x - _drag_x);
478         double dy = fraction - _last_drag_fraction;
479
480         /* find x limits */
481         ControlPoint* before = 0;
482         ControlPoint* after = 0;
483
484         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
485                 if ((*i)->get_x() < points.front()->get_x()) {
486                         before = *i;
487                 }
488                 if ((*i)->get_x() > points.back()->get_x() && after == 0) {
489                         after = *i;
490                 }
491         }
492
493         double const before_x = before ? before->get_x() : 0;
494         double const after_x = after ? after->get_x() : DBL_MAX;
495
496         /* clamp x */
497         for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
498
499                 if ((*i)->can_slide() && !ignore_x) {
500
501                         /* clamp min x */
502                         double const a = (*i)->get_x() + dx;
503                         double const b = before_x + 1;
504                         if (a < b) {
505                                 dx += b - a;
506                         }
507
508                         /* clamp max x */
509                         if (after) {
510
511                                 if (after_x - before_x < 2) {
512                                         /* after and before are very close, so just leave this alone */
513                                         dx = 0;
514                                 } else {
515                                         double const a = (*i)->get_x() + dx;
516                                         double const b = after_x - 1;
517                                         if (a > b) {
518                                                 dx -= a - b;
519                                         }
520                                 }
521                         }
522                 }
523         }
524
525         /* clamp y */
526         for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
527                 double const y = ((_height - (*i)->get_y()) / _height) + dy;
528                 if (y < 0) {
529                         dy -= y;
530                 }
531                 if (y > 1) {
532                         dy -= (y - 1);
533                 }
534         }
535
536         pair<double, float> const clamped (_drag_x + dx, _last_drag_fraction + dy);
537         _drag_distance += dx;
538         _drag_x = x;
539         _last_drag_fraction = fraction;
540
541         for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
542                 (*i)->move_to ((*i)->get_x() + dx, (*i)->get_y() - _height * dy, ControlPoint::Full);
543                 reset_line_coords (**i);
544         }
545
546         if (with_push) {
547                 /* move push points, preserving their y */
548                 for (list<ControlPoint*>::iterator i = _push_points.begin(); i != _push_points.end(); ++i) {
549                         (*i)->move_to ((*i)->get_x() + dx, (*i)->get_y(), ControlPoint::Full);
550                         reset_line_coords (**i);
551                 }
552         }
553
554         if (line_points.size() > 1) {
555                 line->property_points() = line_points;
556         }
557
558         _drag_had_movement = true;
559         did_push = with_push;
560
561         return clamped;
562 }
563
564 /** Should be called to indicate the end of a drag */
565 void
566 AutomationLine::end_drag ()
567 {
568         if (!_drag_had_movement) {
569                 return;
570         }
571
572         alist->freeze ();
573
574         /* set up the points that were moved this time round */
575         list<ControlPoint*> points = _drag_points;
576         if (did_push) {
577                 copy (_push_points.begin(), _push_points.end(), back_inserter (points));
578                 points.sort (ControlPointSorter ());
579         }
580
581         sync_model_with_view_points (points, trackview.editor().unit_to_frame (_drag_distance));
582
583         alist->thaw ();
584
585         update_pending = false;
586
587         trackview.editor().session()->add_command (
588                 new MementoCommand<AutomationList>(memento_command_binder (), 0, &alist->get_state())
589                 );
590
591         trackview.editor().session()->set_dirty ();
592         did_push = false;
593 }
594
595 void
596 AutomationLine::sync_model_with_view_point (ControlPoint& cp, framecnt_t distance)
597 {
598         /* find out where the visual control point is.
599            initial results are in canvas units. ask the
600            line to convert them to something relevant.
601         */
602
603         double view_x = cp.get_x();
604         double view_y = 1.0 - (cp.get_y() / _height);
605
606         /* if xval has not changed, set it directly from the model to avoid rounding errors */
607
608         if (view_x == trackview.editor().frame_to_unit (_time_converter->to ((*cp.model())->when)) - _offset) {
609                 view_x = (*cp.model())->when - _offset;
610         } else {
611                 view_x = trackview.editor().unit_to_frame (view_x);
612                 view_x = _time_converter->from (view_x + _offset);
613         }
614
615         update_pending = true;
616
617         view_to_model_coord_y (view_y);
618
619         alist->modify (cp.model(), view_x, view_y);
620
621         if (did_push) {
622                 /* move all points after cp by the same distance */
623                 alist->slide (cp.model()++, _time_converter->from (distance));
624         }
625 }
626
627 bool
628 AutomationLine::control_points_adjacent (double xval, uint32_t & before, uint32_t& after)
629 {
630         ControlPoint *bcp = 0;
631         ControlPoint *acp = 0;
632         double unit_xval;
633
634         unit_xval = trackview.editor().frame_to_unit (xval);
635
636         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
637
638                 if ((*i)->get_x() <= unit_xval) {
639
640                         if (!bcp || (*i)->get_x() > bcp->get_x()) {
641                                 bcp = *i;
642                                 before = bcp->view_index();
643                         }
644
645                 } else if ((*i)->get_x() > unit_xval) {
646                         acp = *i;
647                         after = acp->view_index();
648                         break;
649                 }
650         }
651
652         return bcp && acp;
653 }
654
655 bool
656 AutomationLine::is_last_point (ControlPoint& cp)
657 {
658         // If the list is not empty, and the point is the last point in the list
659
660         if (alist->empty()) {
661                 return false;
662         }
663
664         AutomationList::const_iterator i = alist->end();
665         --i;
666
667         if (cp.model() == i) {
668                 return true;
669         }
670
671         return false;
672 }
673
674 bool
675 AutomationLine::is_first_point (ControlPoint& cp)
676 {
677         // If the list is not empty, and the point is the first point in the list
678
679         if (!alist->empty() && cp.model() == alist->begin()) {
680                 return true;
681         }
682
683         return false;
684 }
685
686 // This is copied into AudioRegionGainLine
687 void
688 AutomationLine::remove_point (ControlPoint& cp)
689 {
690         trackview.editor().session()->begin_reversible_command (_("remove control point"));
691         XMLNode &before = alist->get_state();
692
693         alist->erase (cp.model());
694         
695         trackview.editor().session()->add_command(
696                 new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
697                 );
698
699         trackview.editor().session()->commit_reversible_command ();
700         trackview.editor().session()->set_dirty ();
701 }
702
703 /** Get selectable points within an area.
704  *  @param start Start position in session frames.
705  *  @param end End position in session frames.
706  *  @param bot Bottom y range, as a fraction of line height, where 0 is the bottom of the line.
707  *  @param top Top y range, as a fraction of line height, where 0 is the bottom of the line.
708  *  @param result Filled in with selectable things; in this case, ControlPoints.
709  */
710 void
711 AutomationLine::get_selectables (
712         framepos_t start, framepos_t end, double botfrac, double topfrac, list<Selectable*>& results
713         )
714 {
715         /* convert fractions to display coordinates with 0 at the top of the track */
716         double const bot_track = (1 - topfrac) * trackview.current_height ();
717         double const top_track = (1 - botfrac) * trackview.current_height ();
718
719         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
720                 double const model_when = (*(*i)->model())->when;
721
722                 /* model_when is relative to the start of the source, so we just need to add on the origin_b here
723                    (as it is the session frame position of the start of the source)
724                 */
725                 
726                 framepos_t const session_frames_when = _time_converter->to (model_when) + _time_converter->origin_b ();
727
728                 if (session_frames_when >= start && session_frames_when <= end && (*i)->get_y() >= bot_track && (*i)->get_y() <= top_track) {
729                         results.push_back (*i);
730                 }
731         }
732 }
733
734 void
735 AutomationLine::get_inverted_selectables (Selection&, list<Selectable*>& /*results*/)
736 {
737         // hmmm ....
738 }
739
740 void
741 AutomationLine::set_selected_points (PointSelection const & points)
742 {
743         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
744                 (*i)->set_selected (false);
745         }
746
747         for (PointSelection::const_iterator i = points.begin(); i != points.end(); ++i) {
748                 (*i)->set_selected (true);
749         }
750
751         set_colors ();
752 }
753
754 void AutomationLine::set_colors ()
755 {
756         set_line_color (ARDOUR_UI::config()->canvasvar_AutomationLine.get());
757         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
758                 (*i)->set_color ();
759         }
760 }
761
762 void
763 AutomationLine::list_changed ()
764 {
765         queue_reset ();
766 }
767
768 void
769 AutomationLine::reset_callback (const Evoral::ControlList& events)
770 {
771         uint32_t vp = 0;
772         uint32_t pi = 0;
773         uint32_t np;
774
775         if (events.empty()) {
776                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
777                         delete *i;
778                 }
779                 control_points.clear ();
780                 line->hide();
781                 return;
782         }
783
784         /* hide all existing points, and the line */
785
786         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
787                 (*i)->hide();
788         }
789
790         line->hide ();
791         np = events.size();
792
793         Evoral::ControlList& e = const_cast<Evoral::ControlList&> (events);
794         
795         for (AutomationList::iterator ai = e.begin(); ai != e.end(); ++ai, ++pi) {
796
797                 double tx = (*ai)->when;
798                 double ty = (*ai)->value;
799
800                 /* convert from model coordinates to canonical view coordinates */
801
802                 model_to_view_coord (tx, ty);
803
804                 if (std::isnan (tx) || std::isnan (ty)) {
805                         warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""),
806                                                    _name) << endmsg;
807                         continue;
808                 }
809                 
810                 if (tx >= max_framepos || tx < 0 || tx >= _maximum_time) {
811                         continue;
812                 }
813                 
814                 /* convert x-coordinate to a canvas unit coordinate (this takes
815                  * zoom and scroll into account).
816                  */
817                         
818                 tx = trackview.editor().frame_to_unit (tx);
819                 
820                 /* convert from canonical view height (0..1.0) to actual
821                  * height coordinates (using X11's top-left rooted system)
822                  */
823
824                 ty = _height - (ty * _height);
825
826                 add_visible_control_point (vp, pi, tx, ty, ai, np);
827                 vp++;
828         }
829
830         /* discard extra CP's to avoid confusing ourselves */
831
832         while (control_points.size() > vp) {
833                 ControlPoint* cp = control_points.back();
834                 control_points.pop_back ();
835                 delete cp;
836         }
837
838         if (!terminal_points_can_slide) {
839                 control_points.back()->set_can_slide(false);
840         }
841
842         if (vp > 1) {
843
844                 /* reset the line coordinates given to the CanvasLine */
845
846                 while (line_points.size() < vp) {
847                         line_points.push_back (Art::Point (0,0));
848                 }
849
850                 while (line_points.size() > vp) {
851                         line_points.pop_back ();
852                 }
853
854                 for (uint32_t n = 0; n < vp; ++n) {
855                         line_points[n].set_x (control_points[n]->get_x());
856                         line_points[n].set_y (control_points[n]->get_y());
857                 }
858
859                 line->property_points() = line_points;
860
861                 if (_visible && alist->interpolation() != AutomationList::Discrete) {
862                         line->show();
863                 }
864         }
865
866         set_selected_points (trackview.editor().get_selection().points);
867 }
868
869 void
870 AutomationLine::reset ()
871 {
872         update_pending = false;
873
874         if (no_draw) {
875                 return;
876         }
877
878         alist->apply_to_points (*this, &AutomationLine::reset_callback);
879 }
880
881 void
882 AutomationLine::clear ()
883 {
884         /* parent must create and commit command */
885         XMLNode &before = alist->get_state();
886         alist->clear();
887
888         trackview.editor().session()->add_command (
889                 new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
890                 );
891 }
892
893 void
894 AutomationLine::change_model (AutomationList::iterator /*i*/, double /*x*/, double /*y*/)
895 {
896 }
897
898 void
899 AutomationLine::set_list (boost::shared_ptr<ARDOUR::AutomationList> list)
900 {
901         alist = list;
902         queue_reset ();
903         connect_to_list ();
904 }
905
906 void
907 AutomationLine::add_visibility (VisibleAspects va)
908 {
909         _visible = VisibleAspects (_visible | va);
910         show ();
911 }
912
913 void
914 AutomationLine::set_visibility (VisibleAspects va)
915 {
916         _visible = va;
917         show ();
918 }
919
920 void
921 AutomationLine::remove_visibility (VisibleAspects va)
922 {
923         _visible = VisibleAspects (_visible & ~va);
924         show ();
925 }
926
927 void
928 AutomationLine::track_entered()
929 {
930         if (alist->interpolation() != AutomationList::Discrete) {
931                 add_visibility (ControlPoints);
932         }
933 }
934
935 void
936 AutomationLine::track_exited()
937 {
938         if (alist->interpolation() != AutomationList::Discrete) {
939                 remove_visibility (ControlPoints);
940         }
941 }
942
943 XMLNode &
944 AutomationLine::get_state (void)
945 {
946         /* function as a proxy for the model */
947         return alist->get_state();
948 }
949
950 int
951 AutomationLine::set_state (const XMLNode &node, int version)
952 {
953         /* function as a proxy for the model */
954         return alist->set_state (node, version);
955 }
956
957 void
958 AutomationLine::view_to_model_coord (double& x, double& y) const
959 {
960         x = _time_converter->from (x);
961         view_to_model_coord_y (y);
962 }
963
964 void
965 AutomationLine::view_to_model_coord_y (double& y) const
966 {
967         /* TODO: This should be more generic ... */
968         if (alist->parameter().type() == GainAutomation ||
969             alist->parameter().type() == EnvelopeAutomation) {
970                 y = slider_position_to_gain_with_max (y, Config->get_max_gain());
971                 y = max (0.0, y);
972                 y = min (2.0, y);
973         } else if (alist->parameter().type() == PanAzimuthAutomation ||
974                    alist->parameter().type() == PanElevationAutomation ||
975                    alist->parameter().type() == PanWidthAutomation) {
976                 y = 1.0 - y;
977         } else if (alist->parameter().type() == PluginAutomation) {
978                 y = y * (double)(alist->get_max_y()- alist->get_min_y()) + alist->get_min_y();
979         } else {
980                 y = rint (y * alist->parameter().max());
981         }
982 }
983
984 void
985 AutomationLine::model_to_view_coord (double& x, double& y) const
986 {
987         /* TODO: This should be more generic ... */
988         if (alist->parameter().type() == GainAutomation ||
989             alist->parameter().type() == EnvelopeAutomation) {
990                 y = gain_to_slider_position_with_max (y, Config->get_max_gain());
991         } else if (alist->parameter().type() == PanAzimuthAutomation ||
992                    alist->parameter().type() == PanElevationAutomation ||
993                    alist->parameter().type() == PanWidthAutomation) {
994                 // vertical coordinate axis reversal
995                 y = 1.0 - y;
996         } else if (alist->parameter().type() == PluginAutomation) {
997                 y = (y - alist->get_min_y()) / (double)(alist->get_max_y()- alist->get_min_y());
998         } else {
999                 y = y / (double)alist->parameter().max(); /* ... like this */
1000         }
1001
1002         x = _time_converter->to (x) - _offset;
1003 }
1004
1005 /** Called when our list has announced that its interpolation style has changed */
1006 void
1007 AutomationLine::interpolation_changed (AutomationList::InterpolationStyle style)
1008 {
1009         if (style == AutomationList::Discrete) {
1010                 set_visibility (ControlPoints);
1011                 line->hide();
1012         } else {
1013                 set_visibility (Line);
1014         }
1015 }
1016
1017 void
1018 AutomationLine::add_visible_control_point (uint32_t view_index, uint32_t pi, double tx, double ty, 
1019                                            AutomationList::iterator model, uint32_t npoints)
1020 {
1021         ControlPoint::ShapeType shape;
1022
1023         if (view_index >= control_points.size()) {
1024
1025                 /* make sure we have enough control points */
1026
1027                 ControlPoint* ncp = new ControlPoint (*this);
1028                 ncp->set_size (control_point_box_size ());
1029
1030                 control_points.push_back (ncp);
1031         }
1032
1033         if (!terminal_points_can_slide) {
1034                 if (pi == 0) {
1035                         control_points[view_index]->set_can_slide (false);
1036                         if (tx == 0) {
1037                                 shape = ControlPoint::Start;
1038                         } else {
1039                                 shape = ControlPoint::Full;
1040                         }
1041                 } else if (pi == npoints - 1) {
1042                         control_points[view_index]->set_can_slide (false);
1043                         shape = ControlPoint::End;
1044                 } else {
1045                         control_points[view_index]->set_can_slide (true);
1046                         shape = ControlPoint::Full;
1047                 }
1048         } else {
1049                 control_points[view_index]->set_can_slide (true);
1050                 shape = ControlPoint::Full;
1051         }
1052
1053         control_points[view_index]->reset (tx, ty, model, view_index, shape);
1054
1055         /* finally, control visibility */
1056
1057         if (_visible & ControlPoints) {
1058                 control_points[view_index]->show ();
1059                 control_points[view_index]->set_visible (true);
1060         } else {
1061                 control_points[view_index]->set_visible (false);
1062         }
1063 }
1064
1065 void
1066 AutomationLine::connect_to_list ()
1067 {
1068         _list_connections.drop_connections ();
1069
1070         alist->StateChanged.connect (_list_connections, invalidator (*this), boost::bind (&AutomationLine::list_changed, this), gui_context());
1071
1072         alist->InterpolationChanged.connect (
1073                 _list_connections, invalidator (*this), boost::bind (&AutomationLine::interpolation_changed, this, _1), gui_context()
1074                 );
1075 }
1076
1077 MementoCommandBinder<AutomationList>*
1078 AutomationLine::memento_command_binder ()
1079 {
1080         return new SimpleMementoCommandBinder<AutomationList> (*alist.get());
1081 }
1082
1083 /** Set the maximum time that points on this line can be at, relative
1084  *  to the start of the track or region that it is on.
1085  */
1086 void
1087 AutomationLine::set_maximum_time (framecnt_t t)
1088 {
1089         if (_maximum_time == t) {
1090                 return;
1091         }
1092
1093         _maximum_time = t;
1094         reset ();
1095 }
1096
1097
1098 /** @return min and max x positions of points that are in the list, in session frames */
1099 pair<framepos_t, framepos_t>
1100 AutomationLine::get_point_x_range () const
1101 {
1102         pair<framepos_t, framepos_t> r (max_framepos, 0);
1103
1104         for (AutomationList::const_iterator i = the_list()->begin(); i != the_list()->end(); ++i) {
1105                 r.first = min (r.first, session_position (i));
1106                 r.second = max (r.second, session_position (i));
1107         }
1108
1109         return r;
1110 }
1111
1112 framepos_t
1113 AutomationLine::session_position (AutomationList::const_iterator p) const
1114 {
1115         return _time_converter->to ((*p)->when) + _offset + _time_converter->origin_b ();
1116 }
1117
1118 void
1119 AutomationLine::set_offset (framepos_t off)
1120 {
1121         if (_offset == off) {
1122                 return;
1123         }
1124
1125         _offset = off;
1126         reset ();
1127 }