2020-07-21 18:03:17 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-07-24 18:41:34 +08:00
|
|
|
/// Shows incremental bonus score achieved for a spinner.
|
2020-07-21 18:03:17 +08:00
|
|
|
/// </summary>
|
|
|
|
public class SpinnerBonusDisplay : CompositeDrawable
|
|
|
|
{
|
2020-10-01 11:15:34 +08:00
|
|
|
private static readonly int score_per_tick = new SpinnerBonusTick().CreateJudgement().MaxNumericResult;
|
|
|
|
|
2020-07-21 18:03:17 +08:00
|
|
|
private readonly OsuSpriteText bonusCounter;
|
|
|
|
|
|
|
|
public SpinnerBonusDisplay()
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
InternalChild = bonusCounter = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Font = OsuFont.Numeric.With(size: 24),
|
|
|
|
Alpha = 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private int displayedCount;
|
|
|
|
|
|
|
|
public void SetBonusCount(int count)
|
|
|
|
{
|
|
|
|
if (displayedCount == count)
|
|
|
|
return;
|
|
|
|
|
|
|
|
displayedCount = count;
|
2020-10-01 11:15:34 +08:00
|
|
|
bonusCounter.Text = $"{score_per_tick * count}";
|
2020-07-21 18:03:17 +08:00
|
|
|
bonusCounter.FadeOutFromOne(1500);
|
|
|
|
bonusCounter.ScaleTo(1.5f).Then().ScaleTo(1f, 1000, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|