mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
144 lines
4.6 KiB
C#
144 lines
4.6 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osuTK;
|
|
using osuTK.Input;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Rulesets.Mods;
|
|
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
{
|
|
public abstract class ModSection : Container
|
|
{
|
|
private readonly OsuSpriteText headerLabel;
|
|
|
|
public FillFlowContainer<ModButtonEmpty> ButtonsContainer { get; }
|
|
|
|
public Action<Mod> Action;
|
|
protected abstract Key[] ToggleKeys { get; }
|
|
public abstract ModType ModType { get; }
|
|
|
|
public string Header
|
|
{
|
|
get => headerLabel.Text;
|
|
set => headerLabel.Text = value;
|
|
}
|
|
|
|
public IEnumerable<Mod> SelectedMods => buttons.Select(b => b.SelectedMod).Where(m => m != null);
|
|
|
|
public IEnumerable<Mod> Mods
|
|
{
|
|
set
|
|
{
|
|
var modContainers = value.Select(m =>
|
|
{
|
|
if (m == null)
|
|
return new ModButtonEmpty();
|
|
|
|
return new ModButton(m)
|
|
{
|
|
SelectionChanged = Action,
|
|
};
|
|
}).ToArray();
|
|
|
|
ButtonsContainer.Children = modContainers;
|
|
buttons = modContainers.OfType<ModButton>().ToArray();
|
|
}
|
|
}
|
|
|
|
private ModButton[] buttons = { };
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
{
|
|
if (ToggleKeys != null)
|
|
{
|
|
var index = Array.IndexOf(ToggleKeys, e.Key);
|
|
if (index > -1 && index < buttons.Length)
|
|
buttons[index].SelectNext(e.ShiftPressed ? -1 : 1);
|
|
}
|
|
|
|
return base.OnKeyDown(e);
|
|
}
|
|
|
|
public void DeselectAll() => DeselectTypes(buttons.Select(b => b.SelectedMod?.GetType()).Where(t => t != null));
|
|
|
|
/// <summary>
|
|
/// Deselect one or more mods in this section.
|
|
/// </summary>
|
|
/// <param name="modTypes">The types of <see cref="Mod"/>s which should be deselected.</param>
|
|
/// <param name="immediate">Set to true to bypass animations and update selections immediately.</param>
|
|
public void DeselectTypes(IEnumerable<Type> modTypes, bool immediate = false)
|
|
{
|
|
int delay = 0;
|
|
foreach (var button in buttons)
|
|
{
|
|
Mod selected = button.SelectedMod;
|
|
if (selected == null) continue;
|
|
foreach (var type in modTypes)
|
|
if (type.IsInstanceOfType(selected))
|
|
{
|
|
if (immediate)
|
|
button.Deselect();
|
|
else
|
|
Scheduler.AddDelayed(button.Deselect, delay += 50);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Select one or more mods in this section and deselects all other ones.
|
|
/// </summary>
|
|
/// <param name="modTypes">The types of <see cref="Mod"/>s which should be selected.</param>
|
|
public void SelectTypes(IEnumerable<Type> modTypes)
|
|
{
|
|
foreach (var button in buttons)
|
|
{
|
|
int i = Array.FindIndex(button.Mods, m => modTypes.Any(t => t.IsInstanceOfType(m)));
|
|
|
|
if (i >= 0)
|
|
button.SelectAt(i);
|
|
else
|
|
button.Deselect();
|
|
}
|
|
}
|
|
|
|
protected ModSection()
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Origin = Anchor.TopCentre;
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
headerLabel = new OsuSpriteText
|
|
{
|
|
Origin = Anchor.TopLeft,
|
|
Anchor = Anchor.TopLeft,
|
|
Position = new Vector2(0f, 0f),
|
|
Font = @"Exo2.0-Bold"
|
|
},
|
|
ButtonsContainer = new FillFlowContainer<ModButtonEmpty>
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Origin = Anchor.BottomLeft,
|
|
Anchor = Anchor.BottomLeft,
|
|
Spacing = new Vector2(50f, 0f),
|
|
Margin = new MarginPadding
|
|
{
|
|
Top = 6,
|
|
},
|
|
AlwaysPresent = true
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|