forked from KFreon/CSharpImageLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewViewModel.cs
More file actions
1853 lines (1605 loc) · 53.3 KB
/
NewViewModel.cs
File metadata and controls
1853 lines (1605 loc) · 53.3 KB
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using CSharpImageLibrary;
using CSharpImageLibrary.DDS;
using CSharpImageLibrary.Headers;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Management;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Threading;
using UsefulThings;
using UsefulThings.WPF;
using static CSharpImageLibrary.Headers.DDS_Header;
namespace UI_Project
{
public enum AlphaDisplaySettings
{
[Description("Don't show Alpha")]
NoAlpha,
[Description("Alpha 'merged' (premult) with RGB")]
PremultiplyAlpha,
[Description("Alpha Only")]
AlphaOnly,
}
public class NewViewModel : ViewModelBase
{
Stopwatch operationElapsedTimer = new Stopwatch();
DispatcherTimer operationElapsedUpdateTimer = new DispatcherTimer();
DispatcherTimer busyTimer = new DispatcherTimer();
bool delayedBusy = false;
public bool DelayedBusy
{
get
{
return delayedBusy;
}
set
{
SetProperty(ref delayedBusy, value);
}
}
bool isWindowBlurred = true;
public bool IsWindowBlurred
{
get
{
return isWindowBlurred;
}
set
{
SetProperty(ref isWindowBlurred, value);
}
}
public bool IsCancellationRequested
{
get
{
return ImageEngine.IsCancellationRequested;
}
}
bool useHighQualityScaling = true;
public bool UseHighQualityScaling
{
get
{
return useHighQualityScaling;
}
set
{
SetProperty(ref useHighQualityScaling, value);
}
}
bool useSourceFormatForSaving = false;
public bool UseSourceFormatForSaving
{
get
{
return useSourceFormatForSaving;
}
set
{
SetProperty(ref useSourceFormatForSaving, value);
}
}
string status = null;
public string Status
{
get
{
return status;
}
set
{
SetProperty(ref status, value);
}
}
bool showHelpAbout = false;
public bool ShowHelpAbout
{
get
{
return showHelpAbout;
}
set
{
SetProperty(ref showHelpAbout, value);
}
}
bool isRedChannelOn = true;
public bool IsRedChannelOn
{
get
{
return isRedChannelOn;
}
set
{
SetProperty(ref isRedChannelOn, value);
if (IsImageLoaded)
SetChannel(Preview, value, 2);
}
}
bool isGreenChannelOn = true;
public bool IsGreenChannelOn
{
get
{
return isGreenChannelOn;
}
set
{
SetProperty(ref isGreenChannelOn, value);
if (IsImageLoaded)
SetChannel(Preview, value, 1);
}
}
bool isBlueChannelOn = true;
public bool IsBlueChannelOn
{
get
{
return isBlueChannelOn;
}
set
{
SetProperty(ref isBlueChannelOn, value);
if (IsImageLoaded)
SetChannel(Preview, value, 0);
}
}
#region Settings Panel Properties
bool settingsPanelOpen = false;
public bool SettingsPanelOpen
{
get
{
return settingsPanelOpen;
}
set
{
SetProperty(ref settingsPanelOpen, value);
}
}
public bool EnableThreading
{
get
{
return ImageEngine.EnableThreading;
}
set
{
ImageEngine.EnableThreading = value;
OnPropertyChanged(nameof(EnableThreading));
}
}
public bool UseWindowsCodecs
{
get
{
return ImageEngine.WindowsWICCodecsAvailable;
}
set
{
ImageEngine.WindowsWICCodecsAvailable = value;
OnPropertyChanged(nameof(UseWindowsCodecs));
}
}
public int NumThreads
{
get
{
return ImageEngine.NumThreads;
}
set
{
if (value < 1 && value != -1) // Allowed to be -1 for being infinite
return;
ImageEngine.NumThreads = value;
OnPropertyChanged(nameof(NumThreads));
if (NumThreads == 1)
EnableThreading = false;
}
}
#endregion Settings Panel Properties
#region Info Panel Properties
bool infoPanelOpen = false;
public bool InfoPanelOpen
{
get
{
return infoPanelOpen;
}
set
{
SetProperty(ref infoPanelOpen, value);
}
}
string cpuName = "Unknown";
public string CPUName
{
get
{
if (cpuName == "Unknown")
{
var searcher = new ManagementObjectSearcher("select * from Win32_Processor");
List<object> testting = new List<object>();
foreach (var item in searcher.Get())
{
cpuName = item["Name"].ToString();
break;
}
}
return cpuName;
}
}
public int NumCores
{
get
{
return System.Environment.ProcessorCount;
}
}
public bool Is64Bit
{
get
{
return System.Environment.Is64BitOperatingSystem;
}
}
public bool IsRunning64Bit
{
get
{
return System.Environment.Is64BitProcess;
}
}
string osVersion = "Unknown";
public string OSVersion
{
get
{
if (osVersion == "Unknown")
{
var name = (from x in new ManagementObjectSearcher("SELECT Caption FROM Win32_OperatingSystem").Get().Cast<ManagementObject>()
select x.GetPropertyValue("Caption")).FirstOrDefault();
osVersion = name != null ? name.ToString() : "Unknown";
}
return osVersion;
}
}
ulong ramSize = 0;
public ulong RAMSize
{
get
{
if (ramSize == 0)
{
var searcher = new ManagementObjectSearcher("select * from Win32_PhysicalMemory");
foreach (var item in searcher.Get())
ramSize += (ulong)item["Capacity"];
}
return ramSize;
}
}
string gpuName = "Unknown";
public string GPUName
{
get
{
if (gpuName == "Unknown")
{
var searcher = new ManagementObjectSearcher("select * from Win32_VideoController");
List<object> testting = new List<object>();
foreach (var item in searcher.Get())
{
gpuName = item["Name"].ToString();
break;
}
}
return gpuName;
}
}
#endregion Info Panel Properties
string saveDuration = null;
public string SaveDuration
{
get
{
return saveDuration;
}
set
{
SetProperty(ref saveDuration, value);
}
}
#region Commands
CommandHandler closeCommand = null;
public CommandHandler CloseCommand
{
get
{
if (closeCommand == null)
closeCommand = new CommandHandler(() => CloseImage(true));
return closeCommand;
}
}
CommandHandler saveCommand = null;
public CommandHandler SaveCommand
{
get
{
if (saveCommand == null)
saveCommand = new CommandHandler(() =>
{
Task.Run(async () =>
{
Status = "Saving...";
Busy = true;
try
{
if (SplitChannels)
LoadedImage.SplitChannels(SavePath);
else
await LoadedImage.Save(SavePath, SaveFormatDetails, SaveMipType, removeAlpha: GeneralRemovingAlpha);
}
catch (Exception e)
{
SaveError = e.ToString();
}
SaveAttempted = true;
Busy = false;
SaveDuration = $"{operationElapsedTimer.ElapsedMilliseconds}ms";
SavePath = UsefulThings.General.FindValidNewFileName(SavePath); // Ensure save path is pointing to a new valid filepath
});
});
return saveCommand;
}
}
#endregion Commands
#region Merge Channels Properties
bool mergePanelOpen = false;
public bool MergeChannelsPanelOpen
{
get
{
return mergePanelOpen;
}
set
{
SetProperty(ref mergePanelOpen, value);
}
}
public MTRangedObservableCollection<MergeChannelsImage> MergeChannelsImages { get; set; } = new MTRangedObservableCollection<MergeChannelsImage>();
public bool MergeChannelsReady
{
get
{
if (MergeChannelsImages.Count == 0)
return false;
var dimensions = MergeChannelsImages.Where(t => t.IsRed || t.IsAlpha || t.IsBlue || t.IsGreen);
if (dimensions.Count() == 0)
return false;
int width = dimensions.First().Width;
int height = dimensions.First().Height;
return dimensions.All(t => t.Width == width) && dimensions.All(t => t.Height == height);
}
}
#endregion Merge Channels Properties
#region General Properties
byte windowBackground_Red = 0;
public byte WindowBackground_Red
{
get
{
return windowBackground_Red;
}
set
{
SetProperty(ref windowBackground_Red, value);
OnPropertyChanged(nameof(WindowBackgroundColour));
}
}
byte windowBackground_Green = 0;
public byte WindowBackground_Green
{
get
{
return windowBackground_Green;
}
set
{
SetProperty(ref windowBackground_Green, value);
OnPropertyChanged(nameof(WindowBackgroundColour));
}
}
byte windowBackground_Blue = 0;
public byte WindowBackground_Blue
{
get
{
return windowBackground_Blue;
}
set
{
SetProperty(ref windowBackground_Blue, value);
OnPropertyChanged(nameof(WindowBackgroundColour));
}
}
byte windowBackground_Alpha = 158;
public byte WindowBackground_Alpha
{
get
{
return windowBackground_Alpha;
}
set
{
SetProperty(ref windowBackground_Alpha, value);
OnPropertyChanged(nameof(WindowBackgroundColour));
}
}
public Brush WindowBackgroundColour
{
get
{
return new SolidColorBrush(Color.FromArgb(WindowBackground_Alpha, WindowBackground_Red, WindowBackground_Green, WindowBackground_Blue));
}
}
bool splitChannels = false;
public bool SplitChannels
{
get
{
return splitChannels;
}
set
{
SetProperty(ref splitChannels, value);
if (value)
SaveFormat = ImageEngineFormat.PNG;
}
}
bool busy = false;
public bool Busy
{
get
{
return busy;
}
set
{
if (!operationElapsedTimer.IsRunning)
operationElapsedTimer.Restart();
if (!operationElapsedUpdateTimer.IsEnabled)
operationElapsedUpdateTimer.Start();
if (value && !busy)
busyTimer.Start();
else if (!value)
{
busyTimer.Stop();
DelayedBusy = false;
operationElapsedUpdateTimer.Stop();
operationElapsedTimer.Stop();
}
SetProperty(ref busy, value);
}
}
#region Alpha and Colour related Properties
bool GeneralRemovingAlpha
{
get
{
return SaveFormat == ImageEngineFormat.DDS_DXT1 ? DXT1AlphaRemove : RemoveGeneralAlpha;
}
}
uint aMask = 0xFF000000;
public uint AMask
{
get
{
return aMask;
}
set
{
SetProperty(ref aMask, value);
}
}
uint rMask = 0x00FF0000;
public uint RMask
{
get
{
return rMask;
}
set
{
SetProperty(ref rMask, value);
}
}
uint gMask = 0x0000FF00;
public uint GMask
{
get
{
return gMask;
}
set
{
SetProperty(ref gMask, value);
}
}
uint bMask = 0x000000FF;
public uint BMask
{
get
{
return bMask;
}
set
{
SetProperty(ref bMask, value);
}
}
#endregion Alpha and Colour related Properties
#region Bulk Convert Properties
public MTRangedObservableCollection<string> BulkConvertFiles { get; set; } = new MTRangedObservableCollection<string>();
public MTRangedObservableCollection<string> BulkConvertFailed { get; set; } = new MTRangedObservableCollection<string>();
string operationElapsed = null;
public string OperationElapsed
{
get
{
return operationElapsed;
}
set
{
SetProperty(ref operationElapsed, value);
}
}
bool bulkConvertOpen = false;
public bool BulkConvertOpen
{
get
{
return bulkConvertOpen;
}
set
{
SetProperty(ref bulkConvertOpen, value);
Debug.WriteLine("BulkConvertOpen: " + value);
}
}
bool bulkFolderBrowseRecurse = true;
public bool BulkFolderBrowseRecurse
{
get
{
return bulkFolderBrowseRecurse;
}
set
{
SetProperty(ref bulkFolderBrowseRecurse, value);
}
}
bool bulkConvertRunning = false;
public bool BulkConvertRunning
{
get
{
return bulkConvertRunning;
}
set
{
SetProperty(ref bulkConvertRunning, value);
}
}
bool bulkConvertFinished = false;
public bool BulkConvertFinished
{
get
{
return bulkConvertFinished;
}
set
{
SetProperty(ref bulkConvertFinished, value);
}
}
string bulkSaveFolder = ""; // Can't be null
public string BulkSaveFolder
{
get
{
return bulkSaveFolder;
}
set
{
SetProperty(ref bulkSaveFolder, value);
}
}
bool bulkUseSourceDestination = false;
public bool BulkUseSourceDestination
{
get
{
return bulkUseSourceDestination;
}
set
{
SetProperty(ref bulkUseSourceDestination, value);
}
}
string bulkStatus = "Ready";
public string BulkStatus
{
get
{
return bulkStatus;
}
set
{
SetProperty(ref bulkStatus, value);
}
}
int bulkProgressMax = 0;
public int BulkProgressMax
{
get
{
return bulkProgressMax;
}
set
{
SetProperty(ref bulkProgressMax, value);
}
}
int bulkProgressValue = 1;
public int BulkProgressValue
{
get
{
return bulkProgressValue;
}
set
{
SetProperty(ref bulkProgressValue, value);
}
}
#endregion Bulk Convert Properties
#region Loaded Image Properties
bool loadFailed = false;
public bool LoadFailed
{
get
{
return loadFailed;
}
set
{
// If loading fails, it's not busy anymore.
if (value)
Busy = false;
SetProperty(ref loadFailed, value);
}
}
string loadFailError = null;
public string LoadFailError
{
get
{
return loadFailError;
}
set
{
SetProperty(ref loadFailError, value);
}
}
bool isImageLoaded = false;
public bool IsImageLoaded
{
get
{
return isImageLoaded;
}
set
{
SetProperty(ref isImageLoaded, value);
Debug.WriteLine("IsImageLoaded: " + value);
}
}
public int MipWidth
{
get
{
if (MipIndex == LoadedImage?.MipMaps.Count)
return 0;
return LoadedImage?.MipMaps[MipIndex]?.Width ?? -1;
}
}
public int MipHeight
{
get
{
if (MipIndex == LoadedImage?.MipMaps.Count)
return 0;
return LoadedImage?.MipMaps[MipIndex]?.Height ?? -1;
}
}
int mipIndex = 0;
public int MipIndex
{
get
{
return mipIndex;
}
set
{
if (mipIndex == value)
return;
SetProperty(ref mipIndex, value);
OnPropertyChanged(nameof(MipWidth));
OnPropertyChanged(nameof(MipHeight));
if (IsImageLoaded)
UpdateLoadedPreview();
}
}
ImageEngineImage loadedImage = null;
public ImageEngineImage LoadedImage
{
get
{
return loadedImage;
}
set
{
SetProperty(ref loadedImage, value);
OnPropertyChanged(nameof(IsImageLoaded));
}
}
WriteableBitmap preview = null;
public WriteableBitmap Preview
{
get
{
return preview;
}
set
{
SetProperty(ref preview, value);
}
}
string windowTitle = "Image Engine";
public string WindowTitle
{
get
{
return windowTitle;
}
set
{
SetProperty(ref windowTitle, value);
}
}
string loadDuration = null;
public string LoadDuration
{
get
{
return loadDuration;
}
set
{
SetProperty(ref loadDuration, value);
}
}
public string LoadedPath
{
get
{
return LoadedImage?.FilePath;
}
}
public ImageEngineFormat LoadedFormat
{
get
{
return LoadedImage?.Format ?? ImageEngineFormat.Unknown;
}
}
public bool IsDX10Loaded
{
get
{
return LoadedImage?.Format == ImageEngineFormat.DDS_DX10;
}
}
public DDS_Header.DXGI_FORMAT LoadedDX10Format
{
get
{
return IsDX10Loaded ? ((DDS_Header)LoadedImage.Header).DX10_DXGI_AdditionalHeader.dxgiFormat : DDS_Header.DXGI_FORMAT.DXGI_FORMAT_UNKNOWN;
}
}
public int Width
{
get
{
return LoadedImage?.Width ?? -1;
}
}
public int Height
{
get
{
return LoadedImage?.Height ?? -1;
}
}
public int UncompressedSize
{
get
{
if (!IsImageLoaded)
return -1;
return ImageFormats.GetUncompressedSize(LoadedImage.Width, LoadedImage.Height, LoadedImage.NumberOfChannels, LoadedImage.NumMipMaps > 1);
}
}
public int LoadedCompressedSize
{
get
{
return LoadedImage?.CompressedSize ?? -1;
}
}
public int MipCount
{
get
{
return LoadedImage?.NumMipMaps ?? -1;
}
}
public string HeaderDetails
{
get
{
return LoadedImage?.Header?.ToString();
}
}
AlphaDisplaySettings alphaDisplaySetting = 0;
public AlphaDisplaySettings AlphaDisplaySetting
{
get
{
return alphaDisplaySetting;
}
set
{
SetProperty(ref alphaDisplaySetting, value);
if (IsImageLoaded)
{
UpdateLoadedPreview();
if (SavePanelOpen)