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.Graphics;
|
2016-10-16 20:10:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-15 15:25:41 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-11-15 15:25:41 +08:00
|
|
|
|
using osu.Framework.Input;
|
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;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
|
|
|
|
public Action OnSettings;
|
|
|
|
|
public Action OnHome;
|
|
|
|
|
public Action<PlayMode> OnPlayModeChange;
|
2016-10-28 21:21:47 +08:00
|
|
|
|
public Action OnMusicController;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2016-10-04 18:41:18 +08:00
|
|
|
|
private ToolbarModeSelector modeSelector;
|
2016-11-01 22:24:14 +08:00
|
|
|
|
private ToolbarButton userButton;
|
2016-11-15 15:25:41 +08:00
|
|
|
|
private Box gradientBackground;
|
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()
|
|
|
|
|
{
|
2016-10-19 00:53:31 +08:00
|
|
|
|
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-11-15 15:25:41 +08:00
|
|
|
|
protected override bool OnHover(InputState state)
|
|
|
|
|
{
|
|
|
|
|
gradientBackground.FadeIn(200);
|
2016-11-15 19:35:47 +08:00
|
|
|
|
return true;
|
2016-11-15 15:25:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
|
|
|
{
|
|
|
|
|
gradientBackground.FadeOut(200);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
public Toolbar()
|
2016-09-30 17:45:27 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-11-15 15:25:41 +08:00
|
|
|
|
Colour = new Color4(0.1f, 0.1f, 0.1f, 0.6f)
|
|
|
|
|
},
|
|
|
|
|
gradientBackground = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Height = 90,
|
2016-11-16 02:09:30 +08:00
|
|
|
|
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,
|
2016-10-04 18:41:18 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-03 19:39:32 +08:00
|
|
|
|
{
|
2016-10-04 16:15:03 +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()
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
|
|
|
|
new ToolbarButton
|
|
|
|
|
{
|
2016-11-07 16:58:32 +08:00
|
|
|
|
Icon = FontAwesome.fa_home,
|
2016-10-04 18:41:18 +08:00
|
|
|
|
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()
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
2016-10-04 18:41:18 +08:00
|
|
|
|
modeSelector = new ToolbarModeSelector
|
|
|
|
|
{
|
2016-10-04 18:57:32 +08:00
|
|
|
|
OnPlayModeChange = OnPlayModeChange
|
2016-10-04 18:41:18 +08:00
|
|
|
|
}
|
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
|
|
|
|
},
|
2016-10-04 16:15:03 +08:00
|
|
|
|
new ToolbarButton
|
|
|
|
|
{
|
2016-11-07 16:58:32 +08:00
|
|
|
|
Icon = FontAwesome.fa_search
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
2016-11-01 22:24:14 +08:00
|
|
|
|
userButton = new ToolbarButton
|
2016-10-04 16:15:03 +08:00
|
|
|
|
{
|
2016-11-07 16:58:32 +08:00
|
|
|
|
Icon = FontAwesome.fa_user,
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
|
|
|
|
new ToolbarButton
|
|
|
|
|
{
|
2016-11-07 16:58:32 +08:00
|
|
|
|
Icon = FontAwesome.fa_bars
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
2016-11-09 07:13:20 +08:00
|
|
|
|
userButton.Text = config.Get<string>(OsuConfig.Username);
|
2016-09-30 17:45:27 +08:00
|
|
|
|
}
|
2016-10-03 19:39:32 +08:00
|
|
|
|
|
2016-10-04 18:41:18 +08:00
|
|
|
|
public void SetGameMode(PlayMode mode) => modeSelector.SetGameMode(mode);
|
2016-09-30 17:45:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|