1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 06:00:45 +00:00

Update circle overlay logic

This commit is contained in:
hawkeye 2023-08-18 01:03:56 -04:00
parent 0e68f686b4
commit 419262da61
3 changed files with 30 additions and 16 deletions

View file

@ -48,7 +48,6 @@ namespace MSFSPopoutPanelManager.MainApp.ViewModel
if (panel?.PanelId == panelConfig.Id)
{
panel.Close();
break;
}
}
}
@ -114,6 +113,9 @@ namespace MSFSPopoutPanelManager.MainApp.ViewModel
Application.Current.Dispatcher.Invoke(() =>
{
// Remove existing overlay if exist
HandleRemoveOverlay(this, panelConfig);
PanelCoorOverlay overlay = new PanelCoorOverlay(panelConfig.Id, !nonEdit);
overlay.IsEditingPanelLocation = true;
overlay.WindowStartupLocation = WindowStartupLocation.Manual;

View file

@ -18,6 +18,7 @@ namespace MSFSPopoutPanelManager.Orchestration
private AppSettingData _appSettingData;
private FlightSimData _flightSimData;
private int _prePanelConfigurationCockpitZoomLevel = 50;
private bool _isEditingPanelSourceLock = false;
public PanelSourceOrchestrator(ProfileData profileData, AppSettingData appSettingData, FlightSimData flightSimData)
{
@ -49,7 +50,7 @@ namespace MSFSPopoutPanelManager.Orchestration
public void StartPanelSelection(PanelConfig panelConfig)
{
_profileData.ActiveProfile.IsEditingPanelSource = true;
ActiveProfile.IsEditingPanelSource = true;
InputHookManager.OnLeftClick += (sender, e) => HandleOnPanelSelectionAdded(panelConfig, e);
InputHookManager.StartMouseHook();
@ -57,6 +58,11 @@ namespace MSFSPopoutPanelManager.Orchestration
public async Task StartEditPanelSources()
{
if (_isEditingPanelSourceLock)
return;
_isEditingPanelSourceLock = true;
await Task.Run(() =>
{
// Set Windowed Display Mode window's configuration if needed
@ -79,24 +85,22 @@ namespace MSFSPopoutPanelManager.Orchestration
WindowActionManager.BringWindowToForeground(ApplicationHandle);
}
foreach (var panel in _profileData.ActiveProfile.PanelConfigs)
{
if (panel.HasPanelSource)
OnOverlayShowed?.Invoke(this, panel);
}
// Turn off TrackIR if TrackIR is started
FlightSimOrchestrator.TurnOffTrackIR();
});
foreach (var panel in _profileData.ActiveProfile.PanelConfigs)
{
if (panel.HasPanelSource)
OnOverlayShowed?.Invoke(this, panel);
}
// Turn off TrackIR if TrackIR is started
FlightSimOrchestrator.TurnOffTrackIR();
}
public async Task EndEditPanelSources()
{
foreach (var panel in _profileData.ActiveProfile.PanelConfigs)
{
OnOverlayRemoved?.Invoke(this, panel);
}
if (!_isEditingPanelSourceLock)
return;
// Save last auto panning camera angle
if (AppSetting.PopOutSetting.AutoPanning.IsEnabled)
@ -113,11 +117,17 @@ namespace MSFSPopoutPanelManager.Orchestration
{
// !!! Fix MSFS bug that without setting zoom, everything will be off by few pixels at a time
SetCockpitZoomLevel(_flightSimData.CockpitCameraZoom);
InputEmulationManager.SaveCustomView(AppSetting.PopOutSetting.AutoPanning.KeyBinding);
}
}
_isEditingPanelSourceLock = false;
foreach (var panel in _profileData.ActiveProfile.PanelConfigs)
{
OnOverlayRemoved?.Invoke(this, panel);
}
await Task.Run(() =>
{
Thread.Sleep(500); // wait for custom view save to be completed
@ -146,6 +156,7 @@ namespace MSFSPopoutPanelManager.Orchestration
if (ActiveProfile != null)
{
ActiveProfile.IsEditingPanelSource = false;
_isEditingPanelSourceLock = false;
foreach (var panelConfig in ActiveProfile.PanelConfigs)
OnOverlayRemoved?.Invoke(this, panelConfig);

View file

@ -49,6 +49,7 @@ namespace MSFSPopoutPanelManager.WindowsAgent
Debug.WriteLine($"Pop out panel at: {x}/{y} ...");
PInvoke.SetForegroundWindow(WindowProcessManager.SimulatorProcess.Handle);
Thread.Sleep(200);
MoveAppWindowFromLeftClickPoint(x, y);