added RCU handling of Session route list, and major use of shared_ptr<T> everywhere...
[ardour.git] / gtk2_ardour / redirect_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     $Id$
19 */
20
21 #include "public_editor.h"
22 #include "redirect_automation_line.h"
23 #include "audio_time_axis.h"
24 #include "utils.h"
25
26 #include <ardour/session.h>
27 #include <ardour/ladspa_plugin.h>
28 #include <ardour/insert.h>
29 #include <ardour/curve.h>
30
31 #include "i18n.h"
32
33 using namespace std;
34 using namespace ARDOUR;
35 using namespace PBD;
36
37 RedirectAutomationLine::RedirectAutomationLine (const string & name, Redirect& rd, uint32_t port, Session& s,
38                                                 
39                                                 TimeAxisView& tv, ArdourCanvas::Group& parent,
40                                                 
41                                                 AutomationList& l)
42   
43         : AutomationLine (name, tv, parent, l),
44           session (s),
45           _redirect (rd),
46           _port (port)
47 {
48         set_verbose_cursor_uses_gain_mapping (false);
49
50         PluginInsert *pi;
51         Plugin::ParameterDescriptor desc;
52
53         if ((pi  = dynamic_cast<PluginInsert*>(&_redirect)) == 0) {
54                 fatal << _("redirect automation created for non-plugin") << endmsg;
55                 /*NOTREACHED*/
56         }
57
58         pi->plugin()->get_parameter_descriptor (_port, desc);
59
60         upper = desc.upper;
61         lower = desc.lower;
62
63         if (desc.toggled) {
64                 no_draw = true;
65                 return;
66         }
67
68         no_draw = false;
69         range = upper - lower;
70
71         /* XXX set min/max for underlying curve ??? */
72 }
73
74 string
75 RedirectAutomationLine::get_verbose_cursor_string (float fraction)
76 {
77         char buf[32];
78
79         snprintf (buf, sizeof (buf), "%.2f", lower + (fraction * range));
80         return buf;
81 }
82
83 void
84 RedirectAutomationLine::view_to_model_y (double& y)
85 {
86         y = lower + (y * range);
87 }
88
89 void
90 RedirectAutomationLine::model_to_view_y (double& y)
91 {
92         y = (y - lower) / range;
93         y = max (0.0, y);
94         y = min (y, 1.0);
95 }
96