mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 08:38:45 +00:00
Instead of passing the CP value for the rider when opening an ErgFile it now looks up the CP value itself. Simplifies the API.
121 lines
4.0 KiB
C++
121 lines
4.0 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 _ErgFile_h
|
|
#define _ErgFile_h
|
|
#include "GoldenCheetah.h"
|
|
#include "MainWindow.h"
|
|
|
|
#include <QtGui>
|
|
#include <QObject>
|
|
#include <QDebug>
|
|
#include <QString>
|
|
#include <QDate>
|
|
#include <QStringList>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QRegExp>
|
|
#include "Zones.h" // For zones ... see below vvvv
|
|
|
|
// which section of the file are we in?
|
|
#define NOMANSLAND 0
|
|
#define SETTINGS 1
|
|
#define DATA 2
|
|
#define END 3
|
|
|
|
// is this in .erg or .mrc format?
|
|
#define ERG 1
|
|
#define MRC 2
|
|
#define CRS 3
|
|
|
|
class ErgFilePoint
|
|
{
|
|
public:
|
|
|
|
ErgFilePoint() : x(0), y(0), val(0) {}
|
|
|
|
double x; // x axis - time in msecs or distance in meters
|
|
double y; // y axis - load in watts or altitude
|
|
|
|
double val; // the value to send to the device (watts/gradient)
|
|
};
|
|
|
|
class ErgFileLap
|
|
{
|
|
public:
|
|
long x; // when does this LAP marker occur? (time in msecs or distance in meters
|
|
int LapNum; // from 1 - n
|
|
QString name;
|
|
};
|
|
|
|
class ErgFile
|
|
{
|
|
public:
|
|
ErgFile(QString, int&, MainWindow *main); // constructor uses filename
|
|
ErgFile(MainWindow *main); // no filename, going to use a string
|
|
|
|
~ErgFile(); // delete the contents
|
|
|
|
static ErgFile *fromContent(QString, MainWindow *); // read from memory
|
|
static bool isWorkout(QString); // is this a supported workout?
|
|
|
|
void reload(); // reload after messed about
|
|
void parseComputrainer(QString p = ""); // its an erg,crs or mrc file
|
|
void parseTacx(); // its a pgmf file
|
|
bool isValid(); // is the file valid or not?
|
|
double Cp;
|
|
int format; // ERG, CRS or MRC currently supported
|
|
int wattsAt(long, int&); // return the watts value for the passed msec
|
|
double gradientAt(long, int&); // return the gradient value for the passed meter
|
|
int nextLap(long); // return the msecs value for the next Lap marker
|
|
|
|
QString Version, // version number / identifer
|
|
Units, // units used
|
|
Filename, // filename from inside file
|
|
filename, // filename on disk
|
|
Name, // description in file
|
|
Source; // where did this come from
|
|
|
|
long Duration; // Duration of this workout in msecs
|
|
int Ftp; // FTP this file was targetted at
|
|
int MaxWatts; // maxWatts in this ergfile (scaling)
|
|
bool valid; // did it parse ok?
|
|
|
|
|
|
int leftPoint, rightPoint; // current points we are between
|
|
|
|
QList<ErgFilePoint> Points; // points in workout
|
|
QList<ErgFileLap> Laps; // interval markers in the file
|
|
|
|
void calculateMetrics(); // calculate NP value for ErgFile
|
|
|
|
// Metrics for this workout
|
|
double maxY; // maximum Y value
|
|
double CP;
|
|
double AP, NP, IF, TSS, VI; // Coggan for erg / mrc
|
|
double XP, RI, BS, SVI; // Skiba for erg / mrc
|
|
double ELE, ELEDIST, GRADE; // crs
|
|
|
|
private:
|
|
MainWindow *main;
|
|
int &mode;
|
|
int nomode;
|
|
};
|
|
|
|
#endif
|