1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 00:07:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/StarCounter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

165 lines
4.6 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-11-20 15:51:59 +08:00
using osuTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using System;
2017-12-15 17:40:03 +08:00
using System.Linq;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
2016-10-22 16:50:42 +08:00
public class StarCounter : Container
{
private readonly FillFlowContainer<Star> stars;
2018-04-13 17:19:50 +08:00
2016-10-13 10:36:52 +08:00
/// <summary>
/// Maximum amount of stars displayed.
/// </summary>
/// <remarks>
/// This does not limit the counter value, but the amount of stars displayed.
/// </remarks>
public int StarCount { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The added delay for each subsequent star to be animated.
/// </summary>
protected virtual double AnimationDelay => 80;
2018-04-13 17:19:50 +08:00
2017-03-06 17:49:23 +08:00
private const float star_spacing = 4;
2018-04-13 17:19:50 +08:00
private float current;
2018-04-13 17:19:50 +08:00
2016-10-14 06:13:20 +08:00
/// <summary>
/// Amount of stars represented.
/// </summary>
public float Current
2016-10-14 06:13:20 +08:00
{
get => current;
2018-04-13 17:19:50 +08:00
2016-10-14 06:13:20 +08:00
set
{
if (current == value) return;
2018-04-13 17:19:50 +08:00
if (IsLoaded)
animate(value);
current = value;
2016-10-14 06:13:20 +08:00
}
}
2018-04-13 17:19:50 +08:00
2016-10-13 10:36:52 +08:00
/// <summary>
/// Shows a float count as stars. Used as star difficulty display.
/// </summary>
/// <param name="starCount">Maximum amount of stars to display.</param>
public StarCounter(int starCount = 10)
{
StarCount = Math.Max(starCount, 0);
2018-04-13 17:19:50 +08:00
AutoSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
2016-10-13 09:51:50 +08:00
Children = new Drawable[]
{
2017-03-02 02:33:01 +08:00
stars = new FillFlowContainer<Star>
2016-10-13 09:51:50 +08:00
{
AutoSizeAxes = Axes.Both,
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Horizontal,
2017-03-02 02:33:01 +08:00
Spacing = new Vector2(star_spacing),
2022-06-24 20:25:23 +08:00
ChildrenEnumerable = Enumerable.Range(0, StarCount).Select(_ => CreateStar())
2016-10-13 09:51:50 +08:00
}
};
2016-11-01 22:24:14 +08:00
}
2018-04-13 17:19:50 +08:00
public virtual Star CreateStar() => new DefaultStar();
2016-11-01 22:24:14 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2018-04-13 17:19:50 +08:00
2016-10-17 07:30:25 +08:00
// Animate initial state from zero.
ReplayAnimation();
}
2018-04-13 17:19:50 +08:00
2016-10-14 06:13:20 +08:00
public void ResetCount()
{
current = 0;
2016-10-14 06:13:20 +08:00
StopAnimation();
}
2018-04-13 17:19:50 +08:00
public void ReplayAnimation()
{
float t = current;
ResetCount();
Current = t;
}
2018-04-13 17:19:50 +08:00
public void StopAnimation()
{
animate(current);
foreach (var star in stars.Children)
star.FinishTransforms(true);
}
2018-04-13 17:19:50 +08:00
private float getStarScale(int i, float value) => i + 1 <= value ? 1.0f : Interpolation.ValueAt(value, 0, 1.0f, i, i + 1);
2018-04-13 17:19:50 +08:00
private void animate(float newValue)
{
for (int i = 0; i < stars.Children.Count; i++)
{
var star = stars.Children[i];
2017-02-25 20:12:39 +08:00
star.ClearTransforms(true);
2018-04-13 17:19:50 +08:00
double delay = (current <= newValue ? Math.Max(i - current, 0) : Math.Max(current - 1 - i, 0)) * AnimationDelay;
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (star.BeginDelayedSequence(delay))
star.DisplayAt(getStarScale(i, newValue));
}
}
2018-04-13 17:19:50 +08:00
public class DefaultStar : Star
{
private const double scaling_duration = 1000;
private const double fading_duration = 100;
private const Easing scaling_easing = Easing.OutElasticHalf;
private const float min_star_scale = 0.4f;
private const float star_size = 20;
public readonly SpriteIcon Icon;
2019-02-28 12:31:40 +08:00
public DefaultStar()
{
Size = new Vector2(star_size);
2018-04-13 17:19:50 +08:00
InternalChild = Icon = new SpriteIcon
{
2017-12-15 17:40:03 +08:00
Size = new Vector2(star_size),
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.Star,
2017-12-15 17:40:03 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
}
public override void DisplayAt(float scale)
{
2020-11-29 03:35:03 +08:00
scale = (float)Interpolation.Lerp(min_star_scale, 1, Math.Clamp(scale, 0, 1));
this.FadeTo(scale, fading_duration);
Icon.ScaleTo(scale, scaling_duration, scaling_easing);
}
}
public abstract class Star : CompositeDrawable
{
public abstract void DisplayAt(float scale);
}
}
}