mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
271 lines
8.6 KiB
C++
271 lines
8.6 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_TrainTool_h
|
|
#define _GC_TrainTool_h 1
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include "MainWindow.h"
|
|
#include "GoldenClient.h"
|
|
#include "RealtimeData.h"
|
|
#include "RealtimePlot.h"
|
|
#include "DeviceConfiguration.h"
|
|
#include "DeviceTypes.h"
|
|
#include "ErgFile.h"
|
|
#include "ErgFilePlot.h"
|
|
|
|
// standard stuff
|
|
#include <QDir>
|
|
#include <QtGui>
|
|
#include "math.h" // for round()
|
|
#include "Units.h" // for MILES_PER_KM
|
|
#include <QDebug>
|
|
#include <QSqlTableModel>
|
|
|
|
// Status settings
|
|
#define RT_MODE_ERGO 0x0001 // load generation modes
|
|
#define RT_MODE_SPIN 0x0002 // spinscan like modes
|
|
#define RT_MODE_SLOPE 0x0002 // same as spinscan but not so CT specific
|
|
#define RT_MODE_CALIBRATE 0x0004 // calibrate
|
|
|
|
#define RT_RUNNING 0x0100 // is running now
|
|
#define RT_PAUSED 0x0200 // is paused
|
|
#define RT_RECORDING 0x0400 // is recording to disk
|
|
#define RT_WORKOUT 0x0800 // is running a workout
|
|
#define RT_STREAMING 0x1000 // is streaming to a remote peer
|
|
|
|
// msecs constants for timers
|
|
#define REFRESHRATE 200 // screen refresh in milliseconds
|
|
#define STREAMRATE 200 // rate at which we stream updates to remote peer
|
|
#define SAMPLERATE 1000 // disk update in milliseconds
|
|
#define LOADRATE 1000 // rate at which load is adjusted
|
|
|
|
// device treeview node types
|
|
#define HEAD_TYPE 6666
|
|
#define SERVER_TYPE 5555
|
|
#define WORKOUT_TYPE 4444
|
|
#define DEVICE_TYPE 0
|
|
|
|
class RealtimeController;
|
|
class ComputrainerController;
|
|
class ANTlocalController;
|
|
class NullController;
|
|
class RealtimePlot;
|
|
class RealtimeData;
|
|
class MultiDeviceDialog;
|
|
|
|
class TrainTool : public GcWindow
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
|
|
TrainTool(MainWindow *parent, const QDir &home);
|
|
QStringList listWorkoutFiles(const QDir &) const;
|
|
|
|
QList<int> devices(); // convenience function for iterating over active devices
|
|
GoldenClient *streamController; // send out to
|
|
|
|
const QTreeWidgetItem *currentWorkout() { return workout; }
|
|
const QTreeWidgetItem *currentMedia() { return media; }
|
|
const QTreeWidgetItem *workoutItems() { return allWorkouts; }
|
|
const QTreeWidgetItem *currentServer() { return server; }
|
|
const QTreeWidgetItem *serverItems() { return allServers; }
|
|
|
|
int selectedDeviceNumber();
|
|
int selectedServerNumber();
|
|
|
|
// set labels when ergfile selected etc
|
|
void setLabels();
|
|
|
|
// notify widgets of race update
|
|
void notifyRaceStandings(RaceStatus x) { raceStandings(x); }
|
|
|
|
// was realtimewindow,merged into tool
|
|
// update charts/dials and manage controller
|
|
void updateData(RealtimeData &); // to update telemetry by push devices
|
|
void nextDisplayMode(); // show next display mode
|
|
void setStreamController(); // based upon selected device
|
|
|
|
// this
|
|
QTabWidget *trainTabs;
|
|
|
|
// get the panel
|
|
QWidget *getToolbarButtons() { return toolbarButtons; }
|
|
|
|
// where to get telemetry from Device.at(x)
|
|
int bpmTelemetry; // Heartrate
|
|
int wattsTelemetry; // Power (and AltPower)
|
|
int rpmTelemetry; // Cadence
|
|
int kphTelemetry; // Speed (and Distance)
|
|
|
|
signals:
|
|
|
|
void deviceSelected();
|
|
void serverSelected();
|
|
void raceStandings(RaceStatus);
|
|
void start();
|
|
void pause();
|
|
void stop();
|
|
|
|
private slots:
|
|
void serverTreeWidgetSelectionChanged();
|
|
void deviceTreeWidgetSelectionChanged();
|
|
void workoutTreeWidgetSelectionChanged();
|
|
void mediaTreeWidgetSelectionChanged();
|
|
|
|
void deviceTreeMenuPopup(const QPoint &);
|
|
void deleteDevice();
|
|
|
|
void refresh(); // when TrainDB is updated...
|
|
|
|
void selectVideo(QString fullpath);
|
|
void selectWorkout(QString fullpath);
|
|
|
|
public slots:
|
|
void configChanged();
|
|
|
|
void Start(); // when start button is pressed
|
|
void Pause(); // when Paude is pressed
|
|
void Stop(int status=0); // when controller wants to stop
|
|
|
|
void Calibrate(); // toggle calibration mode
|
|
void FFwd(); // jump forward when in a workout
|
|
void Rewind(); // jump backwards when in a workout
|
|
void FFwdLap(); // jump forward to next Lap marker
|
|
void Higher(); // set load/gradient higher
|
|
void Lower(); // set load/gradient higher
|
|
void newLap(); // start new Lap!
|
|
void resetLapTimer(); //reset the lap timer
|
|
|
|
// Timed actions
|
|
void guiUpdate(); // refreshes the telemetry
|
|
void diskUpdate(); // writes to CSV file
|
|
void streamUpdate(); // writes to remote Peer
|
|
void loadUpdate(); // sets Load on CT like devices
|
|
|
|
// When no config has been setup
|
|
void warnnoConfig();
|
|
|
|
// User adjusted intensity
|
|
void adjustIntensity(); // Intensity of workout user adjusted
|
|
|
|
protected:
|
|
|
|
friend class ::MultiDeviceDialog;
|
|
|
|
const QDir home;
|
|
MainWindow *main;
|
|
QSplitter *trainSplitter;
|
|
|
|
QWidget *toolbarButtons;
|
|
|
|
QSqlTableModel *videoModel;
|
|
QSqlTableModel *workoutModel;
|
|
|
|
QTreeWidget *deviceTree;
|
|
QTreeWidget *serverTree;
|
|
QTreeView *workoutTree;
|
|
QSortFilterProxyModel *sortModel; // sorting workout list
|
|
QSortFilterProxyModel *vsortModel; // sorting video list
|
|
QTreeView *mediaTree;
|
|
|
|
QTreeWidgetItem *allServers;
|
|
QTreeWidgetItem *allDevices;
|
|
QTreeWidgetItem *server;
|
|
QTreeWidgetItem *allWorkouts;
|
|
QTreeWidgetItem *workout;
|
|
QTreeWidgetItem *media;
|
|
|
|
// Panel buttons
|
|
QPushButton *play;
|
|
QLabel *stress, *intensity;
|
|
QSlider *intensitySlider;
|
|
int lastAppliedIntensity;// remember how we scaled last time
|
|
|
|
int FTP; // current FTP
|
|
|
|
QList<DeviceConfiguration> Devices;
|
|
bool useMetricUnits;
|
|
|
|
// updated with a RealtimeData object either from
|
|
// update() - from a push device (quarqd ANT+)
|
|
// Device->getRealtimeData() - from a pull device (Computrainer)
|
|
double displayPower, displayHeartRate, displayCadence, displaySpeed;
|
|
double displayDistance, displayWorkoutDistance;
|
|
long load;
|
|
double slope;
|
|
int displayLap; // user increment for Lap
|
|
int displayWorkoutLap; // which Lap in the workout are we at?
|
|
|
|
// for non-zero average calcs
|
|
int pwrcount, cadcount, hrcount, spdcount, lodcount, grdcount; // for NZ average calc
|
|
int status;
|
|
int displaymode;
|
|
|
|
QFile *recordFile; // where we record!
|
|
ErgFile *ergFile; // workout file
|
|
|
|
long total_msecs,
|
|
lap_msecs,
|
|
load_msecs;
|
|
QTime load_period;
|
|
|
|
uint session_elapsed_msec, lap_elapsed_msec;
|
|
QTime session_time, lap_time;
|
|
|
|
QTimer *gui_timer, // refresh the gui
|
|
*stream_timer, // send telemetry to server
|
|
*load_timer, // change the load on the device
|
|
*disk_timer; // write to .CSV file
|
|
|
|
public:
|
|
int mode;
|
|
// everyone else wants this
|
|
QCheckBox *recordSelector;
|
|
QSharedPointer<QFileSystemWatcher> watcher;
|
|
bool calibrating;
|
|
};
|
|
|
|
class MultiDeviceDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
MultiDeviceDialog(MainWindow *, TrainTool *);
|
|
|
|
public slots:
|
|
void applyClicked();
|
|
void cancelClicked();
|
|
|
|
private:
|
|
|
|
MainWindow *mainWindow;
|
|
TrainTool *traintool;
|
|
QComboBox *bpmSelect, // heartrate
|
|
*wattsSelect, // power
|
|
*rpmSelect, // cadence
|
|
*kphSelect; // speed
|
|
|
|
QPushButton *applyButton, *cancelButton;
|
|
};
|
|
#endif // _GC_TrainTool_h
|
|
|