wabbajack/Wabbajack/View Models/MainWindowVM.cs

178 lines
6.0 KiB
C#
Raw Normal View History

using DynamicData;
using DynamicData.Binding;
using ReactiveUI;
2019-11-02 23:23:11 +00:00
using ReactiveUI.Fody.Helpers;
2019-10-22 02:12:55 +00:00
using System;
2019-12-20 20:51:10 +00:00
using System.Collections.Generic;
2019-12-14 23:31:53 +00:00
using System.Diagnostics;
2019-10-22 02:12:55 +00:00
using System.Linq;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using System.Threading.Tasks;
2019-12-04 04:12:08 +00:00
using System.Windows;
2019-12-14 23:31:53 +00:00
using System.Windows.Input;
using System.Windows.Threading;
using Wabbajack.Common;
2019-12-04 04:12:08 +00:00
using Wabbajack.Common.StatusFeed;
2019-10-22 02:12:55 +00:00
using Wabbajack.Lib;
namespace Wabbajack
{
/// <summary>
/// Main View Model for the application.
/// Keeps track of which sub view is being shown in the window, and has some singleton wiring like WorkQueue and Logging.
/// </summary>
2019-10-22 02:12:55 +00:00
public class MainWindowVM : ViewModel
{
public MainWindow MainWindow { get; }
2019-10-22 02:12:55 +00:00
public MainSettings Settings { get; }
2019-11-24 08:12:28 +00:00
[Reactive]
public ViewModel ActivePane { get; set; }
2019-10-22 02:12:55 +00:00
2019-12-04 04:12:08 +00:00
public ObservableCollectionExtended<IStatusMessage> Log { get; } = new ObservableCollectionExtended<IStatusMessage>();
2019-11-24 08:12:28 +00:00
public readonly Lazy<CompilerVM> Compiler;
public readonly Lazy<InstallerVM> Installer;
2019-11-30 09:08:04 +00:00
public readonly Lazy<ModListGalleryVM> Gallery;
2019-11-24 08:12:28 +00:00
public readonly ModeSelectionVM ModeSelectionVM;
2019-12-08 17:00:22 +00:00
public readonly UserInterventionHandlers UserInterventionHandlers;
2019-12-20 20:51:10 +00:00
public readonly LoginManagerVM LoginManagerVM;
public readonly List<ViewModel> NavigationTrail = new List<ViewModel>();
2019-12-14 23:31:53 +00:00
public ICommand CopyVersionCommand { get; }
2019-12-20 20:51:10 +00:00
public ICommand ShowLoginManagerVM { get; }
public ICommand GoBackCommand { get; }
2019-12-14 23:31:53 +00:00
public string VersionDisplay { get; }
2019-11-24 08:12:28 +00:00
public MainWindowVM(MainWindow mainWindow, MainSettings settings)
2019-10-22 02:12:55 +00:00
{
2019-11-21 15:04:33 +00:00
MainWindow = mainWindow;
Settings = settings;
2019-11-24 08:12:28 +00:00
Installer = new Lazy<InstallerVM>(() => new InstallerVM(this));
Compiler = new Lazy<CompilerVM>(() => new CompilerVM(this));
2019-11-30 09:08:04 +00:00
Gallery = new Lazy<ModListGalleryVM>(() => new ModListGalleryVM(this));
2019-11-24 08:12:28 +00:00
ModeSelectionVM = new ModeSelectionVM(this);
UserInterventionHandlers = new UserInterventionHandlers(this);
2019-12-20 20:51:10 +00:00
LoginManagerVM = new LoginManagerVM(this);
// Set up logging
Utils.LogMessages
.ObserveOn(RxApp.TaskpoolScheduler)
.ToObservableChangeSet()
.Buffer(TimeSpan.FromMilliseconds(250), RxApp.TaskpoolScheduler)
.Where(l => l.Count > 0)
.ObserveOn(RxApp.MainThreadScheduler)
.FlattenBufferResult()
2019-11-21 15:04:33 +00:00
.Bind(Log)
.Subscribe()
2019-11-21 15:04:33 +00:00
.DisposeWith(CompositeDisposable);
2019-11-17 04:16:42 +00:00
2019-12-04 04:12:08 +00:00
Utils.LogMessages
2019-12-08 17:00:22 +00:00
.OfType<IUserIntervention>()
.ObserveOnGuiThread()
.SelectTask(async msg =>
{
try
{
await UserInterventionHandlers.Handle(msg);
}
catch (Exception ex)
when (ex.GetType() != typeof(TaskCanceledException))
{
Utils.Error(ex, $"Error while handling user intervention of type {msg?.GetType()}");
try
{
if (!msg.Handled)
{
msg.Cancel();
}
}
catch (Exception cancelEx)
{
Utils.Error(cancelEx, $"Error while cancelling user intervention of type {msg?.GetType()}");
}
}
})
.Subscribe()
.DisposeWith(CompositeDisposable);
if (IsStartingFromModlist(out var path))
{
2019-12-03 05:40:59 +00:00
Installer.Value.ModListLocation.TargetPath = path;
ActivePane = Installer.Value;
}
else
{
// Start on mode selection
ActivePane = ModeSelectionVM;
}
2019-12-14 23:31:53 +00:00
try
{
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
VersionDisplay = $"v{fvi.FileVersion}";
}
catch (Exception ex)
{
Utils.Error(ex);
VersionDisplay = "ERROR";
}
CopyVersionCommand = ReactiveCommand.Create(() =>
{
Clipboard.SetText($"Wabbajack {VersionDisplay}\n{ThisAssembly.Git.Sha}");
});
}
private static bool IsStartingFromModlist(out string modlistPath)
{
string[] args = Environment.GetCommandLineArgs();
if (args.Length != 3 || !args[1].Contains("-i"))
{
modlistPath = default;
return false;
}
modlistPath = args[2];
return true;
}
2019-11-30 09:08:04 +00:00
2019-12-20 20:51:10 +00:00
2019-11-30 09:08:04 +00:00
public void OpenInstaller(string path)
{
if (path == null) return;
var installer = Installer.Value;
Settings.Installer.LastInstalledListLocation = path;
ActivePane = installer;
2019-12-03 05:40:59 +00:00
installer.ModListLocation.TargetPath = path;
2019-11-30 09:08:04 +00:00
}
2019-12-11 04:59:15 +00:00
2019-12-20 20:51:10 +00:00
public void NavigateBack()
{
var prev = NavigationTrail.Last();
NavigationTrail.RemoveAt(NavigationTrail.Count - 1);
ActivePane = prev;
}
public void NavigateTo(ViewModel vm)
{
NavigationTrail.Add(ActivePane);
ActivePane = vm;
}
2019-12-11 04:59:15 +00:00
public void ShutdownApplication()
{
Dispose();
Settings.PosX = MainWindow.Left;
Settings.PosY = MainWindow.Top;
Settings.Width = MainWindow.Width;
Settings.Height = MainWindow.Height;
MainSettings.SaveSettings(Settings);
Application.Current.Shutdown();
}
2019-10-22 02:12:55 +00:00
}
}