summaryrefslogtreecommitdiff
path: root/gtk2_ardour/boolean_automation_line.cc
blob: e2db137644812fde5d713f8d26420f74a9e56370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
    Copyright (C) 2007 Paul Davis 

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include "boolean_automation_line.h"
#include "time_axis_view.h"
#include "public_editor.h"

using namespace std;
using namespace sigc;
using namespace ARDOUR;
using namespace PBD;

void
BooleanAutomationLine::model_to_view_y (double& y)
{
	if (y > 0.5) {
		y = 1.0;
	} else {
		y = 0.0;
	}
}

void
BooleanAutomationLine::view_to_model_y (double& y)
{
	if (y > 0.5) {
		y = 1.0;
	} else {
		y = 0.0;
	}
}

void
BooleanAutomationLine::add_model_point (AutomationLine::ALPoints& tmp_points, double frame, double yfract)
{
	/* add two points, one to represent "on" and one to represent "off" */

	double x = trackview.editor.frame_to_unit (frame);

	tmp_points.push_back (ALPoint (x > 0 ? x - 1 : 0, _height > 4 ? 2 : 0));
	tmp_points.push_back (ALPoint (x + 1, _height > 2 ? _height - 2 : _height));
}