mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 23:13:34 +08:00
119 lines
3.7 KiB
C#
119 lines
3.7 KiB
C#
// 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;
|
|
using osu.Framework.Caching;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Transformations;
|
|
using osu.Game.Graphics.Backgrounds;
|
|
using osu.Game.Modes;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
{
|
|
class ToolbarModeSelector : Container
|
|
{
|
|
const float padding = 10;
|
|
|
|
private FlowContainer modeButtons;
|
|
private Drawable modeButtonLine;
|
|
private ToolbarModeButton activeButton;
|
|
|
|
public Action<PlayMode> OnPlayModeChange;
|
|
|
|
public ToolbarModeSelector()
|
|
{
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new OpaqueBackground(),
|
|
modeButtons = new FlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X,
|
|
Direction = FlowDirection.HorizontalOnly,
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Padding = new MarginPadding { Left = 10, Right = 10 },
|
|
},
|
|
modeButtonLine = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Size = new Vector2(0.3f, 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,
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
int amountButtons = 0;
|
|
foreach (PlayMode m in Enum.GetValues(typeof(PlayMode)))
|
|
{
|
|
++amountButtons;
|
|
|
|
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();
|
|
}
|
|
|
|
private Cached activeMode = new Cached();
|
|
|
|
protected override void UpdateAfterChildren()
|
|
{
|
|
base.UpdateAfterChildren();
|
|
|
|
if (!activeMode.EnsureValid())
|
|
activeMode.Refresh(() => modeButtonLine.MoveToX(activeButton.DrawPosition.X, 200, EasingTypes.OutQuint));
|
|
}
|
|
}
|
|
}
|