1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarRulesetSelector.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

134 lines
4.4 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
2022-06-17 15:37:17 +08:00
#nullable disable
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
using osu.Framework.Graphics.Shapes;
2017-07-26 12:22:46 +08:00
using osu.Game.Rulesets;
2019-06-08 23:27:40 +08:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
using osuTK.Input;
using System.Linq;
2019-06-26 16:52:25 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2018-04-13 17:19:50 +08:00
2016-12-01 13:22:29 +08:00
namespace osu.Game.Overlays.Toolbar
{
public class ToolbarRulesetSelector : RulesetSelector
{
protected Drawable ModeButtonLine { get; private set; }
2018-04-13 17:19:50 +08:00
private readonly Dictionary<string, Sample> selectionSamples = new Dictionary<string, Sample>();
2018-07-10 00:20:21 +08:00
public ToolbarRulesetSelector()
{
RelativeSizeAxes = Axes.Y;
AutoSizeAxes = Axes.X;
2019-06-26 16:52:25 +08:00
}
2018-04-13 17:19:50 +08:00
2019-06-26 16:52:25 +08:00
[BackgroundDependencyLoader]
private void load(AudioManager audio)
2019-06-26 16:52:25 +08:00
{
2019-06-10 08:35:00 +08:00
AddRangeInternal(new[]
{
2019-06-08 23:27:40 +08:00
new OpaqueBackground
{
2019-06-08 23:27:40 +08:00
Depth = 1,
},
ModeButtonLine = new Container
{
2020-09-03 15:29:15 +08:00
Size = new Vector2(Toolbar.HEIGHT, 3),
Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft,
Masking = true,
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Colour = new Color4(255, 194, 224, 100),
Radius = 15,
Roundness = 15,
},
2019-06-08 23:27:40 +08:00
Child = new Box
{
2019-06-08 23:27:40 +08:00
RelativeSizeAxes = Axes.Both,
}
}
2019-06-08 23:27:40 +08:00
});
foreach (var ruleset in Rulesets.AvailableRulesets)
selectionSamples[ruleset.ShortName] = audio.Samples.Get($"UI/ruleset-select-{ruleset.ShortName}");
2019-06-26 16:52:25 +08:00
}
2019-06-26 16:52:25 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
Current.BindDisabledChanged(_ => Scheduler.AddOnce(currentDisabledChanged));
currentDisabledChanged();
2021-05-10 12:58:13 +08:00
Current.BindValueChanged(_ => moveLineToCurrent());
2021-05-10 12:58:13 +08:00
// Scheduled to allow the button flow layout to be computed before the line position is updated
ScheduleAfterChildren(moveLineToCurrent);
2019-06-26 16:52:25 +08:00
}
private void currentDisabledChanged()
{
this.FadeColour(Current.Disabled ? Color4.Gray : Color4.White, 300);
}
private bool hasInitialPosition;
2021-05-10 12:58:13 +08:00
private void moveLineToCurrent()
2019-06-26 16:52:25 +08:00
{
2019-07-23 14:35:12 +08:00
if (SelectedTab != null)
{
ModeButtonLine.MoveToX(SelectedTab.DrawPosition.X, !hasInitialPosition ? 0 : 200, Easing.OutQuint);
if (hasInitialPosition)
selectionSamples[SelectedTab.Value.ShortName]?.Play();
2019-07-23 14:35:12 +08:00
hasInitialPosition = true;
}
2021-05-10 12:58:13 +08:00
}
2018-04-13 17:19:50 +08:00
2019-06-26 16:52:25 +08:00
public override bool HandleNonPositionalInput => !Current.Disabled && base.HandleNonPositionalInput;
public override bool HandlePositionalInput => !Current.Disabled && base.HandlePositionalInput;
public override bool PropagatePositionalInputSubTree => !Current.Disabled && base.PropagatePositionalInputSubTree;
protected override TabItem<RulesetInfo> CreateTabItem(RulesetInfo value) => new ToolbarRulesetTabButton(value);
2019-06-08 23:27:40 +08:00
protected override TabFillFlowContainer CreateTabFlow() => new TabFillFlowContainer
{
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Direction = FillDirection.Horizontal,
};
2018-10-02 11:02:47 +08:00
protected override bool OnKeyDown(KeyDownEvent e)
{
2018-10-02 11:02:47 +08:00
base.OnKeyDown(e);
if (e.ControlPressed && !e.Repeat && e.Key >= Key.Number1 && e.Key <= Key.Number9)
{
2018-10-02 11:02:47 +08:00
int requested = e.Key - Key.Number1;
RulesetInfo found = Rulesets.AvailableRulesets.ElementAtOrDefault(requested);
if (found != null)
2019-06-08 23:27:40 +08:00
Current.Value = found;
return true;
}
return false;
}
}
}