Enroute Flight Navigation
A navigation app for VFR pilots
TrafficFactor_Abstract.h
1/***************************************************************************
2 * Copyright (C) 2021-2025 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QObjectBindableProperty>
24#include <QTimer>
25
26#include "units/Distance.h"
27
28using namespace std::chrono_literals;
29
30
31namespace Traffic {
32
43
44class TrafficFactor_Abstract : public QObject {
45 Q_OBJECT
46
47public:
49 static constexpr auto lifeTime = 10s;
50
71 Q_ENUM(AircraftType)
72
73
77 explicit TrafficFactor_Abstract(QObject* parent = nullptr);
78
79 // Standard destructor
80 ~TrafficFactor_Abstract() override = default;
81
82
83 //
84 // Methods
85 //
86
97 {
98 setAlarmLevel(other.alarmLevel());
99 setCallSign(other.callSign());
100 setHDist(other.hDist());
101 setID(other.ID());
102 setType(other.type());
103 setVDist(other.vDist());
104 updateDescription();
105 }
106
120 [[nodiscard]] auto hasHigherPriorityThan(const TrafficFactor_Abstract& rhs) const -> bool;
121
129
130
131 //
132 // PROPERTIES
133 //
134
154 Q_PROPERTY(int alarmLevel READ alarmLevel WRITE setAlarmLevel NOTIFY alarmLevelChanged BINDABLE bindableAlarmLevel)
155
156
163 Q_PROPERTY(bool animate READ animate WRITE setAnimate NOTIFY animateChanged)
164
169 Q_PROPERTY(QString callSign READ callSign WRITE setCallSign NOTIFY callSignChanged)
170
179 Q_PROPERTY(QString color READ color NOTIFY colorChanged)
180
187 Q_PROPERTY(QString description READ description NOTIFY descriptionChanged)
188
195 Q_PROPERTY(Units::Distance hDist READ hDist WRITE setHDist NOTIFY hDistChanged BINDABLE bindableHDist)
196
203 Q_PROPERTY(QString ID READ ID WRITE setID NOTIFY IDChanged)
204
210 Q_PROPERTY(bool relevant READ relevant BINDABLE bindableRelevant)
211
213 Q_PROPERTY(QString relevantString READ relevantString BINDABLE bindableRelevantString)
214
216 Q_PROPERTY(AircraftType type READ type WRITE setType NOTIFY typeChanged BINDABLE bindableType)
217
222 Q_PROPERTY(QString typeString READ typeString BINDABLE bindableTypeString)
223
229 Q_PROPERTY(bool valid READ valid NOTIFY validChanged BINDABLE bindableValid)
230
237 Q_PROPERTY(Units::Distance vDist READ vDist WRITE setVDist NOTIFY vDistChanged BINDABLE bindableVDist)
238
239
240 //
241 // Getter/Setter Methods
242 //
243
248 [[nodiscard]] int alarmLevel() const {return m_alarmLevel.value();}
249
254 [[nodiscard]] QBindable<int> bindableAlarmLevel() {return &m_alarmLevel;}
255
260 [[nodiscard]] auto animate() const -> bool
261 {
262 return m_animate;
263 }
264
269 [[nodiscard]] auto callSign() const -> QString
270 {
271 return m_callSign;
272 }
273
278 [[nodiscard]] auto color() const -> QString
279 {
280 if (m_alarmLevel == 0) {
281 return QStringLiteral("green");
282 }
283 if (m_alarmLevel == 1) {
284 return QStringLiteral("yellow");
285 }
286 return QStringLiteral("red");
287 }
288
293 [[nodiscard]] auto description() const -> QString
294 {
295 return m_description;
296 }
297
302 [[nodiscard]] Units::Distance hDist() const {return m_hDist.value();}
303
308 [[nodiscard]] QBindable<Units::Distance> bindableHDist() {return &m_hDist;}
309
314 [[nodiscard]] auto ID() const -> QString
315 {
316 return m_ID;
317 }
318
323 [[nodiscard]] bool relevant() const {return m_relevant.value();}
324
329 [[nodiscard]] QBindable<bool> bindableRelevant() {return &m_relevant;}
330
335 [[nodiscard]] QString relevantString() const {return m_relevantString.value();}
336
341 [[nodiscard]] QBindable<bool> bindableRelevantString() {return &m_relevantString;}
342
347 [[nodiscard]] Traffic::TrafficFactor_Abstract::AircraftType type() const {return m_type.value();}
348
353 [[nodiscard]] QBindable<Traffic::TrafficFactor_Abstract::AircraftType> bindableType() {return &m_type;}
354
359 [[nodiscard]] QString typeString() const {return m_typeString.value();}
360
365 [[nodiscard]] QBindable<QString> bindableTypeString() {return &m_typeString;}
366
371 [[nodiscard]] bool valid() const {return m_valid.value();}
372
377 [[nodiscard]] QBindable<bool> bindableValid() {return &m_valid;}
378
383 [[nodiscard]] Units::Distance vDist() const {return m_vDist.value();}
384
389 [[nodiscard]] QBindable<Units::Distance> bindableVDist() {return &m_vDist;}
390
391
392 //
393 // Setter Methods
394 //
395
400 void setAlarmLevel(int newAlarmLevel)
401 {
402 // Safety checks
403 if ((newAlarmLevel < 0) || (newAlarmLevel > 3)) {
404 return;
405 }
407 m_alarmLevel = newAlarmLevel;
408 }
409
414 void setAnimate(bool newAnimate) {
415 if (m_animate == newAnimate) {
416 return;
417 }
418 m_animate = newAnimate;
419 emit animateChanged();
420 }
421
426 void setCallSign(const QString& newCallSign) {
427 if (m_callSign == newCallSign) {
428 return;
429 }
430 m_callSign = newCallSign;
431 emit callSignChanged();
432 }
433
438 void setHDist(Units::Distance newHDist) {m_hDist = newHDist;}
439
444 void setID(const QString& newID) {
445 if (m_ID == newID) {
446 return;
447 }
448 m_ID = newID;
449 emit IDChanged();
450 }
451
457
462 void setVDist(Units::Distance newVDist) {m_vDist = newVDist;}
463
464
465 //
466 // Constants
467 //
468
475
482
483signals:
486
489
492
495
498
501
503 void IDChanged();
504
507
510
513
514
515protected:
516 // Setter function for the property valid. This function is virtual and must not be
517 // called or accessed from the constructor. For this reason, we have a special function
518 // "dispatchUpdateValid", which whose address is already known to the constructor.
519 virtual void updateValid();
520 void dispatchUpdateValid();
521 Q_OBJECT_BINDABLE_PROPERTY_WITH_ARGS(Traffic::TrafficFactor_Abstract, bool, m_valid, false, &Traffic::TrafficFactor_Abstract::validChanged);
522
523 // Setter function for the property "description". This function is virtual and must not be
524 // called or accessed from the constructor. For this reason, we have a special function
525 // "dispatchUpdateDescription", which whose address is already known to the constructor.
526 virtual void updateDescription();
527 void dispatchUpdateDescription();
528 QString m_description;
529
530private:
531 Q_DISABLE_COPY_MOVE(TrafficFactor_Abstract)
532
533 //
534 // Property values
535 //
536 Q_OBJECT_BINDABLE_PROPERTY_WITH_ARGS(Traffic::TrafficFactor_Abstract, int, m_alarmLevel, 0, &Traffic::TrafficFactor_Abstract::alarmLevelChanged);
537 bool m_animate {false};
538 QString m_callSign;
539 QString m_color{QStringLiteral("red")};
541 QString m_ID;
543 QProperty<bool> m_relevant {false};
544 QProperty<QString> m_relevantString;
545 QProperty<QString> m_typeString;
546 Q_OBJECT_BINDABLE_PROPERTY(Traffic::TrafficFactor_Abstract, Units::Distance, m_vDist, &Traffic::TrafficFactor_Abstract::vDistChanged);
547
548 // Timer for timeout. Traffic objects become invalid if their data has not been
549 // refreshed for longer than timeout.
550 QTimer lifeTimeCounter;
551};
552
553} // namespace Traffic
Abstract base class for traffic factors.
void setType(Traffic::TrafficFactor_Abstract::AircraftType newType)
Setter function for property with the same name.
QString typeString() const
Getter method for property with the same name.
void typeChanged()
Notifier signal.
QBindable< QString > bindableTypeString()
Getter method for property with the same name.
QString ID
Identifier string of the traffic.
Units::Distance vDist
Vertical distance from own position to the traffic, at the time of report.
void setCallSign(const QString &newCallSign)
Setter function for property with the same name.
auto description() const -> QString
Getter method for property with the same name.
void callSignChanged()
Notifier signal.
auto ID() const -> QString
Getter method for property with the same name.
QString description
Description of the traffic, for use in GUI.
auto hasHigherPriorityThan(const TrafficFactor_Abstract &rhs) const -> bool
Estimates if this traffic object has higher priority than other traffic object.
auto color() const -> QString
Getter method for property with the same name.
void startLiveTime()
Starts or extends the lifetime of this object.
void setVDist(Units::Distance newVDist)
Setter function for property with the same name.
void alarmLevelChanged()
Notifier signal.
void vDistChanged()
Notifier signal.
static constexpr auto lifeTime
Length of lifetime for objects of this class.
bool relevant
Indicates relevant traffic.
QString relevantString() const
Getter method for property with the same name.
auto callSign() const -> QString
Getter method for property with the same name.
AircraftType type
Type of aircraft, as reported by the traffic receiver.
QString relevantString
Translated string containing the 'relevant' property.
void colorChanged()
Notifier signal.
void setHDist(Units::Distance newHDist)
Setter function for property with the same name.
void setAlarmLevel(int newAlarmLevel)
Setter function for property with the same name.
bool relevant() const
Getter method for property with the same name.
QBindable< Units::Distance > bindableVDist()
Getter method for property with the same name.
Traffic::TrafficFactor_Abstract::AircraftType type() const
Getter method for property with the same name.
Units::Distance hDist
Horizontal distance from own position to the traffic, at the time of report.
void animateChanged()
Notifier signal.
QString color
Suggested color for GUI representation of the traffic.
Units::Distance hDist() const
Getter method for property with the same name.
void setAnimate(bool newAnimate)
Setter function for property with the same name.
QBindable< bool > bindableValid()
Getter method for property with the same name.
QBindable< Traffic::TrafficFactor_Abstract::AircraftType > bindableType()
Getter method for property with the same name.
QBindable< bool > bindableRelevantString()
Getter method for property with the same name.
QBindable< Units::Distance > bindableHDist()
Getter method for property with the same name.
QBindable< int > bindableAlarmLevel()
Getter method for property with the same name.
static constexpr Units::Distance maxVerticalDistance
Maximal vertical distance for relevant traffic.
QBindable< bool > bindableRelevant()
Getter method for property with the same name.
QString typeString
Type of aircraft, as reported by the traffic receiver.
TrafficFactor_Abstract(QObject *parent=nullptr)
Default constructor.
void descriptionChanged()
Notifier signal.
void validChanged()
Notifier signal.
static constexpr Units::Distance maxHorizontalDistance
Maximal horizontal distance for relevant traffic.
Units::Distance vDist() const
Getter method for property with the same name.
void hDistChanged()
Notifier signal.
bool valid() const
Getter method for property with the same name.
auto animate() const -> bool
Getter method for property with the same name.
void copyFrom(const TrafficFactor_Abstract &other)
Copy data from other object.
bool animate
Indicates if changes in properties should be animated in the GUI.
void setID(const QString &newID)
Setter function for property with the same name.
void IDChanged()
Notifier signal.
Convenience class for distance computations.
Definition Distance.h:35
static Q_INVOKABLE constexpr Units::Distance fromNM(double distanceInNM)
Constructs a distance.
Definition Distance.h:82
static Q_INVOKABLE constexpr Units::Distance fromM(double distanceInM)
Constructs a distance.
Definition Distance.h:56
Conversion between units used in aviation.
Definition Angle.h:34