Enroute Flight Navigation
A navigation app for VFR pilots
RemainingRouteInfo.h
1/***************************************************************************
2 * Copyright (C) 2022-2023 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 "geomaps/Waypoint.h"
24#include "units/Angle.h"
25#include "units/Distance.h"
26#include "units/Timespan.h"
27
28#include <QQmlEngine>
29
30
31namespace Navigation {
32
33class Navigator;
34
44
46 Q_GADGET
47 QML_VALUE_TYPE(remainingRouteInfo)
48
49
50 friend auto operator==(const Navigation::RemainingRouteInfo&, const Navigation::RemainingRouteInfo&) -> bool;
51 friend class Navigation::Navigator;
52
53public:
71 Q_ENUM(Status)
72
73 //
74 // PROPERTIES
75 //
76
77
78 Q_PROPERTY(GeoMaps::Waypoint nextWP MEMBER nextWP CONSTANT)
79
81 Q_PROPERTY(Units::Distance nextWP_DIST MEMBER nextWP_DIST CONSTANT)
82
84 Q_PROPERTY(Units::Timespan nextWP_ETE MEMBER nextWP_ETE CONSTANT)
85
87 Q_PROPERTY(QDateTime nextWP_ETA MEMBER nextWP_ETA CONSTANT)
88
90 Q_PROPERTY(QString nextWP_ETAAsUTCString READ nextWP_ETAAsUTCString CONSTANT)
91
93 Q_PROPERTY(Units::Angle nextWP_TC MEMBER nextWP_TC CONSTANT)
94
96 Q_PROPERTY(GeoMaps::Waypoint finalWP MEMBER finalWP CONSTANT)
97
99 Q_PROPERTY(Units::Distance finalWP_DIST MEMBER finalWP_DIST CONSTANT)
100
102 Q_PROPERTY(Units::Timespan finalWP_ETE MEMBER finalWP_ETE CONSTANT)
103
105 Q_PROPERTY(QDateTime finalWP_ETA MEMBER finalWP_ETA CONSTANT)
106
108 Q_PROPERTY(QString finalWP_ETAAsUTCString READ finalWP_ETAAsUTCString CONSTANT)
109
115 Q_PROPERTY(QString note MEMBER note CONSTANT)
116
118 Q_PROPERTY(Navigation::RemainingRouteInfo::Status status MEMBER status CONSTANT)
119
120
121 //
122 // Getter Methods
123 //
124
129 [[nodiscard]] auto nextWP_ETAAsUTCString() const -> QString {
130 if (nextWP_ETE.isFinite()) {
131 return nextWP_ETA.toString(QStringLiteral("H:mm"));
132 }
133 return QStringLiteral("-:--");
134 }
135
140 [[nodiscard]] auto finalWP_ETAAsUTCString() const -> QString {
141 if (finalWP_ETE.isFinite()) {
142 return finalWP_ETA.toString(QStringLiteral("H:mm"));
143 }
144 return QStringLiteral("-:--");
145 }
146
147private:
148 Status status {NoRoute};
149 QString note;
150
153 Units::Timespan nextWP_ETE {};
154 QDateTime nextWP_ETA;
155 Units::Angle nextWP_TC{};
156
157 GeoMaps::Waypoint finalWP;
158 Units::Distance finalWP_DIST{};
159 Units::Timespan finalWP_ETE {};
160 QDateTime finalWP_ETA;
161};
162
164auto operator==(const Navigation::RemainingRouteInfo&, const Navigation::RemainingRouteInfo&) -> bool;
165
166
167} // namespace Navigation
168
169// Make enums available in QML
170namespace RemainingRouteInfoQML
171{
172 Q_NAMESPACE
173 QML_FOREIGN_NAMESPACE(Navigation::RemainingRouteInfo)
174 QML_NAMED_ELEMENT(RemainingRouteInfo)
175} // namespace RemainingRouteInfoQML
176
177// Declare meta types
178Q_DECLARE_METATYPE(Navigation::RemainingRouteInfo)
Waypoint, such as an airfield, a navaid station or a reporting point.
Definition Waypoint.h:41
Main hub for navigation data.
Definition Navigator.h:42
Info about remaining route.
Units::Timespan finalWP_ETE
ETE for flight to final waypoint in the route.
Navigation::RemainingRouteInfo::Status status
Status.
Units::Timespan nextWP_ETE
ETE for flight to next waypoint in the route.
Units::Distance finalWP_DIST
Distance to final waypoint in the route.
Units::Distance nextWP_DIST
Distance to next waypoint in the route.
QDateTime finalWP_ETA
ETA for flight to final waypoint in the route.
GeoMaps::Waypoint finalWP
Final waypoint in the route.
QDateTime nextWP_ETA
ETA for flight to next waypoint in the route.
QString finalWP_ETAAsUTCString
ETA for flight to final waypoint in the route, in UTC and as a string.
QString nextWP_ETAAsUTCString
ETA for flight to next waypoint in the route, in UTC and as a string.
Units::Angle nextWP_TC
TC for flight to next waypoint in the route.
auto finalWP_ETAAsUTCString() const -> QString
Getter function for the property with the same name.
@ PositionUnknown
Valid route has been set, but no position info available.
@ NoRoute
No valid route has been set.
@ OnRoute
Currently travelling along the route.
@ NearDestination
Current position is closer than Leg::nearThreshold to destination.
@ OffRoute
Current position is further than Leg::nearThreshold nm away from route.
GeoMaps::Waypoint nextWP
Next waypoint in the route.
Convenience class for distance computations.
Definition Distance.h:35
Conversion between units used in aviation.
Definition Angle.h:34