Skip to content

Commit

Permalink
Merge pull request #11 from Sergio0694/feature_Redstone4
Browse files Browse the repository at this point in the history
New APIs, upgrade to RS4
  • Loading branch information
Sergio0694 committed Nov 2, 2018
2 parents 7aebdc3 + 29cec80 commit 4634ff6
Show file tree
Hide file tree
Showing 42 changed files with 1,514 additions and 1,721 deletions.
60 changes: 25 additions & 35 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,9 @@ await MyControl.StartCompositionFadeScaleAnimationAsync(
EasingFunctionNames.Linear); // Easing function
```

#### ColorBrush animation
```C#
MyBrush.AnimateColor(
#FFFF2B1C, // Target color
250, // Duration in ms
EasingFunctionNames.Linear); // Easing function
```

## `UI.Composition` effects

The library provides several ways to use `UI.Composition` effects. There's a custom acrylic brush that can be used when running Windows 10 build 15063.x or greater, and other "attached" effects. An attached effect (created using the `AttachedCompositionEffectsFactory` class) is an effect that is loaded and then applied to the underlying `Visual` object behing a target `UIElement`. The main advantage of brushes is that they can be initialized and used in XAML and don't need any code-behind. Here are some examples:
The library provides several ways to use `UI.Composition` effects. There are ready to use XAML brushes, a `CompositionBrushBuilder` class to create complex composition effect pipelines, an `AttachedCompositionEffectsFactory` class that provides an alternative way to attach commonly used effects to visual elements, and much more.

#### Declare a shared acrylic brush in XAML

Expand All @@ -91,7 +83,7 @@ The library provides several ways to use `UI.Composition` effects. There's a cus
<!--The acrylic brush to use in the app-->
<brushes:CustomAcrylicBrush
x:Key="InAppGrayAcrylicBrush"
Mode="InAppBlur"
Mode="HostBackdrop"
BlurAmount="8"
Tint="#FF222222"
TintMix="0.6"
Expand All @@ -100,37 +92,36 @@ The library provides several ways to use `UI.Composition` effects. There's a cus
</ResourceDictionary/>
```

**Note**: the `NoiseTextureUri` parameter must be set to a .png image with a noise texture. It is up to the developer to create his own noise texture and to import it into the app. An easy plugin to create a custom noise texture is [NoiseChoice](https://forums.getpaint.net/topic/22500-red-ochre-plug-in-pack-v9-updated-30th-july-2014/) for [Paint.NET](https://www.getpaint.net/).
**Note**: the `NoiseTextureUri` parameter must be set to a .png image with a noise texture. It is up to the developer to create his own noise texture and to import it into the app. An easy plugin to create one is [NoiseChoice](https://forums.getpaint.net/topic/22500-red-ochre-plug-in-pack-v9-updated-30th-july-2014/) for [Paint.NET](https://www.getpaint.net/).

#### Create and assign an acrylic brush in C#
```C#
control.Background = CompositionBrushBuilder.FromHostBackdropAcrylic(Colors.DarkOrange, 0.6f, new Uri("ms-appx:///Assets/noise.png")).AsBrush();
```

#### Get a custom acrylic brush effect:
#### Build an acrylic effect pipeline from scratch:
```C#
AttachedStaticCompositionEffect<Border> attached = await BlurBorder.AttachCompositionInAppCustomAcrylicEffectAsync(
BlurBorder, // The target host control for the effect visual (can be the same as the source)
8, // The amount of blur to apply
800, // The milliseconds to initially apply the blur effect with an automatic animation
Color.FromArgb(byte.MaxValue, 0x1B, 0x1B, 0x1B), // The tint overlay color
0.8f, // The ratio of tint overlay over the source effect (the strength of the tint effect)
null, // Use the default saturation value for the effect (1)
Win2DCanvas, // A CanvasControl in the current visual tree, used to render parts of the acrylic brush
new Uri("ms-appx:///Assets/Misc/noise.png"), // A Uri to a custom noise texture to use to create the effect
BitmapCacheMode.EnableCaching, // The cache mode for the Win2D image to load
false, // Indicates whether to fade the effect it or to display it as soon as possible
true); // Indicates whether or not to automatically dispose the effect when the target `UIElement` is unloaded
Brush brush = CompositionBrushBuilder.FromHostBackdropBrush()
.Effect(source => new LuminanceToAlphaEffect { Source = source })
.Opacity(0.4f)
.Blend(CompositionBrushBuilder.FromHostBackdropBrush(), BlendEffectMode.Multiply)
.Tint(Color.FromArgb(0xFF, 0x14, 0x14, 0x14), 0.8f)
.Blend(CompositionBrushBuilder.FromTiles(new Uri("ms-appx:///Assets/noise.png")), BlendEffectMode.Overlay, EffectPlacement.Background)
.AsBrush();
```

**Note**: in order to remove the effect from the target `UIElement`, it is possible to call the `Dispose` method on the returned `AttachedStaticCompositionEffect<T>` object - calling that method will remove the effect from the object `Visual`.
The `CompositionBrushBuilder` class can also be used to quickly implement custom XAML brushes with an arbitrary effects pipeline. To do so, just inherit from `XamlCompositionEffectBrushBase` and setup your own effects pipeline in the `OnBrushRequested` method.

#### Get an attached blur effect that can be animated (using composition and Win2D effects):
#### Get a custom effect that can be animated:
```C#
AttachedAnimatableCompositionEffect<Border> attached = await MyBorder.AttachCompositionAnimatableBlurEffectAsync(
14f, // The amount of blur to apply when the effect is enabled
0f, // The default amount of blur
false); // Indicates whether or not to immediately apply the effect to the target amount
// Build the effects pipeline
XamlCompositionBrush acrylic = CompositionBrushBuilder.FromHostBackdropAcrylic(Colors.Orange, 0.6f, new Uri("ms-appx:///Assets/noise.png"))
.Saturation(1, out EffectAnimation animation)
.AsBrush();
acrylic.Bind(animation, out XamlEffectAnimation saturation); // Bind the effect animation to the target brush
// Later on, when needed
await attached.AnimateAsync(
FixedAnimationType.In, // Indicates whether to fade the blur effect in or out
TimeSpan.FromMilliseconds(500)); // The animation duration
saturation(0.2f, 250); // Animate the opacity to 0.2 in 250ms
```

## Reveal highlight effect
Expand Down Expand Up @@ -182,8 +173,7 @@ Many utility methods are also available, here are some useful classes:
- `XAMLTransformToolkit`: exposes methods to manually create, start and wait for `DoubleAnimation`(s) and `Storyboard`(s), as well as for quickly assigning a certain `RenderTransform` object to a `UIElement`.
- `DispatcherHelper`: exposes methods to easily execute code on the UI thread or on a target `CoreDispatcher` object
- `Win2DImageHelper`: exposes APIs to quickly load a Win2D image on a `CompositionSurfaceBrush` object
- `ApiInformationHelper`: provides useful methods to check the capabilities of the current device
- `PointerHelper`: exposes APIs to quickly setup pointer event handlers for `UIElement`s

# Requirements
At least Windows 10 November Update (10586.x)
At least Windows 10 April Update (17134.x)
18 changes: 8 additions & 10 deletions UICompositionAnimations/Behaviours/AcrylicEffectHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,14 @@ internal static class AcrylicEffectHelper
/// <param name="colorMix">The amount of tint color to apply</param>
/// <param name="canvas">The optional <see cref="CanvasControl"/> to use to generate the image for the <see cref="BorderEffect"/></param>
/// <param name="uri">The path to the source image to use for the <see cref="BorderEffect"/></param>
/// <param name="options">Indicates whether or not to force the reload of the Win2D image</param>
/// <returns>The resulting effect through the pipeline</returns>
/// <remarks>The method does side effect on the <paramref name="parameters"/> variable</remarks>
[MustUseReturnValue, ItemNotNull]
public static async Task<IGraphicsEffect> ConcatenateEffectWithTintAndBorderAsync(
[NotNull] Compositor compositor,
[NotNull] IGraphicsEffectSource source, [NotNull] IDictionary<String, CompositionBrush> parameters,
[NotNull] IGraphicsEffectSource source, [NotNull] IDictionary<string, CompositionBrush> parameters,
Color color, float colorMix,
[CanBeNull] CanvasControl canvas, [NotNull] Uri uri, BitmapCacheMode options)
[CanBeNull] CanvasControl canvas, [NotNull] Uri uri)
{
// Setup the tint effect
ArithmeticCompositeEffect tint = new ArithmeticCompositeEffect
Expand All @@ -50,8 +49,8 @@ internal static class AcrylicEffectHelper

// Get the noise brush using Win2D
CompositionSurfaceBrush noiseBitmap = canvas == null
? await Win2DImageHelper.LoadImageAsync(compositor, uri, options, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound)
: await Win2DImageHelper.LoadImageAsync(compositor, canvas, uri, options, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound);
? await Win2DImageHelper.LoadImageAsync(compositor, uri, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound, BitmapCacheMode.Default)
: await Win2DImageHelper.LoadImageAsync(compositor, canvas, uri, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound, BitmapCacheMode.Default);

// Make sure the Win2D brush was loaded correctly
if (noiseBitmap != null)
Expand Down Expand Up @@ -82,17 +81,16 @@ internal static class AcrylicEffectHelper
/// <param name="parameters">A dictionary to use to keep track of reference parameters to add when creating a <see cref="CompositionEffectFactory"/></param>
/// <param name="color">The tint color</param>
/// <param name="uri">The path to the source image to use for the <see cref="BorderEffect"/></param>
/// <param name="options">Indicates whether or not to force the reload of the Win2D image</param>
/// <returns>The resulting effect through the pipeline</returns>
/// <remarks>The method does side effect on the <paramref name="parameters"/> variable</remarks>
[MustUseReturnValue, ItemNotNull]
public static async Task<IGraphicsEffect> LoadTextureEffectWithTintAsync(
[NotNull] Compositor compositor, [NotNull] IDictionary<String, CompositionBrush> parameters,
Color color, [NotNull] Uri uri, BitmapCacheMode options)
[NotNull] Compositor compositor, [NotNull] IDictionary<string, CompositionBrush> parameters,
Color color, [NotNull] Uri uri)
{
// Initial setup
ColorSourceEffect colorEffect = new ColorSourceEffect { Color = color };
CompositionSurfaceBrush noiseBitmap = await Win2DImageHelper.LoadImageAsync(compositor, uri, options, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound);
CompositionSurfaceBrush noiseBitmap = await Win2DImageHelper.LoadImageAsync(compositor, uri, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound, BitmapCacheMode.Default);
if (noiseBitmap == null) return colorEffect;

// Blend the effects
Expand All @@ -112,4 +110,4 @@ internal static class AcrylicEffectHelper
return blendEffect;
}
}
}
}

0 comments on commit 4634ff6

Please sign in to comment.