2022-03-28 05:07:52 +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;
|
2022-05-05 04:17:40 +08:00
|
|
|
using osu.Game.Overlays;
|
2022-05-07 04:36:08 +08:00
|
|
|
using System.Collections.Generic;
|
2022-05-15 02:16:33 +08:00
|
|
|
using System.Linq;
|
2022-05-06 22:31:59 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-05-15 02:18:44 +08:00
|
|
|
using osu.Framework.Input;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Framework.Input.Events;
|
2022-05-06 22:31:59 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-03-28 05:07:52 +08:00
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osuTK.Input;
|
2022-05-07 16:17:24 +08:00
|
|
|
using osu.Game.Localisation;
|
2022-03-28 05:07:52 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
|
|
|
{
|
2022-05-15 02:18:44 +08:00
|
|
|
public class FreeModSelectOverlay : ModSelectOverlay, IKeyBindingHandler<PlatformAction>
|
2022-03-28 05:07:52 +08:00
|
|
|
{
|
|
|
|
protected override bool ShowTotalMultiplier => false;
|
|
|
|
|
2022-05-15 02:16:33 +08:00
|
|
|
protected override bool AllowCustomisation => false;
|
|
|
|
|
2022-03-28 05:07:52 +08:00
|
|
|
public new Func<Mod, bool> IsValidMod
|
|
|
|
{
|
|
|
|
get => base.IsValidMod;
|
2022-04-18 04:16:59 +08:00
|
|
|
set => base.IsValidMod = m => m.UserPlayable && value.Invoke(m);
|
2022-03-28 05:07:52 +08:00
|
|
|
}
|
|
|
|
|
2022-05-15 02:18:44 +08:00
|
|
|
private ShearedButton selectAllButton;
|
|
|
|
|
2022-05-11 04:29:57 +08:00
|
|
|
public FreeModSelectOverlay()
|
2022-05-05 04:17:40 +08:00
|
|
|
: base(OverlayColourScheme.Plum)
|
2022-03-28 05:07:52 +08:00
|
|
|
{
|
|
|
|
IsValidMod = _ => true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override ModColumn CreateModColumn(ModType modType, Key[] toggleKeys = null) => new ModColumn(modType, true, toggleKeys);
|
2022-05-06 22:31:59 +08:00
|
|
|
|
2022-05-15 02:16:33 +08:00
|
|
|
protected override IEnumerable<ShearedButton> CreateFooterButtons() => base.CreateFooterButtons().Prepend(
|
2022-05-15 02:18:44 +08:00
|
|
|
selectAllButton = new ShearedButton(BUTTON_WIDTH)
|
2022-05-06 22:31:59 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
Origin = Anchor.BottomLeft,
|
2022-05-07 16:17:24 +08:00
|
|
|
Text = CommonStrings.SelectAll,
|
2022-05-06 22:31:59 +08:00
|
|
|
Action = SelectAll
|
2022-05-15 02:16:33 +08:00
|
|
|
});
|
2022-05-15 02:18:44 +08:00
|
|
|
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<PlatformAction> e)
|
|
|
|
{
|
|
|
|
if (e.Repeat)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (e.Action)
|
|
|
|
{
|
|
|
|
case PlatformAction.SelectAll:
|
|
|
|
selectAllButton.TriggerClick();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<PlatformAction> e)
|
|
|
|
{
|
|
|
|
}
|
2022-03-28 05:07:52 +08:00
|
|
|
}
|
|
|
|
}
|