-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timing.hpp
106 lines (89 loc) · 3.28 KB
/
timing.hpp
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
/*****************************************************************************
* Copyright (C) 2021 by Lorenzo Buzzi ([email protected]) *
* *
* 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 3 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, see <https://www.gnu.org/licenses/>. *
*****************************************************************************/
#ifndef TIMING_H
#define TIMING_H
#include <QCoreApplication>
#include <QDataStream>
#include <QString>
namespace timing {
class Timing;
class TimingSorter;
}
class Timing {
Q_DECLARE_TR_FUNCTIONS(Timing)
public:
enum class Status
{
DNS = 0,
DNF = 1,
DSQ = 2,
CLASSIFIED = 3
};
enum class Field
{
TMF_FIRST = 0,
TMF_BIB = 0,
TMF_LEG = 1,
TMF_TIME = 2,
TMF_STATUS = 3,
TMF_LAST = 3,
TMF_COUNT = 4
};
private:
uint bib { 0u };
uint leg { 0u };
uint seconds { 0u };
Status status { Status::CLASSIFIED };
public:
Timing() = default;
explicit Timing(uint const bib) : bib(bib) { };
friend QDataStream &operator<<(QDataStream &out, Timing const &timing);
friend QDataStream &operator>>(QDataStream &in, Timing &timing);
uint getBib() const;
void setBib(uint newBib);
uint getLeg() const;
void setLeg(uint newLeg);
bool isDnf() const;
bool isDns() const;
bool isDsq() const;
Status getStatus() const;
void setStatus(Status newStatus);
void setStatus(QString const &newStatus);
uint getSeconds() const;
QString getTiming() const;
void setTiming(QString const &timing);
void setTiming(char const *timing);
bool isValid() const;
bool operator< (Timing const &rhs) const;
bool operator> (Timing const &rhs) const;
bool operator<= (Timing const &rhs) const;
bool operator>= (Timing const &rhs) const;
};
Timing::Field &operator++(Timing::Field &field);
Timing::Field operator++(Timing::Field &field, int);
class TimingSorter {
private:
static Qt::SortOrder sortingOrder;
static Timing::Field sortingField;
public:
static Qt::SortOrder getSortingOrder();
static void setSortingOrder(Qt::SortOrder const &value);
static Timing::Field getSortingField();
static void setSortingField(Timing::Field const &value);
bool operator() (Timing const &lhs, Timing const &rhs) const;
};
#endif // TIMING_H