1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 23:47:25 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarRulesetTabButton.cs

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

72 lines
2.2 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
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2022-10-11 16:59:07 +08:00
using osu.Framework.Graphics;
2019-06-08 23:27:40 +08:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
2022-10-11 15:30:32 +08:00
using osu.Game.Localisation;
2022-10-11 16:59:07 +08:00
using osu.Game.Rulesets;
2018-04-13 17:19:50 +08:00
2016-12-01 13:22:29 +08:00
namespace osu.Game.Overlays.Toolbar
{
2019-06-13 01:51:21 +08:00
public partial class ToolbarRulesetTabButton : TabItem<RulesetInfo>
{
2019-06-13 01:51:21 +08:00
private readonly RulesetButton ruleset;
2019-02-28 12:31:40 +08:00
2019-06-13 01:51:21 +08:00
public ToolbarRulesetTabButton(RulesetInfo value)
2019-06-08 23:27:40 +08:00
: base(value)
{
2019-06-08 23:27:40 +08:00
AutoSizeAxes = Axes.X;
RelativeSizeAxes = Axes.Y;
2019-06-13 01:51:21 +08:00
Child = ruleset = new RulesetButton
{
2019-06-08 23:27:40 +08:00
Active = false,
};
2018-04-13 17:19:50 +08:00
2019-06-08 23:27:40 +08:00
var rInstance = value.CreateInstance();
2018-04-13 17:19:50 +08:00
2019-06-08 23:27:40 +08:00
ruleset.TooltipMain = rInstance.Description;
ruleset.TooltipSub = ToolbarStrings.PlaySomeRuleset(rInstance.Description);
2019-06-08 23:27:40 +08:00
ruleset.SetIcon(rInstance.CreateIcon());
}
2018-04-13 17:19:50 +08:00
2019-06-08 23:27:40 +08:00
protected override void OnActivated() => ruleset.Active = true;
protected override void OnDeactivated() => ruleset.Active = false;
2019-06-13 01:51:21 +08:00
private partial class RulesetButton : ToolbarButton
{
protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverSounds();
[Resolved]
private OsuColour colours { get; set; } = null!;
public RulesetButton()
{
2024-01-15 04:13:00 +08:00
ButtonContent.Padding = new MarginPadding(PADDING)
{
Bottom = 5
};
}
2019-06-08 23:27:40 +08:00
public bool Active
{
set => Scheduler.AddOnce(() =>
{
IconContainer.Colour = value ? Color4Extensions.FromHex("#00FFAA") : colours.GrayF;
});
}
2018-04-13 17:19:50 +08:00
protected override bool OnClick(ClickEvent e)
{
Parent!.TriggerClick();
return base.OnClick(e);
}
}
}
2017-05-30 16:12:11 +08:00
}