1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 04:32:53 +08:00
osu-lazer/osu.Game/Overlays/ChangelogOverlay.cs

191 lines
6.2 KiB
C#
Raw Normal View History

2019-05-13 16:14:52 +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-07-17 05:50:22 +08:00
2019-05-21 12:34:35 +08:00
using System;
using System.Collections.Generic;
using System.Threading;
2019-05-21 12:34:35 +08:00
using JetBrains.Annotations;
2018-07-20 01:07:24 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2019-05-21 12:34:35 +08:00
using osu.Framework.Bindables;
2018-07-17 05:50:22 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2018-07-19 01:32:15 +08:00
using osu.Game.Input.Bindings;
2018-07-20 01:07:24 +08:00
using osu.Game.Online.API.Requests;
using osu.Game.Online.API.Requests.Responses;
2018-07-17 05:50:22 +08:00
using osu.Game.Overlays.Changelog;
2019-05-12 23:36:05 +08:00
using osuTK.Graphics;
2018-07-17 05:50:22 +08:00
namespace osu.Game.Overlays
{
public class ChangelogOverlay : FullscreenOverlay
2018-07-17 05:50:22 +08:00
{
private ChangelogHeader header;
2019-05-12 23:36:05 +08:00
2019-05-22 18:51:16 +08:00
private UpdateStreamBadgeArea updateStreamBadges;
2019-05-12 23:36:05 +08:00
private Container<ChangelogContent> content;
2018-07-23 00:35:29 +08:00
2018-07-25 00:41:47 +08:00
private SampleChannel sampleBack;
private List<APIChangelogBuild> builds;
2019-05-21 12:34:35 +08:00
public readonly Bindable<APIChangelogBuild> Current = new Bindable<APIChangelogBuild>();
public void ShowListing() => Current.Value = null;
/// <summary>
/// Fetches and shows a specific build from a specific update stream.
/// </summary>
/// <param name="build">Must contain at least <see cref="APIUpdateStream.Name"/> and
/// <see cref="APIChangelogBuild.Version"/>. If <see cref="APIUpdateStream.DisplayName"/> and
/// <see cref="APIChangelogBuild.DisplayVersion"/> are specified, the header will instantly display them.</param>
public void ShowBuild([NotNull] APIChangelogBuild build)
{
if (build == null) throw new ArgumentNullException(nameof(build));
Current.Value = build;
}
[BackgroundDependencyLoader]
private void load(AudioManager audio, OsuColour colour)
2018-07-17 05:50:22 +08:00
{
2019-05-17 16:20:50 +08:00
Waves.FirstWaveColour = colour.GreyVioletLight;
Waves.SecondWaveColour = colour.GreyViolet;
Waves.ThirdWaveColour = colour.GreyVioletDark;
Waves.FourthWaveColour = colour.GreyVioletDarker;
2018-07-17 05:50:22 +08:00
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2018-07-22 05:00:05 +08:00
Colour = new Color4(49, 36, 54, 255),
2018-07-17 05:50:22 +08:00
},
2019-05-17 11:42:08 +08:00
new ScrollContainer
2018-07-17 05:50:22 +08:00
{
RelativeSizeAxes = Axes.Both,
ScrollbarVisible = false,
Child = new ReverseChildIDFillFlowContainer<Drawable>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
header = new ChangelogHeader
{
ListingSelected = ShowListing,
},
2019-05-22 18:51:16 +08:00
updateStreamBadges = new UpdateStreamBadgeArea(),
content = new Container<ChangelogContent>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
}
2018-07-17 05:50:22 +08:00
},
},
},
};
2019-05-22 18:51:16 +08:00
updateStreamBadges.Current.ValueChanged += e =>
{
if (e.NewValue?.LatestBuild != null && e.NewValue != Current.Value?.UpdateStream)
ShowBuild(e.NewValue.LatestBuild);
};
sampleBack = audio.Sample.Get(@"UI/generic-select-soft");
2018-07-19 01:32:15 +08:00
2019-05-21 12:34:35 +08:00
header.Current.BindTo(Current);
2018-07-17 05:50:22 +08:00
2019-05-21 12:34:35 +08:00
Current.BindValueChanged(e =>
{
if (e.NewValue != null)
{
2019-05-22 18:51:16 +08:00
updateStreamBadges.Current.Value = e.NewValue.UpdateStream;
2019-05-21 12:34:35 +08:00
loadContent(new ChangelogSingleBuild(e.NewValue));
}
else
{
2019-05-22 18:51:16 +08:00
updateStreamBadges.Current.Value = null;
2019-05-21 12:34:35 +08:00
loadContent(new ChangelogListing(builds));
}
});
2018-07-17 05:50:22 +08:00
}
2018-07-20 01:07:24 +08:00
2018-07-25 00:41:47 +08:00
public override bool OnPressed(GlobalAction action)
2018-07-23 02:27:50 +08:00
{
2018-07-25 00:41:47 +08:00
switch (action)
{
case GlobalAction.Back:
2019-05-21 12:34:35 +08:00
if (Current.Value == null)
{
2019-05-17 11:42:08 +08:00
State = Visibility.Hidden;
}
2018-07-25 00:41:47 +08:00
else
{
2019-05-21 12:34:35 +08:00
Current.Value = null;
2018-07-25 00:41:47 +08:00
sampleBack?.Play();
}
2019-05-12 23:36:05 +08:00
2018-07-25 00:41:47 +08:00
return true;
}
2018-07-23 02:27:50 +08:00
2018-07-25 00:41:47 +08:00
return false;
2018-07-20 01:07:24 +08:00
}
2019-05-21 12:34:35 +08:00
protected override void PopIn()
2018-07-23 00:35:29 +08:00
{
2019-05-21 12:34:35 +08:00
base.PopIn();
2019-05-21 12:34:35 +08:00
if (!initialFetchPerformed)
fetchListing();
}
2019-05-17 16:49:05 +08:00
private bool initialFetchPerformed;
private void fetchListing()
{
2019-05-17 16:49:05 +08:00
initialFetchPerformed = true;
var req = new GetChangelogRequest();
req.Success += res =>
{
// remap streams to builds to ensure model equality
res.Builds.ForEach(b => b.UpdateStream = res.Streams.Find(s => s.Id == b.UpdateStream.Id));
res.Streams.ForEach(s => s.LatestBuild.UpdateStream = res.Streams.Find(s2 => s2.Id == s.LatestBuild.UpdateStream.Id));
builds = res.Builds;
2019-05-22 18:51:16 +08:00
updateStreamBadges.Populate(res.Streams);
2019-05-21 12:34:35 +08:00
Current.TriggerChange();
};
2019-05-17 16:49:05 +08:00
req.Failure += _ => initialFetchPerformed = false;
API.Queue(req);
}
private CancellationTokenSource loadContentTask;
private void loadContent(ChangelogContent newContent)
{
content.FadeTo(0.2f, 300, Easing.OutQuint);
loadContentTask?.Cancel();
LoadComponentAsync(newContent, c =>
2019-05-15 17:21:06 +08:00
{
content.FadeIn(300, Easing.OutQuint);
c.BuildSelected = ShowBuild;
content.Child = c;
}, (loadContentTask = new CancellationTokenSource()).Token);
2018-07-20 01:07:24 +08:00
}
2018-07-17 05:50:22 +08:00
}
}