summaryrefslogtreecommitdiff
path: root/gtk2_ardour/curvetest.cc
blob: 3c9836a5e6e5c6e123f012454f10acc0ef29da6a (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
#include <iostream>
#include <fstream>
#include <cfloat>
#include <unistd.h>

#include <ardour/curve.h>

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

int
curvetest (string filename)
{
	ifstream in (filename.c_str());
	stringstream line;
	Curve c (-1.0, +1.0, 0, true);
	double minx = DBL_MAX;
	double maxx = DBL_MIN;

	while (in) {
		double x, y;

		in >> x;
		in >> y;
		
		if (!in) {
			break;
		}

		if (x < minx) {
			minx = x;
		}
		
		if (x > maxx) {
			maxx = x;
		}
		
		c.add (x, y);
	}


	float foo[1024];

	c.get_vector (minx, maxx, foo, 1024);
	
	for (int i = 0; i < 1024; ++i) {
	        cout << minx + (((double) i / 1024.0) * (maxx - minx)) << ' ' << foo[i] << endl;
	}
	
	return 0;
}