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.cs

111 lines
3.7 KiB
C#
Raw Normal View History

2016-09-30 17:45:27 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-10-13 22:57:05 +08:00
using System;
using OpenTK;
using OpenTK.Graphics;
using osu.Framework;
2016-09-30 17:45:27 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2016-10-07 19:38:52 +08:00
using osu.Framework.Graphics.Transformations;
2016-10-13 22:57:05 +08:00
using osu.Game.Configuration;
using osu.Game.GameModes.Play;
2016-10-13 22:57:05 +08:00
using osu.Game.Graphics;
2016-10-16 20:10:06 +08:00
using osu.Framework.Graphics.Sprites;
2016-09-30 17:45:27 +08:00
namespace osu.Game.Overlays
{
2016-10-16 17:14:17 +08:00
public class Toolbar : OverlayContainer
2016-09-30 17:45:27 +08:00
{
2016-10-13 22:57:05 +08:00
private const float height = 50;
public Action OnSettings;
public Action OnHome;
public Action<PlayMode> OnPlayModeChange;
private ToolbarModeSelector modeSelector;
2016-09-30 17:45:27 +08:00
2016-10-13 22:57:05 +08:00
private const int transition_time = 200;
2016-10-07 19:38:52 +08:00
2016-10-13 22:57:05 +08:00
protected override void PopIn()
2016-10-07 19:38:52 +08:00
{
2016-10-13 22:57:05 +08:00
MoveToY(0, transition_time, EasingTypes.OutQuint);
FadeIn(transition_time, EasingTypes.OutQuint);
}
2016-10-07 19:38:52 +08:00
2016-10-13 22:57:05 +08:00
protected override void PopOut()
{
MoveToY(-DrawSize.Y, transition_time, EasingTypes.InQuint);
2016-10-13 22:57:05 +08:00
FadeOut(transition_time, EasingTypes.InQuint);
2016-10-07 19:38:52 +08:00
}
2016-10-10 16:17:26 +08:00
public override void Load(BaseGame game)
2016-09-30 17:45:27 +08:00
{
2016-10-10 16:17:26 +08:00
base.Load(game);
2016-09-30 17:45:27 +08:00
RelativeSizeAxes = Axes.X;
2016-09-30 17:45:27 +08:00
Size = new Vector2(1, height);
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = new Color4(0.1f, 0.1f, 0.1f, 0.4f)
2016-10-03 19:39:32 +08:00
},
2016-10-04 18:57:32 +08:00
new FlowContainer
2016-10-03 19:39:32 +08:00
{
Direction = FlowDirection.HorizontalOnly,
RelativeSizeAxes = Axes.Y,
Children = new Drawable[]
2016-10-03 19:39:32 +08:00
{
new ToolbarButton
{
Icon = FontAwesome.gear,
2016-10-04 18:57:32 +08:00
TooltipMain = "Settings",
TooltipSub = "Change your settings",
Action = OnSettings
},
new ToolbarButton
{
Icon = FontAwesome.home,
TooltipMain = "Home",
2016-10-04 18:57:32 +08:00
TooltipSub = "Return to the main menu",
Action = OnHome
},
modeSelector = new ToolbarModeSelector
{
2016-10-04 18:57:32 +08:00
OnPlayModeChange = OnPlayModeChange
}
2016-10-03 19:39:32 +08:00
}
},
2016-10-04 18:57:32 +08:00
new FlowContainer
2016-10-03 19:39:32 +08:00
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Direction = FlowDirection.HorizontalOnly,
RelativeSizeAxes = Axes.Y,
Children = new []
{
new ToolbarButton
{
Icon = FontAwesome.search
},
new ToolbarButton
{
Icon = FontAwesome.user,
2016-10-10 16:17:26 +08:00
Text = ((OsuGame)game).Config.Get<string>(OsuConfig.Username)
},
new ToolbarButton
{
Icon = FontAwesome.bars
},
2016-10-03 19:39:32 +08:00
}
2016-09-30 17:45:27 +08:00
}
};
}
2016-10-03 19:39:32 +08:00
public void SetGameMode(PlayMode mode) => modeSelector.SetGameMode(mode);
2016-09-30 17:45:27 +08:00
}
}