2019-05-17 11:43:36 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-05-13 17:14:52 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-07-16 23:50:22 +02:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-05-21 12:52:50 +09:00
|
|
|
|
using System;
|
2020-01-27 14:52:21 +09:00
|
|
|
|
using System.Collections.Generic;
|
2019-05-24 11:04:36 +09:00
|
|
|
|
using System.Linq;
|
2020-02-27 14:39:10 +03:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-05-21 13:34:35 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-07-16 23:50:22 +02:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-02-27 14:39:10 +03:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2021-07-18 01:35:54 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2023-11-24 13:16:04 +09:00
|
|
|
|
using osu.Game.Graphics;
|
2021-07-18 02:23:12 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2019-05-21 12:52:50 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-07-18 01:35:54 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2018-07-16 23:50:22 +02:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Changelog
|
|
|
|
|
{
|
2019-12-28 04:57:41 +03:00
|
|
|
|
public partial class ChangelogHeader : BreadcrumbControlOverlayHeader
|
2018-07-16 23:50:22 +02:00
|
|
|
|
{
|
2020-02-04 00:43:04 +03:00
|
|
|
|
public readonly Bindable<APIChangelogBuild> Build = new Bindable<APIChangelogBuild>();
|
2019-05-21 13:34:35 +09:00
|
|
|
|
|
2019-05-21 12:52:50 +09:00
|
|
|
|
public Action ListingSelected;
|
2018-07-16 23:50:22 +02:00
|
|
|
|
|
2020-03-03 17:01:58 +03:00
|
|
|
|
public ChangelogUpdateStreamControl Streams;
|
2019-05-22 23:56:50 +09:00
|
|
|
|
|
2021-07-18 09:55:40 +08:00
|
|
|
|
public static LocalisableString ListingString => LayoutStrings.HeaderChangelogIndex;
|
2018-07-23 20:36:24 +02:00
|
|
|
|
|
2021-11-05 18:07:12 +03:00
|
|
|
|
private readonly Bindable<APIUpdateStream> currentStream = new Bindable<APIUpdateStream>();
|
|
|
|
|
|
2020-02-27 14:39:10 +03:00
|
|
|
|
private Box streamsBackground;
|
|
|
|
|
|
2019-05-21 12:52:50 +09:00
|
|
|
|
public ChangelogHeader()
|
|
|
|
|
{
|
2021-07-18 01:35:54 +08:00
|
|
|
|
TabControl.AddItem(ListingString);
|
2020-02-04 00:43:04 +03:00
|
|
|
|
Current.ValueChanged += e =>
|
2019-05-21 12:52:50 +09:00
|
|
|
|
{
|
2021-07-18 01:35:54 +08:00
|
|
|
|
if (e.NewValue == ListingString)
|
2019-05-21 12:52:50 +09:00
|
|
|
|
ListingSelected?.Invoke();
|
|
|
|
|
};
|
2019-05-21 13:34:35 +09:00
|
|
|
|
|
2020-02-04 00:43:04 +03:00
|
|
|
|
Build.ValueChanged += showBuild;
|
2021-11-05 18:07:12 +03:00
|
|
|
|
|
|
|
|
|
currentStream.ValueChanged += e =>
|
|
|
|
|
{
|
|
|
|
|
if (e.NewValue?.LatestBuild != null && !e.NewValue.Equals(Build.Value?.UpdateStream))
|
|
|
|
|
Build.Value = e.NewValue.LatestBuild;
|
|
|
|
|
};
|
2019-05-21 12:52:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-27 14:39:10 +03:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
|
|
|
|
{
|
|
|
|
|
streamsBackground.Colour = colourProvider.Background5;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-21 13:34:35 +09:00
|
|
|
|
private void showBuild(ValueChangedEvent<APIChangelogBuild> e)
|
2019-05-20 18:02:27 +09:00
|
|
|
|
{
|
2019-05-21 13:34:35 +09:00
|
|
|
|
if (e.OldValue != null)
|
2020-01-21 06:00:12 +03:00
|
|
|
|
TabControl.RemoveItem(e.OldValue.ToString());
|
2019-05-20 18:02:27 +09:00
|
|
|
|
|
2019-05-21 13:34:35 +09:00
|
|
|
|
if (e.NewValue != null)
|
|
|
|
|
{
|
2020-01-21 06:00:12 +03:00
|
|
|
|
TabControl.AddItem(e.NewValue.ToString());
|
2020-02-04 00:43:04 +03:00
|
|
|
|
Current.Value = e.NewValue.ToString();
|
2019-05-21 12:52:50 +09:00
|
|
|
|
|
2020-01-27 14:52:21 +09:00
|
|
|
|
updateCurrentStream();
|
2019-05-21 13:34:35 +09:00
|
|
|
|
}
|
|
|
|
|
else
|
2019-05-21 12:52:50 +09:00
|
|
|
|
{
|
2021-07-18 01:35:54 +08:00
|
|
|
|
Current.Value = ListingString;
|
2021-11-05 18:07:12 +03:00
|
|
|
|
currentStream.Value = null;
|
2019-05-21 12:52:50 +09:00
|
|
|
|
}
|
2019-05-20 18:02:27 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 15:36:19 +03:00
|
|
|
|
protected override Drawable CreateBackground() => new OverlayHeaderBackground(@"Headers/changelog");
|
2019-05-13 17:32:49 +09:00
|
|
|
|
|
2021-11-06 15:20:29 +01:00
|
|
|
|
protected override Drawable CreateContent() => new Container
|
2019-05-20 18:02:27 +09:00
|
|
|
|
{
|
2021-11-06 15:20:29 +01:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
2018-07-16 23:50:22 +02:00
|
|
|
|
{
|
2021-11-06 15:20:29 +01:00
|
|
|
|
streamsBackground = new Box
|
2020-02-27 14:47:31 +03:00
|
|
|
|
{
|
2021-11-06 15:20:29 +01:00
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Padding = new MarginPadding
|
2020-02-27 14:47:31 +03:00
|
|
|
|
{
|
2023-04-02 20:45:09 -07:00
|
|
|
|
Horizontal = WaveOverlayContainer.HORIZONTAL_PADDING - ChangelogUpdateStreamItem.PADDING,
|
2021-11-06 15:20:29 +01:00
|
|
|
|
Vertical = 20
|
2020-02-27 14:47:31 +03:00
|
|
|
|
},
|
2021-11-06 15:20:29 +01:00
|
|
|
|
Child = Streams = new ChangelogUpdateStreamControl { Current = currentStream },
|
2020-02-27 14:47:31 +03:00
|
|
|
|
}
|
2021-11-06 15:20:29 +01:00
|
|
|
|
}
|
|
|
|
|
};
|
2018-07-16 23:50:22 +02:00
|
|
|
|
|
2020-03-24 22:08:20 +01:00
|
|
|
|
protected override OverlayTitle CreateTitle() => new ChangelogHeaderTitle();
|
2019-05-20 18:02:27 +09:00
|
|
|
|
|
2020-01-27 14:52:21 +09:00
|
|
|
|
public void Populate(List<APIUpdateStream> streams)
|
|
|
|
|
{
|
|
|
|
|
Streams.Populate(streams);
|
|
|
|
|
updateCurrentStream();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateCurrentStream()
|
|
|
|
|
{
|
2020-02-04 00:43:04 +03:00
|
|
|
|
if (Build.Value == null)
|
2020-01-27 14:52:21 +09:00
|
|
|
|
return;
|
|
|
|
|
|
2021-11-05 18:07:12 +03:00
|
|
|
|
currentStream.Value = Streams.Items.FirstOrDefault(s => s.Name == Build.Value.UpdateStream.Name);
|
2020-01-27 14:52:21 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-24 22:08:20 +01:00
|
|
|
|
private partial class ChangelogHeaderTitle : OverlayTitle
|
2018-07-16 23:50:22 +02:00
|
|
|
|
{
|
2019-05-20 18:02:27 +09:00
|
|
|
|
public ChangelogHeaderTitle()
|
|
|
|
|
{
|
2021-08-03 15:34:21 +08:00
|
|
|
|
Title = PageTitleStrings.MainChangelogControllerDefault;
|
2021-07-18 10:12:24 +08:00
|
|
|
|
Description = NamedOverlayComponentStrings.ChangelogDescription;
|
2023-12-27 15:35:03 +01:00
|
|
|
|
Icon = OsuIcon.ChangelogB;
|
2019-05-20 18:02:27 +09:00
|
|
|
|
}
|
2018-07-16 23:50:22 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|