2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-08-06 19:58:53 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2019-06-21 11:33:49 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class OsuMenu : Menu
|
|
|
|
|
{
|
2021-08-06 19:58:53 +08:00
|
|
|
|
private Sample sampleOpen;
|
|
|
|
|
private Sample sampleClose;
|
|
|
|
|
|
|
|
|
|
// todo: this shouldn't be required after https://github.com/ppy/osu-framework/issues/4519 is fixed.
|
|
|
|
|
private bool wasOpened;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public OsuMenu(Direction direction, bool topLevelMenu = false)
|
|
|
|
|
: base(direction, topLevelMenu)
|
|
|
|
|
{
|
|
|
|
|
BackgroundColour = Color4.Black.Opacity(0.5f);
|
|
|
|
|
|
|
|
|
|
MaskingContainer.CornerRadius = 4;
|
|
|
|
|
ItemsContainer.Padding = new MarginPadding(5);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 19:58:53 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
|
|
|
|
sampleOpen = audio.Samples.Get(@"UI/dropdown-open");
|
|
|
|
|
sampleClose = audio.Samples.Get(@"UI/dropdown-close");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void AnimateOpen()
|
|
|
|
|
{
|
2021-08-07 20:38:54 +08:00
|
|
|
|
if (!TopLevelMenu && !wasOpened)
|
2021-08-06 19:58:53 +08:00
|
|
|
|
sampleOpen?.Play();
|
|
|
|
|
|
|
|
|
|
this.FadeIn(300, Easing.OutQuint);
|
|
|
|
|
wasOpened = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void AnimateClose()
|
|
|
|
|
{
|
2021-08-07 20:38:54 +08:00
|
|
|
|
if (!TopLevelMenu && wasOpened)
|
2021-08-06 19:58:53 +08:00
|
|
|
|
sampleClose?.Play();
|
|
|
|
|
|
|
|
|
|
this.FadeOut(300, Easing.OutQuint);
|
|
|
|
|
wasOpened = false;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
protected override void UpdateSize(Vector2 newSize)
|
|
|
|
|
{
|
|
|
|
|
if (Direction == Direction.Vertical)
|
|
|
|
|
{
|
|
|
|
|
Width = newSize.X;
|
|
|
|
|
this.ResizeHeightTo(newSize.Y, 300, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Height = newSize.Y;
|
|
|
|
|
this.ResizeWidthTo(newSize.X, 300, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-07 21:26:35 +08:00
|
|
|
|
protected override DrawableMenuItem CreateDrawableMenuItem(MenuItem item)
|
|
|
|
|
{
|
|
|
|
|
switch (item)
|
|
|
|
|
{
|
2019-11-08 10:15:03 +08:00
|
|
|
|
case StatefulMenuItem stateful:
|
|
|
|
|
return new DrawableStatefulMenuItem(stateful);
|
2019-11-07 21:26:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new DrawableOsuMenuItem(item);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-21 11:33:49 +08:00
|
|
|
|
protected override ScrollContainer<Drawable> CreateScrollContainer(Direction direction) => new OsuScrollContainer(direction);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override Menu CreateSubMenu() => new OsuMenu(Direction.Vertical)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Direction == Direction.Horizontal ? Anchor.BottomLeft : Anchor.TopRight
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|