2019-07-22 22:17:46 +00:00
|
|
|
|
using System;
|
2019-08-04 22:08:03 +00:00
|
|
|
|
using System.ComponentModel;
|
2019-07-22 22:17:46 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Windows;
|
2019-09-27 04:07:54 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
2019-07-22 22:17:46 +00:00
|
|
|
|
using Wabbajack.Common;
|
2019-09-27 04:07:54 +00:00
|
|
|
|
using Application = System.Windows.Application;
|
|
|
|
|
using MessageBox = System.Windows.MessageBox;
|
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>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2019-09-14 04:35:42 +00:00
|
|
|
|
private AppState _state;
|
|
|
|
|
|
2019-09-27 04:07:54 +00:00
|
|
|
|
public enum RunMode
|
|
|
|
|
{
|
|
|
|
|
Compile,
|
|
|
|
|
Install
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MainWindow(RunMode mode, string source)
|
2019-07-22 22:17:46 +00:00
|
|
|
|
{
|
2019-07-31 03:59:19 +00:00
|
|
|
|
var args = Environment.GetCommandLineArgs();
|
2019-09-14 04:35:42 +00:00
|
|
|
|
var DebugMode = false;
|
2019-07-31 03:59:19 +00:00
|
|
|
|
string MO2Folder = null, InstallFolder = null, MO2Profile = null;
|
|
|
|
|
|
2019-07-22 22:17:46 +00:00
|
|
|
|
InitializeComponent();
|
2019-07-26 20:59:14 +00:00
|
|
|
|
|
2019-07-22 22:17:46 +00:00
|
|
|
|
var context = new AppState(Dispatcher, "Building");
|
2019-08-09 21:13:02 +00:00
|
|
|
|
context.LogMsg($"Wabbajack Build - {ThisAssembly.Git.Sha}");
|
2019-08-04 22:08:03 +00:00
|
|
|
|
SetupHandlers(context);
|
2019-09-14 04:35:42 +00:00
|
|
|
|
DataContext = context;
|
2019-08-02 23:04:04 +00:00
|
|
|
|
WorkQueue.Init((id, msg, progress) => context.SetProgress(id, msg, progress),
|
2019-09-14 04:35:42 +00:00
|
|
|
|
(max, current) => context.SetQueueSize(max, current));
|
2019-07-22 22:17:46 +00:00
|
|
|
|
|
2019-08-20 04:57:08 +00:00
|
|
|
|
Utils.SetLoggerFn(s => context.LogMsg(s));
|
|
|
|
|
Utils.SetStatusFn((msg, progress) => WorkQueue.Report(msg, progress));
|
2019-09-18 03:12:25 +00:00
|
|
|
|
UIUtils.Dispatcher = Dispatcher;
|
2019-08-20 04:57:08 +00:00
|
|
|
|
|
2019-10-05 15:05:51 +00:00
|
|
|
|
_state._nexusSiteURL = "https://github.com/wabbajack-tools/wabbajack";
|
2019-07-30 21:45:04 +00:00
|
|
|
|
|
2019-09-18 03:12:25 +00:00
|
|
|
|
new Thread(() =>
|
|
|
|
|
{
|
2019-09-27 04:07:54 +00:00
|
|
|
|
if (mode == RunMode.Compile)
|
|
|
|
|
{
|
|
|
|
|
Utils.Log("Compiler ready to execute");
|
|
|
|
|
context.Location = Path.GetDirectoryName(source);
|
2019-10-05 15:05:51 +00:00
|
|
|
|
context.LocationLabel = "MO2 Profile:";
|
2019-09-27 04:07:54 +00:00
|
|
|
|
}
|
|
|
|
|
else if (mode == RunMode.Install)
|
|
|
|
|
{
|
|
|
|
|
context.UIReady = false;
|
2019-10-05 15:05:51 +00:00
|
|
|
|
context.LocationLabel = "Installation Location:";
|
2019-10-01 22:39:25 +00:00
|
|
|
|
var modlist = Installer.LoadFromFile(source);
|
2019-09-27 04:07:54 +00:00
|
|
|
|
if (modlist == null)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Invalid Modlist, or file not found.", "Invalid Modlist", MessageBoxButton.OK,
|
|
|
|
|
MessageBoxImage.Error);
|
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
|
{
|
|
|
|
|
context.Running = false;
|
|
|
|
|
ExitWhenClosing = false;
|
2019-10-07 11:48:39 +00:00
|
|
|
|
var window = new ModeSelectionWindow
|
|
|
|
|
{
|
|
|
|
|
ShowActivated = true
|
|
|
|
|
};
|
2019-09-27 04:07:54 +00:00
|
|
|
|
window.Show();
|
|
|
|
|
Close();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-10-01 22:39:25 +00:00
|
|
|
|
context.ConfigureForInstall(source, modlist);
|
2019-09-27 04:07:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-18 03:12:25 +00:00
|
|
|
|
context.UIReady = true;
|
|
|
|
|
}).Start();
|
2019-07-22 22:17:46 +00:00
|
|
|
|
}
|
2019-08-04 22:08:03 +00:00
|
|
|
|
|
|
|
|
|
private void SetupHandlers(AppState state)
|
|
|
|
|
{
|
|
|
|
|
_state = state;
|
2019-09-14 04:35:42 +00:00
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += AppHandler;
|
2019-08-04 22:08:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AppHandler(object sender, UnhandledExceptionEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
_state.LogMsg("Uncaught error:");
|
2019-09-14 04:35:42 +00:00
|
|
|
|
_state.LogMsg(((Exception) e.ExceptionObject).ExceptionToString());
|
2019-08-04 22:08:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 04:07:54 +00:00
|
|
|
|
|
|
|
|
|
internal bool ExitWhenClosing = true;
|
|
|
|
|
|
2019-08-04 22:08:03 +00:00
|
|
|
|
private void Window_Closing(object sender, CancelEventArgs e)
|
|
|
|
|
{
|
2019-09-27 04:07:54 +00:00
|
|
|
|
if (ExitWhenClosing)
|
|
|
|
|
Application.Current.Shutdown();
|
2019-08-04 22:08:03 +00:00
|
|
|
|
}
|
2019-07-22 22:17:46 +00:00
|
|
|
|
}
|
2019-09-14 04:35:42 +00:00
|
|
|
|
}
|