1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 05:27:26 +08:00
osu-lazer/osu.Game/Overlays/Mods/ModSection.cs

221 lines
6.7 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Input;
2018-04-13 17:19:50 +08:00
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 System.Threading;
using Humanizer;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Mods
{
public class ModSection : CompositeDrawable
2018-04-13 17:19:50 +08:00
{
private readonly Drawable header;
2018-04-13 17:19:50 +08:00
public FillFlowContainer<ModButtonEmpty> ButtonsContainer { get; }
public Action<Mod> Action;
public Key[] ToggleKeys;
public readonly ModType ModType;
2018-04-13 17:19:50 +08:00
public IEnumerable<Mod> SelectedMods => buttons.Select(b => b.SelectedMod).Where(m => m != null);
private CancellationTokenSource modsLoadCts;
2021-02-04 17:10:55 +08:00
protected bool SelectionAnimationRunning => pendingSelectionOperations.Count > 0;
2019-06-20 23:12:39 +08:00
/// <summary>
/// True when all mod icons have completed loading.
/// </summary>
public bool ModIconsLoaded { get; private set; } = true;
2018-04-13 17:19:50 +08:00
public IEnumerable<Mod> Mods
{
set
{
var modContainers = value.Select(m =>
{
if (m == null)
return new ModButtonEmpty();
return new ModButton(m)
{
2021-02-04 17:10:55 +08:00
SelectionChanged = mod =>
{
ModButtonStateChanged(mod);
Action?.Invoke(mod);
},
2018-04-13 17:19:50 +08:00
};
}).ToArray();
modsLoadCts?.Cancel();
2019-12-06 18:04:55 +08:00
if (modContainers.Length == 0)
{
ModIconsLoaded = true;
header.Hide();
2019-12-06 18:04:55 +08:00
Hide();
return;
}
2019-06-20 23:12:39 +08:00
ModIconsLoaded = false;
LoadComponentsAsync(modContainers, c =>
{
ModIconsLoaded = true;
ButtonsContainer.ChildrenEnumerable = c;
}, (modsLoadCts = new CancellationTokenSource()).Token);
2018-04-13 17:19:50 +08:00
buttons = modContainers.OfType<ModButton>().ToArray();
2019-06-14 00:12:56 +08:00
header.FadeIn(200);
2019-12-06 18:04:55 +08:00
this.FadeIn(200);
2018-04-13 17:19:50 +08:00
}
}
2021-02-04 17:10:55 +08:00
protected virtual void ModButtonStateChanged(Mod mod)
{
}
2019-11-28 21:41:29 +08:00
private ModButton[] buttons = Array.Empty<ModButton>();
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnKeyDown(KeyDownEvent e)
2018-04-13 17:19:50 +08:00
{
if (e.ControlPressed) return false;
if (ToggleKeys != null)
{
2018-10-02 11:02:47 +08:00
var index = Array.IndexOf(ToggleKeys, e.Key);
if (index > -1 && index < buttons.Length)
buttons[index].SelectNext(e.ShiftPressed ? -1 : 1);
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
return base.OnKeyDown(e);
2018-04-13 17:19:50 +08:00
}
2021-02-04 17:10:55 +08:00
private const double initial_multiple_selection_delay = 100;
private readonly Queue<Action> pendingSelectionOperations = new Queue<Action>();
protected override void LoadComplete()
{
base.LoadComplete();
Scheduler.AddDelayed(() =>
{
if (pendingSelectionOperations.TryDequeue(out var dequeuedAction))
dequeuedAction();
}, initial_multiple_selection_delay, true);
}
/// <summary>
/// Selects all mods.
/// </summary>
public void SelectAll()
{
2021-02-04 17:10:55 +08:00
pendingSelectionOperations.Clear();
foreach (var button in buttons.Where(b => !b.Selected))
2021-02-04 17:10:55 +08:00
pendingSelectionOperations.Enqueue(() => button.SelectAt(0));
}
/// <summary>
/// Deselects all mods.
/// </summary>
2021-02-04 17:10:55 +08:00
public void DeselectAll() => DeselectTypes(buttons.Select(b => b.SelectedMod?.GetType()).Where(t => t != null));
2018-04-13 17:19:50 +08:00
/// <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>
2021-02-04 17:10:55 +08:00
public void DeselectTypes(IEnumerable<Type> modTypes)
2018-04-13 17:19:50 +08:00
{
2021-02-04 17:10:55 +08:00
pendingSelectionOperations.Clear();
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
foreach (var button in buttons)
{
2021-02-04 17:10:55 +08:00
if (button.SelectedMod == null) continue;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
foreach (var type in modTypes)
2019-11-11 19:53:22 +08:00
{
2021-02-04 17:10:55 +08:00
if (type.IsInstanceOfType(button.SelectedMod))
pendingSelectionOperations.Enqueue(button.Deselect);
2019-11-11 19:53:22 +08:00
}
2018-04-13 17:19:50 +08:00
}
}
/// <summary>
/// Updates all buttons with the given list of selected mods.
2018-04-13 17:19:50 +08:00
/// </summary>
/// <param name="newSelectedMods">The new list of selected mods to select.</param>
public void UpdateSelectedButtons(IReadOnlyList<Mod> newSelectedMods)
2018-04-13 17:19:50 +08:00
{
foreach (var button in buttons)
updateButtonSelection(button, newSelectedMods);
}
private void updateButtonSelection(ModButton button, IReadOnlyList<Mod> newSelectedMods)
{
foreach (var mod in newSelectedMods)
{
var index = Array.FindIndex(button.Mods, m1 => mod.GetType() == m1.GetType());
if (index < 0)
continue;
var buttonMod = button.Mods[index];
buttonMod.CopyFrom(mod);
button.SelectAt(index);
return;
2018-04-13 17:19:50 +08:00
}
button.Deselect();
2018-04-13 17:19:50 +08:00
}
public ModSection(ModType type)
2018-04-13 17:19:50 +08:00
{
ModType = type;
2018-04-13 17:19:50 +08:00
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
Origin = Anchor.TopCentre;
Anchor = Anchor.TopCentre;
2018-04-13 17:19:50 +08:00
InternalChildren = new[]
2018-04-13 17:19:50 +08:00
{
header = CreateHeader(type.Humanize(LetterCasing.Title)),
2018-04-13 17:19:50 +08:00
ButtonsContainer = new FillFlowContainer<ModButtonEmpty>
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2018-04-13 17:19:50 +08:00
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
Spacing = new Vector2(50f, 0f),
Margin = new MarginPadding
{
2019-11-23 02:23:48 +08:00
Top = 20,
2018-04-13 17:19:50 +08:00
},
AlwaysPresent = true
},
};
}
protected virtual Drawable CreateHeader(string text) => new OsuSpriteText
{
Font = OsuFont.GetFont(weight: FontWeight.Bold),
Text = text
};
2018-04-13 17:19:50 +08:00
}
}