// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The Add Preset View Model // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels { using System.Collections.Generic; using System.Linq; using System.Windows; using Caliburn.Micro; using HandBrake.ApplicationServices.Interop.Model.Encoding; using HandBrakeWPF.Model.Audio; using HandBrakeWPF.Model.Subtitles; using HandBrakeWPF.Properties; using HandBrakeWPF.Services.Interfaces; using HandBrakeWPF.Services.Presets; using HandBrakeWPF.Services.Presets.Interfaces; using HandBrakeWPF.Services.Presets.Model; using HandBrakeWPF.Services.Scan.Model; using HandBrakeWPF.Utilities; using HandBrakeWPF.ViewModels.Interfaces; using EncodeTask = HandBrakeWPF.Services.Encode.Model.EncodeTask; using PresetPictureSettingsMode = HandBrakeWPF.Model.Picture.PresetPictureSettingsMode; /// /// The Add Preset View Model /// public class AddPresetViewModel : ViewModelBase, IAddPresetViewModel { private readonly IPresetService presetService; private readonly IErrorService errorService; private readonly IWindowManager windowManager; private PresetPictureSettingsMode selectedPictureSettingMode; private bool showCustomInputs; private Title selectedTitle; private IAudioDefaultsViewModel audioDefaultsViewModel; private ISubtitlesDefaultsViewModel subtitlesDefaultsViewModel; private PresetDisplayCategory selectedPresetCategory; private readonly PresetDisplayCategory addNewCategory = new PresetDisplayCategory(ResourcesUI.AddPresetView_AddNewCategory, true, null); private bool canAddNewPresetCategory; /// /// Initializes a new instance of the class. /// /// /// The Preset Service /// /// /// The Error Service /// /// /// The window Manager. /// public AddPresetViewModel(IPresetService presetService, IErrorService errorService, IWindowManager windowManager) { this.presetService = presetService; this.errorService = errorService; this.windowManager = windowManager; this.Title = ResourcesUI.AddPresetView_AddPreset; this.Preset = new Preset { IsBuildIn = false, IsDefault = false, Category = PresetService.UserPresetCatgoryName }; this.PictureSettingsModes = EnumHelper.GetEnumList(); this.PresetCategories = presetService.GetPresetCategories(true).Union(new List { addNewCategory }).ToList(); this.SelectedPresetCategory = this.PresetCategories.FirstOrDefault(n => n.Category == PresetService.UserPresetCatgoryName); } /// /// Gets the Preset /// public Preset Preset { get; private set; } /// /// Gets or sets PictureSettingsModes. /// public IEnumerable PictureSettingsModes { get; set; } /// /// Gets or sets CustomWidth. /// public int? CustomWidth { get; set; } /// /// Gets or sets CustomHeight. /// public int? CustomHeight { get; set; } /// /// Gets or sets a value indicating whether ShowCustomInputs. /// public bool ShowCustomInputs { get { return this.showCustomInputs; } set { this.showCustomInputs = value; this.NotifyOfPropertyChange(() => this.ShowCustomInputs); } } public List PresetCategories { get; set; } public PresetDisplayCategory SelectedPresetCategory { get { return this.selectedPresetCategory; } set { this.selectedPresetCategory = value; this.CanAddNewPresetCategory = Equals(value, this.addNewCategory); if (this.selectedPresetCategory != null && !object.Equals(this.selectedPresetCategory, this.addNewCategory)) { this.PresetCategory = this.selectedPresetCategory.Category; } else { this.PresetCategory = PresetService.UserPresetCatgoryName; } } } public string PresetCategory { get { return this.Preset.Category; } set { this.Preset.Category = value; this.NotifyOfPropertyChange(() => this.PresetCategory); } } public bool CanAddNewPresetCategory { get { return this.canAddNewPresetCategory; } set { if (value == this.canAddNewPresetCategory) return; this.canAddNewPresetCategory = value; this.NotifyOfPropertyChange(); } } /// /// Gets or sets SelectedPictureSettingMode. /// public PresetPictureSettingsMode SelectedPictureSettingMode { get { return this.selectedPictureSettingMode; } set { this.selectedPictureSettingMode = value; this.ShowCustomInputs = value == PresetPictureSettingsMode.Custom; } } /// /// Prepare the Preset window to create a Preset Object later. /// /// /// The Encode Task. /// /// /// The title. /// /// /// The audio Behaviours. /// /// /// The subtitle Behaviours. /// public void Setup(EncodeTask task, Title title, AudioBehaviours audioBehaviours, SubtitleBehaviours subtitleBehaviours) { this.Preset.Task = new EncodeTask(task); this.Preset.AudioTrackBehaviours = audioBehaviours.Clone(); this.Preset.SubtitleTrackBehaviours = subtitleBehaviours.Clone(); this.audioDefaultsViewModel = new AudioDefaultsViewModel(this.Preset.Task); this.audioDefaultsViewModel.Setup(this.Preset, this.Preset.Task); this.subtitlesDefaultsViewModel = new SubtitlesDefaultsViewModel(); this.subtitlesDefaultsViewModel.SetupLanguages(subtitleBehaviours); this.selectedTitle = title; switch (task.Anamorphic) { default: this.SelectedPictureSettingMode = PresetPictureSettingsMode.Custom; if (title != null && title.Resolution != null) { this.CustomWidth = title.Resolution.Width; this.CustomHeight = title.Resolution.Height; } break; case Anamorphic.Automatic: this.SelectedPictureSettingMode = PresetPictureSettingsMode.SourceMaximum; break; } } /// /// Add a Preset /// public void Add() { if (string.IsNullOrEmpty(this.Preset.Name)) { this.errorService.ShowMessageBox(Resources.AddPresetViewModel_PresetMustProvideName, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error); return; } if (this.presetService.CheckIfPresetExists(this.Preset.Name)) { Preset currentPreset = this.presetService.GetPreset(this.Preset.Name); if (currentPreset != null && currentPreset.IsBuildIn) { this.errorService.ShowMessageBox(Resources.Main_NoUpdateOfBuiltInPresets, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error); return; } MessageBoxResult result = this.errorService.ShowMessageBox(Resources.AddPresetViewModel_PresetWithSameNameOverwriteWarning, Resources.Question, MessageBoxButton.YesNo, MessageBoxImage.Question); if (result == MessageBoxResult.No) { return; } } if (this.SelectedPictureSettingMode == PresetPictureSettingsMode.SourceMaximum && this.selectedTitle == null) { this.errorService.ShowMessageBox(Resources.AddPresetViewModel_YouMustFirstScanSource, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error); return; } if (this.CustomWidth == null && this.CustomHeight == null && this.SelectedPictureSettingMode == PresetPictureSettingsMode.Custom) { this.errorService.ShowMessageBox(Resources.AddPresetViewModel_CustomWidthHeightFieldsRequired, Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error); return; } this.Preset.PictureSettingsMode = this.SelectedPictureSettingMode; // Setting W, H, MW and MH if (this.SelectedPictureSettingMode == PresetPictureSettingsMode.None) { this.Preset.Task.MaxHeight = null; this.Preset.Task.MaxWidth = null; } if (this.SelectedPictureSettingMode == PresetPictureSettingsMode.Custom) { this.Preset.Task.MaxWidth = this.CustomWidth; this.Preset.Task.MaxHeight = this.CustomHeight; this.Preset.Task.Width = null; this.Preset.Task.Height = null; } if (this.SelectedPictureSettingMode == PresetPictureSettingsMode.SourceMaximum) { this.Preset.Task.MaxHeight = null; this.Preset.Task.MaxWidth = null; } // Add the Preset bool added = this.presetService.Add(this.Preset); if (!added) { this.errorService.ShowMessageBox( Resources.AddPresetViewModel_UnableToAddPreset, Resources.UnknownError, MessageBoxButton.OK, MessageBoxImage.Error); } else { this.Close(); } } /// /// The edit audio defaults. /// public void EditAudioDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.audioDefaultsViewModel, ResourcesUI.Preset_AudioDefaults_Title, ResourcesUI.Preset_AudioDefaults_SubText); if (this.windowManager.ShowDialog(popup) == true) { this.Preset.AudioTrackBehaviours = this.audioDefaultsViewModel.AudioBehaviours.Clone(); } else { // Handle other case(s) } } /// /// The edit subtitle defaults. /// public void EditSubtitleDefaults() { IPopupWindowViewModel popup = new PopupWindowViewModel(this.subtitlesDefaultsViewModel, ResourcesUI.Preset_SubtitleDefaults_Title, ResourcesUI.Preset_SubtitleDefaults_SubText); if (this.windowManager.ShowDialog(popup) == true) { this.Preset.SubtitleTrackBehaviours = this.subtitlesDefaultsViewModel.SubtitleBehaviours.Clone(); } else { // Handle other case(s) } } /// /// Cancel adding a preset /// public void Cancel() { this.Close(); } /// /// Close this window. /// public void Close() { this.TryClose(); } } }