1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarModeSelector.cs

113 lines
3.6 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Linq;
2016-12-01 13:22:29 +08:00
using osu.Framework.Caching;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
2016-12-01 13:22:29 +08:00
using osu.Framework.Graphics.Sprites;
2017-02-25 20:12:39 +08:00
using osu.Framework.Graphics.Transforms;
2016-12-01 13:22:29 +08:00
using osu.Game.Modes;
using OpenTK;
using OpenTK.Graphics;
2016-12-01 13:22:29 +08:00
namespace osu.Game.Overlays.Toolbar
{
2017-03-07 09:59:19 +08:00
internal class ToolbarModeSelector : Container
{
2017-03-07 09:59:19 +08:00
private const float padding = 10;
2017-03-02 02:33:01 +08:00
private FillFlowContainer modeButtons;
private Drawable modeButtonLine;
private ToolbarModeButton activeButton;
public Action<PlayMode> OnPlayModeChange;
public ToolbarModeSelector()
{
RelativeSizeAxes = Axes.Y;
2017-03-07 09:59:19 +08:00
Children = new[]
{
new OpaqueBackground(),
2017-03-02 02:33:01 +08:00
modeButtons = new FillFlowContainer
{
RelativeSizeAxes = Axes.Y,
2016-10-22 17:05:46 +08:00
AutoSizeAxes = Axes.X,
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Horizontal,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Padding = new MarginPadding { Left = padding, Right = padding },
},
modeButtonLine = new Container
{
Size = new Vector2(padding * 2 + ToolbarButton.WIDTH, 3),
Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft,
Masking = true,
EdgeEffect = new EdgeEffect
{
Type = EdgeEffectType.Glow,
Colour = new Color4(255, 194, 224, 100),
Radius = 15,
Roundness = 15,
},
Children = new []
{
new Box
{
RelativeSizeAxes = Axes.Both,
}
}
}
};
foreach (PlayMode m in Enum.GetValues(typeof(PlayMode)))
{
var localMode = m;
modeButtons.Add(new ToolbarModeButton
{
Mode = m,
Action = delegate
{
SetGameMode(localMode);
OnPlayModeChange?.Invoke(localMode);
}
});
}
}
protected override void Update()
{
base.Update();
Size = new Vector2(modeButtons.DrawSize.X, 1);
}
public void SetGameMode(PlayMode mode)
{
foreach (ToolbarModeButton m in modeButtons.Children.Cast<ToolbarModeButton>())
{
bool isActive = m.Mode == mode;
m.Active = isActive;
if (isActive)
activeButton = m;
}
activeMode.Invalidate();
}
2016-11-01 23:53:13 +08:00
private Cached activeMode = new Cached();
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
if (!activeMode.EnsureValid())
activeMode.Refresh(() => modeButtonLine.MoveToX(activeButton.DrawPosition.X, 200, EasingTypes.OutQuint));
}
}
}