1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/PerformancePointsCounter.cs

193 lines
6.6 KiB
C#
Raw Normal View History

2021-09-30 16:00:15 +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 System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2021-10-05 10:26:13 +08:00
using System.Threading;
using System.Threading.Tasks;
2021-09-30 16:54:56 +08:00
using JetBrains.Annotations;
2021-09-30 16:00:15 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio.Track;
using osu.Framework.Graphics;
2021-09-30 16:54:56 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2021-09-30 16:00:15 +08:00
using osu.Framework.Graphics.Textures;
using osu.Framework.Localisation;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
2021-09-30 16:54:56 +08:00
using osuTK;
2021-09-30 16:00:15 +08:00
namespace osu.Game.Screens.Play.HUD
{
2021-10-04 19:34:08 +08:00
public class PerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
2021-09-30 16:00:15 +08:00
{
public bool UsesFixedAnchor { get; set; }
2021-09-30 16:54:56 +08:00
[CanBeNull]
[Resolved(CanBeNull = true)]
2021-09-30 16:00:15 +08:00
private ScoreProcessor scoreProcessor { get; set; }
2021-10-04 19:59:31 +08:00
[Resolved(CanBeNull = true)]
2021-09-30 16:54:56 +08:00
[CanBeNull]
2021-10-04 19:33:54 +08:00
private GameplayState gameplayState { get; set; }
2021-09-30 16:00:15 +08:00
2021-10-05 10:26:13 +08:00
[CanBeNull]
2021-10-01 19:56:03 +08:00
private TimedDifficultyAttributes[] timedAttributes;
2021-10-05 10:26:13 +08:00
private readonly CancellationTokenSource loadCancellationSource = new CancellationTokenSource();
2021-10-04 19:34:08 +08:00
public PerformancePointsCounter()
2021-09-30 16:00:15 +08:00
{
Current.Value = DisplayedCount = 0;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours, BeatmapDifficultyCache difficultyCache)
2021-09-30 16:00:15 +08:00
{
Colour = colours.BlueLighter;
2021-10-04 19:33:54 +08:00
if (gameplayState != null)
2021-09-30 16:54:56 +08:00
{
2021-10-05 14:10:56 +08:00
var gameplayWorkingBeatmap = new GameplayWorkingBeatmap(gameplayState.Beatmap);
difficultyCache.GetTimedDifficultyAttributesAsync(gameplayWorkingBeatmap, gameplayState.Ruleset, gameplayState.Mods.ToArray(), loadCancellationSource.Token)
2021-10-05 10:26:13 +08:00
.ContinueWith(r => Schedule(() => timedAttributes = r.Result), TaskContinuationOptions.OnlyOnRanToCompletion);
2021-09-30 16:54:56 +08:00
}
2021-09-30 16:00:15 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2021-09-30 16:54:56 +08:00
if (scoreProcessor != null)
{
2021-09-30 16:54:56 +08:00
scoreProcessor.NewJudgement += onNewJudgement;
scoreProcessor.JudgementReverted += onJudgementReverted;
}
}
private bool isValid;
protected bool IsValid
{
set
{
if (value == isValid)
return;
isValid = value;
DrawableCount.FadeTo(isValid ? 1 : 0.3f, 1000, Easing.OutQuint);
}
2021-09-30 16:00:15 +08:00
}
private void onNewJudgement(JudgementResult judgement)
{
2021-10-05 10:26:13 +08:00
if (gameplayState?.Score == null || timedAttributes == null || timedAttributes.Length == 0)
2021-09-30 16:54:56 +08:00
return;
2021-10-05 14:10:56 +08:00
int attribIndex = Array.BinarySearch(timedAttributes, 0, timedAttributes.Length, new TimedDifficultyAttributes(judgement.HitObject.GetEndTime(), null));
2021-09-30 16:00:15 +08:00
if (attribIndex < 0)
attribIndex = ~attribIndex - 1;
attribIndex = Math.Clamp(attribIndex, 0, timedAttributes.Length - 1);
2021-10-05 14:10:56 +08:00
var calculator = gameplayState.Ruleset.CreatePerformanceCalculator(timedAttributes[attribIndex].Attributes, gameplayState.Score.ScoreInfo);
Current.Value = (int)Math.Round(calculator?.Calculate() ?? 0, MidpointRounding.AwayFromZero);
IsValid = true;
}
private void onJudgementReverted(JudgementResult obj)
{
IsValid = false;
2021-09-30 16:00:15 +08:00
}
2021-09-30 16:54:52 +08:00
protected override LocalisableString FormatCount(int count) => count.ToString(@"D");
2021-09-30 16:00:15 +08:00
2021-09-30 16:54:52 +08:00
protected override IHasText CreateText() => new TextComponent();
2021-09-30 16:00:15 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (scoreProcessor != null)
scoreProcessor.NewJudgement -= onNewJudgement;
loadCancellationSource?.Cancel();
2021-09-30 16:00:15 +08:00
}
2021-09-30 16:54:52 +08:00
private class TextComponent : CompositeDrawable, IHasText
{
public LocalisableString Text
{
get => text.Text;
set => text.Text = value;
}
private readonly OsuSpriteText text;
public TextComponent()
{
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(2),
Children = new Drawable[]
{
text = new OsuSpriteText
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Font = OsuFont.Numeric.With(size: 16)
},
new OsuSpriteText
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Text = @"pp",
Font = OsuFont.Numeric.With(size: 8),
Padding = new MarginPadding { Bottom = 1.5f }, // align baseline better
2021-09-30 16:54:52 +08:00
}
}
};
}
}
2021-10-05 14:10:56 +08:00
// TODO: This class shouldn't exist, but requires breaking changes to allow DifficultyCalculator to receive an IBeatmap.
2021-09-30 16:00:15 +08:00
private class GameplayWorkingBeatmap : WorkingBeatmap
{
2021-10-04 19:33:54 +08:00
private readonly IBeatmap gameplayBeatmap;
2021-09-30 16:00:15 +08:00
2021-10-04 19:33:54 +08:00
public GameplayWorkingBeatmap(IBeatmap gameplayBeatmap)
2021-09-30 16:00:15 +08:00
: base(gameplayBeatmap.BeatmapInfo, null)
{
this.gameplayBeatmap = gameplayBeatmap;
}
public override IBeatmap GetPlayableBeatmap(RulesetInfo ruleset, IReadOnlyList<Mod> mods = null, TimeSpan? timeout = null)
2021-10-04 19:33:54 +08:00
=> gameplayBeatmap;
2021-09-30 16:00:15 +08:00
2021-10-04 19:33:54 +08:00
protected override IBeatmap GetBeatmap() => gameplayBeatmap;
2021-09-30 16:00:15 +08:00
protected override Texture GetBackground() => throw new NotImplementedException();
protected override Track GetBeatmapTrack() => throw new NotImplementedException();
protected internal override ISkin GetSkin() => throw new NotImplementedException();
public override Stream GetStream(string storagePath) => throw new NotImplementedException();
}
}
}