2022-03-27 21:07:52 +00: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-04 20:17:40 +00:00
|
|
|
using osu.Game.Overlays;
|
2022-05-06 20:36:08 +00:00
|
|
|
using System.Collections.Generic;
|
2022-05-14 18:16:33 +00:00
|
|
|
using System.Linq;
|
2022-05-06 14:31:59 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-03-27 21:07:52 +00:00
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
|
|
|
{
|
2022-05-25 20:18:30 +00:00
|
|
|
public partial class FreeModSelectOverlay : ModSelectOverlay
|
2022-03-27 21:07:52 +00:00
|
|
|
{
|
2023-09-11 07:55:45 +00:00
|
|
|
protected override bool ShowModEffects => false;
|
2022-03-27 21:07:52 +00:00
|
|
|
|
2022-05-14 18:16:33 +00:00
|
|
|
protected override bool AllowCustomisation => false;
|
|
|
|
|
2022-03-27 21:07:52 +00:00
|
|
|
public new Func<Mod, bool> IsValidMod
|
|
|
|
{
|
|
|
|
get => base.IsValidMod;
|
2022-04-17 20:16:59 +00:00
|
|
|
set => base.IsValidMod = m => m.UserPlayable && value.Invoke(m);
|
2022-03-27 21:07:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 20:29:57 +00:00
|
|
|
public FreeModSelectOverlay()
|
2022-05-04 20:17:40 +00:00
|
|
|
: base(OverlayColourScheme.Plum)
|
2022-03-27 21:07:52 +00:00
|
|
|
{
|
|
|
|
IsValidMod = _ => true;
|
|
|
|
}
|
|
|
|
|
2022-06-21 10:49:01 +00:00
|
|
|
protected override ModColumn CreateModColumn(ModType modType) => new ModColumn(modType, true);
|
2022-05-06 14:31:59 +00:00
|
|
|
|
2023-06-05 10:49:07 +00:00
|
|
|
protected override IEnumerable<ShearedButton> CreateFooterButtons()
|
|
|
|
=> base.CreateFooterButtons()
|
2023-06-18 16:02:16 +00:00
|
|
|
.Prepend(SelectAllModsButton = new SelectAllModsButton(this)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
});
|
2022-03-27 21:07:52 +00:00
|
|
|
}
|
|
|
|
}
|