mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 03:17:39 +08:00
ec71deec51
I am aware there are more throughout the codebase but intentionally left the remaining mentioned for one reason or another. The intention here is to mainly change user-facing versioning to change the positioning of the "lazer" term (to be where we would expect "cuttingedge" or "beta" to be).
112 lines
3.8 KiB
C#
112 lines
3.8 KiB
C#
// 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.
|
|
|
|
using System.Threading.Tasks;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
namespace osu.Game.Updater
|
|
{
|
|
/// <summary>
|
|
/// An update manager which only shows notifications after an update completes.
|
|
/// </summary>
|
|
public class UpdateManager : CompositeDrawable
|
|
{
|
|
/// <summary>
|
|
/// Whether this UpdateManager should be or is capable of checking for updates.
|
|
/// </summary>
|
|
public bool CanCheckForUpdate => game.IsDeployedBuild &&
|
|
// only implementations will actually check for updates.
|
|
GetType() != typeof(UpdateManager);
|
|
|
|
[Resolved]
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
[Resolved]
|
|
private OsuGameBase game { get; set; }
|
|
|
|
[Resolved]
|
|
protected NotificationOverlay Notifications { get; private set; }
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Schedule(() => Task.Run(CheckForUpdateAsync));
|
|
|
|
var version = game.Version;
|
|
|
|
var lastVersion = config.Get<string>(OsuSetting.Version);
|
|
|
|
if (game.IsDeployedBuild && version != lastVersion)
|
|
{
|
|
// only show a notification if we've previously saved a version to the config file (ie. not the first run).
|
|
if (!string.IsNullOrEmpty(lastVersion))
|
|
Notifications.Post(new UpdateCompleteNotification(version));
|
|
}
|
|
|
|
// debug / local compilations will reset to a non-release string.
|
|
// can be useful to check when an install has transitioned between release and otherwise (see OsuConfigManager's migrations).
|
|
config.SetValue(OsuSetting.Version, version);
|
|
}
|
|
|
|
private readonly object updateTaskLock = new object();
|
|
|
|
private Task<bool> updateCheckTask;
|
|
|
|
public async Task<bool> CheckForUpdateAsync()
|
|
{
|
|
if (!CanCheckForUpdate)
|
|
return false;
|
|
|
|
Task<bool> waitTask;
|
|
|
|
lock (updateTaskLock)
|
|
waitTask = (updateCheckTask ??= PerformUpdateCheck());
|
|
|
|
bool hasUpdates = await waitTask.ConfigureAwait(false);
|
|
|
|
lock (updateTaskLock)
|
|
updateCheckTask = null;
|
|
|
|
return hasUpdates;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs an asynchronous check for application updates.
|
|
/// </summary>
|
|
/// <returns>Whether any update is waiting. May return true if an error occured (there is potentially an update available).</returns>
|
|
protected virtual Task<bool> PerformUpdateCheck() => Task.FromResult(false);
|
|
|
|
private class UpdateCompleteNotification : SimpleNotification
|
|
{
|
|
private readonly string version;
|
|
|
|
public UpdateCompleteNotification(string version)
|
|
{
|
|
this.version = version;
|
|
Text = $"You are now running osu! {version}.\nClick to see what's new!";
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours, ChangelogOverlay changelog, NotificationOverlay notificationOverlay)
|
|
{
|
|
Icon = FontAwesome.Solid.CheckSquare;
|
|
IconBackgound.Colour = colours.BlueDark;
|
|
|
|
Activated = delegate
|
|
{
|
|
notificationOverlay.Hide();
|
|
changelog.ShowBuild(OsuGameBase.CLIENT_STREAM_NAME, version);
|
|
return true;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|