mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
161 lines
4.8 KiB
C#
161 lines
4.8 KiB
C#
// 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.Allocation;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
{
|
|
public class LeaderboardModSelector : CompositeDrawable
|
|
{
|
|
public readonly BindableList<IMod> SelectedMods = new BindableList<IMod>();
|
|
public readonly Bindable<IRulesetInfo> Ruleset = new Bindable<IRulesetInfo>();
|
|
|
|
private readonly FillFlowContainer<ModButton> modsContainer;
|
|
|
|
public LeaderboardModSelector()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
InternalChild = modsContainer = new FillFlowContainer<ModButton>
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Full,
|
|
Spacing = new Vector2(4),
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
Ruleset.BindValueChanged(onRulesetChanged, true);
|
|
}
|
|
|
|
[Resolved]
|
|
private IRulesetStore rulesets { get; set; }
|
|
|
|
private void onRulesetChanged(ValueChangedEvent<IRulesetInfo> ruleset)
|
|
{
|
|
SelectedMods.Clear();
|
|
modsContainer.Clear();
|
|
|
|
if (ruleset.NewValue == null)
|
|
return;
|
|
|
|
var rulesetInstance = rulesets.GetRuleset(ruleset.NewValue.OnlineID)?.CreateInstance();
|
|
|
|
if (rulesetInstance == null)
|
|
return;
|
|
|
|
modsContainer.Add(new ModButton(new ModNoMod()));
|
|
modsContainer.AddRange(rulesetInstance.AllMods.Where(m => m.UserPlayable).Select(m => new ModButton(m)));
|
|
|
|
modsContainer.ForEach(button =>
|
|
{
|
|
button.Anchor = Anchor.TopCentre;
|
|
button.Origin = Anchor.TopCentre;
|
|
button.OnSelectionChanged = selectionChanged;
|
|
});
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
updateHighlighted();
|
|
return base.OnHover(e);
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
base.OnHoverLost(e);
|
|
updateHighlighted();
|
|
}
|
|
|
|
private void selectionChanged(IMod mod, bool selected)
|
|
{
|
|
if (selected)
|
|
SelectedMods.Add(mod);
|
|
else
|
|
SelectedMods.Remove(mod);
|
|
|
|
updateHighlighted();
|
|
}
|
|
|
|
private void updateHighlighted()
|
|
{
|
|
if (SelectedMods.Any())
|
|
return;
|
|
|
|
modsContainer.Children.Where(button => !button.IsHovered).ForEach(button => button.Highlighted.Value = !IsHovered);
|
|
}
|
|
|
|
public void DeselectAll() => modsContainer.ForEach(mod => mod.Selected.Value = false);
|
|
|
|
private class ModButton : ModIcon
|
|
{
|
|
private const int duration = 200;
|
|
|
|
public readonly BindableBool Highlighted = new BindableBool();
|
|
public Action<IMod, bool> OnSelectionChanged;
|
|
|
|
public ModButton(IMod mod)
|
|
: base(mod)
|
|
{
|
|
Scale = new Vector2(0.4f);
|
|
Add(new HoverClickSounds());
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Highlighted.BindValueChanged(highlighted =>
|
|
{
|
|
if (Selected.Value)
|
|
return;
|
|
|
|
this.FadeColour(highlighted.NewValue ? Color4.White : Color4.DimGray, duration, Easing.OutQuint);
|
|
}, true);
|
|
|
|
Selected.BindValueChanged(selected =>
|
|
{
|
|
OnSelectionChanged?.Invoke(Mod, selected.NewValue);
|
|
Highlighted.TriggerChange();
|
|
}, true);
|
|
}
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
{
|
|
Selected.Toggle();
|
|
return true;
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
Highlighted.Value = true;
|
|
return false;
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
base.OnHoverLost(e);
|
|
Highlighted.Value = false;
|
|
}
|
|
}
|
|
}
|
|
}
|