Files
@ 5fe3d9e82275
Branch filter:
Location: EI/VirtualLeaf/src/data_plot.cpp
5fe3d9e82275
5.1 KiB
text/x-c++src
Issue #16: Removed leafplugin files; which leaves only auxingrowth, meinhardt and test plugins.
--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
removed src/build_models/leafplugin.cpp
removed src/build_models/leafplugin.h
removed src/build_models/plugin_leaf.pro
--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
removed src/build_models/leafplugin.cpp
removed src/build_models/leafplugin.h
removed src/build_models/plugin_leaf.pro
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | /*
*
* This file is part of the Virtual Leaf.
*
* The Virtual Leaf 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 3 of the License, or
* (at your option) any later version.
*
* The Virtual Leaf 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 the Virtual Leaf. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010 Roeland Merks.
*
*/
#include <string>
#include <stdlib.h>
#include <qwt_painter.h>
#include <qwt_plot_canvas.h>
#include <qwt_plot_marker.h>
#include <qwt_plot_curve.h>
#include <qwt_scale_widget.h>
#include <qwt_legend.h>
#include <qwt_scale_draw.h>
#include <qwt_math.h>
#include <QDialog>
#include <QString>
#include <QStringList>
#include <iostream>
#include "data_plot.h"
static const std::string _module_id("$Id$");
//
// Initialize main window
//
DataPlot::DataPlot(QWidget *parent, const QString title, const QStringList curvenames ):
QwtPlot(parent),
d_interval(0),
d_timerId(-1)
{
// Number of curves is number of names given
ncurves = curvenames.size();
// allocate data and curves
d_t = new double[PLOT_SIZE];
d_x = new double *[ncurves];
d_x[0] = new double[ncurves*PLOT_SIZE];
for (int i=1;i<ncurves;i++) {
d_x[i]=d_x[i-1]+PLOT_SIZE;
}
// Disable polygon clipping
QwtPainter::setDeviceClipping(false);
// We don't need the cache here
//canvas()->setPaintAttribute(QwtPlotCanvas::PaintCached, false);
//canvas()->setPaintAttribute(QwtPlotCanvas::PaintPacked, false);
alignScales();
// Initialize data
for (int i = 0; i< PLOT_SIZE; i++) {
d_t[i] = 0.; // time axis
}
for (int i=0;i<ncurves * PLOT_SIZE;i++) {
d_x[0][i]=0.;
}
// Assign a title
setTitle(title);
insertLegend(new QwtLegend(), QwtPlot::BottomLegend);
// Insert curves
curves = new QwtPlotCurve[ncurves];
for (int i=0;i<ncurves;i++) {
curves[i].setTitle(curvenames[i]);
curves[i].attach(this);
curves[i].setPen(QPen(curvecolors[i]));
QString col(curvecolors[i]);
std::cerr << "Curvecolor " << col.toStdString() << std::endl;
curves[i].setRawData(d_t, d_x[i], PLOT_SIZE);
}
// Axis
setAxisTitle(QwtPlot::xBottom, "Time");
setAxisTitle(QwtPlot::yLeft, "Level");
setAxisScale(QwtPlot::yLeft, 0, 10);
// setTimerInterval(0.0);
data_pos = 0;
// open file for writing
/* QString fname(title);
fname.replace(QString(" "),QString());
fname.append(".dat");
std::cerr << "Writing to file " << fname.toStdString() << std::endl;
datfile = new QFile(fname);
if (!datfile->open(QIODevice::WriteOnly | QIODevice::Text))
return;
datstream.setDevice(datfile);
*/
}
DataPlot::~DataPlot(void) {
delete[] d_t ;
delete[] d_x[0];
delete[] d_x;
delete[] curves;
}
//
// Set a plain canvas frame and align the scales to it
//
void DataPlot::alignScales()
{
// The code below shows how to align the scales to
// the canvas frame, but is also a good example demonstrating
// why the spreaded API needs polishing.
canvas()->setFrameStyle(QFrame::Box | QFrame::Plain );
canvas()->setLineWidth(1);
for ( int i = 0; i < QwtPlot::axisCnt; i++ )
{
QwtScaleWidget *scaleWidget = (QwtScaleWidget *)axisWidget(i);
if ( scaleWidget )
scaleWidget->setMargin(0);
QwtScaleDraw *scaleDraw = (QwtScaleDraw *)axisScaleDraw(i);
if ( scaleDraw )
scaleDraw->enableComponent(QwtAbstractScaleDraw::Backbone, false);
}
}
/* void DataPlot::setTimerInterval(double ms)
{
d_interval = qRound(ms);
if ( d_timerId >= 0 )
{
killTimer(d_timerId);
d_timerId = -1;
}
if (d_interval >= 0 )
d_timerId = startTimer(d_interval);
}
*/
// Generate new values
void DataPlot::AddValue(double t,double *x)
{
// std::cerr << "AddValue receives: " << t << ", " << y << ", " << z << std::endl;
// Plot slowly fills up, then shifts to the left
if ( data_pos >= PLOT_SIZE ) {
for ( int j = 0; j < PLOT_SIZE - 1; j++ )
d_t[j] = d_t[j+1];
for ( int i=0;i<ncurves;i++) {
for ( int j = 0; j < PLOT_SIZE - 1; j++ )
d_x[i][j] = d_x[i][j+1];
}
data_pos = PLOT_SIZE - 1;
}
d_t[data_pos] = t;
// datstream << t;
for ( int i=0;i<ncurves;i++) {
curves[i].setRawData(d_t, d_x[i], data_pos);
d_x[i][data_pos] = x[i];
//datstream << " " << x[i];
}
//datstream << "\n";
setAxisScale(QwtPlot::xBottom, d_t[0], t);
data_pos++;
// update the display
replot();
}
PlotDialog::PlotDialog(QWidget *parent, const QString title, const QStringList curvenames):
QDialog(parent)
{
plot = new DataPlot(this,title,curvenames);
plot->resize(400,300);
show();
}
PlotDialog::~PlotDialog(void) {
delete plot;
}
|