Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ClipboardManager.cs « Managers « UVtools.Core - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07a363f08734d0c5350a45aec2e185c5dc424cb8 (plain)
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
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using UVtools.Core.FileFormats;
using UVtools.Core.Layers;
using UVtools.Core.Objects;
using UVtools.Core.Operations;

namespace UVtools.Core.Managers
{
    public sealed class ClipboardItem : List<Layer>
    {
        private Operation _operation;

        #region Properties
        
        /// <summary>
        /// Gets the LayerCount for this clip
        /// </summary>
        public uint LayerCount { get; }

        public float LayerHeight { get; }

        /// <summary>
        /// Gets the description of this operation
        /// </summary>
        public string Description { get; set; }

        public bool IsFullBackup { get; set; }


        public Operations.Operation Operation
        {
            get => _operation;
            set
            {
                _operation = value;
                _operation.ImportedFrom = Operation.OperationImportFrom.Undo;
            }
        }

        #endregion

        #region Constructor
        public ClipboardItem(FileFormat slicerFile, Operations.Operation operation, bool isFullBackup = false) : this(slicerFile)
        {
            Operation = operation;
            string description = operation.ToString();
            if (!description.StartsWith(operation.Title)) description = $"{operation.Title}: {description}";
            Description = description;
            IsFullBackup = isFullBackup;
        }
        
        public ClipboardItem(FileFormat slicerFile, string description = null, bool isFullBackup = false)
        {
            LayerCount = slicerFile.LayerCount;
            LayerHeight = slicerFile.LayerHeight;
            Description = description;
            IsFullBackup = isFullBackup;
        }
        #endregion

        #region Methods
        public override string ToString()
        {
            return $"{(IsFullBackup ? "* " : "")}{Description} ({Count})";
        }
        #endregion
    }

    public sealed class ClipboardManager : BindableBase, IList<ClipboardItem>
    {
        #region Properties

        public RangeObservableCollection<ClipboardItem> Items { get; } = new();

        public FileFormat SlicerFile { get; set; }

        private int _currentIndex = -1;
        private Layer[] _snapshotLayers;
        private bool _reallocatedLayerCount;
        private bool _suppressRestore;

        /// <summary>
        /// Gets the index of current item
        /// </summary>
        public int CurrentIndex {
            get => _currentIndex;
            set
            {
                if (_currentIndex == value) return;
                if (value < -1) value = -1;
                if (value >= Count) value = Count-1;
                var oldIndex = _currentIndex;
                _currentIndex = value;
                //if (!RaiseAndSetIfChanged(ref _currentIndex, value)) return;

                if (value >= 0 && !SuppressRestore)
                {
                    ReallocatedLayerCount = false;
                    int dir = oldIndex < _currentIndex ? 1 : -1;

                    for (int i = oldIndex + dir; i >= 0 && i < Count; i += dir)
                    {
                        var clip = this[i];

                        Layer[] layers;
                        if (clip.IsFullBackup)
                        {
                            if(!_reallocatedLayerCount && SlicerFile.LayerCount != clip.Count) ReallocatedLayerCount = true;
                            layers = clip.ToArray();
                        }
                        else
                        {
                            layers = SlicerFile.LayerManager.Layers.ToArray();

                            if (SlicerFile.LayerCount != clip.LayerCount) // Need resize layer manager
                            {
                                //layers = SlicerFile.LayerManager.ReallocateNew(clip.LayerCount);
                                layers = SlicerFile.LayerManager.ReallocateNew(clip.LayerCount);
                                ReallocatedLayerCount = true;
                            }

                            foreach (var layer in clip)
                            {
                                layers[layer.Index] = layer;
                            }
                        }

                        if (SlicerFile.LayerHeight != clip.LayerHeight)
                        {
                            SlicerFile.LayerHeight = clip.LayerHeight;
                        }

                        SlicerFile.SuppressRebuildPropertiesWork(() =>
                        {
                            SlicerFile.LayerManager.Layers = Layer.CloneLayers(layers);
                        });
                        
                        if (i == _currentIndex) break;
                    }
                }

                RaisePropertyChanged();
                RaisePropertyChanged(nameof(CurrentIndexCountStr));
                RaisePropertyChanged(nameof(CanUndo));
                RaisePropertyChanged(nameof(CanRedo));
                return;
            }
        }

        public string CurrentIndexCountStr => (CurrentIndex + 1).ToString().PadLeft(Count.ToString().Length, '0');

        public bool SuppressRestore
        {
            get => _suppressRestore;
            set => RaiseAndSetIfChanged(ref _suppressRestore, value);
        }

        public bool ReallocatedLayerCount
        {
            get => _reallocatedLayerCount;
            set => RaiseAndSetIfChanged(ref _reallocatedLayerCount, value);
        }

        public Layer[] SnapshotLayers
        {
            get => _snapshotLayers;
            private set => RaiseAndSetIfChanged(ref _snapshotLayers, value);
        }
        
        public ClipboardItem CurrentClip => _currentIndex < 0 || _currentIndex >= Count ? null : this[_currentIndex];

        public bool CanUndo => CurrentIndex < Count - 1;
        public bool CanRedo => CurrentIndex > 0;

        #endregion

        #region Singleton
        private static readonly Lazy<ClipboardManager> InstanceHolder =
            new(() => new ClipboardManager());

        public static ClipboardManager Instance => InstanceHolder.Value;
        #endregion

        #region Constructor
        private ClipboardManager() { }
        #endregion

        #region List Implementation
        public IEnumerator<ClipboardItem> GetEnumerator() => Items.GetEnumerator();

        IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();

        public void Add(ClipboardItem item) => Items.Add(item);

        public void Clear()
        {
            Items.Clear();
            CurrentIndex = -1;
        }

        public void Clear(bool keepOriginal)
        {
            if (!keepOriginal)
            {
                Clear();
                return;
            }

            if (Count == 0) return;

            Init(SlicerFile);
        }

        public bool Contains(ClipboardItem item) => Items.Contains(item);

        public void CopyTo(ClipboardItem[] array, int arrayIndex) => Items.CopyTo(array, arrayIndex);

        public bool Remove(ClipboardItem item) => Items.Remove(item);

        public int Count => Items.Count;
        public bool IsReadOnly => false;
        public int IndexOf(ClipboardItem item) => Items.IndexOf(item);

        public void Insert(int index, ClipboardItem item) => Items.Insert(index, item);

        public void RemoveAt(int index) => Items.RemoveAt(index);

        public ClipboardItem this[int index]
        {
            get => Items[index];
            set => Items[index] = value;
        }
        #endregion

        #region Methods

        public void SuppressRestoreWork(Action action)
        {
            try
            {
                SuppressRestore = true;
                action.Invoke();
            }
            catch (Exception e)
            {
                Debug.WriteLine(e);
                throw;
            }
            finally
            {
                SuppressRestore = false;
            }
        }

        /// <summary>
        /// Clears the manager
        /// </summary>
        public void Reset() => Init(null);

        /// <summary>
        /// Clears and init clipboard
        /// </summary>
        /// <param name="slicerFile"></param>
        public void Init(FileFormat slicerFile)
        {
            SuppressRestoreWork(() =>
            {
                Clear();
                SlicerFile = slicerFile;
                if (slicerFile is null) return;
                var clip = new ClipboardItem(SlicerFile, "Original layers", true);
                clip.AddRange(SlicerFile.LayerManager.CloneLayers());
                Add(clip);
                slicerFile.SuppressRebuildPropertiesWork(() => CurrentIndex = 0);
            });
        }

        /// <summary>
        /// Snapshot layers and prepare manager to collect modified layers with <see cref="Clip"/>
        /// </summary>
        public void Snapshot(Layer[] layers = null)
        {
            SnapshotLayers = layers ?? SlicerFile.LayerManager.CloneLayers();
        }

        public void RestoreSnapshot()
        {
            if (_snapshotLayers is null) return;
            SlicerFile.LayerManager.Layers = _snapshotLayers;
            SnapshotLayers = null;
        }

        /// <summary>
        /// Collect differences and create a clip
        /// </summary>
        public ClipboardItem Clip(string description = null, Layer[] layers = null, bool doFullBackup = false)
        {
            ClipboardItem safeClip = null;
            if (!doFullBackup)
            {
                if (layers is not null) Snapshot(layers);
                if (_snapshotLayers is null) throw new InvalidOperationException("A snapshot is required before perform a clip");

                if (_snapshotLayers.Length != SlicerFile.LayerCount)
                {
                    doFullBackup = true; // Force full backup when layer count changes
                    if (Count > 0 && !this[0].IsFullBackup)
                    {
                        safeClip = new ClipboardItem(SlicerFile, "Fail-safe full backup", true);
                        safeClip.AddRange(_snapshotLayers);
                    }

                    //Insert(0, safeClip);
                }
            }

            var clip = new ClipboardItem(SlicerFile, description, doFullBackup);

            if (doFullBackup)
            {
                clip.AddRange(SlicerFile.LayerManager.CloneLayers());
            }
            else
            {
                int layerIndex = 0;
                for (;
                    layerIndex < SlicerFile.LayerCount
                    && layerIndex < _snapshotLayers.Length;
                    layerIndex++)
                {
                    //if(SnapshotLayers.Count - 1 < layerIndex) break;
                    if (_snapshotLayers[layerIndex].Equals(SlicerFile[layerIndex])) continue;
                    clip.Add(SlicerFile[layerIndex].Clone());
                }

                // Collect leftovers from snapshot
                // This happens when current state has less layers then the snapshot/previous
                // So we need to preserve them
                for (; layerIndex < SlicerFile.LayerCount; layerIndex++)
                {
                    clip.Add(SlicerFile[layerIndex].Clone());
                }

                if (clip.Count == SlicerFile.LayerCount)
                {
                    clip.IsFullBackup = true;
                }
            }

            SnapshotLayers = null;

            if (clip.Count == 0)
            {
                if(Count > 0 && this[0].LayerCount == clip.LayerCount)
                    return null;
            }

            SuppressRestoreWork(() =>
            {
                var oldCurrentIndex = _currentIndex;
                CurrentIndex = -1;

                // Remove all redo's for integrity
                for (int i = oldCurrentIndex - 1; i >= 0; i--)
                {
                    //if(this[i].IsFullBackup) continue; // Full backups can survive
                    RemoveAt(i);
                }

                if (safeClip is not null)
                {
                    Insert(0, safeClip);
                }
                Insert(0, clip);

                CurrentIndex = 0;
            });
            
            return clip;
        }

        /// <summary>
        /// Collect differences and create a clip
        /// </summary>
        public ClipboardItem Clip(Operations.Operation operation, Layer[] layersSnapshot = null, bool doFullBackup = false)
        {
            string description = operation.ToString();
            if (!description.StartsWith(operation.Title)) description = $"{operation.Title}: {description}";
            var clip = Clip(description, layersSnapshot, doFullBackup);
            if (clip is null) return null;
            clip.Operation = operation;
            return clip;
        }

        public void Undo()
        {
            if (!CanUndo) return;
            CurrentIndex++;
        }

        public void Redo()
        {
            if (!CanRedo) return;
            CurrentIndex--;
        }

        public void SetToOldest() => CurrentIndex = Count-1;
        public void SetToNewest() => CurrentIndex = 0;

        #endregion
    }
}