1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/LeaderboardModSelector.cs

145 lines
4.3 KiB
C#
Raw Normal View History

2019-08-07 13:42:43 +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.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Mods;
using osu.Framework.Bindables;
using osu.Game.Rulesets;
using osuTK;
using osu.Game.Rulesets.UI;
using osu.Framework.Input.Events;
using osu.Game.Graphics.UserInterface;
using osuTK.Graphics;
using System;
using System.Linq;
using osu.Framework.Extensions.IEnumerableExtensions;
namespace osu.Game.Overlays.BeatmapSet
{
public class LeaderboardModSelector : CompositeDrawable
2019-08-07 13:42:43 +08:00
{
2019-11-11 04:58:07 +08:00
public readonly BindableList<Mod> SelectedMods = new BindableList<Mod>();
2019-11-21 23:56:48 +08:00
public readonly Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
2019-08-07 13:42:43 +08:00
private readonly FillFlowContainer<ModButton> modsContainer;
public LeaderboardModSelector()
{
AutoSizeAxes = Axes.Both;
InternalChild = modsContainer = new FillFlowContainer<ModButton>
2019-08-07 13:42:43 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Full,
Spacing = new Vector2(4),
};
2019-08-12 19:57:16 +08:00
}
2019-08-07 13:42:43 +08:00
2019-11-21 23:56:48 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
Ruleset.BindValueChanged(onRulesetChanged, true);
}
private void onRulesetChanged(ValueChangedEvent<RulesetInfo> ruleset)
{
SelectedMods.Clear();
modsContainer.Clear();
if (ruleset.NewValue == null)
return;
modsContainer.Add(new ModButton(new ModNoMod()));
modsContainer.AddRange(ruleset.NewValue.CreateInstance().GetAllMods().Where(m => m.Ranked).Select(m => new ModButton(m)));
modsContainer.ForEach(button => button.OnSelectionChanged = selectionChanged);
}
2019-11-22 09:29:16 +08:00
protected override bool OnHover(HoverEvent e)
{
updateHighlighted();
return base.OnHover(e);
}
protected override void OnHoverLost(HoverLostEvent e)
{
base.OnHoverLost(e);
updateHighlighted();
}
2019-08-07 13:42:43 +08:00
private void selectionChanged(Mod mod, bool selected)
{
if (selected)
2019-11-11 04:58:07 +08:00
SelectedMods.Add(mod);
2019-08-07 13:42:43 +08:00
else
2019-11-11 04:58:07 +08:00
SelectedMods.Remove(mod);
2019-09-19 22:03:52 +08:00
2019-11-22 00:02:24 +08:00
updateHighlighted();
2019-08-07 13:42:43 +08:00
}
2019-11-22 00:02:24 +08:00
private void updateHighlighted()
2019-08-12 21:20:36 +08:00
{
2019-11-22 00:02:24 +08:00
if (SelectedMods.Any())
return;
2019-11-22 01:34:19 +08:00
modsContainer.Children.Where(button => !button.IsHovered).ForEach(button => button.Highlighted.Value = !IsHovered);
2019-11-22 00:02:24 +08:00
}
2019-08-12 21:20:36 +08:00
2019-11-22 01:34:19 +08:00
public void DeselectAll() => modsContainer.ForEach(mod => mod.Selected.Value = false);
2019-08-07 13:42:43 +08:00
private class ModButton : ModIcon
{
private const int duration = 200;
2019-11-22 01:34:19 +08:00
public readonly BindableBool Highlighted = new BindableBool();
2019-08-07 13:42:43 +08:00
public Action<Mod, bool> OnSelectionChanged;
public ModButton(Mod mod)
: base(mod)
{
2019-11-21 23:50:29 +08:00
Scale = new Vector2(0.4f);
2019-08-07 13:42:43 +08:00
Add(new HoverClickSounds());
}
protected override void LoadComplete()
{
base.LoadComplete();
2019-08-07 13:42:43 +08:00
2019-11-22 01:34:19 +08:00
Highlighted.BindValueChanged(highlighted =>
2019-08-07 13:42:43 +08:00
{
2019-11-22 01:34:19 +08:00
if (Selected.Value)
return;
2019-11-22 01:34:19 +08:00
this.FadeColour(highlighted.NewValue ? Color4.White : Color4.DimGray, duration, Easing.OutQuint);
}, true);
2019-11-22 01:34:19 +08:00
Selected.BindValueChanged(selected =>
2019-11-22 01:22:15 +08:00
{
2019-11-22 01:34:19 +08:00
OnSelectionChanged?.Invoke(Mod, selected.NewValue);
Highlighted.TriggerChange();
2019-11-22 01:22:15 +08:00
}, true);
2019-08-07 13:42:43 +08:00
}
protected override bool OnClick(ClickEvent e)
{
2019-11-22 01:34:19 +08:00
Selected.Toggle();
2019-11-13 21:04:15 +08:00
return true;
2019-08-07 13:42:43 +08:00
}
protected override bool OnHover(HoverEvent e)
{
2019-11-22 01:34:19 +08:00
Highlighted.Value = true;
2019-11-13 21:04:15 +08:00
return false;
2019-08-07 13:42:43 +08:00
}
protected override void OnHoverLost(HoverLostEvent e)
{
base.OnHoverLost(e);
2019-11-22 01:34:19 +08:00
Highlighted.Value = false;
2019-08-07 13:42:43 +08:00
}
}
}
}