2018-07-20 01:07:24 +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
|
|
|
|
|
|
2018-07-20 19:51:31 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-07-20 01:07:24 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-07-20 19:51:31 +08:00
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-07-21 04:11:51 +08:00
|
|
|
|
using System;
|
2018-07-20 01:07:24 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Changelog
|
|
|
|
|
{
|
|
|
|
|
public class ChangelogContent : FillFlowContainer<ChangelogContentGroup>
|
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
public APIChangelog CurrentBuild { get; private set; }
|
|
|
|
|
public Action OnBuildChanged;
|
2018-07-20 19:51:31 +08:00
|
|
|
|
private APIAccess api;
|
2018-07-20 23:24:21 +08:00
|
|
|
|
private ChangelogContentGroup changelogContentGroup;
|
2018-07-20 19:51:31 +08:00
|
|
|
|
|
2018-07-20 01:07:24 +08:00
|
|
|
|
public ChangelogContent()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2018-07-20 03:49:13 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2018-07-20 01:07:24 +08:00
|
|
|
|
Direction = FillDirection.Vertical;
|
2018-07-20 03:49:13 +08:00
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
2018-07-21 12:37:42 +08:00
|
|
|
|
Horizontal = 70,
|
|
|
|
|
Bottom = 100,
|
2018-07-20 03:49:13 +08:00
|
|
|
|
};
|
2018-07-20 01:07:24 +08:00
|
|
|
|
}
|
2018-07-20 19:51:31 +08:00
|
|
|
|
|
2018-07-20 23:24:21 +08:00
|
|
|
|
private void add(APIChangelog changelogBuild)
|
2018-07-20 19:51:31 +08:00
|
|
|
|
{
|
2018-07-21 12:37:42 +08:00
|
|
|
|
Child = changelogContentGroup = new ChangelogContentGroup(changelogBuild)
|
2018-07-21 04:11:51 +08:00
|
|
|
|
{
|
|
|
|
|
PreviousRequested = showPrevious,
|
|
|
|
|
NextRequested = showNext,
|
2018-07-21 12:37:42 +08:00
|
|
|
|
};
|
2018-07-20 19:51:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ShowBuild(APIChangelog changelog)
|
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
CurrentBuild = changelog;
|
2018-07-21 00:23:25 +08:00
|
|
|
|
fetchChangelogBuild(changelog);
|
2018-07-20 19:51:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-21 04:11:51 +08:00
|
|
|
|
private void showBuild(APIChangelog changelog)
|
|
|
|
|
{
|
|
|
|
|
ShowBuild(changelog);
|
|
|
|
|
OnBuildChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-20 21:48:20 +08:00
|
|
|
|
private void showNext()
|
2018-07-20 19:51:31 +08:00
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
if (CurrentBuild.Versions.Next != null)
|
|
|
|
|
showBuild(CurrentBuild.Versions.Next);
|
2018-07-20 19:51:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-20 21:48:20 +08:00
|
|
|
|
private void showPrevious()
|
2018-07-20 19:51:31 +08:00
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
if (CurrentBuild.Versions.Previous != null)
|
|
|
|
|
showBuild(CurrentBuild.Versions.Previous);
|
2018-07-20 23:24:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateChevronTooltips()
|
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
changelogContentGroup.UpdateChevronTooltips(CurrentBuild.Versions.Previous?.DisplayVersion,
|
|
|
|
|
CurrentBuild.Versions.Next?.DisplayVersion);
|
2018-07-20 19:51:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(APIAccess api)
|
|
|
|
|
{
|
|
|
|
|
this.api = api;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-21 00:23:25 +08:00
|
|
|
|
private void fetchChangelogBuild(APIChangelog build)
|
2018-07-20 19:51:31 +08:00
|
|
|
|
{
|
2018-07-21 00:23:25 +08:00
|
|
|
|
var req = new GetChangelogBuildRequest(build.UpdateStream.Name, build.Version);
|
2018-07-20 23:24:21 +08:00
|
|
|
|
req.Success += res =>
|
|
|
|
|
{
|
2018-07-21 04:11:51 +08:00
|
|
|
|
CurrentBuild = res;
|
2018-07-21 12:37:42 +08:00
|
|
|
|
add(CurrentBuild);
|
2018-07-21 05:57:46 +08:00
|
|
|
|
changelogContentGroup.GenerateText(CurrentBuild.ChangelogEntries);
|
2018-07-20 23:24:21 +08:00
|
|
|
|
updateChevronTooltips();
|
|
|
|
|
};
|
2018-07-20 19:51:31 +08:00
|
|
|
|
api.Queue(req);
|
|
|
|
|
}
|
2018-07-20 01:07:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|