1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:07:28 +08:00
osu-lazer/osu.Game/Overlays/Chat/ChatTabControl.cs

239 lines
8.3 KiB
C#
Raw Normal View History

2017-05-12 14:32:52 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-05-12 14:32:52 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.Chat;
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Configuration;
2017-05-12 14:32:52 +08:00
namespace osu.Game.Overlays.Chat
{
public class ChatTabControl : OsuTabControl<Channel>
{
protected override TabItem<Channel> CreateTabItem(Channel value) => new ChannelTabItem(value);
2017-05-12 14:32:52 +08:00
private const float shear_width = 10;
2017-05-26 18:10:16 +08:00
public readonly Bindable<bool> ChannelSelectorActive = new Bindable<bool>();
2017-06-12 17:39:22 +08:00
private readonly ChannelTabItem.ChannelSelectorTabItem selectorTab;
2017-05-12 14:32:52 +08:00
public ChatTabControl()
{
TabContainer.Margin = new MarginPadding { Left = 50 };
TabContainer.Spacing = new Vector2(-shear_width, 0);
TabContainer.Masking = false;
AddInternal(new SpriteIcon
2017-05-12 14:32:52 +08:00
{
Icon = FontAwesome.fa_comments,
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Size = new Vector2(20),
Margin = new MarginPadding(10),
2017-05-12 14:32:52 +08:00
});
2017-05-18 03:16:53 +08:00
2017-06-12 17:39:22 +08:00
AddTabItem(selectorTab = new ChannelTabItem.ChannelSelectorTabItem(new Channel { Name = "+" }));
ChannelSelectorActive.BindTo(selectorTab.Active);
}
protected override void SelectTab(TabItem<Channel> tab)
{
if (tab is ChannelTabItem.ChannelSelectorTabItem)
{
tab.Active.Toggle();
return;
}
selectorTab.Active.Value = false;
base.SelectTab(tab);
2017-05-12 14:32:52 +08:00
}
private class ChannelTabItem : TabItem<Channel>
{
private Color4 backgroundInactive;
private Color4 backgroundHover;
private Color4 backgroundActive;
private readonly SpriteText text;
2017-05-16 16:37:54 +08:00
private readonly SpriteText textBold;
2017-05-12 14:32:52 +08:00
private readonly Box box;
private readonly Box highlightBox;
private readonly SpriteIcon icon;
2017-05-12 14:32:52 +08:00
private void updateState()
{
if (Active)
fadeActive();
else
fadeInactive();
}
private const float transition_length = 400;
private void fadeActive()
{
2017-07-23 02:50:25 +08:00
this.ResizeTo(new Vector2(Width, 1.1f), transition_length, Easing.OutQuint);
2017-05-12 14:32:52 +08:00
2017-07-23 02:50:25 +08:00
box.FadeColour(backgroundActive, transition_length, Easing.OutQuint);
highlightBox.FadeIn(transition_length, Easing.OutQuint);
2017-05-16 16:37:54 +08:00
2017-07-23 02:50:25 +08:00
text.FadeOut(transition_length, Easing.OutQuint);
textBold.FadeIn(transition_length, Easing.OutQuint);
2017-05-12 14:32:52 +08:00
}
private void fadeInactive()
{
2017-07-23 02:50:25 +08:00
this.ResizeTo(new Vector2(Width, 1), transition_length, Easing.OutQuint);
2017-05-12 14:32:52 +08:00
2017-07-23 02:50:25 +08:00
box.FadeColour(backgroundInactive, transition_length, Easing.OutQuint);
highlightBox.FadeOut(transition_length, Easing.OutQuint);
2017-05-16 16:37:54 +08:00
2017-07-23 02:50:25 +08:00
text.FadeIn(transition_length, Easing.OutQuint);
textBold.FadeOut(transition_length, Easing.OutQuint);
2017-05-12 14:32:52 +08:00
}
protected override bool OnHover(InputState state)
{
if (!Active)
2017-07-23 02:50:25 +08:00
box.FadeColour(backgroundHover, transition_length, Easing.OutQuint);
2017-05-12 14:32:52 +08:00
return true;
}
protected override void OnHoverLost(InputState state)
{
updateState();
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
backgroundActive = colours.ChatBlue;
backgroundInactive = colours.Gray4;
backgroundHover = colours.Gray7;
highlightBox.Colour = colours.Yellow;
2017-05-26 18:10:16 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2017-05-12 14:32:52 +08:00
updateState();
}
public ChannelTabItem(Channel value) : base(value)
{
Width = 150;
RelativeSizeAxes = Axes.Y;
Anchor = Anchor.BottomLeft;
Origin = Anchor.BottomLeft;
Shear = new Vector2(shear_width / ChatOverlay.TAB_AREA_HEIGHT, 0);
Masking = true;
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
2017-05-12 14:32:52 +08:00
{
Type = EdgeEffectType.Shadow,
Radius = 10,
Colour = Color4.Black.Opacity(0.2f),
};
Children = new Drawable[]
{
box = new Box
{
EdgeSmoothness = new Vector2(1, 0),
RelativeSizeAxes = Axes.Both,
},
highlightBox = new Box
{
Width = 5,
Alpha = 0,
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
EdgeSmoothness = new Vector2(1, 0),
RelativeSizeAxes = Axes.Y,
},
new Container
{
Shear = new Vector2(-shear_width / ChatOverlay.TAB_AREA_HEIGHT, 0),
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
icon = new SpriteIcon
2017-05-12 14:32:52 +08:00
{
Icon = FontAwesome.fa_hashtag,
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Colour = Color4.Black,
X = -10,
Alpha = 0.2f,
Size = new Vector2(ChatOverlay.TAB_AREA_HEIGHT),
2017-05-12 14:32:52 +08:00
},
text = new OsuSpriteText
{
Margin = new MarginPadding(5),
Origin = Anchor.CentreLeft,
Anchor = Anchor.CentreLeft,
Text = value.ToString(),
TextSize = 18,
},
2017-05-16 16:37:54 +08:00
textBold = new OsuSpriteText
{
Alpha = 0,
Margin = new MarginPadding(5),
Origin = Anchor.CentreLeft,
Anchor = Anchor.CentreLeft,
Text = value.ToString(),
Font = @"Exo2.0-Bold",
TextSize = 18,
},
2017-05-12 14:32:52 +08:00
}
}
};
}
2017-05-18 03:16:53 +08:00
public class ChannelSelectorTabItem : ChannelTabItem
{
2017-06-12 17:39:22 +08:00
public ChannelSelectorTabItem(Channel value) : base(value)
{
2017-05-18 03:16:53 +08:00
Depth = float.MaxValue;
2017-05-26 02:25:59 +08:00
Width = 45;
2017-05-18 03:16:53 +08:00
icon.Alpha = 0;
2017-05-26 02:25:59 +08:00
text.TextSize = 45;
textBold.TextSize = 45;
2017-05-18 03:16:53 +08:00
}
[BackgroundDependencyLoader]
private new void load(OsuColour colour)
{
2017-05-26 02:25:59 +08:00
backgroundInactive = colour.Gray2;
backgroundActive = colour.Gray3;
2017-05-18 03:16:53 +08:00
}
2017-06-12 17:39:22 +08:00
}
2017-06-12 17:39:22 +08:00
protected override void OnActivated() => updateState();
2017-06-12 17:39:22 +08:00
protected override void OnDeactivated() => updateState();
2017-05-12 14:32:52 +08:00
}
}
}