mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
103 lines
3.3 KiB
C#
103 lines
3.3 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.UI;
|
|
using OpenTK;
|
|
using osu.Framework.Input;
|
|
using osu.Game.Graphics.Containers;
|
|
using System.Linq;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public class ModDisplay : Container, IHasCurrentValue<IEnumerable<Mod>>
|
|
{
|
|
private const int fade_duration = 1000;
|
|
|
|
private readonly Bindable<IEnumerable<Mod>> mods = new Bindable<IEnumerable<Mod>>();
|
|
|
|
public Bindable<IEnumerable<Mod>> Current => mods;
|
|
|
|
private readonly FillFlowContainer<ModIcon> iconsContainer;
|
|
private readonly OsuSpriteText unrankedText;
|
|
|
|
public ModDisplay()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
iconsContainer = new ReverseChildIDFillFlowContainer<ModIcon>
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Margin = new MarginPadding { Left = 10, Right = 10 },
|
|
},
|
|
unrankedText = new OsuSpriteText
|
|
{
|
|
AlwaysPresent = true,
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Text = @"/ UNRANKED /",
|
|
Font = @"Venera",
|
|
TextSize = 12,
|
|
}
|
|
};
|
|
|
|
mods.ValueChanged += mods =>
|
|
{
|
|
iconsContainer.Clear();
|
|
foreach (Mod mod in mods)
|
|
{
|
|
iconsContainer.Add(new ModIcon(mod) { Scale = new Vector2(0.6f) });
|
|
}
|
|
|
|
if (IsLoaded)
|
|
appearTransform();
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
appearTransform();
|
|
}
|
|
|
|
private void appearTransform()
|
|
{
|
|
if (mods.Value.Any(m => !m.Ranked))
|
|
unrankedText.FadeInFromZero(fade_duration, Easing.OutQuint);
|
|
else
|
|
unrankedText.Hide();
|
|
|
|
iconsContainer.FinishTransforms();
|
|
iconsContainer.FadeInFromZero(fade_duration, Easing.OutQuint);
|
|
expand();
|
|
using (iconsContainer.BeginDelayedSequence(1200))
|
|
contract();
|
|
}
|
|
|
|
private void expand() => iconsContainer.TransformSpacingTo(new Vector2(5, 0), 500, Easing.OutQuint);
|
|
|
|
private void contract() => iconsContainer.TransformSpacingTo(new Vector2(-25, 0), 500, Easing.OutQuint);
|
|
|
|
protected override bool OnHover(InputState state)
|
|
{
|
|
expand();
|
|
return base.OnHover(state);
|
|
}
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
{
|
|
contract();
|
|
base.OnHoverLost(state);
|
|
}
|
|
}
|
|
}
|