Enroute Flight Navigation
A navigation app for VFR pilots
Traffic::TrafficDataSource_Simulate Class Reference

Traffic receiver: Simulator that provides constant data. More...

#include <TrafficDataSource_Simulate.h>

Inheritance diagram for Traffic::TrafficDataSource_Simulate:
Traffic::TrafficDataSource_Abstract

Public Slots

void connectToTrafficReceiver () override
 Start attempt to connect to traffic receiver.
 
void disconnectFromTrafficReceiver () override
 Disconnect from traffic receiver.
 
void setBarometricHeight (Units::Distance barAlt)
 Set distance that is to be reported by this class as the barometric altitude of ownship.
 
void setCoordinate (const QGeoCoordinate &coordinate)
 Set coordinate that is to be reported by this class as the position of ownship.
 
void setGS (Units::Speed GS)
 Set speed that is to be reported by this class as the ground speed of ownship.
 
void setTT (Units::Angle TT)
 Set angle that is to be reported by this class as the true track of ownship.
 
void setTrafficFactor_DistanceOnly (Traffic::TrafficFactor_DistanceOnly *factor=nullptr)
 Set traffic factor (distance only) that is to be reported by this class.
 
void addTraffic (Traffic::TrafficFactor_WithPosition *factor)
 Add a traffic factor that is to be reported by this class.
 
void removeTraffic ()
 Remove all traffic factors (with position)
 
- Public Slots inherited from Traffic::TrafficDataSource_Abstract
virtual void connectToTrafficReceiver ()=0
 Start attempt to connect to traffic receiver.
 
virtual void disconnectFromTrafficReceiver ()=0
 Disconnect from traffic receiver.
 
virtual void setPassword (const QString &SSID, const QString &password)
 Set password.
 

Public Member Functions

 TrafficDataSource_Simulate (bool isCanonical, QObject *parent)
 Default constructor.
 
QString dataFormat () const override
 Getter function for the property with the same name.
 
QString icon () const override
 Getter function for the property with the same name.
 
auto sourceName () const -> QString override
 Getter function for the property with the same name.
 
- Public Member Functions inherited from Traffic::TrafficDataSource_Abstract
 TrafficDataSource_Abstract (bool isCanonical, QObject *parent)
 Default constructor.
 
bool canonical () const
 Getter function for the property with the same name.
 
virtual Traffic::ConnectionInfo connectionInfo () const
 Getter function for the property with the same name.
 
QString connectivityStatus () const
 Getter function for the property with the same name.
 
QString errorString () const
 Getter function for the property with the same name.
 
Units::Distance pressureAltitude () const
 Getter method for property with the same name.
 
QBindable< Units::DistancebindablePressureAltitude () const
 Getter method for property with the same name.
 
bool receivingHeartbeat () const
 Getter function for the property with the same name.
 
QString trafficReceiverRuntimeError () const
 Getter function for the property with the same name.
 
QString trafficReceiverSelfTestError () const
 Getter function for the property with the same name.
 

Additional Inherited Members

- Signals inherited from Traffic::TrafficDataSource_Abstract
void connectivityStatusChanged (QString newStatus)
 Notifier signal.
 
void errorStringChanged (QString newError)
 Notifier signal.
 
void factorWithoutPosition (const Traffic::TrafficFactor_DistanceOnly &factor)
 Traffic factor without position.
 
void factorWithPosition (const Traffic::TrafficFactor_WithPosition &factor)
 Traffic factor with position.
 
void positionUpdated (Positioning::PositionInfo pInfo)
 Position info.
 
void receivingHeartbeatChanged (bool)
 Notifier signal.
 
void trafficReceiverRuntimeErrorChanged ()
 Notifier signal.
 
void trafficReceiverSelfTestErrorChanged ()
 Notifier signal.
 
void trafficReceiverHwVersion (QString result)
 Traffic receiver hardware version.
 
void trafficReceiverObVersion (QString result)
 Traffic receiver obstacle database version.
 
void trafficReceiverSwVersion (QString result)
 Traffic receiver software version.
 
void warning (const Traffic::Warning &warning)
 Traffic warning.
 
- Protected Member Functions inherited from Traffic::TrafficDataSource_Abstract
void processFLARMData (const QString &data)
 Process FLARM/NMEA data.
 
void processGDLMessage (const QByteArray &message)
 Process one GDL90 message.
 
void processXGPSString (const QByteArray &data)
 Process one XGPS string.
 
void resetReceivingHeartbeat ()
 Resetter method for the property with the same name.
 
void setConnectivityStatus (const QString &newConnectivityStatus)
 Setter function for the property with the same name.
 
void setErrorString (const QString &newErrorString=QString())
 Setter function for the property with the same name.
 
void setPressureAltitude (Units::Distance newPressureAltitude)
 Setter function for the property with the same name.
 
void setReceivingHeartbeat (bool newReceivingHeartbeat)
 Setter method for the property with the same name.
 
void setTrafficReceiverRuntimeError (const QString &newErrorString)
 Setter function for the property with the same name.
 
void setTrafficReceiverSelfTestError (const QString &newErrorString)
 Setter function for the property with the same name.
 
- Properties inherited from Traffic::TrafficDataSource_Abstract
bool canonical
 Canonicity.
 
QString connectivityStatus
 Connectivity status.
 
Traffic::ConnectionInfo connectionInfo
 Connection Info.
 
QString dataFormat
 Data format.
 
QString errorString
 String describing the last socket error.
 
QString icon
 Icon that can be used to represent the connection in a GUI.
 
Units::Distance pressureAltitude
 Pressure altitude.
 
bool receivingHeartbeat
 Heartbeat indicator.
 
QString sourceName
 Source name.
 
QString trafficReceiverRuntimeError
 String describing the last traffic data receiver runtime error.
 
QString trafficReceiverSelfTestError
 String describing the last traffic data receiver self-test error.
 

Detailed Description

Traffic receiver: Simulator that provides constant data.

For testing purposes, this class provides constant traffic data.

Definition at line 37 of file TrafficDataSource_Simulate.h.

Constructor & Destructor Documentation

◆ TrafficDataSource_Simulate()

Traffic::TrafficDataSource_Simulate::TrafficDataSource_Simulate ( bool isCanonical,
QObject * parent )

Default constructor.

Parameters
isCanonicalIntializer for property canonical
parentThe standard QObject parent pointer

Member Function Documentation

◆ addTraffic

void Traffic::TrafficDataSource_Simulate::addTraffic ( Traffic::TrafficFactor_WithPosition * factor)
inlineslot

Add a traffic factor that is to be reported by this class.

Parameters
factorTraffic factor to be added. The pointer must be valid. The traffic factor will be owned by this class.

Definition at line 149 of file TrafficDataSource_Simulate.h.

◆ connectToTrafficReceiver

void Traffic::TrafficDataSource_Simulate::connectToTrafficReceiver ( )
overrideslot

Start attempt to connect to traffic receiver.

This method implements the pure virtual method declared by its superclass.

◆ dataFormat()

QString Traffic::TrafficDataSource_Simulate::dataFormat ( ) const
inlinenodiscardoverridevirtual

Getter function for the property with the same name.

Returns
Property dataFormat

Implements Traffic::TrafficDataSource_Abstract.

Definition at line 56 of file TrafficDataSource_Simulate.h.

◆ disconnectFromTrafficReceiver

void Traffic::TrafficDataSource_Simulate::disconnectFromTrafficReceiver ( )
overrideslot

Disconnect from traffic receiver.

This method implements the pure virtual method declared by its superclass.

◆ icon()

QString Traffic::TrafficDataSource_Simulate::icon ( ) const
inlinenodiscardoverridevirtual

Getter function for the property with the same name.

This method implements the pure virtual method declared by its superclass.

Returns
Property icon

Implements Traffic::TrafficDataSource_Abstract.

Definition at line 65 of file TrafficDataSource_Simulate.h.

◆ setBarometricHeight

void Traffic::TrafficDataSource_Simulate::setBarometricHeight ( Units::Distance barAlt)
inlineslot

Set distance that is to be reported by this class as the barometric altitude of ownship.

Parameters
barAltBarometric altitude of simulated ownship

Definition at line 98 of file TrafficDataSource_Simulate.h.

◆ setCoordinate

void Traffic::TrafficDataSource_Simulate::setCoordinate ( const QGeoCoordinate & coordinate)
inlineslot

Set coordinate that is to be reported by this class as the position of ownship.

Parameters
coordinateCoordinate of simulated ownship

Definition at line 107 of file TrafficDataSource_Simulate.h.

◆ setGS

void Traffic::TrafficDataSource_Simulate::setGS ( Units::Speed GS)
inlineslot

Set speed that is to be reported by this class as the ground speed of ownship.

Parameters
GSGround speed of simulated ownship

Definition at line 116 of file TrafficDataSource_Simulate.h.

◆ setTrafficFactor_DistanceOnly

void Traffic::TrafficDataSource_Simulate::setTrafficFactor_DistanceOnly ( Traffic::TrafficFactor_DistanceOnly * factor = nullptr)
inlineslot

Set traffic factor (distance only) that is to be reported by this class.

Parameters
factorTraffic factor, or nullptr to remove all distance-only traffic. The traffic factor will be owned by this class.

Definition at line 135 of file TrafficDataSource_Simulate.h.

◆ setTT

void Traffic::TrafficDataSource_Simulate::setTT ( Units::Angle TT)
inlineslot

Set angle that is to be reported by this class as the true track of ownship.

Parameters
TTTrue track of simulated ownship

Definition at line 125 of file TrafficDataSource_Simulate.h.

◆ sourceName()

auto Traffic::TrafficDataSource_Simulate::sourceName ( ) const -> QString
inlinenodiscardoverridevirtual

Getter function for the property with the same name.

This method implements the pure virtual method declared by its superclass.

Returns
Property sourceName

Implements Traffic::TrafficDataSource_Abstract.

Definition at line 74 of file TrafficDataSource_Simulate.h.


The documentation for this class was generated from the following file: