2022-09-05 10:49:48 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-12-21 18:41:50 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2020-01-24 10:52:32 +08:00
|
|
|
using System.Collections.Generic;
|
2019-12-21 21:08:28 +08:00
|
|
|
using System.Linq;
|
2022-09-03 05:07:30 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-12-21 18:41:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2022-09-03 05:07:30 +08:00
|
|
|
using osu.Game.Configuration;
|
2019-12-21 18:41:50 +08:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
2021-06-08 22:09:18 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2019-12-21 18:41:50 +08:00
|
|
|
using osuTK;
|
2019-12-21 19:52:53 +08:00
|
|
|
using osuTK.Graphics;
|
2019-12-21 18:41:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.HUD.HitErrorMeters
|
|
|
|
{
|
|
|
|
public class ColourHitErrorMeter : HitErrorMeter
|
|
|
|
{
|
2019-12-22 08:17:56 +08:00
|
|
|
private const int animation_duration = 200;
|
2022-06-13 15:35:46 +08:00
|
|
|
private const int drawable_judgement_size = 8;
|
2019-12-21 19:30:41 +08:00
|
|
|
|
2022-09-22 14:21:27 +08:00
|
|
|
[SettingSource("Judgement count", "The number of displayed judgements")]
|
2022-09-22 14:18:20 +08:00
|
|
|
public BindableNumber<int> JudgementCount { get; } = new BindableNumber<int>(20)
|
2022-09-03 05:07:30 +08:00
|
|
|
{
|
|
|
|
MinValue = 1,
|
2022-09-22 14:45:23 +08:00
|
|
|
MaxValue = 50,
|
2022-09-03 05:07:30 +08:00
|
|
|
};
|
|
|
|
|
2022-09-22 14:21:27 +08:00
|
|
|
[SettingSource("Judgement spacing", "The space between each displayed judgement")]
|
|
|
|
public BindableNumber<float> JudgementSpacing { get; } = new BindableNumber<float>(2)
|
2022-09-03 05:07:30 +08:00
|
|
|
{
|
|
|
|
MinValue = 0,
|
2022-09-03 07:27:22 +08:00
|
|
|
MaxValue = 10,
|
2022-09-03 05:07:30 +08:00
|
|
|
};
|
|
|
|
|
2022-09-22 14:21:27 +08:00
|
|
|
[SettingSource("Judgement shape", "The shape of each displayed judgement")]
|
|
|
|
public Bindable<ShapeStyle> JudgementShape { get; } = new Bindable<ShapeStyle>();
|
2022-09-04 23:24:12 +08:00
|
|
|
|
|
|
|
private readonly JudgementFlow judgementsFlow;
|
|
|
|
|
2021-05-17 18:46:50 +08:00
|
|
|
public ColourHitErrorMeter()
|
2019-12-21 18:41:50 +08:00
|
|
|
{
|
2019-12-21 19:30:41 +08:00
|
|
|
AutoSizeAxes = Axes.Both;
|
2022-09-22 14:21:27 +08:00
|
|
|
InternalChild = judgementsFlow = new JudgementFlow
|
|
|
|
{
|
2022-09-22 14:45:23 +08:00
|
|
|
JudgementShape = { BindTarget = JudgementShape },
|
|
|
|
JudgementSpacing = { BindTarget = JudgementSpacing },
|
|
|
|
JudgementCount = { BindTarget = JudgementCount }
|
2022-09-22 14:21:27 +08:00
|
|
|
};
|
2019-12-21 21:08:28 +08:00
|
|
|
}
|
|
|
|
|
2021-06-08 22:09:18 +08:00
|
|
|
protected override void OnNewJudgement(JudgementResult judgement)
|
|
|
|
{
|
|
|
|
if (!judgement.Type.IsScorable() || judgement.Type.IsBonus())
|
|
|
|
return;
|
|
|
|
|
2022-09-22 14:45:23 +08:00
|
|
|
judgementsFlow.Push(GetColourForHitResult(judgement.Type));
|
2021-06-08 22:09:18 +08:00
|
|
|
}
|
2019-12-21 21:08:28 +08:00
|
|
|
|
2021-09-20 22:22:36 +08:00
|
|
|
public override void Clear() => judgementsFlow.Clear();
|
2021-09-18 04:19:41 +08:00
|
|
|
|
2022-09-04 23:24:12 +08:00
|
|
|
private class JudgementFlow : FillFlowContainer<HitErrorShape>
|
2019-12-21 21:08:28 +08:00
|
|
|
{
|
2020-01-24 10:52:32 +08:00
|
|
|
public override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
|
2022-09-09 15:30:08 +08:00
|
|
|
|
2022-09-22 14:45:23 +08:00
|
|
|
public readonly Bindable<ShapeStyle> JudgementShape = new Bindable<ShapeStyle>();
|
|
|
|
|
|
|
|
public readonly Bindable<float> JudgementSpacing = new Bindable<float>();
|
|
|
|
|
|
|
|
public readonly Bindable<int> JudgementCount = new Bindable<int>();
|
2019-12-22 08:06:57 +08:00
|
|
|
|
2022-09-03 07:27:22 +08:00
|
|
|
public JudgementFlow()
|
2019-12-21 21:08:28 +08:00
|
|
|
{
|
2022-09-03 07:27:22 +08:00
|
|
|
Width = drawable_judgement_size;
|
2019-12-22 08:06:57 +08:00
|
|
|
Direction = FillDirection.Vertical;
|
|
|
|
LayoutDuration = animation_duration;
|
|
|
|
LayoutEasing = Easing.OutQuint;
|
2019-12-21 21:08:28 +08:00
|
|
|
}
|
|
|
|
|
2022-09-22 14:45:23 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
JudgementCount.BindValueChanged(count =>
|
|
|
|
{
|
|
|
|
removeExtraJudgements();
|
|
|
|
updateMetrics();
|
|
|
|
});
|
|
|
|
|
|
|
|
JudgementSpacing.BindValueChanged(_ => updateMetrics(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Push(Color4 colour)
|
2019-12-21 21:08:28 +08:00
|
|
|
{
|
2022-09-09 15:30:08 +08:00
|
|
|
Add(new HitErrorShape(colour, drawable_judgement_size)
|
|
|
|
{
|
2022-09-22 14:45:23 +08:00
|
|
|
Shape = { BindTarget = JudgementShape },
|
2022-09-09 15:30:08 +08:00
|
|
|
});
|
2019-12-21 21:08:28 +08:00
|
|
|
|
2022-09-22 14:45:23 +08:00
|
|
|
removeExtraJudgements();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void removeExtraJudgements()
|
|
|
|
{
|
|
|
|
var remainingChildren = Children.Where(c => !c.IsRemoved);
|
|
|
|
|
|
|
|
while (remainingChildren.Count() > JudgementCount.Value)
|
|
|
|
remainingChildren.First().Remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateMetrics()
|
|
|
|
{
|
|
|
|
Height = JudgementCount.Value * (drawable_judgement_size + JudgementSpacing.Value) - JudgementSpacing.Value;
|
|
|
|
Spacing = new Vector2(0, JudgementSpacing.Value);
|
2019-12-21 21:08:28 +08:00
|
|
|
}
|
2019-12-21 19:30:41 +08:00
|
|
|
}
|
|
|
|
|
2022-09-05 10:49:48 +08:00
|
|
|
public class HitErrorShape : Container
|
2019-12-21 19:30:41 +08:00
|
|
|
{
|
2019-12-22 08:30:17 +08:00
|
|
|
public bool IsRemoved { get; private set; }
|
2022-06-13 22:54:43 +08:00
|
|
|
|
2022-09-09 15:30:08 +08:00
|
|
|
public readonly Bindable<ShapeStyle> Shape = new Bindable<ShapeStyle>();
|
|
|
|
|
|
|
|
private readonly Color4 colour;
|
|
|
|
|
2022-09-22 14:24:57 +08:00
|
|
|
private Container content = null!;
|
|
|
|
|
2022-09-09 15:30:08 +08:00
|
|
|
public HitErrorShape(Color4 colour, int size)
|
2022-06-13 22:54:43 +08:00
|
|
|
{
|
2022-09-09 15:30:08 +08:00
|
|
|
this.colour = colour;
|
2022-06-13 22:54:43 +08:00
|
|
|
Size = new Vector2(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
2019-12-22 08:17:56 +08:00
|
|
|
{
|
2022-06-13 22:54:43 +08:00
|
|
|
base.LoadComplete();
|
|
|
|
|
2022-09-22 14:24:57 +08:00
|
|
|
Child = content = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = colour
|
|
|
|
};
|
|
|
|
|
2022-09-09 15:30:08 +08:00
|
|
|
Shape.BindValueChanged(shape =>
|
|
|
|
{
|
|
|
|
switch (shape.NewValue)
|
|
|
|
{
|
|
|
|
case ShapeStyle.Circle:
|
2022-09-22 14:24:57 +08:00
|
|
|
content.Child = new Circle { RelativeSizeAxes = Axes.Both };
|
2022-09-09 15:30:08 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ShapeStyle.Square:
|
2022-09-22 14:24:57 +08:00
|
|
|
content.Child = new Box { RelativeSizeAxes = Axes.Both };
|
2022-09-09 15:30:08 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
|
2022-09-22 14:24:57 +08:00
|
|
|
content.FadeInFromZero(animation_duration, Easing.OutQuint);
|
|
|
|
content.MoveToY(-DrawSize.Y);
|
|
|
|
content.MoveToY(0, animation_duration, Easing.OutQuint);
|
2019-12-22 08:17:56 +08:00
|
|
|
}
|
2019-12-22 08:30:17 +08:00
|
|
|
|
|
|
|
public void Remove()
|
|
|
|
{
|
|
|
|
IsRemoved = true;
|
2022-06-13 22:54:43 +08:00
|
|
|
|
2019-12-22 08:30:17 +08:00
|
|
|
this.FadeOut(animation_duration, Easing.OutQuint).Expire();
|
|
|
|
}
|
2019-12-21 18:41:50 +08:00
|
|
|
}
|
2022-09-04 23:24:12 +08:00
|
|
|
|
|
|
|
public enum ShapeStyle
|
|
|
|
{
|
|
|
|
Circle,
|
|
|
|
Square
|
|
|
|
}
|
2019-12-21 18:41:50 +08:00
|
|
|
}
|
|
|
|
}
|