Files
GoldenCheetah/src/ErgFilePlot.h
Mark Liversedge 0af9bf9724 Add Configuration for Train View Color
.. the background was set from the ride plot background.
   we now have a separate configuration option for this.
2014-03-07 12:00:25 +00:00

189 lines
4.2 KiB
C++

/*
* Copyright (c) 2009 Mark Liversedge (liversedge@gmail.com)
*
* 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., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _GC_ErgFilePlot_h
#define _GC_ErgFilePlot_h 1
#include "GoldenCheetah.h"
#include "Context.h"
#include <QDebug>
#include <QtGui>
#include <qwt_series_data.h>
#include <qwt_legend.h>
#include <qwt_plot_curve.h>
#include <qwt_plot_canvas.h>
#include <qwt_plot_grid.h>
#include <qwt_plot.h>
#include <qwt_plot_marker.h>
#include <qwt_scale_draw.h>
#include <qwt_scale_div.h>
#include <qwt_scale_widget.h>
#include <qwt_symbol.h>
#include <qwt_compat.h>
#include "ErgFile.h"
#include "WPrime.h"
#include "Settings.h"
#include "Colors.h"
#include "RealtimeData.h"
#include <qwt_series_data.h>
#include <qwt_point_data.h>
#define DEFAULT_TAU 450
class ErgFileData : public QwtPointArrayData
{
public:
ErgFileData (Context *context) : QwtPointArrayData(QVector<double>(), QVector<double>()), context(context) {}
double x(size_t i) const ;
double y(size_t i) const ;
size_t size() const ;
private:
Context *context;
virtual QPointF sample(size_t i) const;
virtual QRectF boundingRect() const;
};
class NowData : public QwtPointArrayData
{
public:
NowData (Context *context) : QwtPointArrayData(QVector<double>(), QVector<double>()), context(context) {}
double x(size_t i) const ;
double y(size_t i) const ;
size_t size() const ;
void init() ;
private:
Context *context;
virtual QPointF sample(size_t i) const;
//virtual QRectF boundingRect() const;
};
// incremental data, for each curve
class CurveData
{
// A container class for growing data
public:
CurveData();
void append(double *x, double *y, int count);
void clear();
int count() const;
int size() const;
const double *x() const;
const double *y() const;
private:
int d_count;
QwtArray<double> d_x;
QwtArray<double> d_y;
};
class DistScaleDraw: public QwtScaleDraw
{
public:
DistScaleDraw() { }
// we do 100m for <= a kilo
virtual QwtText label(double v) const { if (v<1000) return QString("%1").arg(v/1000, 0, 'g', 1);
else return QString("%1").arg(round(v/1000)); }
};
class HourTimeScaleDraw: public QwtScaleDraw
{
public:
HourTimeScaleDraw() { }
virtual QwtText label(double v) const {
v /= 1000;
QTime t = QTime(0,0,0,0).addSecs(v);
if (scaleMap().sDist() > 5)
return t.toString("hh:mm");
return t.toString("hh:mm:ss");
}
};
class ErgFilePlot : public QwtPlot
{
Q_OBJECT
G_OBJECT
public:
ErgFilePlot(Context *context);
QList<QwtPlotMarker *> Marks;
void setData(ErgFile *); // set the course
void reset(); // reset counters etc when plot changes
void setNow(long); // set point we're add for progress pointer
public slots:
void performancePlot(RealtimeData);
void configChanged();
void start();
private:
WPrime calculator;
Context *context;
bool bydist;
ErgFile *ergFile;
QwtPlotGrid *grid;
QwtPlotCurve *LodCurve;
QwtPlotCurve *wbalCurveActual;
QwtPlotCurve *wbalCurvePredict;
QwtPlotCurve *wattsCurve;
QwtPlotCurve *hrCurve;
QwtPlotCurve *cadCurve;
QwtPlotCurve *speedCurve;
QwtPlotCurve *NowCurve;
CurveData *wattsData,
*hrData,
*cadData,
*speedData;
double counter;
double wattssum,
hrsum,
cadsum,
speedsum;
ErgFileData *lodData;
NowData *nowData;
DistScaleDraw *distdraw;
HourTimeScaleDraw *timedraw;
ErgFilePlot();
};
#endif