2020-01-20 21:59:26 +00:00
|
|
|
|
using System.Reactive.Disposables;
|
|
|
|
|
using System.Reactive.Linq;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using ReactiveUI;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using Wabbajack.Common;
|
2019-10-25 04:26:29 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for CompilerView.xaml
|
|
|
|
|
/// </summary>
|
2020-01-20 21:59:26 +00:00
|
|
|
|
public partial class CompilerView : ReactiveUserControl<CompilerVM>
|
2019-10-25 04:26:29 +00:00
|
|
|
|
{
|
|
|
|
|
public CompilerView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2020-01-20 21:59:26 +00:00
|
|
|
|
this.WhenActivated(dispose =>
|
|
|
|
|
{
|
|
|
|
|
// Bind percent completed chanes
|
|
|
|
|
this.WhenAny(x => x.ViewModel.PercentCompleted)
|
|
|
|
|
.Select(f => (double)f)
|
|
|
|
|
.BindToStrict(this, x => x.HeatedBackground.PercentCompleted)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.PercentCompleted)
|
|
|
|
|
.Select(f => (double)f)
|
|
|
|
|
.BindToStrict(this, x => x.ModlistDetailsHeatBorder.Opacity)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.PercentCompleted)
|
|
|
|
|
.Select(f => (double)f)
|
|
|
|
|
.BindToStrict(this, x => x.TopProgressBar.ProgressPercent)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
|
|
|
|
|
// Bind detail image display
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ModListName)
|
|
|
|
|
.BindToStrict(this, x => x.DetailImage.Title)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.AuthorText)
|
|
|
|
|
.BindToStrict(this, x => x.DetailImage.Author)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.Description)
|
|
|
|
|
.BindToStrict(this, x => x.DetailImage.Description)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.Image)
|
|
|
|
|
.BindToStrict(this, x => x.DetailImage.Image)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
|
|
|
|
|
// Top Progress Bar
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ModListName)
|
|
|
|
|
.BindToStrict(this, x => x.TopProgressBar.Title)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.ProgressTitle)
|
|
|
|
|
.BindToStrict(this, x => x.TopProgressBar.StatePrefixTitle)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.BackCommand)
|
|
|
|
|
.BindToStrict(this, x => x.BackButton.Command)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
|
|
|
|
|
// Settings Panel
|
|
|
|
|
this.WhenAny(x => x.ViewModel.Compiling)
|
|
|
|
|
.Select(x => !x)
|
|
|
|
|
.BindToStrict(this, x => x.SettingsScrollViewer.IsEnabled)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.BindStrict(this.ViewModel, x => x.CurrentModlistSettings.ModListName, x => x.ModListNameSetting.Text)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.BindStrict(this.ViewModel, x => x.CurrentModlistSettings.AuthorText, x => x.AuthorNameSetting.Text)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.BindStrict(this.ViewModel, x => x.CurrentModlistSettings.Description, x => x.DescriptionSetting.Text)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ImagePath)
|
|
|
|
|
.BindToStrict(this, x => x.ImageFilePicker.PickerVM)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.BindStrict(this.ViewModel, x => x.CurrentModlistSettings.Website, x => x.WebsiteSetting.Text)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ReadmeFilePath)
|
|
|
|
|
.BindToStrict(this, x => x.ReadmeFilePickerSetting.PickerVM)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ReadmeIsWebsite)
|
|
|
|
|
.Select(isWebsite => isWebsite ? Visibility.Collapsed : Visibility.Visible)
|
|
|
|
|
.BindToStrict(this, x => x.ReadmeFilePickerSetting.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.BindStrict(this.ViewModel, x => x.CurrentModlistSettings.ReadmeWebsite, x => x.ReadmeWebsiteSetting.Text)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.ReadmeIsWebsite)
|
|
|
|
|
.Select(isWebsite => isWebsite ? Visibility.Visible : Visibility.Collapsed)
|
|
|
|
|
.BindToStrict(this, x => x.ReadmeWebsiteSetting.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.MarkAsNeeded<CompilerView, CompilerVM, bool>(this.ViewModel, x => x.CurrentModlistSettings.ReadmeIsWebsite);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.SwapToWebsiteReadmeCommand)
|
|
|
|
|
.BindToStrict(this, x => x.SwapToReadmeWebsiteButton.Command)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.CurrentModlistSettings.SwapToTextReadmeCommand)
|
|
|
|
|
.BindToStrict(this, x => x.SwapToReadmeFileButton.Command)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
|
|
|
|
|
// Bottom Compiler Settings
|
|
|
|
|
this.WhenAny(x => x.ViewModel.StartedCompilation)
|
|
|
|
|
.Select(started => started ? Visibility.Hidden : Visibility.Visible)
|
|
|
|
|
.BindToStrict(this, x => x.BottomCompilerSettingsGrid.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
// Seems to go into an infinite loop between each other. Need to research a better radio button style pattern
|
|
|
|
|
//this.BindStrict(this.ViewModel, x => x.SelectedCompilerType, x => x.MO2CompilerButton.IsChecked,
|
|
|
|
|
// vmToViewConverter: type => type == ModManager.MO2,
|
|
|
|
|
// viewToVmConverter: isChecked => isChecked ? ModManager.MO2 : ModManager.Vortex);
|
|
|
|
|
//this.BindStrict(this.ViewModel, x => x.SelectedCompilerType, x => x.MO2CompilerButton.IsChecked,
|
|
|
|
|
// vmToViewConverter: type => type == ModManager.Vortex,
|
|
|
|
|
// viewToVmConverter: isChecked => isChecked ? ModManager.Vortex : ModManager.MO2);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.Compiler)
|
|
|
|
|
.BindToStrict(this, x => x.CustomCompilerSettingsPresenter.Content)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.BeginCommand)
|
|
|
|
|
.BindToStrict(this, x => x.BeginButton.Command)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
|
|
|
|
|
// Mid-compilation panel
|
|
|
|
|
this.WhenAny(x => x.ViewModel.StartedCompilation)
|
|
|
|
|
.Select(started => started ? Visibility.Visible : Visibility.Hidden)
|
|
|
|
|
.BindToStrict(this, x => x.MidCompilationGrid.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.PercentCompleted)
|
|
|
|
|
.Select(f => (double)f)
|
|
|
|
|
.BindToStrict(this, x => x.LogView.ProgressPercent)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.PercentCompleted)
|
|
|
|
|
.BindToStrict(this, x => x.CpuView.ProgressPercent)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.MWVM.Settings)
|
|
|
|
|
.BindToStrict(this, x => x.CpuView.SettingsHook)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.ActiveGlobalUserIntervention)
|
|
|
|
|
.Select(x => x == null ? Visibility.Visible : Visibility.Collapsed)
|
|
|
|
|
.BindToStrict(this, x => x.CpuView.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.ActiveGlobalUserIntervention)
|
|
|
|
|
.Select(x => x != null ? Visibility.Visible : Visibility.Collapsed)
|
|
|
|
|
.BindToStrict(this, x => x.UserInterventionsControl.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
this.WhenAny(x => x.ViewModel.Completed)
|
|
|
|
|
.Select(x => x != null ? Visibility.Visible : Visibility.Collapsed)
|
|
|
|
|
.BindToStrict(this, x => x.CompilationComplete.Visibility)
|
|
|
|
|
.DisposeWith(dispose);
|
|
|
|
|
});
|
2019-10-25 04:26:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|