1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 22:27:39 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/JudgementCounter/JudgementCounterDisplay.cs

138 lines
4.3 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 System;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Configuration;
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
using osuTK;
namespace osu.Game.Screens.Play.HUD.JudgementCounter
{
public partial class JudgementCounterDisplay : CompositeDrawable, ISkinnableDrawable
{
2022-12-17 00:40:39 +08:00
public const int TRANSFORM_DURATION = 500;
2022-12-12 06:47:17 +08:00
public bool UsesFixedAnchor { get; set; }
2022-12-12 22:10:45 +08:00
[SettingSource("Display mode")]
public Bindable<DisplayMode> Mode { get; set; } = new Bindable<DisplayMode>();
2022-12-12 06:47:17 +08:00
[SettingSource("Counter direction")]
public Bindable<Flow> FlowDirection { get; set; } = new Bindable<Flow>();
2022-12-12 06:47:17 +08:00
[SettingSource("Show judgement names")]
public BindableBool ShowName { get; set; } = new BindableBool(true);
[SettingSource("Show max judgement")]
public BindableBool ShowMax { get; set; } = new BindableBool(true);
[Resolved]
private JudgementTally tally { get; set; } = null!;
protected FillFlowContainer JudgementContainer = null!;
2022-12-12 06:47:17 +08:00
[BackgroundDependencyLoader]
private void load()
2022-12-12 06:47:17 +08:00
{
AutoSizeAxes = Axes.Both;
2022-12-12 06:47:17 +08:00
InternalChild = JudgementContainer = new FillFlowContainer
{
Direction = getFlow(FlowDirection.Value),
2022-12-12 06:47:17 +08:00
Spacing = new Vector2(10),
AutoSizeAxes = Axes.Both
};
foreach (var result in tally.Results)
JudgementContainer.Add(createCounter(result));
}
2022-12-12 06:47:17 +08:00
protected override void LoadComplete()
{
2022-12-12 06:47:17 +08:00
base.LoadComplete();
FlowDirection.BindValueChanged(direction =>
{
JudgementContainer.Direction = getFlow(direction.NewValue);
2022-12-12 06:47:17 +08:00
//Can't pass directly due to Enum conversion
foreach (var counter in JudgementContainer.Children.OfType<JudgementCounter>())
counter.Direction.Value = getFlow(direction.NewValue);
}, true);
Mode.BindValueChanged(_ => updateMode(), true);
2022-12-12 06:47:17 +08:00
ShowMax.BindValueChanged(value =>
{
var firstChild = JudgementContainer.Children.FirstOrDefault();
2022-12-17 00:40:39 +08:00
firstChild.FadeTo(value.NewValue ? 1 : 0, TRANSFORM_DURATION, Easing.OutQuint);
2022-12-12 06:47:17 +08:00
}, true);
}
private void updateMode()
2022-12-12 06:47:17 +08:00
{
foreach (var counter in JudgementContainer.Children.OfType<JudgementCounter>().Where(counter => !counter.Result.Type.IsBasic()))
2022-12-12 06:47:17 +08:00
{
switch (Mode.Value)
{
case DisplayMode.Simple:
2022-12-12 06:47:17 +08:00
counter.Hide();
break;
2022-12-12 06:47:17 +08:00
case DisplayMode.Normal:
2022-12-17 00:40:39 +08:00
counter.FadeTo(counter.Result.Type.IsBonus() ? 0 : 1);
break;
2022-12-12 06:47:17 +08:00
case DisplayMode.All:
2022-12-12 06:47:17 +08:00
counter.Show();
break;
2022-12-12 06:47:17 +08:00
default:
throw new ArgumentOutOfRangeException();
}
2022-12-12 06:47:17 +08:00
}
}
private FillDirection getFlow(Flow flow)
{
switch (flow)
{
case Flow.Horizontal:
return FillDirection.Horizontal;
case Flow.Vertical:
return FillDirection.Vertical;
default:
throw new ArgumentOutOfRangeException(nameof(flow), flow, @"Unsupported direction");
}
}
//Used to hide default full option in FillDirection
public enum Flow
{
Horizontal,
Vertical
}
2022-12-12 06:47:17 +08:00
public enum DisplayMode
{
Simple,
Normal,
All
}
2023-01-17 17:16:46 +08:00
private JudgementCounter createCounter(JudgementTally.JudgementCount info)
2022-12-12 06:47:17 +08:00
{
JudgementCounter counter = new JudgementCounter(info)
{
State = { Value = Visibility.Visible },
ShowName = { BindTarget = ShowName }
2022-12-12 06:47:17 +08:00
};
return counter;
}
}
}