forked from CommunityToolkit/Lottie-Windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scrubber.xaml.cs
578 lines (485 loc) · 23.1 KB
/
Scrubber.xaml.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable enable
using System;
using System.Collections.Specialized;
using System.Numerics;
using LottieViewer.ViewModel;
using Windows.Foundation;
using Windows.System;
using Windows.UI;
using Windows.UI.Composition;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Hosting;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Shapes;
namespace LottieViewer
{
#pragma warning disable SA1303 // Constants must begin with an upper case letter.
#pragma warning disable SA1402 // File may only contain a single type.
/// <summary>
/// A slider-like control for displaying and setting the position of a Lottie animation. Also
/// displays any markers that are part of the Lottie animation.
/// </summary>
public sealed partial class Scrubber : UserControl
{
// Set this to 0 for production. Offsets the Composition pieces to make them
// easier to see when the slider is opaque.
const float c_verticalOffset = 0;
// These values should not be changed - some of the values are hard coded and
// assume the current values.
const float c_thumbRadius = 9;
const float c_thumbStrokeThickness = 2;
const float c_trackWidth = 2;
// The margin on the left and right side of the margin.
const float c_trackMargin = 9;
readonly CompositionPropertySet _properties;
readonly SpriteVisual _decreaseRectangle;
readonly SpriteVisual _trackRectangle;
readonly ShapeVisual _thumb;
readonly CompositionColorBrush _trackRectangleBrush;
readonly CompositionColorBrush _decreaseRectangleBrush;
readonly SolidColorBrush _markerBrush;
LottieVisualDiagnosticsViewModel? _diagnostics;
string _currentVisualStateName = string.Empty;
public event TypedEventHandler<Scrubber, ScrubberValueChangedEventArgs>? ValueChanged;
public Scrubber()
{
this.InitializeComponent();
// Create the brush used for markers.
_markerBrush = new SolidColorBrush(GetResourceBrushColor("LottieBasicBrush"));
// Set our tooltip converter so we are in charge of what is shown on the tooltip.
_slider.ThumbToolTipValueConverter = new ThumbTooltipConverter(this);
// Forward the slider change events to any event listeners.
_slider.ValueChanged += (sender, e) => ValueChanged?.Invoke(this, new ScrubberValueChangedEventArgs(e.OldValue, e.NewValue));
// Set up the Windows.UI.Composition pieces that will display the parts of the slider.
// The XAML slider has its parts set to Opacity=0 so they aren't visible and are
// only used to handle user input.
var c = Window.Current.Compositor;
var container = c.CreateContainerVisual();
// Get the property set. This will be used to animate the trackbar and thumb.
_properties = container.Properties;
// Add a property to scale the width of the track and decrease rectangles.
_properties.InsertScalar("Width", default);
// Create the brushes and set up expression animations so their colors can
// be changed by writing to the property set.
var thumbFillBrush = CreateBoundColorBrush(_properties, "ThumbFillColor");
var thumbStrokeBrush = CreateBoundColorBrush(_properties, "ThumbStrokeColor");
_trackRectangleBrush = CreateBoundColorBrush(_properties, "TrackColor");
_decreaseRectangleBrush = CreateBoundColorBrush(_properties, "DecreaseRectangleColor");
// Create the track rectangle. This is the track that the thumb moves along.
_trackRectangle = c.CreateSpriteVisual();
_trackRectangle.Size = new Vector2(0, c_trackWidth);
_trackRectangle.Brush = _trackRectangleBrush;
container.Children.InsertAtTop(_trackRectangle);
// Create the decrease rectangle. This is the rectangle that will change in width as the
// slider position is changed. It shows on the left side of the thumb to indicate how
// far along the track the position is.
_decreaseRectangle = c.CreateSpriteVisual();
_decreaseRectangle.Size = new Vector2(0, c_trackWidth);
_decreaseRectangle.Brush = _decreaseRectangleBrush;
container.Children.InsertAtTop(_decreaseRectangle);
// Move the decrease and track rectangles into the track of the slider.
_trackRectangle.Offset = new Vector3(9, 15.5F + c_verticalOffset, 0);
_decreaseRectangle.Offset = new Vector3(9, 15.5F + c_verticalOffset, 0);
// Create the thumb.
_thumb = c.CreateShapeVisual();
var thumbEllipse = c.CreateEllipseGeometry();
thumbEllipse.Radius = new Vector2(c_thumbRadius);
thumbEllipse.Center = new Vector2(c_thumbRadius + c_thumbStrokeThickness);
var thumbShape = c.CreateSpriteShape(thumbEllipse);
thumbShape.FillBrush = thumbFillBrush;
thumbShape.StrokeBrush = thumbStrokeBrush;
thumbShape.StrokeThickness = c_thumbStrokeThickness;
_thumb.Shapes.Add(thumbShape);
_thumb.Size = new Vector2((c_thumbRadius + c_thumbStrokeThickness) * 2);
// X value doesn't matter for Offset because it is controlled by an expression animation.
// The Y value is used to position the thumb vertically so it is centered over the track.
_thumb.Offset = new Vector3(0, c_thumbRadius + c_verticalOffset - 3.75F, 0);
container.Children.InsertAtTop(_thumb);
// Attach our custom-drawn UI as a child visual of the slider.
ElementCompositionPreview.SetElementChildVisual(_slider, container);
// Set the initial colors.
UpdateColors();
// Intercept keys so we can customize what the keys do.
ScrubberNavigationKeyHandler.InterceptKeys(this);
}
internal LottieVisualDiagnosticsViewModel? DiagnosticsViewModel
{
get => _diagnostics;
set
{
if (_diagnostics != null)
{
_diagnostics.Markers.CollectionChanged -= Markers_CollectionChanged;
}
_diagnostics = value;
if (_diagnostics != null)
{
_diagnostics.Markers.CollectionChanged += Markers_CollectionChanged;
}
}
}
/// <summary>
/// The current value of the scrubber. Value from 0 to 1.
/// </summary>
public double Value
{
get => _slider.Value;
set => _slider.Value = value;
}
// Associates the given CompositionObject with the scrubber. The object is required
// to have a property called "Progress" that the scrubber position will be bound to.
internal void SetAnimatedCompositionObject(CompositionObject obj)
{
var c = Window.Current.Compositor;
var decreaseRectAnimation = c.CreateExpressionAnimation($"comp.Progress * (our.Width - {c_trackMargin * 2})");
decreaseRectAnimation.SetReferenceParameter("comp", obj);
decreaseRectAnimation.SetReferenceParameter("our", _properties);
_decreaseRectangle.StartAnimation("Size.X", decreaseRectAnimation);
var trackRectangleAnimation = c.CreateExpressionAnimation($"our.Width - {c_trackMargin * 2}");
trackRectangleAnimation.SetReferenceParameter("comp", obj);
trackRectangleAnimation.SetReferenceParameter("our", _properties);
_trackRectangle.StartAnimation("Size.X", trackRectangleAnimation);
var thumbPositionAnimation = c.CreateExpressionAnimation($"comp.Progress * (our.Width - {(c_thumbRadius + c_thumbStrokeThickness) * 1.78}) - 1");
thumbPositionAnimation.SetReferenceParameter("comp", obj);
thumbPositionAnimation.SetReferenceParameter("our", _properties);
_thumb.StartAnimation("Offset.X", thumbPositionAnimation);
}
protected override Size ArrangeOverride(Size finalSize)
{
// Arrange the elements. This has to be done before asking the
// slider for its size.
var result = base.ArrangeOverride(finalSize);
var sliderWidth = _slider.ActualWidth;
// Update the size of the progress rectangle and the position of the thumb.
_properties.InsertScalar("Width", (float)sliderWidth);
// Update the position of the markers.
// Subtract 1 to the width because we need to allow for a marker at offset 1, and
// the markers are 1 pixel wide.
var barWidth = sliderWidth - 1 - (c_trackMargin * 2);
// Adjust the position of the markers.
// Set the margin on each of the rectangles in the grid so that they match
// the offsets of the markers in the view model.
if (_diagnostics is not null)
{
for (var i = 0; i < _diagnostics.Markers.Count; i++)
{
var topRect = (Rectangle)_markersTop.Children[i];
var bottomRect = (Rectangle)_markersBottom.Children[i];
var offset = _diagnostics.Markers[i].ConstrainedInProgress;
topRect.Margin = new Thickness((offset * barWidth) + c_trackMargin, 0, 0, 0);
bottomRect.Margin = new Thickness((offset * barWidth) + c_trackMargin, 0, 0, 0);
}
}
return result;
}
// Called when a keypress indicates that the scrubber should move its position to the left.
void OnScrubberLeftKey(VirtualKeyModifiers modifiers)
{
if (_diagnostics is null)
{
return;
}
var frame = _diagnostics.GetFrameFromNudgedProgress(Value).Number;
// Round the frame down to an integral value.
var roundedFrame = Math.Floor(frame);
if (!IsEffectivelyTheSameFrame(roundedFrame, frame))
{
Value = _diagnostics.GetNudgedProgressFromFrame(roundedFrame);
}
else
{
var previousFrame = roundedFrame - 1;
if (previousFrame < 0)
{
// Wrap around - go to the end.
Value = 1;
}
else
{
Value = _diagnostics.GetNudgedProgressFromFrame(previousFrame);
}
}
}
// Called when a keypress indicates that the scrubber should move its position to the right.
void OnScrubberRightKey(VirtualKeyModifiers modifiers)
{
if (_diagnostics is null)
{
return;
}
var frame = _diagnostics.GetFrameFromNudgedProgress(Value).Number;
// Round the frame up to an integral value.
var roundedFrame = Math.Ceiling(frame);
if (!IsEffectivelyTheSameFrame(roundedFrame, frame))
{
Value = _diagnostics.GetNudgedProgressFromFrame(roundedFrame);
}
else
{
var nextFrame = roundedFrame + 1;
if (nextFrame > _diagnostics.FrameCount)
{
// Wrap around - go to the start.
Value = 0;
}
else
{
Value = _diagnostics.GetNudgedProgressFromFrame(nextFrame);
}
}
}
// Returns true if the 2 frame numbers are effectively the same frame.
// This encapsulates a policy about how far off the frame the scrubber
// needs to be moved before we consider it a different frame for arrow
// key navigation purposes.
static bool IsEffectivelyTheSameFrame(double frameA, double frameB)
=> Math.Abs(frameA - frameB) < 0.1;
// Returns a color brush which has its color bound to the property with the given name.
static CompositionColorBrush CreateBoundColorBrush(CompositionPropertySet propertySet, string propertyName)
{
var c = propertySet.Compositor;
var result = c.CreateColorBrush();
propertySet.InsertColor(propertyName, default);
var expressionAnimation = c.CreateExpressionAnimation($"our.{propertyName}");
expressionAnimation.SetReferenceParameter("our", propertySet);
result.StartAnimation(nameof(result.Color), expressionAnimation);
return result;
}
Brush GetResourceBrush(string resourceName) => (Brush)App.Current.Resources[resourceName];
Color GetResourceBrushColor(string resourceName) => ((SolidColorBrush)GetResourceBrush(resourceName)).Color;
void UpdateColors()
{
switch (_currentVisualStateName)
{
case "":
case "Normal":
SetColors(
markers: GetResourceBrushColor("LottieBasicBrush"),
thumbFill: GetResourceBrushColor("LottieBasicBrush"),
thumbStroke: Colors.Transparent,
track: GetResourceBrushColor("SliderTrackFill"),
decreaseRectangle: GetResourceBrushColor("LottieBasicBrush"));
break;
case "Disabled":
SetColors(
markers: Colors.Transparent,
thumbFill: GetResourceBrushColor("DisabledBrush"),
thumbStroke: Colors.Transparent,
track: GetResourceBrushColor("SliderTrackFillDisabled"),
decreaseRectangle: GetResourceBrushColor("SliderTrackValueFillDisabled"));
break;
case "Pressed":
case "PointerOver":
SetColors(
markers: Colors.White,
thumbFill: GetResourceBrushColor("LottieBasicBrush"),
thumbStroke: GetResourceBrushColor("LottieBasicBrush"),
track: GetResourceBrushColor("SliderTrackFillPointerOver"),
decreaseRectangle: GetResourceBrushColor("LottieBasicBrush"));
break;
default:
throw new InvalidOperationException();
}
}
void SetColors(Color markers, Color thumbFill, Color thumbStroke, Color track, Color decreaseRectangle)
{
_markerBrush.Color = markers;
_properties.InsertColor("ThumbFillColor", thumbFill);
_properties.InsertColor("ThumbStrokeColor", thumbStroke);
_properties.InsertColor("TrackColor", track);
_properties.InsertColor("DecreaseRectangleColor", decreaseRectangle);
}
// Called by our custom VisualStateManager when there is a transition to one of the CommonStates.
internal void OnSliderVisualStateChange(string stateName)
{
_currentVisualStateName = stateName;
UpdateColors();
}
// Returns a single-pixel-wide Rectangle for displaying a marker above or below the track.
Rectangle CreateMarkerRectangle() => new Rectangle() { Fill = _markerBrush, Width = 1, HorizontalAlignment = HorizontalAlignment.Left };
void Markers_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
switch (e.Action)
{
case NotifyCollectionChangedAction.Add:
// Add rectangles to display each marker. There are 2 rectangles - one
// that sits above the track, and one that sits below the track.
_markersTop.Children.Add(CreateMarkerRectangle());
_markersBottom.Children.Add(CreateMarkerRectangle());
break;
case NotifyCollectionChangedAction.Remove:
// One marker was removed - remove a rectangle from the top and bottom.
_markersTop.Children.RemoveAt(0);
_markersBottom.Children.RemoveAt(0);
break;
case NotifyCollectionChangedAction.Move:
case NotifyCollectionChangedAction.Replace:
// Moving and replacing doesn't affect the number of items, so nothing to do.
break;
case NotifyCollectionChangedAction.Reset:
// Remove all the rectangles.
_markersTop.Children.Clear();
_markersBottom.Children.Clear();
break;
default:
throw new InvalidOperationException();
}
// Force another arrange so that the markers can be set to the correct positions.
InvalidateArrange();
}
// Formats the tooltip text.
sealed class ThumbTooltipConverter : IValueConverter
{
readonly Scrubber _owner;
internal ThumbTooltipConverter(Scrubber owner)
{
_owner = owner;
}
object IValueConverter.Convert(object value, Type targetType, object parameter, string language)
{
var ownerDiagnostics = _owner._diagnostics;
if (ownerDiagnostics is null)
{
return string.Empty;
}
// Convert the current progress value to a frame number, taking into account the
// nudge factor, and rounding to 1 decimal place.
var currentFrame = ownerDiagnostics.GetFrameFromNudgedProgress(_owner.Value);
return $"{currentFrame.Number:0.#}";
}
object IValueConverter.ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}
// Intercepts and interprets keys that would normally be used to move the slider, so that
// the policy for what each key does can be implemented outside of the control.
sealed class ScrubberNavigationKeyHandler
{
readonly Scrubber _owner;
bool _isMenuPressed;
bool _isControlPressed;
bool _isShiftPressed;
internal static void InterceptKeys(Scrubber owner)
=> new ScrubberNavigationKeyHandler(owner);
ScrubberNavigationKeyHandler(Scrubber owner)
{
_owner = owner;
owner.PreviewKeyDown += OnKeyDown;
owner.PreviewKeyUp += OnKeyUp;
}
VirtualKeyModifiers GetModifiers()
{
var result = VirtualKeyModifiers.None;
if (_isControlPressed)
{
result |= VirtualKeyModifiers.Control;
}
if (_isMenuPressed)
{
result |= VirtualKeyModifiers.Menu;
}
if (_isShiftPressed)
{
result |= VirtualKeyModifiers.Shift;
}
return result;
}
void OnKeyDown(object sender, KeyRoutedEventArgs e)
{
switch (e.Key)
{
case VirtualKey.Left:
case VirtualKey.Down:
if (_owner.IsEnabled)
{
_owner.OnScrubberLeftKey(GetModifiers());
e.Handled = true;
}
break;
case VirtualKey.Right:
case VirtualKey.Up:
if (_owner.IsEnabled)
{
_owner.OnScrubberRightKey(GetModifiers());
e.Handled = true;
}
break;
case VirtualKey.Control:
_isControlPressed = true;
break;
case VirtualKey.Menu:
_isMenuPressed = true;
break;
case VirtualKey.Shift:
_isShiftPressed = true;
break;
}
}
void OnKeyUp(object sender, KeyRoutedEventArgs e)
{
switch (e.Key)
{
case VirtualKey.Left:
case VirtualKey.Right:
case VirtualKey.Down:
case VirtualKey.Up:
e.Handled = true;
break;
case VirtualKey.Control:
_isControlPressed = false;
break;
case VirtualKey.Menu:
_isMenuPressed = false;
break;
case VirtualKey.Shift:
_isShiftPressed = false;
break;
}
}
}
}
// A VisualStateManager for the Slider so we can track its visual states and update
// the UI of the Scrubber in sync with the Slider.
internal sealed class SliderVisualStateManager : VisualStateManager
{
// Keep track of the previous state so we don't notify the Scrubber of
// the same state twice in succession.
string _previousCommonState = string.Empty;
protected override bool GoToStateCore(
Control control,
FrameworkElement templateRoot,
string stateName,
VisualStateGroup group,
VisualState state,
bool useTransitions)
{
// Find the Scrubber that this VisualStateManager is under.
var scrubber = GetOwner(control);
if (group?.Name == "CommonStates")
{
var newState = state?.Name;
// Check whether we have already reported this state.
if (newState is not null && _previousCommonState != newState)
{
_previousCommonState = newState;
scrubber.OnSliderVisualStateChange(newState);
}
}
// The base class does the work.
return base.GoToStateCore(control, templateRoot, stateName, group, state, useTransitions);
}
// Returns the Scrubber that the given object is a descendant of.
static Scrubber GetOwner(DependencyObject descendant)
{
var parent = VisualTreeHelper.GetParent(descendant);
return parent is Scrubber scrubber ? scrubber : GetOwner(parent);
}
}
}