get editor.cc to compile
[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
36 RedirectAutomationLine::RedirectAutomationLine (string name, Redirect& rd, uint32_t port, Session& s,
37                                                 TimeAxisView& tv, Gnome::Canvas::Group& parent,
38                                                 AutomationList& l)
39
40         : AutomationLine (name, tv, parent, l)
41           session (s),
42           _redirect (rd),
43           _port (port)
44 {
45         set_verbose_cursor_uses_gain_mapping (false);
46
47         PluginInsert *pi;
48         Plugin::ParameterDescriptor desc;
49
50         if ((pi  = dynamic_cast<PluginInsert*>(&_redirect)) == 0) {
51                 fatal << _("redirect automation created for non-plugin") << endmsg;
52                 /*NOTREACHED*/
53         }
54
55         pi->plugin().get_parameter_descriptor (_port, desc);
56
57         upper = desc.upper;
58         lower = desc.lower;
59
60         if (desc.toggled) {
61                 no_draw = true;
62                 return;
63         }
64
65         no_draw = false;
66         range = upper - lower;
67
68         /* XXX set min/max for underlying curve ??? */
69 }
70
71 string
72 RedirectAutomationLine::get_verbose_cursor_string (float fraction)
73 {
74         char buf[32];
75
76         snprintf (buf, sizeof (buf), "%.2f", lower + (fraction * range));
77         return buf;
78 }
79
80 void
81 RedirectAutomationLine::view_to_model_y (double& y)
82 {
83         y = lower + (y * range);
84 }
85
86 void
87 RedirectAutomationLine::model_to_view_y (double& y)
88 {
89         y = (y - lower) / range;
90         y = max (0.0, y);
91         y = min (y, 1.0);
92 }
93