2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-31 10:01:42 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-06-21 10:18:52 +08:00
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
2017-03-31 10:01:42 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A type of drawable that has an accent colour.
|
|
|
|
|
/// The accent colour is used to colorize various objects inside a drawable
|
|
|
|
|
/// without colorizing the drawable itself.
|
|
|
|
|
/// </summary>
|
2017-03-31 13:47:59 +08:00
|
|
|
|
public interface IHasAccentColour : IDrawable
|
2017-03-31 10:01:42 +08:00
|
|
|
|
{
|
|
|
|
|
Color4 AccentColour { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 13:47:59 +08:00
|
|
|
|
public static class AccentedColourExtensions
|
2017-03-31 10:01:42 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-08-07 13:20:18 +08:00
|
|
|
|
/// Smoothly adjusts <see cref="IHasAccentColour.AccentColour"/> over time.
|
2017-03-31 10:01:42 +08:00
|
|
|
|
/// </summary>
|
2017-08-07 13:20:18 +08:00
|
|
|
|
/// <returns>A <see cref="TransformSequence{T}"/> to which further transforms can be added.</returns>
|
2017-07-23 02:50:25 +08:00
|
|
|
|
public static TransformSequence<T> FadeAccent<T>(this T accentedDrawable, Color4 newColour, double duration = 0, Easing easing = Easing.None)
|
2017-07-15 00:18:12 +08:00
|
|
|
|
where T : IHasAccentColour
|
2017-07-16 18:59:26 +08:00
|
|
|
|
=> accentedDrawable.TransformTo(nameof(accentedDrawable.AccentColour), newColour, duration, easing);
|
2017-08-07 13:09:49 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-08-07 13:20:18 +08:00
|
|
|
|
/// Smoothly adjusts <see cref="IHasAccentColour.AccentColour"/> over time.
|
2017-08-07 13:09:49 +08:00
|
|
|
|
/// </summary>
|
2017-08-07 13:20:18 +08:00
|
|
|
|
/// <returns>A <see cref="TransformSequence{T}"/> to which further transforms can be added.</returns>
|
2017-08-07 13:09:49 +08:00
|
|
|
|
public static TransformSequence<T> FadeAccent<T>(this TransformSequence<T> t, Color4 newColour, double duration = 0, Easing easing = Easing.None)
|
|
|
|
|
where T : Drawable, IHasAccentColour
|
|
|
|
|
=> t.Append(o => o.FadeAccent(newColour, duration, easing));
|
2017-03-31 10:01:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|