// Copyright (c) 2007-2017 ppy Pty Ltd . // 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.Transforms; using osu.Game.Modes; using OpenTK; using OpenTK.Graphics; namespace osu.Game.Overlays.Toolbar { class ToolbarModeSelector : Container { const float padding = 10; private FillFlowContainer modeButtons; private Drawable modeButtonLine; private ToolbarModeButton activeButton; public Action OnPlayModeChange; public ToolbarModeSelector() { RelativeSizeAxes = Axes.Y; Children = new Drawable[] { new OpaqueBackground(), modeButtons = new FillFlowContainer { RelativeSizeAxes = Axes.Y, AutoSizeAxes = Axes.X, Direction = FillDirection.Right, 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, } } } }; 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()) { 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)); } } }