mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 13:20:11 +00:00
88 lines
2.6 KiB
C#
88 lines
2.6 KiB
C#
using MSFSPopoutPanelManager.DomainModel.SimConnect;
|
|
using MSFSPopoutPanelManager.Shared;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using MSFSPopoutPanelManager.DomainModel.DynamicLod;
|
|
using MSFSPopoutPanelManager.SimConnectAgent;
|
|
|
|
namespace MSFSPopoutPanelManager.Orchestration
|
|
{
|
|
public class FlightSimData : ObservableObject
|
|
{
|
|
public FlightSimData()
|
|
{
|
|
Setup();
|
|
InitializeChildPropertyChangeBinding();
|
|
IsSimConnectActive = false;
|
|
}
|
|
|
|
public bool IsSimConnectActive { get; set; }
|
|
|
|
public string AircraftName { get; set; }
|
|
|
|
public bool HasAircraftName => !String.IsNullOrEmpty(AircraftName);
|
|
|
|
public bool ElectricalMasterBatteryStatus { get; set; }
|
|
|
|
public bool AvionicsMasterSwitchStatus { get; set; }
|
|
|
|
public bool TrackIRStatus { get; set; }
|
|
|
|
public CameraState CameraState { get; set; }
|
|
|
|
public int CockpitCameraZoom { get; set; }
|
|
|
|
public int CameraViewTypeAndIndex0 { get; set; }
|
|
|
|
public int CameraViewTypeAndIndex1 { get; set; }
|
|
|
|
public int CameraViewTypeAndIndex1Max { get; set; }
|
|
|
|
public int CameraViewTypeAndIndex2Max { get; set; }
|
|
|
|
public bool PlaneInParkingSpot { get; set; }
|
|
|
|
public bool IsSimulatorStarted { get; set; }
|
|
|
|
public bool IsSimConnectDataReceived { get; set; }
|
|
|
|
public bool IsInCockpit { get; set; }
|
|
|
|
public bool IsFlightStarted { get; set; }
|
|
|
|
public IHudBarData HudBarData { get; set; }
|
|
|
|
public DynamicLodSimData DynamicLodSimData { get; set; } = new();
|
|
|
|
[IgnorePropertyChanged]
|
|
internal ProfileData ProfileDataRef { get; set; }
|
|
|
|
public new void OnPropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
base.OnPropertyChanged(this, new PropertyChangedEventArgs(e.PropertyName));
|
|
|
|
// Automatic switching of active profile when SimConnect active aircraft change
|
|
if (e.PropertyName == "AircraftName")
|
|
ProfileDataRef.AutoSwitchProfile();
|
|
}
|
|
|
|
public void Reset()
|
|
{
|
|
Setup();
|
|
}
|
|
|
|
private void Setup()
|
|
{
|
|
AircraftName = null;
|
|
ElectricalMasterBatteryStatus = false;
|
|
AvionicsMasterSwitchStatus = false;
|
|
TrackIRStatus = false;
|
|
IsInCockpit = false;
|
|
PlaneInParkingSpot = false;
|
|
CameraState = CameraState.Unknown;
|
|
IsSimulatorStarted = false;
|
|
CameraViewTypeAndIndex1Max = 0;
|
|
CameraViewTypeAndIndex2Max = 0;
|
|
}
|
|
}
|
|
}
|