mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
189 lines
6.4 KiB
C#
189 lines
6.4 KiB
C#
using MSFSPopoutPanelManager.Shared;
|
|
using MSFSPopoutPanelManager.UserDataAgent;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
|
|
namespace MSFSPopoutPanelManager.Orchestration
|
|
{
|
|
public class ProfileData : ObservableObject
|
|
{
|
|
public event PropertyChangedEventHandler ActiveProfileChanged;
|
|
|
|
public ProfileData()
|
|
{
|
|
Profiles = new ObservableCollection<Profile>();
|
|
}
|
|
|
|
public ObservableCollection<Profile> Profiles { get; private set; }
|
|
|
|
public FlightSimData FlightSimData { private get; set; }
|
|
|
|
public AppSettingData AppSettingData { private get; set; }
|
|
|
|
public int AddProfile(string profileName)
|
|
{
|
|
var newProfileId = ProfileManager.AddProfile(profileName, Profiles);
|
|
UpdateActiveProfile(newProfileId);
|
|
AppSettingData.AppSetting.LastUsedProfileId = newProfileId;
|
|
return newProfileId;
|
|
}
|
|
|
|
public int AddProfile(string profileName, int copyFromProfileId)
|
|
{
|
|
var newProfileId = ProfileManager.AddProfile(profileName, copyFromProfileId, Profiles);
|
|
UpdateActiveProfile(newProfileId);
|
|
AppSettingData.AppSetting.LastUsedProfileId = newProfileId;
|
|
return newProfileId;
|
|
}
|
|
|
|
public bool DeleteProfile(int profileId)
|
|
{
|
|
if (ActiveProfile == null)
|
|
return false;
|
|
|
|
var success = ProfileManager.DeleteProfile(profileId, Profiles);
|
|
UpdateActiveProfile(-1);
|
|
return true;
|
|
}
|
|
|
|
public void AddProfileBinding(string aircraft, int activeProfileId)
|
|
{
|
|
if (ActiveProfile == null)
|
|
return;
|
|
|
|
ProfileManager.AddProfileBinding(aircraft, activeProfileId, Profiles);
|
|
RefreshProfile();
|
|
}
|
|
|
|
public void DeleteProfileBinding(string aircraft, int activeProfileId)
|
|
{
|
|
if (ActiveProfile == null)
|
|
return;
|
|
|
|
ProfileManager.DeleteProfileBinding(aircraft, activeProfileId, Profiles);
|
|
RefreshProfile();
|
|
}
|
|
|
|
public void ReadProfiles()
|
|
{
|
|
Profiles = new ObservableCollection<Profile>(ProfileManager.ReadProfiles());
|
|
}
|
|
|
|
public void WriteProfiles()
|
|
{
|
|
ProfileManager.WriteProfiles(Profiles);
|
|
}
|
|
|
|
public void UpdateActiveProfile(int profileId)
|
|
{
|
|
if (profileId == -1 && Profiles.Count > 0)
|
|
ActiveProfile = Profiles.FirstOrDefault(p => p.ProfileId == Profiles[0].ProfileId);
|
|
else if (profileId == -1 || Profiles.Count == 0)
|
|
ActiveProfile = null;
|
|
else
|
|
ActiveProfile = Profiles.FirstOrDefault(p => p.ProfileId == profileId);
|
|
|
|
// Set active profile flag, this is used only for MVVM binding
|
|
Profiles.ToList().ForEach(p => p.IsActive = false);
|
|
|
|
if (ActiveProfile != null)
|
|
{
|
|
ActiveProfile.IsActive = true;
|
|
AppSettingData.AppSetting.LastUsedProfileId = ActiveProfile.ProfileId;
|
|
}
|
|
else
|
|
{
|
|
AppSettingData.AppSetting.LastUsedProfileId = -1;
|
|
}
|
|
|
|
ActiveProfileChanged?.Invoke(this, null);
|
|
}
|
|
|
|
public Profile ActiveProfile { get; private set; }
|
|
|
|
public bool HasActiveProfile { get { return ActiveProfile != null; } }
|
|
|
|
public bool IsAircraftBoundToProfile
|
|
{
|
|
get
|
|
{
|
|
if (ActiveProfile == null)
|
|
return false;
|
|
|
|
return ActiveProfile.BindingAircrafts.Any(p => p == FlightSimData.CurrentMsfsAircraft);
|
|
}
|
|
}
|
|
|
|
public bool IsAllowedDeleteAircraftBinding
|
|
{
|
|
get
|
|
{
|
|
if (ActiveProfile == null || !FlightSimData.HasCurrentMsfsAircraft)
|
|
return false;
|
|
|
|
var uProfile = Profiles.FirstOrDefault(u => u.BindingAircrafts.Any(p => p == FlightSimData.CurrentMsfsAircraft));
|
|
if (uProfile != null && uProfile.ProfileId != ActiveProfile.ProfileId)
|
|
return false;
|
|
|
|
return ActiveProfile.BindingAircrafts.Any(p => p == FlightSimData.CurrentMsfsAircraft);
|
|
}
|
|
}
|
|
|
|
public bool IsAllowedAddAircraftBinding
|
|
{
|
|
get
|
|
{
|
|
if (ActiveProfile == null || !FlightSimData.HasCurrentMsfsAircraft)
|
|
return false;
|
|
|
|
var uProfile = Profiles.FirstOrDefault(u => u.BindingAircrafts.Any(p => p == FlightSimData.CurrentMsfsAircraft));
|
|
if (uProfile != null && uProfile.ProfileId != ActiveProfile.ProfileId)
|
|
return false;
|
|
|
|
if (FlightSimData == null || ActiveProfile.BindingAircrafts == null)
|
|
return false;
|
|
|
|
return ActiveProfile == null ? false : !ActiveProfile.BindingAircrafts.Any(p => p == FlightSimData.CurrentMsfsAircraft);
|
|
}
|
|
}
|
|
|
|
public void RefreshProfile()
|
|
{
|
|
int currentProfileId;
|
|
if (ActiveProfile == null)
|
|
currentProfileId = -1;
|
|
else
|
|
currentProfileId = ActiveProfile.ProfileId;
|
|
|
|
ActiveProfile = null;
|
|
UpdateActiveProfile(currentProfileId);
|
|
}
|
|
|
|
public void AutoSwitchProfile(string activeAircraft)
|
|
{
|
|
// Automatic switching of active profile when SimConnect active aircraft changes
|
|
if (Profiles != null)
|
|
{
|
|
var matchedProfile = Profiles.FirstOrDefault(p => p.BindingAircrafts.Any(t => t == activeAircraft));
|
|
if (matchedProfile != null)
|
|
UpdateActiveProfile(matchedProfile.ProfileId);
|
|
}
|
|
}
|
|
|
|
// This is to migrate profile binding from aircraft livery to aircraft name
|
|
// Started in v3.4.2
|
|
public void MigrateLiveryToAircraftBinding(string liveryName, string aircraftName)
|
|
{
|
|
if (Profiles != null)
|
|
{
|
|
var matchedProfile = Profiles.FirstOrDefault(p => p.BindingAircraftLiveries.Any(t => t == liveryName));
|
|
if (matchedProfile != null && !matchedProfile.BindingAircrafts.Any(a => a == aircraftName))
|
|
{
|
|
matchedProfile.BindingAircrafts.Add(aircraftName);
|
|
WriteProfiles();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|