1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/Orchestration/FlightSimData.cs
2022-07-23 15:23:32 -04:00

42 lines
1.2 KiB
C#

using MSFSPopoutPanelManager.Shared;
using System;
using System.ComponentModel;
namespace MSFSPopoutPanelManager.Orchestration
{
public class FlightSimData : ObservableObject
{
public event PropertyChangedEventHandler CurrentMsfsPlaneTitleChanged;
public string CurrentMsfsPlaneTitle { get; set; }
public bool HasCurrentMsfsPlaneTitle
{
get { return !String.IsNullOrEmpty(CurrentMsfsPlaneTitle); }
}
public bool ElectricalMasterBatteryStatus { get; set; }
public bool IsSimulatorStarted { get; set; }
public bool IsEnteredFlight { get; set; }
public new void OnPropertyChanged(string propertyName, object oldValue, object newValue)
{
if (oldValue != newValue)
{
if (propertyName == "CurrentMsfsPlaneTitle")
CurrentMsfsPlaneTitleChanged?.Invoke(this, null);
base.OnPropertyChanged(propertyName, oldValue, newValue);
}
}
public void ClearData()
{
CurrentMsfsPlaneTitle = null;
ElectricalMasterBatteryStatus = false;
IsEnteredFlight = false;
}
}
}