23#include "units/Distance.h"
24#include "units/Speed.h"
25#include "units/Volume.h"
26#include "units/VolumeFlow.h"
28#include <QGeoCoordinate>
37 QML_VALUE_TYPE(aircraft)
48 Q_ENUM(FuelConsumptionUnit)
61 Q_ENUM(HorizontalDistanceUnit)
71 Q_ENUM(VerticalDistanceUnit)
180 [[nodiscard]]
auto name() const -> QString {
return m_name; }
269 [[nodiscard]] Q_INVOKABLE QString
describeWay(
const QGeoCoordinate &from,
const QGeoCoordinate &to)
const;
302 [[nodiscard]] Q_INVOKABLE QString
loadFromJSON(
const QString& fileName);
315 [[nodiscard]] Q_INVOKABLE QString
loadFromJSON(
const QByteArray &JSON);
334 [[nodiscard]] Q_INVOKABLE QString
save(
const QString& fileName)
const;
343 [[nodiscard]] Q_INVOKABLE QByteArray
toJSON()
const;
388 Units::Speed m_minimumSpeed {};
396namespace AircraftQML {
398QML_FOREIGN_NAMESPACE(Navigation::Aircraft)
399QML_NAMED_ELEMENT(Aircraft)
This extremely simple class holds a few numbers that describe an aircraft.
Units::Speed minValidSpeed
Minimal speed of the aircraft that is considered valid.
auto verticalDistanceUnit() const -> VerticalDistanceUnit
Getter function for property of the same name.
HorizontalDistanceUnit horizontalDistanceUnit
Preferred units of measurement for horizontal distances.
Q_INVOKABLE QByteArray toJSON() const
Exports to route to JSON.
Q_INVOKABLE QString loadFromJSON(const QByteArray &JSON)
Reads aircraft data from a JSON document.
auto descentSpeed() const -> Units::Speed
Getter function for property of the same name.
Units::Speed minimumSpeed
Minimum Speed.
Q_INVOKABLE QString horizontalSpeedToString(Units::Speed speed) const
Convert horizontal speed to string.
Q_INVOKABLE QString horizontalDistanceToString(Units::Distance distance) const
Convert horizontal distance to string.
Units::Speed cruiseSpeed
Cruise Speed.
Units::Speed maxValidSpeed
Maximal speed of the aircraft that is considered valid.
VerticalDistanceUnit
Units of measurement for vertical distances.
Q_INVOKABLE QString verticalDistanceToString(Units::Distance distance, bool forceSign=false) const
Convert vertical distance to string.
auto fuelConsumption() const -> Units::VolumeFlow
Getter function for property of the same name.
void setHorizontalDistanceUnit(HorizontalDistanceUnit newUnit)
Setter function for property of the same name.
Q_INVOKABLE QString loadFromJSON(const QString &fileName)
Reads aircraft data from a JSON document.
Units::Speed descentSpeed
Decent Speed.
void setName(const QString &newName)
Setter function for property of the same name.
void setDescentSpeed(Units::Speed newSpeed)
Setter function for property of the same name.
Q_INVOKABLE Navigation::Aircraft clone() const
Return copy of this object.
Q_INVOKABLE QString save(const QString &fileName) const
Saves aircraft to a file.
void setVerticalDistanceUnit(VerticalDistanceUnit newUnit)
Setter function for property of the same name.
void setMinimumSpeed(Units::Speed newSpeed)
Setter function for property of the same name.
auto name() const -> QString
Getter function for property of the same name.
Q_INVOKABLE QString verticalSpeedToString(Units::Speed speed) const
Convert vertical speed to string.
void setFuelConsumption(Units::VolumeFlow newFuelConsumption)
Setter function for property of the same name.
Q_INVOKABLE bool operator==(const Navigation::Aircraft &other) const
Equality check.
HorizontalDistanceUnit
Units of measurement for horizontal distances.
@ NauticalMile
Nautical Mile.
@ StatuteMile
Statute Mile.
void setFuelConsumptionUnit(FuelConsumptionUnit newUnit)
Setter function for property of the same name.
FuelConsumptionUnit
Units of measurement for volumes.
@ GallonPerHour
Gallon per hour.
@ LiterPerHour
Liter per hour.
Units::VolumeFlow maxValidFuelConsumption
Maximal fuel consumption that is considered valid.
auto minimumSpeed() const -> Units::Speed
Getter function for property of the same name.
Units::VolumeFlow minValidFuelConsumption
Minimal fuel consumption that is considered valid.
void setCruiseSpeed(Units::Speed newSpeed)
Setter function for property of the same name.
FuelConsumptionUnit fuelConsumptionUnit
Preferred units of measurement for fuel consumption.
VerticalDistanceUnit verticalDistanceUnit
Preferred units of measurement for vertical distances.
auto fuelConsumptionUnit() const -> FuelConsumptionUnit
Getter function for property of the same name.
Q_INVOKABLE QString volumeToString(Units::Volume volume) const
Convert volume to string.
Q_INVOKABLE QString describeWay(const QGeoCoordinate &from, const QGeoCoordinate &to) const
Description of the way between two points.
auto horizontalDistanceUnit() const -> HorizontalDistanceUnit
Getter function for property of the same name.
Units::VolumeFlow fuelConsumption
Fuel Consumption.
Convenience class for distance computations.
Convenience class for speed computations.
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
Convenience class for volume flow computations.
static Q_INVOKABLE constexpr Units::VolumeFlow fromLPH(double volumeFlowInLPH)
Constructs a volume flow.
Convenience class for volume computations.
Conversion between units used in aviation.