mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
48 lines
1.4 KiB
C#
48 lines
1.4 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 IsInCockpit { 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;
|
|
}
|
|
}
|
|
}
|