a6b2c64b125d8d09b6b959f5d47f095828fb1dc8
[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_unrounded (_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 const 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         for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
481                 /* Find the points that aren't being moved before and after
482                    this one on the control_points list
483                 */
484
485                 ControlPoint* before = 0;
486                 ControlPoint* after = 0;
487
488                 ControlPoint* last = 0;
489                 for (vector<ControlPoint*>::iterator j = control_points.begin(); j != control_points.end(); ++j) {
490
491                         if (*j == *i) {
492                                 
493                                 before = last;
494                                 
495                                 vector<ControlPoint*>::iterator k = j;
496
497                                 /* Next point */
498                                 ++k;
499
500                                 /* Now move past any points that are being moved this time */
501                                 while (find (points.begin(), points.end(), *k) != points.end() && k != control_points.end ()) {
502                                         ++k;
503                                 }
504                                 
505                                 if (k != control_points.end()) {
506                                         after = *k;
507                                 }
508                                 break;
509                         }
510
511                         if (find (points.begin(), points.end(), *j) == points.end ()) {
512                                 /* This point isn't being moved, so it's the `last' point we've seen */
513                                 last = *j;
514                         }
515                 }
516
517                 /* Clamp dx for this point */
518                 double const before_x = before ? before->get_x() : 0;
519                 double const after_x = after ? after->get_x() : DBL_MAX;
520
521                 double tx = (*i)->get_x() + dx;
522                 tx = max (tx, before_x);
523                 tx = min (tx, after_x);
524                 dx = tx - (*i)->get_x ();
525         }
526
527         /* clamp y */
528         for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
529                 double const y = ((_height - (*i)->get_y()) / _height) + dy;
530                 if (y < 0) {
531                         dy -= y;
532                 }
533                 if (y > 1) {
534                         dy -= (y - 1);
535                 }
536         }
537
538         pair<double, float> const clamped (_drag_x + dx, _last_drag_fraction + dy);
539         _drag_distance += dx;
540         _drag_x += dx;
541         _last_drag_fraction = fraction;
542
543         for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
544                 (*i)->move_to ((*i)->get_x() + dx, (*i)->get_y() - _height * dy, ControlPoint::Full);
545                 reset_line_coords (**i);
546         }
547
548         if (with_push) {
549                 /* move push points, preserving their y */
550                 for (list<ControlPoint*>::iterator i = _push_points.begin(); i != _push_points.end(); ++i) {
551                         (*i)->move_to ((*i)->get_x() + dx, (*i)->get_y(), ControlPoint::Full);
552                         reset_line_coords (**i);
553                 }
554         }
555
556         if (line_points.size() > 1) {
557                 line->property_points() = line_points;
558         }
559
560         _drag_had_movement = true;
561         did_push = with_push;
562
563         return clamped;
564 }
565
566 /** Should be called to indicate the end of a drag */
567 void
568 AutomationLine::end_drag ()
569 {
570         if (!_drag_had_movement) {
571                 return;
572         }
573
574         alist->freeze ();
575
576         /* set up the points that were moved this time round */
577         list<ControlPoint*> points = _drag_points;
578         if (did_push) {
579                 copy (_push_points.begin(), _push_points.end(), back_inserter (points));
580                 points.sort (ControlPointSorter ());
581         }
582
583         sync_model_with_view_points (points, trackview.editor().unit_to_frame (_drag_distance));
584
585         alist->thaw ();
586
587         update_pending = false;
588
589         trackview.editor().session()->add_command (
590                 new MementoCommand<AutomationList>(memento_command_binder (), 0, &alist->get_state())
591                 );
592
593         trackview.editor().session()->set_dirty ();
594         did_push = false;
595 }
596
597 void
598 AutomationLine::sync_model_with_view_point (ControlPoint& cp, framecnt_t distance)
599 {
600         /* find out where the visual control point is.
601            initial results are in canvas units. ask the
602            line to convert them to something relevant.
603         */
604
605         double view_x = cp.get_x();
606         double view_y = 1.0 - (cp.get_y() / _height);
607
608         /* if xval has not changed, set it directly from the model to avoid rounding errors */
609
610         if (view_x == trackview.editor().frame_to_unit_unrounded (_time_converter->to ((*cp.model())->when)) - _offset) {
611                 view_x = (*cp.model())->when - _offset;
612         } else {
613                 view_x = trackview.editor().unit_to_frame (view_x);
614                 view_x = _time_converter->from (view_x + _offset);
615         }
616
617         update_pending = true;
618
619         view_to_model_coord_y (view_y);
620
621         alist->modify (cp.model(), view_x, view_y);
622 }
623
624 bool
625 AutomationLine::control_points_adjacent (double xval, uint32_t & before, uint32_t& after)
626 {
627         ControlPoint *bcp = 0;
628         ControlPoint *acp = 0;
629         double unit_xval;
630
631         unit_xval = trackview.editor().frame_to_unit_unrounded (xval);
632
633         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
634
635                 if ((*i)->get_x() <= unit_xval) {
636
637                         if (!bcp || (*i)->get_x() > bcp->get_x()) {
638                                 bcp = *i;
639                                 before = bcp->view_index();
640                         }
641
642                 } else if ((*i)->get_x() > unit_xval) {
643                         acp = *i;
644                         after = acp->view_index();
645                         break;
646                 }
647         }
648
649         return bcp && acp;
650 }
651
652 bool
653 AutomationLine::is_last_point (ControlPoint& cp)
654 {
655         // If the list is not empty, and the point is the last point in the list
656
657         if (alist->empty()) {
658                 return false;
659         }
660
661         AutomationList::const_iterator i = alist->end();
662         --i;
663
664         if (cp.model() == i) {
665                 return true;
666         }
667
668         return false;
669 }
670
671 bool
672 AutomationLine::is_first_point (ControlPoint& cp)
673 {
674         // If the list is not empty, and the point is the first point in the list
675
676         if (!alist->empty() && cp.model() == alist->begin()) {
677                 return true;
678         }
679
680         return false;
681 }
682
683 // This is copied into AudioRegionGainLine
684 void
685 AutomationLine::remove_point (ControlPoint& cp)
686 {
687         trackview.editor().session()->begin_reversible_command (_("remove control point"));
688         XMLNode &before = alist->get_state();
689
690         alist->erase (cp.model());
691         
692         trackview.editor().session()->add_command(
693                 new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
694                 );
695
696         trackview.editor().session()->commit_reversible_command ();
697         trackview.editor().session()->set_dirty ();
698 }
699
700 /** Get selectable points within an area.
701  *  @param start Start position in session frames.
702  *  @param end End position in session frames.
703  *  @param bot Bottom y range, as a fraction of line height, where 0 is the bottom of the line.
704  *  @param top Top y range, as a fraction of line height, where 0 is the bottom of the line.
705  *  @param result Filled in with selectable things; in this case, ControlPoints.
706  */
707 void
708 AutomationLine::get_selectables (
709         framepos_t start, framepos_t end, double botfrac, double topfrac, list<Selectable*>& results
710         )
711 {
712         /* convert fractions to display coordinates with 0 at the top of the track */
713         double const bot_track = (1 - topfrac) * trackview.current_height ();
714         double const top_track = (1 - botfrac) * trackview.current_height ();
715
716         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
717                 double const model_when = (*(*i)->model())->when;
718
719                 /* model_when is relative to the start of the source, so we just need to add on the origin_b here
720                    (as it is the session frame position of the start of the source)
721                 */
722                 
723                 framepos_t const session_frames_when = _time_converter->to (model_when) + _time_converter->origin_b ();
724
725                 if (session_frames_when >= start && session_frames_when <= end && (*i)->get_y() >= bot_track && (*i)->get_y() <= top_track) {
726                         results.push_back (*i);
727                 }
728         }
729 }
730
731 void
732 AutomationLine::get_inverted_selectables (Selection&, list<Selectable*>& /*results*/)
733 {
734         // hmmm ....
735 }
736
737 void
738 AutomationLine::set_selected_points (PointSelection const & points)
739 {
740         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
741                 (*i)->set_selected (false);
742         }
743
744         for (PointSelection::const_iterator i = points.begin(); i != points.end(); ++i) {
745                 (*i)->set_selected (true);
746         }
747
748         set_colors ();
749 }
750
751 void AutomationLine::set_colors ()
752 {
753         set_line_color (ARDOUR_UI::config()->canvasvar_AutomationLine.get());
754         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
755                 (*i)->set_color ();
756         }
757 }
758
759 void
760 AutomationLine::list_changed ()
761 {
762         queue_reset ();
763 }
764
765 void
766 AutomationLine::reset_callback (const Evoral::ControlList& events)
767 {
768         uint32_t vp = 0;
769         uint32_t pi = 0;
770         uint32_t np;
771
772         if (events.empty()) {
773                 for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
774                         delete *i;
775                 }
776                 control_points.clear ();
777                 line->hide();
778                 return;
779         }
780
781         /* hide all existing points, and the line */
782
783         for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
784                 (*i)->hide();
785         }
786
787         line->hide ();
788         np = events.size();
789
790         Evoral::ControlList& e = const_cast<Evoral::ControlList&> (events);
791         
792         for (AutomationList::iterator ai = e.begin(); ai != e.end(); ++ai, ++pi) {
793
794                 double tx = (*ai)->when;
795                 double ty = (*ai)->value;
796
797                 /* convert from model coordinates to canonical view coordinates */
798
799                 model_to_view_coord (tx, ty);
800
801                 if (std::isnan (tx) || std::isnan (ty)) {
802                         warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""),
803                                                    _name) << endmsg;
804                         continue;
805                 }
806                 
807                 if (tx >= max_framepos || tx < 0 || tx >= _maximum_time) {
808                         continue;
809                 }
810                 
811                 /* convert x-coordinate to a canvas unit coordinate (this takes
812                  * zoom and scroll into account).
813                  */
814                         
815                 tx = trackview.editor().frame_to_unit_unrounded (tx);
816                 
817                 /* convert from canonical view height (0..1.0) to actual
818                  * height coordinates (using X11's top-left rooted system)
819                  */
820
821                 ty = _height - (ty * _height);
822
823                 add_visible_control_point (vp, pi, tx, ty, ai, np);
824                 vp++;
825         }
826
827         /* discard extra CP's to avoid confusing ourselves */
828
829         while (control_points.size() > vp) {
830                 ControlPoint* cp = control_points.back();
831                 control_points.pop_back ();
832                 delete cp;
833         }
834
835         if (!terminal_points_can_slide) {
836                 control_points.back()->set_can_slide(false);
837         }
838
839         if (vp > 1) {
840
841                 /* reset the line coordinates given to the CanvasLine */
842
843                 while (line_points.size() < vp) {
844                         line_points.push_back (Art::Point (0,0));
845                 }
846
847                 while (line_points.size() > vp) {
848                         line_points.pop_back ();
849                 }
850
851                 for (uint32_t n = 0; n < vp; ++n) {
852                         line_points[n].set_x (control_points[n]->get_x());
853                         line_points[n].set_y (control_points[n]->get_y());
854                 }
855
856                 line->property_points() = line_points;
857
858                 if (_visible && alist->interpolation() != AutomationList::Discrete) {
859                         line->show();
860                 }
861         }
862
863         set_selected_points (trackview.editor().get_selection().points);
864 }
865
866 void
867 AutomationLine::reset ()
868 {
869         update_pending = false;
870
871         if (no_draw) {
872                 return;
873         }
874
875         alist->apply_to_points (*this, &AutomationLine::reset_callback);
876 }
877
878 void
879 AutomationLine::clear ()
880 {
881         /* parent must create and commit command */
882         XMLNode &before = alist->get_state();
883         alist->clear();
884
885         trackview.editor().session()->add_command (
886                 new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
887                 );
888 }
889
890 void
891 AutomationLine::change_model (AutomationList::iterator /*i*/, double /*x*/, double /*y*/)
892 {
893 }
894
895 void
896 AutomationLine::set_list (boost::shared_ptr<ARDOUR::AutomationList> list)
897 {
898         alist = list;
899         queue_reset ();
900         connect_to_list ();
901 }
902
903 void
904 AutomationLine::add_visibility (VisibleAspects va)
905 {
906         _visible = VisibleAspects (_visible | va);
907         show ();
908 }
909
910 void
911 AutomationLine::set_visibility (VisibleAspects va)
912 {
913         _visible = va;
914         show ();
915 }
916
917 void
918 AutomationLine::remove_visibility (VisibleAspects va)
919 {
920         _visible = VisibleAspects (_visible & ~va);
921         show ();
922 }
923
924 void
925 AutomationLine::track_entered()
926 {
927         if (alist->interpolation() != AutomationList::Discrete) {
928                 add_visibility (ControlPoints);
929         }
930 }
931
932 void
933 AutomationLine::track_exited()
934 {
935         if (alist->interpolation() != AutomationList::Discrete) {
936                 remove_visibility (ControlPoints);
937         }
938 }
939
940 XMLNode &
941 AutomationLine::get_state (void)
942 {
943         /* function as a proxy for the model */
944         return alist->get_state();
945 }
946
947 int
948 AutomationLine::set_state (const XMLNode &node, int version)
949 {
950         /* function as a proxy for the model */
951         return alist->set_state (node, version);
952 }
953
954 void
955 AutomationLine::view_to_model_coord (double& x, double& y) const
956 {
957         x = _time_converter->from (x);
958         view_to_model_coord_y (y);
959 }
960
961 void
962 AutomationLine::view_to_model_coord_y (double& y) const
963 {
964         /* TODO: This should be more generic ... */
965         if (alist->parameter().type() == GainAutomation ||
966             alist->parameter().type() == EnvelopeAutomation) {
967                 y = slider_position_to_gain_with_max (y, Config->get_max_gain());
968                 y = max (0.0, y);
969                 y = min (2.0, y);
970         } else if (alist->parameter().type() == PanAzimuthAutomation ||
971                    alist->parameter().type() == PanElevationAutomation ||
972                    alist->parameter().type() == PanWidthAutomation) {
973                 y = 1.0 - y;
974         } else if (alist->parameter().type() == PluginAutomation) {
975                 y = y * (double)(alist->get_max_y()- alist->get_min_y()) + alist->get_min_y();
976         } else {
977                 y = rint (y * alist->parameter().max());
978         }
979 }
980
981 void
982 AutomationLine::model_to_view_coord (double& x, double& y) const
983 {
984         /* TODO: This should be more generic ... */
985         if (alist->parameter().type() == GainAutomation ||
986             alist->parameter().type() == EnvelopeAutomation) {
987                 y = gain_to_slider_position_with_max (y, Config->get_max_gain());
988         } else if (alist->parameter().type() == PanAzimuthAutomation ||
989                    alist->parameter().type() == PanElevationAutomation ||
990                    alist->parameter().type() == PanWidthAutomation) {
991                 // vertical coordinate axis reversal
992                 y = 1.0 - y;
993         } else if (alist->parameter().type() == PluginAutomation) {
994                 y = (y - alist->get_min_y()) / (double)(alist->get_max_y()- alist->get_min_y());
995         } else {
996                 y = y / (double)alist->parameter().max(); /* ... like this */
997         }
998
999         x = _time_converter->to (x) - _offset;
1000 }
1001
1002 /** Called when our list has announced that its interpolation style has changed */
1003 void
1004 AutomationLine::interpolation_changed (AutomationList::InterpolationStyle style)
1005 {
1006         if (style == AutomationList::Discrete) {
1007                 set_visibility (ControlPoints);
1008                 line->hide();
1009         } else {
1010                 set_visibility (Line);
1011         }
1012 }
1013
1014 void
1015 AutomationLine::add_visible_control_point (uint32_t view_index, uint32_t pi, double tx, double ty, 
1016                                            AutomationList::iterator model, uint32_t npoints)
1017 {
1018         ControlPoint::ShapeType shape;
1019
1020         if (view_index >= control_points.size()) {
1021
1022                 /* make sure we have enough control points */
1023
1024                 ControlPoint* ncp = new ControlPoint (*this);
1025                 ncp->set_size (control_point_box_size ());
1026
1027                 control_points.push_back (ncp);
1028         }
1029
1030         if (!terminal_points_can_slide) {
1031                 if (pi == 0) {
1032                         control_points[view_index]->set_can_slide (false);
1033                         if (tx == 0) {
1034                                 shape = ControlPoint::Start;
1035                         } else {
1036                                 shape = ControlPoint::Full;
1037                         }
1038                 } else if (pi == npoints - 1) {
1039                         control_points[view_index]->set_can_slide (false);
1040                         shape = ControlPoint::End;
1041                 } else {
1042                         control_points[view_index]->set_can_slide (true);
1043                         shape = ControlPoint::Full;
1044                 }
1045         } else {
1046                 control_points[view_index]->set_can_slide (true);
1047                 shape = ControlPoint::Full;
1048         }
1049
1050         control_points[view_index]->reset (tx, ty, model, view_index, shape);
1051
1052         /* finally, control visibility */
1053
1054         if (_visible & ControlPoints) {
1055                 control_points[view_index]->show ();
1056                 control_points[view_index]->set_visible (true);
1057         } else {
1058                 control_points[view_index]->set_visible (false);
1059         }
1060 }
1061
1062 void
1063 AutomationLine::connect_to_list ()
1064 {
1065         _list_connections.drop_connections ();
1066
1067         alist->StateChanged.connect (_list_connections, invalidator (*this), boost::bind (&AutomationLine::list_changed, this), gui_context());
1068
1069         alist->InterpolationChanged.connect (
1070                 _list_connections, invalidator (*this), boost::bind (&AutomationLine::interpolation_changed, this, _1), gui_context()
1071                 );
1072 }
1073
1074 MementoCommandBinder<AutomationList>*
1075 AutomationLine::memento_command_binder ()
1076 {
1077         return new SimpleMementoCommandBinder<AutomationList> (*alist.get());
1078 }
1079
1080 /** Set the maximum time that points on this line can be at, relative
1081  *  to the start of the track or region that it is on.
1082  */
1083 void
1084 AutomationLine::set_maximum_time (framecnt_t t)
1085 {
1086         if (_maximum_time == t) {
1087                 return;
1088         }
1089
1090         _maximum_time = t;
1091         reset ();
1092 }
1093
1094
1095 /** @return min and max x positions of points that are in the list, in session frames */
1096 pair<framepos_t, framepos_t>
1097 AutomationLine::get_point_x_range () const
1098 {
1099         pair<framepos_t, framepos_t> r (max_framepos, 0);
1100
1101         for (AutomationList::const_iterator i = the_list()->begin(); i != the_list()->end(); ++i) {
1102                 r.first = min (r.first, session_position (i));
1103                 r.second = max (r.second, session_position (i));
1104         }
1105
1106         return r;
1107 }
1108
1109 framepos_t
1110 AutomationLine::session_position (AutomationList::const_iterator p) const
1111 {
1112         return _time_converter->to ((*p)->when) + _offset + _time_converter->origin_b ();
1113 }
1114
1115 void
1116 AutomationLine::set_offset (framepos_t off)
1117 {
1118         if (_offset == off) {
1119                 return;
1120         }
1121
1122         _offset = off;
1123         reset ();
1124 }