Enroute Flight Navigation
A navigation app for VFR pilots
Navigator.h
1/***************************************************************************
2 * Copyright (C) 2019-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 <QQmlEngine>
24#include <QStandardPaths>
25
26#include "FlightRoute.h"
27#include "GlobalObject.h"
28#include "navigation/FlightRoute.h"
29#include "navigation/RemainingRouteInfo.h"
30
31
32namespace Navigation {
33
40
41class Navigator : public GlobalObject
42{
43 Q_OBJECT
44 QML_ELEMENT
45 QML_SINGLETON
46
47public:
49 enum FlightStatus : quint8
50 {
54 };
55 Q_ENUM(FlightStatus)
56
57
58
59 //
60 // Constructors and Destructors
61 //
62
63
67 explicit Navigator(QObject* parent = nullptr);
68
69 // deferred initialization
70 void deferredInitialization() override;
71
72 // No default constructor, important for QML singleton
73 explicit Navigator() = delete;
74
76 ~Navigator() override = default;
77
78 // factory function for QML singleton
79 static Navigation::Navigator* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
80 {
82 }
83
84
85 //
86 // PROPERTIES
87 //
88
95
96
101 Q_PROPERTY(Navigation::FlightRoute* flightRoute READ flightRoute CONSTANT)
102
109
112
114 Q_PROPERTY(Weather::Wind wind READ wind WRITE setWind NOTIFY windChanged)
115
116
117 //
118 // Getter Methods
119 //
120
125 [[nodiscard]] auto aircraft() const -> Navigation::Aircraft { return m_aircraft; }
126
132
137 [[nodiscard]] auto flightStatus() const -> FlightStatus { return m_flightStatus; }
138
143 [[nodiscard]] auto remainingRouteInfo() const -> Navigation::RemainingRouteInfo { return m_remainingRouteInfo; }
144
149 [[nodiscard]] auto wind() const -> Weather::Wind { return m_wind; }
150
151
152 //
153 // Setter Methods
154 //
155
160 void setAircraft(const Navigation::Aircraft& newAircraft);
161
166 void setWind(Weather::Wind newWind);
167
168signals:
171
182
185
188
191
192private slots:
193 // Check if altitude limit for flight maps needs to be lifted. Connected to positioning source.
194 void updateAltitudeLimit();
195
196 // Update flight status. Connected to positioning source.
197 void updateFlightStatus();
198
199 // Setter method. Only use this method to write to m_remainingRouteInfo
200 void setRemainingRouteInfo(const Navigation::RemainingRouteInfo& rrInfo);
201
202 // Re-computes the Remaining Route Info. The argument must be the current position info of the own aircraft.
203 void updateRemainingRouteInfo();
204
205private:
206 Q_DISABLE_COPY_MOVE(Navigator)
207
208 // Updater function for the property with the same name
209 void setFlightStatus(FlightStatus newFlightStatus);
210
211 // Hysteresis for flight speed
212 static constexpr auto flightSpeedHysteresis = Units::Speed::fromKN(5.0);
213
214 FlightStatus m_flightStatus {Unknown};
215
216 Aircraft m_aircraft {};
217
218 QPointer<FlightRoute> m_flightRoute {nullptr};
219 const QString m_flightRouteFileName {QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)+"/flight route.geojson"};
220
221 Weather::Wind m_wind {};
222
223 QString m_aircraftFileName;
224
225 // RemainingRouteInfo only use the setter method to write to m_remainingRouteInfo
226 RemainingRouteInfo m_remainingRouteInfo;
227};
228
229} // namespace Navigation
static Q_INVOKABLE Navigation::Navigator * navigator()
Pointer to appplication-wide static Navigation::Navigator instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
This extremely simple class holds a few numbers that describe an aircraft.
Definition Aircraft.h:35
Intended flight route.
Definition FlightRoute.h:60
auto flightStatus() const -> FlightStatus
Getter function for the property with the same name.
Definition Navigator.h:137
void remainingRouteInfoChanged()
Notifier signal.
FlightStatus flightStatus
Estimate whether the device is flying or on the ground.
Definition Navigator.h:108
void setWind(Weather::Wind newWind)
Setter function for property of the same name.
Navigator(QObject *parent=nullptr)
Standard constructor.
void flightStatusChanged()
Notifier signal.
void setAircraft(const Navigation::Aircraft &newAircraft)
Setter function for property of the same name.
FlightStatus
FlightStatus.
Definition Navigator.h:50
auto wind() const -> Weather::Wind
Getter function for the property with the same name.
Definition Navigator.h:149
void aircraftChanged()
Notifier signal.
void deferredInitialization() override
Non-constructor initialization.
Weather::Wind wind
Current wind.
Definition Navigator.h:114
auto flightRoute() -> Navigation::FlightRoute *
Getter function for the property with the same name.
auto remainingRouteInfo() const -> Navigation::RemainingRouteInfo
Getter function for the property with the same name.
Definition Navigator.h:143
Navigation::RemainingRouteInfo remainingRouteInfo
Up-to-date information about the remaining route.
Definition Navigator.h:111
Navigation::FlightRoute * flightRoute
Current flight route.
Definition Navigator.h:101
Navigation::Aircraft aircraft
Current aircraft.
Definition Navigator.h:94
void airspaceAltitudeLimitAdjusted()
Emitted when the airspaceAltitudeLimit is adjusted.
void windChanged()
Notifier signal.
Info about remaining route.
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
Definition Speed.h:87
This extremely simple class holds the wind speed and direction.
Definition Wind.h:32