1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-02 02:57:25 +08:00
osu-lazer/osu.Game/Overlays/Changelog/StreamBadge.cs

135 lines
4.4 KiB
C#
Raw Normal View History

2018-07-18 07:35:06 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Graphics;
2018-07-19 01:32:15 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2018-07-18 07:35:06 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input;
2018-07-20 01:07:24 +08:00
using osu.Game.Graphics;
using osu.Game.Online.API.Requests.Responses;
2018-07-18 07:35:06 +08:00
using System;
2018-07-20 01:07:24 +08:00
namespace osu.Game.Overlays.Changelog
2018-07-18 07:35:06 +08:00
{
2018-07-18 09:26:08 +08:00
public class StreamBadge : ClickableContainer
2018-07-18 07:35:06 +08:00
{
2018-07-19 01:32:15 +08:00
private const float badge_height = 56.5f;
private const float badge_width = 100;
2018-07-18 07:35:06 +08:00
private const float transition_duration = 100;
public Action OnActivation;
2018-07-19 01:32:15 +08:00
private bool isActivated;
2018-07-18 07:35:06 +08:00
2018-07-19 01:32:15 +08:00
private readonly Header.LineBadge lineBadge;
private SampleChannel sampleHover;
2018-07-20 01:07:24 +08:00
public readonly APIChangelog ChangelogEntry;
2018-07-18 07:35:06 +08:00
2018-07-20 01:07:24 +08:00
public StreamBadge(APIChangelog changelogEntry)
2018-07-18 07:35:06 +08:00
{
2018-07-20 01:07:24 +08:00
ChangelogEntry = changelogEntry;
2018-07-19 01:32:15 +08:00
Height = badge_height;
2018-07-20 01:07:24 +08:00
Width = ChangelogEntry.IsFeatured ? badge_width * 2 : badge_width;
2018-07-18 07:35:06 +08:00
Margin = new MarginPadding(5);
2018-07-19 01:32:15 +08:00
isActivated = true;
2018-07-18 07:35:06 +08:00
Children = new Drawable[]
{
new FillFlowContainer<SpriteText>
{
AutoSizeAxes = Axes.X,
RelativeSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new[]
{
new SpriteText
{
2018-07-20 01:07:24 +08:00
Text = ChangelogEntry.UpdateStream.DisplayName,
2018-07-18 07:35:06 +08:00
Font = @"Exo2.0-Bold",
TextSize = 16,
Margin = new MarginPadding
{
2018-07-18 09:26:08 +08:00
Top = 7,
2018-07-18 07:35:06 +08:00
}
},
new SpriteText
{
2018-07-20 01:07:24 +08:00
Text = ChangelogEntry.DisplayVersion,
2018-07-18 07:35:06 +08:00
Font = @"Exo2.0-Light",
TextSize = 21,
},
new SpriteText
{
2018-07-20 01:07:24 +08:00
Text = ChangelogEntry.Users > 0 ?
2018-07-20 06:52:50 +08:00
string.Format($"{ChangelogEntry.Users:N0} users online") :
2018-07-18 07:35:06 +08:00
null,
TextSize = 12,
Font = @"Exo2.0-Regular",
Colour = new Color4(203, 164, 218, 255),
},
}
},
lineBadge = new Header.LineBadge(false, 2, 4)
{
Anchor = Anchor.TopCentre,
2018-07-18 09:26:08 +08:00
Origin = Anchor.TopCentre,
2018-07-20 01:07:24 +08:00
Colour = StreamColour.FromStreamName(ChangelogEntry.UpdateStream.Name),
2018-07-18 07:35:06 +08:00
RelativeSizeAxes = Axes.X,
},
};
}
public void Activate(bool withoutHeaderUpdate = false)
{
2018-07-19 01:32:15 +08:00
isActivated = true;
2018-07-18 07:35:06 +08:00
this.FadeIn(transition_duration);
lineBadge.IsCollapsed = false;
2018-07-20 06:52:50 +08:00
if (!withoutHeaderUpdate)
OnActivation?.Invoke();
2018-07-18 07:35:06 +08:00
}
public void Deactivate()
{
2018-07-19 01:32:15 +08:00
isActivated = false;
if (!IsHovered)
{
this.FadeTo(0.5f, transition_duration);
lineBadge.IsCollapsed = true;
}
2018-07-18 07:35:06 +08:00
}
protected override bool OnClick(InputState state)
{
Activate();
return base.OnClick(state);
}
protected override bool OnHover(InputState state)
{
2018-07-19 01:32:15 +08:00
if (!isActivated) sampleHover?.Play();
2018-07-18 07:35:06 +08:00
this.FadeIn(transition_duration);
lineBadge.IsCollapsed = false;
return base.OnHover(state);
}
protected override void OnHoverLost(InputState state)
{
2018-07-19 01:32:15 +08:00
if (!isActivated)
2018-07-18 07:35:06 +08:00
{
this.FadeTo(0.5f, transition_duration);
lineBadge.IsCollapsed = true;
}
base.OnHoverLost(state);
}
2018-07-19 01:32:15 +08:00
[BackgroundDependencyLoader]
private void load(AudioManager audio)
{
sampleHover = audio.Sample.Get(@"UI/generic-hover-soft");
}
2018-07-18 07:35:06 +08:00
}
}