wabbajack/Wabbajack/Views/MainWindow.xaml.cs

159 lines
4.9 KiB
C#
Raw Normal View History

2019-11-02 20:55:14 +00:00
using System;
2020-02-08 04:35:08 +00:00
using System.Collections.Generic;
using System.ComponentModel;
2019-12-18 03:18:33 +00:00
using System.Threading.Tasks;
2019-07-22 22:17:46 +00:00
using System.Windows;
2019-11-25 05:43:56 +00:00
using MahApps.Metro.Controls;
2020-02-08 04:35:08 +00:00
using Newtonsoft.Json;
2019-07-22 22:17:46 +00:00
using Wabbajack.Common;
using Wabbajack.Common.StoreHandlers;
2019-12-18 03:18:33 +00:00
using Wabbajack.Lib.LibCefHelpers;
using Wabbajack.Util;
2019-09-27 04:07:54 +00:00
using Application = System.Windows.Application;
2019-12-14 21:40:10 +00:00
using Utils = Wabbajack.Common.Utils;
2019-07-22 22:17:46 +00:00
namespace Wabbajack
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// Interaction logic for MainWindow.xaml
2019-07-22 22:17:46 +00:00
/// </summary>
2019-11-25 05:43:56 +00:00
public partial class MainWindow : MetroWindow
2019-07-22 22:17:46 +00:00
{
private MainWindowVM _mwvm;
private MainSettings _settings;
2019-09-14 04:35:42 +00:00
2019-11-02 20:55:14 +00:00
public MainWindow()
{
// Wire any unhandled crashing exceptions to log before exiting
AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
{
// Don't do any special logging side effects
Utils.Error(((Exception)e.ExceptionObject), "Uncaught error");
};
Utils.Log($"Wabbajack Build - {ThisAssembly.Git.Sha}");
var p = SystemParametersConstructor.Create();
Utils.Log($"Detected Windows Version: {p.WindowsVersion}");
if (!(p.WindowsVersion.Major >= 6 && p.WindowsVersion.Minor >= 2))
Utils.Log(
$"You are not running a recent version of Windows (version 10 or greater), Wabbajack is not supported on OS versions older than Windows 10.");
Utils.Log(
$"System settings - ({p.SystemMemorySize.ToFileSizeString()} RAM), Display: {p.ScreenWidth} x {p.ScreenHeight} ({p.VideoMemorySize.ToFileSizeString()} VRAM - VideoMemorySizeMb={p.EnbLEVRAMSize})");
2019-12-18 03:18:33 +00:00
Warmup();
var (settings, loadedSettings) = MainSettings.TryLoadTypicalSettings().AsTask().Result;
// Load settings
if (CLIArguments.NoSettings || !loadedSettings)
{
_settings = new MainSettings
{
Version = Consts.SettingsVersion
};
RunWhenLoaded(DefaultSettings);
}
else
{
_settings = settings;
RunWhenLoaded(LoadSettings);
}
// Set datacontext
2019-11-24 08:12:28 +00:00
_mwvm = new MainWindowVM(this, _settings);
2019-11-21 15:04:33 +00:00
DataContext = _mwvm;
// Bring window to the front if it isn't already
this.Initialized += (s, e) =>
{
this.Activate();
this.Topmost = true;
this.Focus();
};
this.ContentRendered += (s, e) =>
{
this.Topmost = false;
};
}
2019-11-30 00:25:39 +00:00
public void Init(MainWindowVM vm, MainSettings settings)
{
DataContext = vm;
_mwvm = vm;
_settings = settings;
}
/// <summary>
/// Starts some background initialization tasks spinning so they're already prepped when actually needed
/// </summary>
private void Warmup()
{
TempFolder.Warmup();
// ToDo
// Currently this is a blocking call. Perhaps upgrade to be run in a background task.
// Would first need to ensure users of CEF properly await the background initialization before use
Helpers.Init();
StoreHandler.Warmup();
Task.Run(AssociateListsWithWabbajack).FireAndForget();
}
/// <summary>
/// Run logic to associate wabbajack lists with this app in the background
/// </summary>
private void AssociateListsWithWabbajack()
{
var appPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
try
{
if (!ModListAssociationManager.IsAssociated() || ModListAssociationManager.NeedsUpdating(appPath))
{
ModListAssociationManager.Associate(appPath);
}
}
catch (Exception e)
{
Utils.Log($"ExtensionManager had an exception:\n{e}");
}
}
private void RunWhenLoaded(Action a)
{
if (IsLoaded)
2019-11-30 00:25:39 +00:00
{
a();
}
else
{
this.Loaded += (sender, e) =>
{
a();
};
}
2019-07-22 22:17:46 +00:00
}
private void LoadSettings()
{
Width = _settings.Width;
Height = _settings.Height;
Left = _settings.PosX;
Top = _settings.PosY;
}
private void DefaultSettings()
{
Width = 1300;
Height = 960;
Left = 15;
Top = 15;
}
2019-09-27 04:07:54 +00:00
private void Window_Closing(object sender, CancelEventArgs e)
{
2019-12-11 04:59:15 +00:00
_mwvm.ShutdownApplication();
}
2019-07-22 22:17:46 +00:00
}
2019-11-21 15:04:33 +00:00
}