1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 20:07:29 +08:00
osu-lazer/osu.Game/Overlays/Changelog/ChangelogContent.cs

92 lines
2.7 KiB
C#
Raw Normal View History

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
using osu.Framework.Allocation;
2018-07-20 01:07:24 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
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;
private APIAccess api;
2018-07-20 23:24:21 +08:00
private ChangelogContentGroup changelogContentGroup;
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
{
Horizontal = 70,
Bottom = 100,
2018-07-20 03:49:13 +08:00
};
2018-07-20 01:07:24 +08:00
}
2018-07-20 23:24:21 +08:00
private void add(APIChangelog changelogBuild)
{
Child = changelogContentGroup = new ChangelogContentGroup(changelogBuild)
2018-07-21 04:11:51 +08:00
{
PreviousRequested = showPrevious,
NextRequested = showNext,
};
}
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-21 04:11:51 +08:00
private void showBuild(APIChangelog changelog)
{
ShowBuild(changelog);
OnBuildChanged();
}
private void showNext()
{
2018-07-21 04:11:51 +08:00
if (CurrentBuild.Versions.Next != null)
showBuild(CurrentBuild.Versions.Next);
}
private void showPrevious()
{
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);
}
[BackgroundDependencyLoader]
private void load(APIAccess api)
{
this.api = api;
}
2018-07-21 00:23:25 +08:00
private void fetchChangelogBuild(APIChangelog build)
{
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;
add(CurrentBuild);
changelogContentGroup.GenerateText(CurrentBuild.ChangelogEntries);
2018-07-20 23:24:21 +08:00
updateChevronTooltips();
};
api.Queue(req);
}
2018-07-20 01:07:24 +08:00
}
}