wabbajack/Wabbajack/Views/MainWindow.xaml.cs

125 lines
3.5 KiB
C#
Raw Normal View History

2019-11-02 20:55:14 +00:00
using System;
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;
2019-07-22 22:17:46 +00:00
using Wabbajack.Common;
2019-12-18 03:18:33 +00:00
using Wabbajack.Lib.LibCefHelpers;
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
Wabbajack.Common.Utils.Error(((Exception)e.ExceptionObject), "Uncaught error");
};
2019-12-18 03:18:33 +00:00
Wabbajack.Common.Utils.Log($"Wabbajack Build - {ThisAssembly.Git.Sha}");
// Run some init tasks in background
Task.Run(async () =>
{
await Helpers.Initialize();
2019-12-18 03:18:33 +00:00
var appPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
try
2019-12-14 21:40:10 +00:00
{
2019-12-18 03:18:33 +00:00
if (!ExtensionManager.IsAssociated() || ExtensionManager.NeedsUpdating(appPath))
{
ExtensionManager.Associate(appPath);
}
2019-12-14 21:40:10 +00:00
}
2019-12-18 03:18:33 +00:00
catch (Exception e)
{
Utils.Log($"ExtensionManager had an exception:\n{e}");
}
}).FireAndForget();
// Load settings
string[] args = Environment.GetCommandLineArgs();
if ((args.Length > 1 && args[1] == "nosettings")
|| !MainSettings.TryLoadTypicalSettings(out var settings))
{
_settings = new MainSettings();
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;
}
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
}