1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 13:17:26 +08:00
osu-lazer/osu.Game/Beatmaps/Drawables/Panel.cs

173 lines
4.8 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-09-04 08:10:04 +08:00
using System;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
2016-11-05 19:00:14 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2016-11-23 10:59:50 +08:00
namespace osu.Game.Beatmaps.Drawables
{
public class Panel : Container, IStateful<PanelSelectedState>
{
public const float MAX_HEIGHT = 80;
2017-09-04 08:10:04 +08:00
public event Action<PanelSelectedState> StateChanged;
2016-11-25 17:14:56 +08:00
public override bool RemoveWhenNotAlive => false;
private readonly Container nestedContainer;
private readonly Container borderContainer;
private readonly Box hoverLayer;
2016-11-23 10:59:50 +08:00
protected override Container<Drawable> Content => nestedContainer;
2016-11-23 10:59:50 +08:00
protected Panel()
{
Height = MAX_HEIGHT;
RelativeSizeAxes = Axes.X;
AddInternal(borderContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Masking = true,
CornerRadius = 10,
BorderColour = new Color4(221, 255, 255, 255),
Children = new Drawable[]
{
nestedContainer = new Container
{
RelativeSizeAxes = Axes.Both,
},
hoverLayer = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
Blending = new BlendingParameters { Mode = BlendingMode.Additive },
},
}
});
2017-02-22 20:53:20 +08:00
Alpha = 0;
}
protected override bool OnHover(InputState state)
{
hoverLayer.FadeIn(100, Easing.OutQuint);
return base.OnHover(state);
}
protected override void OnHoverLost(InputState state)
{
hoverLayer.FadeOut(1000, Easing.OutQuint);
base.OnHoverLost(state);
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
hoverLayer.Colour = colours.Blue.Opacity(0.1f);
}
public void SetMultiplicativeAlpha(float alpha)
{
borderContainer.Alpha = alpha;
}
protected override void LoadComplete()
{
base.LoadComplete();
ApplyState();
}
protected virtual void ApplyState(PanelSelectedState last = PanelSelectedState.Hidden)
{
if (!IsLoaded) return;
switch (state)
{
case PanelSelectedState.Hidden:
case PanelSelectedState.NotSelected:
Deselected();
break;
case PanelSelectedState.Selected:
Selected();
break;
}
if (state == PanelSelectedState.Hidden)
2017-07-23 02:50:25 +08:00
this.FadeOut(300, Easing.OutQuint);
else
this.FadeIn(250);
}
private PanelSelectedState state = PanelSelectedState.NotSelected;
public PanelSelectedState State
{
get { return state; }
set
{
2017-09-04 08:10:04 +08:00
if (state == value)
return;
var last = state;
state = value;
2017-09-04 08:10:04 +08:00
ApplyState(last);
2017-09-04 08:10:04 +08:00
StateChanged?.Invoke(State);
}
}
protected virtual void Selected()
{
borderContainer.BorderThickness = 2.5f;
borderContainer.EdgeEffect = new EdgeEffectParameters
2016-11-02 05:57:11 +08:00
{
Type = EdgeEffectType.Glow,
Colour = new Color4(130, 204, 255, 150),
2016-11-02 05:57:11 +08:00
Radius = 20,
Roundness = 10,
};
}
protected virtual void Deselected()
{
borderContainer.BorderThickness = 0;
borderContainer.EdgeEffect = new EdgeEffectParameters
2016-11-05 19:00:14 +08:00
{
Type = EdgeEffectType.Shadow,
Offset = new Vector2(1),
Radius = 10,
Colour = Color4.Black.Opacity(100),
2016-11-05 19:00:14 +08:00
};
}
2016-11-02 05:57:11 +08:00
protected override bool OnClick(InputState state)
{
State = PanelSelectedState.Selected;
return true;
}
}
public enum PanelSelectedState
{
Hidden,
NotSelected,
Selected
}
}