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

167 lines
5.8 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;
2016-12-01 13:22:29 +08:00
using osu.Framework.Allocation;
2016-09-30 17:45:27 +08:00
using osu.Framework.Graphics;
2016-12-01 13:22:29 +08:00
using osu.Framework.Graphics.Colour;
2016-09-30 17:45:27 +08:00
using osu.Framework.Graphics.Containers;
2016-12-01 13:22:29 +08:00
using osu.Framework.Graphics.Sprites;
2016-10-07 19:38:52 +08:00
using osu.Framework.Graphics.Transformations;
2016-12-01 13:22:29 +08:00
using osu.Framework.Input;
2016-10-13 22:57:05 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics;
2016-11-14 17:03:20 +08:00
using osu.Game.Modes;
using osu.Game.Online.API;
2016-12-01 13:22:29 +08:00
using OpenTK;
using OpenTK.Graphics;
2016-09-30 17:45:27 +08:00
2016-12-01 13:22:29 +08:00
namespace osu.Game.Overlays.Toolbar
2016-09-30 17:45:27 +08:00
{
public class Toolbar : OverlayContainer, IOnlineComponent
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;
2016-10-28 21:21:47 +08:00
public Action OnMusicController;
private ToolbarModeSelector modeSelector;
2016-11-01 22:24:14 +08:00
private ToolbarButton userButton;
private Box solidBackground;
private Box gradientBackground;
2016-09-30 17:45:27 +08:00
private const int transition_time = 250;
private const float alpha_hovering = 0.8f;
private const float alpha_normal = 0.6f;
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
}
protected override bool OnHover(InputState state)
{
solidBackground.FadeTo(alpha_hovering, transition_time, EasingTypes.OutQuint);
gradientBackground.FadeIn(transition_time, EasingTypes.OutQuint);
2016-11-15 19:35:47 +08:00
return true;
}
protected override void OnHoverLost(InputState state)
{
solidBackground.FadeTo(alpha_normal, transition_time, EasingTypes.OutQuint);
gradientBackground.FadeOut(transition_time, EasingTypes.OutQuint);
}
2016-11-01 22:24:14 +08:00
public Toolbar()
2016-09-30 17:45:27 +08:00
{
Children = new Drawable[]
{
solidBackground = new Box
2016-09-30 17:45:27 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = new Color4(0.1f, 0.1f, 0.1f, 1),
Alpha = alpha_normal,
},
gradientBackground = new Box
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft,
Alpha = 0,
Height = 90,
ColourInfo = ColourInfo.GradientVertical(new Color4(0.1f, 0.1f, 0.1f, 0.5f), new Color4(0.1f, 0.1f, 0.1f, 0f)),
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,
2016-10-22 17:05:46 +08:00
AutoSizeAxes = Axes.X,
Children = new Drawable[]
2016-10-03 19:39:32 +08:00
{
new ToolbarButton
{
2016-11-07 16:58:32 +08:00
Icon = FontAwesome.fa_gear,
2016-10-04 18:57:32 +08:00
TooltipMain = "Settings",
TooltipSub = "Change your settings",
2016-11-04 11:27:43 +08:00
Action = () => OnSettings?.Invoke()
},
new ToolbarButton
{
2016-11-07 16:58:32 +08:00
Icon = FontAwesome.fa_home,
TooltipMain = "Home",
2016-10-04 18:57:32 +08:00
TooltipSub = "Return to the main menu",
2016-11-04 11:27:43 +08:00
Action = () => OnHome?.Invoke()
},
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,
2016-10-22 17:05:46 +08:00
AutoSizeAxes = Axes.X,
2016-10-03 19:39:32 +08:00
Children = new []
{
2016-10-28 21:21:47 +08:00
new ToolbarButton
{
2016-11-07 19:00:20 +08:00
Icon = FontAwesome.fa_music,
2016-11-05 16:17:48 +08:00
Action = () => OnMusicController?.Invoke()
2016-10-28 21:21:47 +08:00
},
new ToolbarButton
{
2016-11-07 16:58:32 +08:00
Icon = FontAwesome.fa_search
},
2016-11-01 22:24:14 +08:00
userButton = new ToolbarButton
{
2016-11-07 16:58:32 +08:00
Icon = FontAwesome.fa_user,
},
new ToolbarButton
{
2016-11-07 16:58:32 +08:00
Icon = FontAwesome.fa_bars
},
2016-10-03 19:39:32 +08:00
}
2016-09-30 17:45:27 +08:00
}
};
2016-11-01 22:24:14 +08:00
RelativeSizeAxes = Axes.X;
Size = new Vector2(1, height);
}
[BackgroundDependencyLoader]
private void load(APIAccess api, OsuConfigManager config)
2016-11-01 22:24:14 +08:00
{
api.Register(this);
2016-09-30 17:45:27 +08:00
}
2016-10-03 19:39:32 +08:00
public void SetGameMode(PlayMode mode) => modeSelector.SetGameMode(mode);
public void APIStateChanged(APIAccess api, APIState state)
{
switch (state)
{
default:
userButton.Text = @"Guest";
break;
case APIState.Online:
userButton.Text = api.Username;
break;
}
}
2016-09-30 17:45:27 +08:00
}
}