mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
|
using MSFSPopoutPanelManager.DomainModel.Profile;
|
|||
|
using MSFSPopoutPanelManager.Shared;
|
|||
|
using System;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.DomainModel.SimConnect
|
|||
|
{
|
|||
|
public class HudBarDataGeneric : ObservableObject, IHudBarData
|
|||
|
{
|
|||
|
public HudBarType HudBarType => HudBarType.Generic_Aircraft;
|
|||
|
|
|||
|
public double ElevatorTrim { get; set; }
|
|||
|
|
|||
|
public double AileronTrim { get; set; }
|
|||
|
|
|||
|
public double RudderTrim { get; set; }
|
|||
|
|
|||
|
public double Flap { get; set; }
|
|||
|
|
|||
|
public double ParkingBrake { get; set; }
|
|||
|
|
|||
|
public double GearLeft { get; set; }
|
|||
|
|
|||
|
public double GearCenter { get; set; }
|
|||
|
|
|||
|
public double GearRight { get; set; }
|
|||
|
|
|||
|
public double SimRate { get; set; }
|
|||
|
|
|||
|
public string ElevatorTrimFormatted => Math.Round(ElevatorTrim / 10, 2).ToString("F2");
|
|||
|
|
|||
|
public string AileronTrimFormatted => Math.Round(AileronTrim / 16384 * 57, 2).ToString("F2");
|
|||
|
|
|||
|
public string RudderTrimFormatted => Math.Round(RudderTrim * 2 * 10, 2).ToString("F2");
|
|||
|
|
|||
|
public string FlapFormatted => Flap.ToString("F0");
|
|||
|
|
|||
|
public string ParkingBrakeFormatted => ParkingBrake > 0 ? "Engaged" : "Disengaged";
|
|||
|
|
|||
|
public string GearLeftFormatted => MapGear(GearLeft);
|
|||
|
|
|||
|
public string GearCenterFormatted => MapGear(GearCenter);
|
|||
|
|
|||
|
public string GearRightFormatted => MapGear(GearRight);
|
|||
|
|
|||
|
private string MapGear(double gear)
|
|||
|
{
|
|||
|
if (gear == 100)
|
|||
|
return "DOWN";
|
|||
|
if (gear == 0)
|
|||
|
return "UP";
|
|||
|
|
|||
|
return "MOVING";
|
|||
|
}
|
|||
|
|
|||
|
public void Clear()
|
|||
|
{
|
|||
|
Type type = this.GetType();
|
|||
|
PropertyInfo[] properties = type.GetProperties();
|
|||
|
for (int i = 0; i < properties.Length; ++i)
|
|||
|
{
|
|||
|
if (properties[i].SetMethod != null)
|
|||
|
properties[i].SetValue(this, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|