2019-11-01 00:00:18 +00:00
|
|
|
using DynamicData;
|
2019-10-22 03:03:01 +00:00
|
|
|
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;
|
|
|
|
using System.Collections.Generic;
|
2019-10-23 04:15:42 +00:00
|
|
|
using System.ComponentModel;
|
2019-10-25 04:26:29 +00:00
|
|
|
using System.IO;
|
2019-10-22 02:12:55 +00:00
|
|
|
using System.Linq;
|
2019-10-22 03:03:01 +00:00
|
|
|
using System.Reactive.Disposables;
|
|
|
|
using System.Reactive.Linq;
|
|
|
|
using System.Reactive.Subjects;
|
2019-10-22 02:12:55 +00:00
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
2019-10-23 04:15:42 +00:00
|
|
|
using System.Windows;
|
2019-10-22 03:03:01 +00:00
|
|
|
using Wabbajack.Common;
|
2019-10-22 02:12:55 +00:00
|
|
|
using Wabbajack.Lib;
|
|
|
|
|
|
|
|
namespace Wabbajack
|
|
|
|
{
|
2019-10-23 04:15:42 +00:00
|
|
|
/// <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
|
|
|
|
{
|
2019-10-25 04:26:29 +00:00
|
|
|
public MainWindow MainWindow { get; }
|
2019-10-22 02:12:55 +00:00
|
|
|
|
2019-11-06 03:22:38 +00:00
|
|
|
public MainSettings Settings { get; }
|
|
|
|
|
2019-10-25 04:26:29 +00:00
|
|
|
private readonly ObservableAsPropertyHelper<ViewModel> _ActivePane;
|
|
|
|
public ViewModel ActivePane => _ActivePane.Value;
|
2019-10-22 02:12:55 +00:00
|
|
|
|
2019-10-22 03:03:01 +00:00
|
|
|
public ObservableCollectionExtended<CPUStatus> StatusList { get; } = new ObservableCollectionExtended<CPUStatus>();
|
|
|
|
|
2019-10-23 04:15:42 +00:00
|
|
|
public ObservableCollectionExtended<string> Log { get; } = new ObservableCollectionExtended<string>();
|
|
|
|
|
2019-11-02 23:23:11 +00:00
|
|
|
[Reactive]
|
|
|
|
public RunMode Mode { get; set; }
|
2019-10-25 04:26:29 +00:00
|
|
|
|
2019-11-02 22:21:05 +00:00
|
|
|
private readonly Lazy<CompilerVM> _Compiler;
|
|
|
|
private readonly Lazy<InstallerVM> _Installer;
|
|
|
|
|
2019-11-06 03:22:38 +00:00
|
|
|
public MainWindowVM(RunMode mode, string source, MainWindow mainWindow, MainSettings settings)
|
2019-10-22 02:12:55 +00:00
|
|
|
{
|
2019-10-25 04:26:29 +00:00
|
|
|
this.Mode = mode;
|
|
|
|
this.MainWindow = mainWindow;
|
2019-11-06 03:22:38 +00:00
|
|
|
this.Settings = settings;
|
|
|
|
this._Installer = new Lazy<InstallerVM>(() => new InstallerVM(this, source));
|
2019-11-14 05:28:27 +00:00
|
|
|
this._Compiler = new Lazy<CompilerVM>(() => new CompilerVM(this));
|
2019-10-25 04:26:29 +00:00
|
|
|
|
2019-10-23 04:15:42 +00:00
|
|
|
// Set up logging
|
2019-11-05 04:14:31 +00:00
|
|
|
Utils.LogMessages
|
2019-11-10 23:43:27 +00:00
|
|
|
.ObserveOn(RxApp.TaskpoolScheduler)
|
2019-10-23 04:15:42 +00:00
|
|
|
.ToObservableChangeSet()
|
2019-11-10 23:43:27 +00:00
|
|
|
.Buffer(TimeSpan.FromMilliseconds(250), RxApp.TaskpoolScheduler)
|
2019-10-23 04:15:42 +00:00
|
|
|
.Where(l => l.Count > 0)
|
|
|
|
.FlattenBufferResult()
|
|
|
|
.Top(5000)
|
|
|
|
.ObserveOn(RxApp.MainThreadScheduler)
|
|
|
|
.Bind(this.Log)
|
|
|
|
.Subscribe()
|
|
|
|
.DisposeWith(this.CompositeDisposable);
|
2019-11-17 04:16:42 +00:00
|
|
|
|
2019-11-02 22:21:05 +00:00
|
|
|
// Wire mode to drive the active pane.
|
|
|
|
// Note: This is currently made into a derivative property driven by mode,
|
|
|
|
// but it can be easily changed into a normal property that can be set from anywhere if needed
|
2019-10-25 04:26:29 +00:00
|
|
|
this._ActivePane = this.WhenAny(x => x.Mode)
|
|
|
|
.Select<RunMode, ViewModel>(m =>
|
|
|
|
{
|
|
|
|
switch (m)
|
|
|
|
{
|
|
|
|
case RunMode.Compile:
|
2019-11-02 22:21:05 +00:00
|
|
|
return this._Compiler.Value;
|
2019-10-25 04:26:29 +00:00
|
|
|
case RunMode.Install:
|
2019-11-02 22:21:05 +00:00
|
|
|
return this._Installer.Value;
|
2019-10-25 04:26:29 +00:00
|
|
|
default:
|
|
|
|
return default;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.ToProperty(this, nameof(this.ActivePane));
|
|
|
|
|
2019-11-17 06:02:09 +00:00
|
|
|
|
2019-10-30 19:45:42 +00:00
|
|
|
// Compile progress updates and populate ObservableCollection
|
2019-11-17 04:16:42 +00:00
|
|
|
/*
|
2019-11-05 04:14:31 +00:00
|
|
|
WorkQueue.Status
|
2019-10-30 19:45:42 +00:00
|
|
|
.ObserveOn(RxApp.TaskpoolScheduler)
|
|
|
|
.ToObservableChangeSet(x => x.ID)
|
2019-11-10 23:43:27 +00:00
|
|
|
.Batch(TimeSpan.FromMilliseconds(250), RxApp.TaskpoolScheduler)
|
2019-10-30 19:45:42 +00:00
|
|
|
.EnsureUniqueChanges()
|
|
|
|
.ObserveOn(RxApp.MainThreadScheduler)
|
|
|
|
.Sort(SortExpressionComparer<CPUStatus>.Ascending(s => s.ID), SortOptimisations.ComparesImmutableValuesOnly)
|
|
|
|
.Bind(this.StatusList)
|
|
|
|
.Subscribe()
|
2019-11-17 04:16:42 +00:00
|
|
|
.DisposeWith(this.CompositeDisposable);*/
|
2019-10-23 04:15:42 +00:00
|
|
|
}
|
2019-10-22 02:12:55 +00:00
|
|
|
}
|
|
|
|
}
|