1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 21:27:24 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/DefaultComboCounter.cs

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

48 lines
1.4 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
2017-04-07 20:20:31 +08:00
using System;
2018-11-16 04:37:21 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2021-07-24 04:37:08 +08:00
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play.HUD
2017-04-07 20:20:31 +08:00
{
public class DefaultComboCounter : RollingCounter<int>, ISkinnableDrawable
2017-04-07 20:20:31 +08:00
{
public bool UsesFixedAnchor { get; set; }
public DefaultComboCounter()
2017-04-07 20:20:31 +08:00
{
Current.Value = DisplayedCount = 0;
}
2018-04-13 17:19:50 +08:00
2018-11-16 04:37:21 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours, ScoreProcessor scoreProcessor)
{
Colour = colours.BlueLighter;
Current.BindTo(scoreProcessor.Combo);
}
2018-11-16 04:37:21 +08:00
2021-07-24 04:37:08 +08:00
protected override LocalisableString FormatCount(int count)
2017-04-07 20:20:31 +08:00
{
return $@"{count}x";
}
2018-04-13 17:19:50 +08:00
2017-04-07 20:20:31 +08:00
protected override double GetProportionalDuration(int currentValue, int newValue)
{
return Math.Abs(currentValue - newValue) * RollingDuration * 100.0f;
}
2018-04-13 17:19:50 +08:00
protected override OsuSpriteText CreateSpriteText()
=> base.CreateSpriteText().With(s => s.Font = s.Font.With(size: 20f));
2017-04-07 20:20:31 +08:00
}
2018-01-05 19:21:19 +08:00
}