mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
124 lines
4.4 KiB
C#
124 lines
4.4 KiB
C#
using MSFSPopoutPanelManager.Shared;
|
|
using MSFSPopoutPanelManager.SimConnectAgent;
|
|
using System;
|
|
|
|
namespace MSFSPopoutPanelManager.Orchestration
|
|
{
|
|
public class FlightSimOrchestrator : ObservableObject
|
|
{
|
|
private SimConnectProvider _simConnectProvider;
|
|
|
|
public FlightSimOrchestrator()
|
|
{
|
|
_simConnectProvider = new SimConnectProvider();
|
|
}
|
|
|
|
internal ProfileData ProfileData { get; set; }
|
|
|
|
internal AppSettingData AppSettingData { get; set; }
|
|
|
|
internal FlightSimData FlightSimData { get; set; }
|
|
|
|
internal SimConnectProvider SimConnectProvider { get { return _simConnectProvider; } }
|
|
|
|
public event EventHandler OnSimulatorStarted;
|
|
public event EventHandler OnSimulatorStopped;
|
|
public event EventHandler OnFlightStarted;
|
|
public event EventHandler OnFlightStopped;
|
|
public event EventHandler OnFlightStartedForAutoPopOut;
|
|
|
|
public void StartSimConnectServer()
|
|
{
|
|
_simConnectProvider.OnConnected += (sender, e) =>
|
|
{
|
|
FlightSimData.IsSimulatorStarted = true;
|
|
OnSimulatorStarted?.Invoke(this, null);
|
|
};
|
|
_simConnectProvider.OnDisconnected += (sender, e) =>
|
|
{
|
|
FlightSimData.IsSimulatorStarted = false;
|
|
FlightSimData.ClearData();
|
|
|
|
OnSimulatorStopped?.Invoke(this, null);
|
|
};
|
|
_simConnectProvider.OnSimConnectDataRefreshed += (sender, e) =>
|
|
{
|
|
var title = Convert.ToString(e.Find(d => d.PropName == "Title").Value);
|
|
var electricalMasterBattery = Convert.ToBoolean(e.Find(d => d.PropName == "ElectricalMasterBattery").Value);
|
|
|
|
// Automatic switching of active profile when SimConnect active aircraft livery changes
|
|
if (FlightSimData.CurrentMsfsPlaneTitle != title)
|
|
{
|
|
FlightSimData.CurrentMsfsPlaneTitle = title;
|
|
ProfileData.AutoSwitchProfile(title);
|
|
}
|
|
|
|
if (electricalMasterBattery != FlightSimData.ElectricalMasterBatteryStatus)
|
|
FlightSimData.ElectricalMasterBatteryStatus = electricalMasterBattery;
|
|
};
|
|
_simConnectProvider.OnFlightStarted += (sender, e) => OnFlightStarted?.Invoke(this, null);
|
|
_simConnectProvider.OnFlightStopped += HandleOnFlightStopped;
|
|
_simConnectProvider.Start();
|
|
}
|
|
|
|
public void EndSimConnectServer(bool appExit)
|
|
{
|
|
_simConnectProvider.Stop(appExit);
|
|
}
|
|
|
|
public void TurnOnTrackIR()
|
|
{
|
|
if (AppSettingData.AppSetting.AutoDisableTrackIR)
|
|
_simConnectProvider.TurnOnTrackIR();
|
|
}
|
|
|
|
public void TurnOffTrackIR()
|
|
{
|
|
if (AppSettingData.AppSetting.AutoDisableTrackIR)
|
|
_simConnectProvider.TurnOffTrackIR();
|
|
}
|
|
|
|
public void TurnOnPower()
|
|
{
|
|
if (ProfileData.ActiveProfile != null)
|
|
_simConnectProvider.TurnOnPower(ProfileData.ActiveProfile.PowerOnRequiredForColdStart);
|
|
}
|
|
|
|
public void TurnOnAvionics()
|
|
{
|
|
if (ProfileData.ActiveProfile != null)
|
|
_simConnectProvider.TurnOnAvionics(ProfileData.ActiveProfile.PowerOnRequiredForColdStart);
|
|
}
|
|
|
|
public void TurnOffPower()
|
|
{
|
|
if (ProfileData.ActiveProfile != null)
|
|
_simConnectProvider.TurnOffpower(ProfileData.ActiveProfile.PowerOnRequiredForColdStart);
|
|
}
|
|
|
|
public void TurnOffAvionics()
|
|
{
|
|
if (ProfileData.ActiveProfile != null)
|
|
_simConnectProvider.TurnOffAvionics(ProfileData.ActiveProfile.PowerOnRequiredForColdStart);
|
|
}
|
|
|
|
public void AutoPanelPopOutActivation(bool activate)
|
|
{
|
|
if (activate)
|
|
_simConnectProvider.OnFlightStarted += HandleOnFlightStartedForAutoPopOut;
|
|
else
|
|
_simConnectProvider.OnFlightStarted -= HandleOnFlightStartedForAutoPopOut;
|
|
}
|
|
|
|
private void HandleOnFlightStartedForAutoPopOut(object sender, EventArgs e)
|
|
{
|
|
OnFlightStartedForAutoPopOut?.Invoke(this, null);
|
|
}
|
|
|
|
private void HandleOnFlightStopped(object sender, EventArgs e)
|
|
{
|
|
FlightSimData.IsEnteredFlight = false;
|
|
OnFlightStopped?.Invoke(this, null);
|
|
}
|
|
}
|
|
}
|