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

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

120 lines
3.6 KiB
C#
Raw Normal View History

2022-12-12 06:47: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.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Scoring;
2022-12-12 18:53:07 +08:00
using osu.Game.Rulesets.UI;
2022-12-12 06:47:17 +08:00
namespace osu.Game.Screens.Play.HUD.JudgementCounter
{
public partial class JudgementCounter : OverlayContainer
{
public BindableBool ShowName = new BindableBool();
public Bindable<FillDirection> Direction = new Bindable<FillDirection>();
public readonly JudgementCounterInfo Result;
public JudgementCounter(JudgementCounterInfo result)
{
Result = result;
}
public OsuSpriteText ResultName = null!;
2022-12-12 06:47:17 +08:00
private FillFlowContainer flowContainer = null!;
private JudgementRollingCounter counter = null!;
[BackgroundDependencyLoader]
2022-12-12 18:53:07 +08:00
private void load(OsuColour colours, DrawableRuleset ruleset)
2022-12-12 06:47:17 +08:00
{
AutoSizeAxes = Axes.Both;
InternalChild = flowContainer = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
counter = new JudgementRollingCounter
{
Current = Result.ResultCount
},
ResultName = new OsuSpriteText
2022-12-12 06:47:17 +08:00
{
Font = OsuFont.Numeric.With(size: 8),
2022-12-12 18:53:07 +08:00
Text = ruleset.Ruleset.GetDisplayNameForHitResult(Result.ResultInfo.Type)
2022-12-12 06:47:17 +08:00
}
}
};
var result = Result.ResultInfo.Type;
if (result.IsBasic())
{
Colour = colours.ForHitResult(Result.ResultInfo.Type);
return;
}
if (!result.IsBonus())
{
Colour = colours.PurpleLight;
return;
}
Colour = colours.PurpleLighter;
}
protected override void LoadComplete()
{
ShowName.BindValueChanged(value =>
{
if (value.NewValue)
{
ResultName.Show();
2022-12-12 06:47:17 +08:00
return;
}
ResultName.Hide();
2022-12-12 06:47:17 +08:00
}, true);
Direction.BindValueChanged(direction =>
{
flowContainer.Direction = direction.NewValue;
if (direction.NewValue == FillDirection.Vertical)
{
changeAnchor(Anchor.TopLeft);
return;
}
changeAnchor(Anchor.BottomLeft);
void changeAnchor(Anchor anchor) => counter.Anchor = ResultName.Anchor = counter.Origin = ResultName.Origin = anchor;
2022-12-12 06:47:17 +08:00
}, true);
base.LoadComplete();
}
protected override void PopIn()
{
this.FadeInFromZero(500, Easing.OutQuint);
}
protected override void PopOut()
{
this.FadeOut(100);
}
private sealed partial class JudgementRollingCounter : RollingCounter<int>
{
protected override OsuSpriteText CreateSpriteText()
=> base.CreateSpriteText().With(s => s.Font = s.Font.With(fixedWidth: true, size: 16));
protected override double RollingDuration => 750;
}
}
}