1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AddPresetViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The Add Preset View Model
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Windows;
using Caliburn.Micro;
using HandBrakeWPF.Model.Audio;
using HandBrakeWPF.Model.Picture;
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 HandBrakeWPF.Views;
using EncodeTask = HandBrakeWPF.Services.Encode.Model.EncodeTask;
public class AddPresetViewModel : ViewModelBase, IAddPresetViewModel
{
private readonly IPresetService presetService;
private readonly IErrorService errorService;
private readonly IWindowManager windowManager;
private readonly PresetDisplayCategory addNewCategory = new PresetDisplayCategory(Resources.AddPresetView_AddNewCategory, true, null);
private bool showCustomInputs;
private IAudioDefaultsViewModel audioDefaultsViewModel;
private ISubtitlesDefaultsViewModel subtitlesDefaultsViewModel;
private PresetDisplayCategory selectedPresetCategory;
private bool canAddNewPresetCategory;
private PictureSettingsResLimitModes selectedPictureSettingsResLimitMode;
public AddPresetViewModel(IPresetService presetService, IErrorService errorService, IWindowManager windowManager)
{
this.presetService = presetService;
this.errorService = errorService;
this.windowManager = windowManager;
this.Title = Resources.AddPresetView_AddPreset;
this.Preset = new Preset { IsBuildIn = false, IsDefault = false, Category = PresetService.UserPresetCatgoryName };
this.PresetCategories = presetService.GetPresetCategories(true).Union(new List<PresetDisplayCategory> { addNewCategory }).ToList();
this.SelectedPresetCategory = this.PresetCategories.FirstOrDefault(n => n.Category == PresetService.UserPresetCatgoryName);
this.CustomHeight = 0;
this.CustomWidth = 0;
}
public Preset Preset { get; }
public string PresetName => this.Preset.Name;
public bool ShowCustomInputs
{
get => this.showCustomInputs;
set
{
this.showCustomInputs = value;
this.NotifyOfPropertyChange(() => this.ShowCustomInputs);
}
}
public List<PresetDisplayCategory> PresetCategories { get; set; }
public PresetDisplayCategory SelectedPresetCategory
{
get => 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 => this.Preset.Category;
set
{
this.Preset.Category = value;
this.NotifyOfPropertyChange(() => this.PresetCategory);
}
}
public bool CanAddNewPresetCategory
{
get => this.canAddNewPresetCategory;
set
{
if (value == this.canAddNewPresetCategory)
{
return;
}
this.canAddNewPresetCategory = value;
this.NotifyOfPropertyChange();
}
}
public BindingList<PictureSettingsResLimitModes> ResolutionLimitModes => new BindingList<PictureSettingsResLimitModes>
{
PictureSettingsResLimitModes.None,
PictureSettingsResLimitModes.Size8K,
PictureSettingsResLimitModes.Size4K,
PictureSettingsResLimitModes.Size1080p,
PictureSettingsResLimitModes.Size720p,
PictureSettingsResLimitModes.Size576p,
PictureSettingsResLimitModes.Size480p,
PictureSettingsResLimitModes.Custom,
};
public PictureSettingsResLimitModes SelectedPictureSettingsResLimitMode
{
get => this.selectedPictureSettingsResLimitMode;
set
{
if (value == this.selectedPictureSettingsResLimitMode)
{
return;
}
this.selectedPictureSettingsResLimitMode = value;
this.NotifyOfPropertyChange(() => this.SelectedPictureSettingsResLimitMode);
this.IsCustomMaxRes = value == PictureSettingsResLimitModes.Custom;
this.NotifyOfPropertyChange(() => this.IsCustomMaxRes);
// Enforce the new limit
ResLimit limit = EnumHelper<PictureSettingsResLimitModes>.GetAttribute<ResLimit, PictureSettingsResLimitModes>(value);
if (limit != null)
{
this.CustomWidth = limit.Width;
this.CustomHeight = limit.Height;
this.NotifyOfPropertyChange(() => this.CustomWidth);
this.NotifyOfPropertyChange(() => this.CustomHeight);
}
if (value == PictureSettingsResLimitModes.None)
{
this.CustomWidth = null;
this.CustomHeight = null;
}
}
}
public bool IsCustomMaxRes { get; private set; }
public int? CustomWidth { get; set; }
public int? CustomHeight { get; set; }
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);
// Resolution Limits
this.CustomWidth = task.MaxWidth;
this.CustomHeight = task.MaxHeight;
this.NotifyOfPropertyChange(() => this.CustomWidth);
this.NotifyOfPropertyChange(() => this.CustomHeight);
this.SetSelectedPictureSettingsResLimitMode();
}
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.SelectedPictureSettingsResLimitMode != PictureSettingsResLimitModes.None)
{
if (this.CustomWidth != null)
{
this.Preset.Task.MaxWidth = this.CustomWidth;
}
if (this.CustomHeight != null)
{
this.Preset.Task.MaxHeight = this.CustomHeight;
}
}
// 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();
}
}
public void EditAudioDefaults()
{
this.audioDefaultsViewModel.ResetApplied();
this.windowManager.ShowDialogAsync(this.audioDefaultsViewModel);
if (audioDefaultsViewModel.IsApplied)
{
this.Preset.AudioTrackBehaviours = this.audioDefaultsViewModel.AudioBehaviours.Clone();
}
}
public void EditSubtitleDefaults()
{
this.subtitlesDefaultsViewModel.ResetApplied();
SubtitlesDefaultsView view = new SubtitlesDefaultsView();
view.DataContext = this.subtitlesDefaultsViewModel;
view.ShowDialog();
if (subtitlesDefaultsViewModel.IsApplied)
{
this.Preset.SubtitleTrackBehaviours = this.subtitlesDefaultsViewModel.SubtitleBehaviours.Clone();
}
}
public void Cancel()
{
this.TryCloseAsync(false);
}
private void Close()
{
this.TryCloseAsync(true);
}
private void SetSelectedPictureSettingsResLimitMode()
{
// Look for a matching resolution.
foreach (PictureSettingsResLimitModes limit in EnumHelper<PictureSettingsResLimitModes>.GetEnumList())
{
ResLimit resLimit = EnumHelper<PictureSettingsResLimitModes>.GetAttribute<ResLimit, PictureSettingsResLimitModes>(limit);
if (resLimit != null)
{
if (resLimit.Width == this.CustomWidth && resLimit.Height == this.CustomHeight)
{
this.SelectedPictureSettingsResLimitMode = limit;
return;
}
}
}
if (this.CustomWidth.HasValue || this.CustomHeight.HasValue)
{
this.SelectedPictureSettingsResLimitMode = PictureSettingsResLimitModes.Custom;
}
else
{
this.SelectedPictureSettingsResLimitMode = PictureSettingsResLimitModes.None;
}
}
}
}
|