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/DefaultPerformancePointsCounter.cs

160 lines
5.4 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-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
{
public class DefaultPerformancePointsCounter : RollingCounter<int>, ISkinnableDrawable
{
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-09-30 16:54:56 +08:00
[CanBeNull]
[Resolved(CanBeNull = true)]
2021-09-30 16:00:15 +08:00
private Player player { get; set; }
2021-10-01 19:56:03 +08:00
private TimedDifficultyAttributes[] timedAttributes;
2021-09-30 16:00:15 +08:00
private Ruleset gameplayRuleset;
public DefaultPerformancePointsCounter()
{
Current.Value = DisplayedCount = 0;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Colour = colours.BlueLighter;
2021-09-30 16:54:56 +08:00
if (player != null)
{
gameplayRuleset = player.GameplayRuleset;
timedAttributes = gameplayRuleset.CreateDifficultyCalculator(new GameplayWorkingBeatmap(player.GameplayBeatmap)).CalculateTimed(player.Mods.Value.ToArray()).ToArray();
}
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)
scoreProcessor.NewJudgement += onNewJudgement;
2021-09-30 16:00:15 +08:00
}
private void onNewJudgement(JudgementResult judgement)
{
2021-10-01 20:31:26 +08:00
if (player == null || timedAttributes.Length == 0)
2021-09-30 16:54:56 +08:00
return;
2021-10-01 19:56:03 +08:00
var 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);
var ppProcessor = gameplayRuleset.CreatePerformanceCalculator(timedAttributes[attribIndex].Attributes, player.Score.ScoreInfo);
Current.Value = (int)(ppProcessor?.Calculate() ?? 0);
}
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;
}
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)
}
}
};
}
}
2021-09-30 16:00:15 +08:00
private class GameplayWorkingBeatmap : WorkingBeatmap
{
private readonly GameplayBeatmap gameplayBeatmap;
public GameplayWorkingBeatmap(GameplayBeatmap gameplayBeatmap)
: base(gameplayBeatmap.BeatmapInfo, null)
{
this.gameplayBeatmap = gameplayBeatmap;
}
public override IBeatmap GetPlayableBeatmap(RulesetInfo ruleset, IReadOnlyList<Mod> mods = null, TimeSpan? timeout = null)
=> gameplayBeatmap.PlayableBeatmap;
2021-09-30 16:00:15 +08:00
protected override IBeatmap GetBeatmap() => gameplayBeatmap.PlayableBeatmap;
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();
}
}
}