2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <cfloat>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/automation_list.h"
|
|
|
|
#include "evoral/Curve.hpp"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
curvetest (string filename)
|
|
|
|
{
|
2012-05-05 10:16:13 -04:00
|
|
|
// needed to initialize ID objects/counter used
|
|
|
|
// by Curve et al.
|
|
|
|
|
|
|
|
PBD::ID::init ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
ifstream in (filename.c_str());
|
|
|
|
stringstream line;
|
2008-09-29 18:47:40 -04:00
|
|
|
//Evoral::Parameter param(GainAutomation, -1.0, +1.0, 0.0);
|
|
|
|
Evoral::Parameter param(GainAutomation);
|
2008-09-18 20:47:49 -04:00
|
|
|
AutomationList al (param);
|
2005-09-25 14:42:24 -04:00
|
|
|
double minx = DBL_MAX;
|
|
|
|
double maxx = DBL_MIN;
|
|
|
|
|
|
|
|
while (in) {
|
|
|
|
double x, y;
|
|
|
|
|
|
|
|
in >> x;
|
|
|
|
in >> y;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (!in) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < minx) {
|
|
|
|
minx = x;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (x > maxx) {
|
|
|
|
maxx = x;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
al.add (x, y);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
float foo[1024];
|
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
al.curve().get_vector (minx, maxx, foo, 1024);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
for (int i = 0; i < 1024; ++i) {
|
|
|
|
cout << minx + (((double) i / 1024.0) * (maxx - minx)) << ' ' << foo[i] << endl;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|