2019-11-02 20:55:14 +00:00
|
|
|
|
using System;
|
2020-02-08 04:35:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
2019-08-04 22:08:03 +00:00
|
|
|
|
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;
|
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
|
|
|
|
{
|
2019-10-23 04:15:42 +00:00
|
|
|
|
private MainWindowVM _mwvm;
|
2019-11-06 03:22:38 +00:00
|
|
|
|
private MainSettings _settings;
|
2019-09-14 04:35:42 +00:00
|
|
|
|
|
2019-11-02 20:55:14 +00:00
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
2019-12-27 00:41:33 +00:00
|
|
|
|
Helpers.Init();
|
2019-12-01 22:20:26 +00:00
|
|
|
|
// Wire any unhandled crashing exceptions to log before exiting
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
|
|
|
|
|
{
|
|
|
|
|
// Don't do any special logging side effects
|
2019-12-21 18:50:25 +00:00
|
|
|
|
Utils.Error(((Exception)e.ExceptionObject), "Uncaught error");
|
2019-12-01 22:20:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-21 18:50:25 +00:00
|
|
|
|
Utils.Log($"Wabbajack Build - {ThisAssembly.Git.Sha}");
|
2019-12-18 03:18:33 +00:00
|
|
|
|
|
2020-01-25 23:25:51 +00:00
|
|
|
|
// Run logic to associate wabbajack lists with this app in the background
|
2019-12-18 03:18:33 +00:00
|
|
|
|
Task.Run(async () =>
|
2019-12-01 22:20:26 +00:00
|
|
|
|
{
|
2019-12-18 03:18:33 +00:00
|
|
|
|
var appPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
|
|
|
|
|
try
|
2019-12-14 21:40:10 +00:00
|
|
|
|
{
|
2020-01-20 01:49:12 +00:00
|
|
|
|
if (!ModListAssociationManager.IsAssociated() || ModListAssociationManager.NeedsUpdating(appPath))
|
2019-12-18 03:18:33 +00:00
|
|
|
|
{
|
2020-01-20 01:49:12 +00:00
|
|
|
|
ModListAssociationManager.Associate(appPath);
|
2019-12-18 03:18:33 +00:00
|
|
|
|
}
|
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();
|
2019-12-01 22:20:26 +00:00
|
|
|
|
|
|
|
|
|
// Load settings
|
2020-02-08 04:35:08 +00:00
|
|
|
|
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
|
|
|
|
|
{
|
|
|
|
|
Converters = new List<JsonConverter>
|
|
|
|
|
{
|
|
|
|
|
new PercentJsonConverter()
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-01-05 13:10:49 +00:00
|
|
|
|
if (CLIArguments.NoSettings || !MainSettings.TryLoadTypicalSettings(out var settings))
|
2019-12-01 22:20:26 +00:00
|
|
|
|
{
|
|
|
|
|
_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;
|
2019-12-18 03:25:55 +00:00
|
|
|
|
|
|
|
|
|
// 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-12-01 22:20:26 +00:00
|
|
|
|
}
|
2019-11-30 00:25:39 +00:00
|
|
|
|
|
2019-12-01 22:20:26 +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
|
|
|
|
{
|
2019-12-01 22:20:26 +00:00
|
|
|
|
a();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.Loaded += (sender, e) =>
|
|
|
|
|
{
|
|
|
|
|
a();
|
|
|
|
|
};
|
|
|
|
|
}
|
2019-07-22 22:17:46 +00:00
|
|
|
|
}
|
2019-08-04 22:08:03 +00:00
|
|
|
|
|
2019-12-01 22:20:26 +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
|
|
|
|
|
2019-08-04 22:08:03 +00:00
|
|
|
|
private void Window_Closing(object sender, CancelEventArgs e)
|
|
|
|
|
{
|
2019-12-11 04:59:15 +00:00
|
|
|
|
_mwvm.ShutdownApplication();
|
2019-08-04 22:08:03 +00:00
|
|
|
|
}
|
2019-07-22 22:17:46 +00:00
|
|
|
|
}
|
2019-11-21 15:04:33 +00:00
|
|
|
|
}
|