2020-04-11 23:41:34 +02:00
|
|
|
#ifndef SCSTWRACE_H
|
|
|
|
#define SCSTWRACE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QEventLoop>
|
|
|
|
#include "scstwtimer.h"
|
|
|
|
#include "scstwsoundplayer.h"
|
|
|
|
|
2020-04-19 13:09:24 +02:00
|
|
|
/*!
|
|
|
|
* \brief The ScStwRace class can be used to measure timings of climbing races with multiple lanes at once.
|
|
|
|
*
|
|
|
|
* The ScStwRace is a container to manage multiple timers at a time and introduces a propper start sequence
|
|
|
|
* with start commands ('At your Marks' and 'Ready') and the official IFSC start signal.
|
|
|
|
*
|
|
|
|
* ## Basic usage:
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* ScStwRace race;
|
|
|
|
*
|
|
|
|
* // add two timers
|
|
|
|
* race.addTimer(new ScStwTimer());
|
|
|
|
* race.addTimer(new ScStwTimer());
|
|
|
|
*
|
|
|
|
* // start a race
|
|
|
|
* race.start();
|
|
|
|
* \endcode
|
|
|
|
*
|
|
|
|
*/
|
2020-04-11 23:41:34 +02:00
|
|
|
class ScStwRace : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-04-15 21:47:04 +02:00
|
|
|
Q_PROPERTY(RaceState state READ getState NOTIFY stateChanged)
|
2020-04-17 19:57:00 +02:00
|
|
|
Q_PROPERTY(QVariantList timers READ getTimerDetailList NOTIFY timersChanged)
|
|
|
|
Q_PROPERTY(QVariantList nextStartActionDetails READ getNextStartActionDetails NOTIFY nextStartActionDetailsChanged)
|
2020-04-19 13:09:24 +02:00
|
|
|
|
2020-04-11 23:41:34 +02:00
|
|
|
public:
|
|
|
|
explicit ScStwRace(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
enum RaceState { IDLE, STARTING, WAITING, RUNNING, STOPPED };
|
|
|
|
Q_ENUM(RaceState)
|
|
|
|
|
2020-04-17 19:57:00 +02:00
|
|
|
enum StartAction { None = -1, AtYourMarks = 0, Ready = 1, Start = 2 };
|
2020-04-11 23:41:34 +02:00
|
|
|
Q_ENUM(StartAction)
|
|
|
|
|
2020-04-17 19:57:00 +02:00
|
|
|
enum NextStartActionDetailAttributes {
|
|
|
|
NextStartAction = 0,
|
|
|
|
NextStartActionTotalDelay = 1,
|
|
|
|
NextStartActionDelayProgress = 2
|
|
|
|
};
|
|
|
|
Q_ENUM(NextStartActionDetailAttributes);
|
|
|
|
|
2020-04-18 14:25:48 +02:00
|
|
|
protected:
|
|
|
|
StartAction nextStartAction;
|
|
|
|
QList<ScStwTimer *> timers;
|
|
|
|
void setState(RaceState newState);
|
|
|
|
|
2020-04-11 23:41:34 +02:00
|
|
|
private:
|
|
|
|
RaceState state;
|
|
|
|
|
|
|
|
QList<ScStwTimer*> timerEnableQueque;
|
|
|
|
|
|
|
|
QTimer *nextActionTimer;
|
|
|
|
QEventLoop *nextActionLoop;
|
|
|
|
|
|
|
|
// sounds
|
|
|
|
ScStwSoundPlayer * soundPlayer;
|
|
|
|
|
|
|
|
|
|
|
|
// some settings
|
|
|
|
double soundVolume;
|
|
|
|
|
2020-04-15 19:21:32 +02:00
|
|
|
/*!
|
|
|
|
* \brief stores the start action settings
|
2020-04-11 23:41:34 +02:00
|
|
|
*
|
2020-04-15 19:21:32 +02:00
|
|
|
* \details Stores the settings for the action ScStwRace::AtYourMarks and ScStwRace::Ready. The settings keys are: "Enabled" and "Delay"
|
2020-04-11 23:41:34 +02:00
|
|
|
*/
|
|
|
|
QMap<StartAction, QVariantMap> startActionSettings;
|
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
2020-04-19 13:09:24 +02:00
|
|
|
int start(bool asyncronous = true);
|
2020-04-11 23:41:34 +02:00
|
|
|
int stop();
|
|
|
|
int reset();
|
|
|
|
void cancelStart(bool falseStart);
|
2020-04-17 19:57:00 +02:00
|
|
|
|
|
|
|
// setters
|
2020-04-11 23:41:34 +02:00
|
|
|
bool writeStartActionSetting(StartAction action, bool enabled, int delay);
|
|
|
|
bool setSoundVolume(double volume);
|
|
|
|
bool addTimer(ScStwTimer *timer);
|
2020-04-17 19:57:00 +02:00
|
|
|
|
|
|
|
// getters
|
2020-04-11 23:41:34 +02:00
|
|
|
RaceState getState();
|
|
|
|
StartAction getNextStartAction();
|
2020-04-17 19:57:00 +02:00
|
|
|
QVariantList getNextStartActionDetails();
|
2020-04-11 23:41:34 +02:00
|
|
|
QVariantList getTimerDetailList();
|
|
|
|
|
2020-04-18 14:25:48 +02:00
|
|
|
protected slots:
|
|
|
|
|
|
|
|
|
2020-04-11 23:41:34 +02:00
|
|
|
private slots:
|
|
|
|
void refreshTimerStates();
|
|
|
|
void handleTimerEnable(ScStwTimer* timer);
|
|
|
|
bool playSoundsAndStartTimers(StartAction thisAction);
|
2020-04-18 14:25:48 +02:00
|
|
|
void handleTimerStop();
|
2020-04-11 23:41:34 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void startTimers();
|
|
|
|
void stopTimers(int type);
|
|
|
|
void resetTimers();
|
|
|
|
void stateChanged(RaceState state);
|
|
|
|
void nextStartActionChanged();
|
2020-04-17 19:57:00 +02:00
|
|
|
void nextStartActionDetailsChanged();
|
|
|
|
void timersChanged();
|
2020-04-11 23:41:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCSTWRACE_H
|