mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-18 03:15:34 +08:00
Issue #95 [XPlane] Get velocity data from xswiftbus in fast update timer timeout
This commit is contained in:
@@ -107,6 +107,9 @@ namespace BlackSimPlugin::XPlane
|
||||
//! Get own aircraft situation data
|
||||
void getOwnAircraftSituationDataAsync(BlackSimPlugin::XPlane::XPlaneData *o_xplaneData);
|
||||
|
||||
//! Get own aircraft velocity data
|
||||
void getOwnAircraftVelocityDataAsync(BlackSimPlugin::XPlane::XPlaneData *o_xplaneData);
|
||||
|
||||
//! Get own aircraft COM1 data
|
||||
void getOwnAircraftCom1DataAsync(BlackSimPlugin::XPlane::XPlaneData *o_xplaneData);
|
||||
|
||||
@@ -278,6 +281,42 @@ namespace BlackSimPlugin::XPlane
|
||||
void getTrueHeadingDegAsync(double *o_heading);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getLocalXVelocityMps
|
||||
//! @{
|
||||
double getLocalXVelocityMps() const;
|
||||
void getLocalXVelocityMpsAsync(double *o_velocity);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getLocalYVelocityMps
|
||||
//! @{
|
||||
double getLocalYVelocityMps() const;
|
||||
void getLocalYVelocityMpsAsync(double *o_velocity);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getLocalZVelocityMps
|
||||
//! @{
|
||||
double getLocalZVelocityMps() const;
|
||||
void getLocalZVelocityMpsAsync(double *o_velocity);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getPitchRadPerSec
|
||||
//! @{
|
||||
double getPitchRadPerSec() const;
|
||||
void getPitchRadPerSecAsync(double *o_radPerSec);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getRollRadPerSec
|
||||
//! @{
|
||||
double getRollRadPerSec() const;
|
||||
void getRollRadPerSecAsync(double *o_radPerSec);
|
||||
//! @}
|
||||
|
||||
//! \copydoc XSwiftBus::CService::getHeadingRadPerSec
|
||||
//! @{
|
||||
double getHeadingRadPerSec() const;
|
||||
void getHeadingRadPerSecAsync(double *o_radPerSec);
|
||||
//! @}
|
||||
|
||||
//! Get whether any wheel is on the ground
|
||||
//! @{
|
||||
bool getAnyWheelOnGround() const;
|
||||
|
||||
Reference in New Issue
Block a user