2021-01-27 21:15:53 +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 System;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
2021-02-01 17:08:49 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Match
|
2021-01-27 21:15:53 +08:00
|
|
|
{
|
2021-02-01 17:50:32 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="ModSelectOverlay"/> used for free-mod selection in online play.
|
|
|
|
/// </summary>
|
2021-01-27 21:15:53 +08:00
|
|
|
public class FreeModSelectOverlay : ModSelectOverlay
|
|
|
|
{
|
2021-02-01 17:11:20 +08:00
|
|
|
protected override bool AllowCustomisation => false;
|
|
|
|
|
|
|
|
protected override bool Stacked => false;
|
2021-02-01 12:24:56 +08:00
|
|
|
|
2021-01-27 21:15:53 +08:00
|
|
|
protected override ModSection CreateModSection(ModType type) => new FreeModSection(type);
|
|
|
|
|
|
|
|
private class FreeModSection : ModSection
|
|
|
|
{
|
|
|
|
private HeaderCheckbox checkbox;
|
|
|
|
|
|
|
|
public FreeModSection(ModType type)
|
|
|
|
: base(type)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Drawable CreateHeader(string text) => new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Width = 175,
|
|
|
|
Child = checkbox = new HeaderCheckbox
|
|
|
|
{
|
|
|
|
LabelText = text,
|
|
|
|
Changed = onCheckboxChanged
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private void onCheckboxChanged(bool value)
|
|
|
|
{
|
|
|
|
foreach (var button in ButtonsContainer.OfType<ModButton>())
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
button.SelectAt(0);
|
|
|
|
else
|
|
|
|
button.Deselect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
2021-02-02 10:11:28 +08:00
|
|
|
var validButtons = ButtonsContainer.OfType<ModButton>().Where(b => b.Mod.HasImplementation);
|
|
|
|
checkbox.Current.Value = validButtons.All(b => b.Selected);
|
2021-01-27 21:15:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class HeaderCheckbox : OsuCheckbox
|
|
|
|
{
|
|
|
|
public Action<bool> Changed;
|
|
|
|
|
|
|
|
protected override void OnUserChange(bool value)
|
|
|
|
{
|
|
|
|
base.OnUserChange(value);
|
|
|
|
Changed?.Invoke(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|