mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
113 lines
3.8 KiB
C#
113 lines
3.8 KiB
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Transformations;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.GameModes.Play;
|
|
using osu.Game.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public class Toolbar : OverlayContainer
|
|
{
|
|
private const float height = 50;
|
|
|
|
public Action OnSettings;
|
|
public Action OnHome;
|
|
public Action<PlayMode> OnPlayModeChange;
|
|
|
|
private ToolbarModeSelector modeSelector;
|
|
|
|
private const int transition_time = 200;
|
|
|
|
protected override void PopIn()
|
|
{
|
|
MoveToY(0, transition_time, EasingTypes.OutQuint);
|
|
FadeIn(transition_time, EasingTypes.OutQuint);
|
|
}
|
|
|
|
protected override void PopOut()
|
|
{
|
|
MoveToY(-DrawSize.Y, transition_time, EasingTypes.InQuint);
|
|
FadeOut(transition_time, EasingTypes.InQuint);
|
|
}
|
|
|
|
public override void Load(BaseGame game)
|
|
{
|
|
base.Load(game);
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
Size = new Vector2(1, height);
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = new Color4(0.1f, 0.1f, 0.1f, 0.4f)
|
|
},
|
|
new FlowContainer
|
|
{
|
|
Direction = FlowDirection.HorizontalOnly,
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X,
|
|
Children = new Drawable[]
|
|
{
|
|
new ToolbarButton
|
|
{
|
|
Icon = FontAwesome.gear,
|
|
TooltipMain = "Settings",
|
|
TooltipSub = "Change your settings",
|
|
Action = OnSettings
|
|
},
|
|
new ToolbarButton
|
|
{
|
|
Icon = FontAwesome.home,
|
|
TooltipMain = "Home",
|
|
TooltipSub = "Return to the main menu",
|
|
Action = OnHome
|
|
},
|
|
modeSelector = new ToolbarModeSelector
|
|
{
|
|
OnPlayModeChange = OnPlayModeChange
|
|
}
|
|
}
|
|
},
|
|
new FlowContainer
|
|
{
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopRight,
|
|
Direction = FlowDirection.HorizontalOnly,
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X,
|
|
Children = new []
|
|
{
|
|
new ToolbarButton
|
|
{
|
|
Icon = FontAwesome.search
|
|
},
|
|
new ToolbarButton
|
|
{
|
|
Icon = FontAwesome.user,
|
|
Text = ((OsuGame)game).Config.Get<string>(OsuConfig.Username)
|
|
},
|
|
new ToolbarButton
|
|
{
|
|
Icon = FontAwesome.bars
|
|
},
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
public void SetGameMode(PlayMode mode) => modeSelector.SetGameMode(mode);
|
|
}
|
|
}
|