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

167 lines
6.9 KiB
C#
Raw Normal View History

2023-07-12 22:41:31 +00:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using MSFSPopoutPanelManager.MainApp.ViewModel;
using MSFSPopoutPanelManager.Orchestration;
using MSFSPopoutPanelManager.Shared;
2022-07-23 19:23:32 +00:00
using MSFSPopoutPanelManager.WindowsAgent;
2022-01-27 13:40:04 +00:00
using System;
2023-08-02 03:39:03 +00:00
using System.Diagnostics;
using System.Linq;
using System.Reflection;
2022-01-27 13:40:04 +00:00
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
2023-07-12 22:41:31 +00:00
using System.Windows.Threading;
2022-01-27 13:40:04 +00:00
2023-07-12 22:41:31 +00:00
namespace MSFSPopoutPanelManager.MainApp
2022-01-27 13:40:04 +00:00
{
public partial class App : Application
{
2023-07-12 22:41:31 +00:00
public static IHost AppHost { get; private set; }
2022-01-27 13:40:04 +00:00
2023-07-12 22:41:31 +00:00
public App()
{
}
protected override async void OnStartup(StartupEventArgs e)
2022-01-27 13:40:04 +00:00
{
2022-07-23 19:23:32 +00:00
DpiAwareness.Enable();
2022-01-27 13:40:04 +00:00
2023-07-12 22:41:31 +00:00
// Must run this first
2023-08-02 03:39:03 +00:00
if(IsRunning())
{
//app is already running! Exiting the application
Application.Current.Shutdown();
}
else
{
// Setup all unhandle exception handlers
Dispatcher.UnhandledException += HandleDispatcherException;
TaskScheduler.UnobservedTaskException += HandleTaskSchedulerUnobservedTaskException;
AppDomain.CurrentDomain.UnhandledException += HandledDomainException;
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
// Setup dependency injections
AppHost = Host.CreateDefaultBuilder()
.ConfigureServices((hostContext, services) =>
{
services.AddSingleton<AppWindow>();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
services.AddSingleton<MainOrchestrator>();
services.AddSingleton<OrchestratorUIHelper>(s => new OrchestratorUIHelper(s.GetRequiredService<MainOrchestrator>()));
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
services.AddSingleton<ApplicationViewModel>(s => new ApplicationViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddSingleton<HelpViewModel>(s => new HelpViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddSingleton<ProfileCardListViewModel>(s => new ProfileCardListViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddSingleton<ProfileCardViewModel>(s => new ProfileCardViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddSingleton<TrayIconViewModel>(s => new TrayIconViewModel(s.GetRequiredService<MainOrchestrator>()));
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
services.AddTransient<AddProfileViewModel>(s => new AddProfileViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddTransient<PopOutPanelListViewModel>(s => new PopOutPanelListViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddTransient<PopOutPanelCardViewModel>(s => new PopOutPanelCardViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddTransient<PanelConfigFieldViewModel>(s => new PanelConfigFieldViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddTransient<PanelCoorOverlayViewModel>(s => new PanelCoorOverlayViewModel(s.GetRequiredService<MainOrchestrator>()));
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
services.AddTransient<MessageWindowViewModel>(s => new MessageWindowViewModel(s.GetRequiredService<MainOrchestrator>()));
services.AddTransient<HudBarViewModel>(s => new HudBarViewModel(s.GetRequiredService<MainOrchestrator>()));
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
}).Build();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
await AppHost!.StartAsync();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
// Startup window (must come after DPI setup above)
MainWindow = AppHost.Services.GetRequiredService<AppWindow>();
MainWindow.Show();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
// Setup orchestration UI handler
var orchestrationUIHelper = App.AppHost.Services.GetRequiredService<OrchestratorUIHelper>();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
// Setup message window dialog
var messageWindow = new MessageWindow();
messageWindow.Show();
2023-07-12 22:41:31 +00:00
2023-08-02 03:39:03 +00:00
base.OnStartup(e);
}
2023-07-12 22:41:31 +00:00
}
2023-08-02 03:39:03 +00:00
private bool IsRunning()
2023-07-12 22:41:31 +00:00
{
2023-08-02 03:39:03 +00:00
return Process.GetProcesses().Count(p => p.ProcessName.Contains(Assembly.GetEntryAssembly().GetName().Name)) > 1;
2022-01-27 13:40:04 +00:00
}
2023-07-12 22:41:31 +00:00
private void HandleTaskSchedulerUnobservedTaskException(object? sender, UnobservedTaskExceptionEventArgs e)
2022-01-27 13:40:04 +00:00
{
2022-07-23 19:23:32 +00:00
FileLogger.WriteException(e.Exception.Message, e.Exception);
2022-01-27 13:40:04 +00:00
}
2023-07-12 22:41:31 +00:00
private void HandleDispatcherException(object sender, DispatcherUnhandledExceptionEventArgs e)
2022-01-27 13:40:04 +00:00
{
e.Handled = true;
2022-06-30 23:53:08 +00:00
if (e.Exception.Message != "E_INVALIDARG") // Ignore this error
{
2022-07-23 19:23:32 +00:00
FileLogger.WriteException(e.Exception.Message, e.Exception);
2022-06-30 23:53:08 +00:00
}
2022-01-27 13:40:04 +00:00
}
private void HandledDomainException(object sender, UnhandledExceptionEventArgs e)
{
var exception = (Exception)e.ExceptionObject;
2022-07-23 19:23:32 +00:00
FileLogger.WriteException(exception.Message, exception);
2022-01-27 13:40:04 +00:00
}
}
public enum PROCESS_DPI_AWARENESS
{
Process_DPI_Unaware = 0,
Process_System_DPI_Aware = 1,
Process_Per_Monitor_DPI_Aware = 2
}
public enum DPI_AWARENESS_CONTEXT
{
DPI_AWARENESS_CONTEXT_UNAWARE = 16,
DPI_AWARENESS_CONTEXT_SYSTEM_AWARE = 17,
DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE = 18,
DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 = 34
}
public static class DpiAwareness
{
2022-07-23 19:23:32 +00:00
public static void Enable()
2022-01-27 13:40:04 +00:00
{
// Windows 8.1 added support for per monitor DPI
if (Environment.OSVersion.Version >= new Version(6, 3, 0))
{
// Windows 10 creators update added support for per monitor v2
if (Environment.OSVersion.Version >= new Version(10, 0, 15063))
{
SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT.DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2);
}
else
{
SetProcessDpiAwareness(PROCESS_DPI_AWARENESS.Process_Per_Monitor_DPI_Aware);
}
}
else
{
SetProcessDPIAware();
}
2022-07-23 19:23:32 +00:00
var process = WindowProcessManager.GetApplicationProcess();
2022-01-27 13:40:04 +00:00
PROCESS_DPI_AWARENESS outValue;
GetProcessDpiAwareness(process.Handle, out outValue);
}
[DllImport("User32.dll")]
internal static extern bool SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT dpiFlag);
[DllImport("SHCore.dll")]
internal static extern bool SetProcessDpiAwareness(PROCESS_DPI_AWARENESS awareness);
[DllImport("User32.dll")]
internal static extern bool SetProcessDPIAware();
[DllImport("SHCore.dll", SetLastError = true)]
internal static extern void GetProcessDpiAwareness(IntPtr hprocess, out PROCESS_DPI_AWARENESS awareness);
}
2022-06-30 23:53:08 +00:00
}