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-08-18 00:12:53 -04:00

49 lines
1.5 KiB
C#

using MSFSPopoutPanelManager.Shared;
using System;
using System.ComponentModel;
namespace MSFSPopoutPanelManager.Orchestration
{
public class FlightSimData : ObservableObject
{
public event PropertyChangedEventHandler CurrentMsfsAircraftChanged;
public event PropertyChangedEventHandler CurrentMsfsLiveryTitleChanged;
public string CurrentMsfsAircraft { get; set; }
public string CurrentMsfsLiveryTitle { get; set; }
public bool HasCurrentMsfsAircraft
{
get { return !String.IsNullOrEmpty(CurrentMsfsAircraft); }
}
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)
{
base.OnPropertyChanged(propertyName, oldValue, newValue);
if (propertyName == "CurrentMsfsAircraft")
CurrentMsfsAircraftChanged?.Invoke(this, null);
if (propertyName == "CurrentMsfsLiveryTitle")
CurrentMsfsLiveryTitleChanged?.Invoke(this, null);
}
}
public void ClearData()
{
CurrentMsfsAircraft = null;
CurrentMsfsLiveryTitle = null;
ElectricalMasterBatteryStatus = false;
IsEnteredFlight = false;
}
}
}