2019-12-18 13:07:53 +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.
|
|
|
|
|
|
2019-12-23 18:34:12 +08:00
|
|
|
|
using System;
|
2019-12-21 22:48:15 +08:00
|
|
|
|
using System.Text;
|
2019-12-18 13:07:53 +08:00
|
|
|
|
using DiscordRPC;
|
|
|
|
|
using DiscordRPC.Message;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Logging;
|
2020-12-30 13:29:51 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2019-12-18 13:07:53 +08:00
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using LogLevel = osu.Framework.Logging.LogLevel;
|
|
|
|
|
using User = osu.Game.Users.User;
|
|
|
|
|
|
|
|
|
|
namespace osu.Desktop
|
|
|
|
|
{
|
|
|
|
|
internal class DiscordRichPresence : Component
|
|
|
|
|
{
|
|
|
|
|
private const string client_id = "367827983903490050";
|
|
|
|
|
|
|
|
|
|
private DiscordRpcClient client;
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private IBindable<RulesetInfo> ruleset { get; set; }
|
|
|
|
|
|
2020-12-18 14:16:36 +08:00
|
|
|
|
private IBindable<User> user;
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
|
|
|
|
private readonly IBindable<UserStatus> status = new Bindable<UserStatus>();
|
|
|
|
|
private readonly IBindable<UserActivity> activity = new Bindable<UserActivity>();
|
2021-01-06 23:05:12 +08:00
|
|
|
|
|
|
|
|
|
private readonly Bindable<DiscordRichPresenceMode> privacyMode = new Bindable<DiscordRichPresenceMode>();
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
|
|
|
|
private readonly RichPresence presence = new RichPresence
|
|
|
|
|
{
|
|
|
|
|
Assets = new Assets { LargeImageKey = "osu_logo_lazer", }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-12-30 13:29:51 +08:00
|
|
|
|
private void load(IAPIProvider provider, OsuConfigManager config)
|
2019-12-18 13:07:53 +08:00
|
|
|
|
{
|
|
|
|
|
client = new DiscordRpcClient(client_id)
|
|
|
|
|
{
|
|
|
|
|
SkipIdenticalPresence = false // handles better on discord IPC loss, see updateStatus call in onReady.
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
client.OnReady += onReady;
|
2019-12-23 18:50:35 +08:00
|
|
|
|
|
|
|
|
|
// safety measure for now, until we performance test / improve backoff for failed connections.
|
|
|
|
|
client.OnConnectionFailed += (_, __) => client.Deinitialize();
|
|
|
|
|
|
2019-12-18 21:56:00 +08:00
|
|
|
|
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Code} {e.Message}", LoggingTarget.Network);
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
2021-01-06 23:05:12 +08:00
|
|
|
|
config.BindWith(OsuSetting.DiscordRichPresence, privacyMode);
|
|
|
|
|
|
2019-12-18 13:07:53 +08:00
|
|
|
|
(user = provider.LocalUser.GetBoundCopy()).BindValueChanged(u =>
|
|
|
|
|
{
|
|
|
|
|
status.UnbindBindings();
|
|
|
|
|
status.BindTo(u.NewValue.Status);
|
|
|
|
|
|
|
|
|
|
activity.UnbindBindings();
|
|
|
|
|
activity.BindTo(u.NewValue.Activity);
|
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
|
|
ruleset.BindValueChanged(_ => updateStatus());
|
|
|
|
|
status.BindValueChanged(_ => updateStatus());
|
|
|
|
|
activity.BindValueChanged(_ => updateStatus());
|
2021-01-06 23:05:12 +08:00
|
|
|
|
privacyMode.BindValueChanged(_ => updateStatus());
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
|
|
|
|
client.Initialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onReady(object _, ReadyMessage __)
|
|
|
|
|
{
|
|
|
|
|
Logger.Log("Discord RPC Client ready.", LoggingTarget.Network, LogLevel.Debug);
|
|
|
|
|
updateStatus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateStatus()
|
|
|
|
|
{
|
2020-01-11 23:03:00 +08:00
|
|
|
|
if (!client.IsInitialized)
|
|
|
|
|
return;
|
|
|
|
|
|
2021-01-06 23:05:12 +08:00
|
|
|
|
if (status.Value is UserStatusOffline || privacyMode.Value == DiscordRichPresenceMode.Off)
|
2019-12-18 13:07:53 +08:00
|
|
|
|
{
|
|
|
|
|
client.ClearPresence();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (status.Value is UserStatusOnline && activity.Value != null)
|
|
|
|
|
{
|
2019-12-21 22:48:15 +08:00
|
|
|
|
presence.State = truncate(activity.Value.Status);
|
|
|
|
|
presence.Details = truncate(getDetails(activity.Value));
|
2019-12-18 13:07:53 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
presence.State = "Idle";
|
|
|
|
|
presence.Details = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// update user information
|
2021-01-06 23:05:12 +08:00
|
|
|
|
if (privacyMode.Value == DiscordRichPresenceMode.Limited)
|
2020-12-30 13:29:51 +08:00
|
|
|
|
presence.Assets.LargeImageText = string.Empty;
|
|
|
|
|
else
|
2021-02-17 13:50:48 +08:00
|
|
|
|
presence.Assets.LargeImageText = $"{user.Value.Username}" + (user.Value.Statistics?.GlobalRank > 0 ? $" (rank #{user.Value.Statistics.GlobalRank:N0})" : string.Empty);
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
|
|
|
|
// update ruleset
|
2019-12-18 13:35:18 +08:00
|
|
|
|
presence.Assets.SmallImageKey = ruleset.Value.ID <= 3 ? $"mode_{ruleset.Value.ID}" : "mode_custom";
|
2019-12-18 13:07:53 +08:00
|
|
|
|
presence.Assets.SmallImageText = ruleset.Value.Name;
|
|
|
|
|
|
|
|
|
|
client.SetPresence(presence);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-25 10:14:40 +08:00
|
|
|
|
private static readonly int ellipsis_length = Encoding.UTF8.GetByteCount(new[] { '…' });
|
|
|
|
|
|
2019-12-25 11:04:28 +08:00
|
|
|
|
private string truncate(string str)
|
2019-12-23 17:55:44 +08:00
|
|
|
|
{
|
2019-12-23 18:56:05 +08:00
|
|
|
|
if (Encoding.UTF8.GetByteCount(str) <= 128)
|
2019-12-25 11:04:28 +08:00
|
|
|
|
return str;
|
|
|
|
|
|
|
|
|
|
ReadOnlyMemory<char> strMem = str.AsMemory();
|
2019-12-23 17:55:44 +08:00
|
|
|
|
|
2019-12-23 18:34:12 +08:00
|
|
|
|
do
|
|
|
|
|
{
|
2019-12-25 11:04:28 +08:00
|
|
|
|
strMem = strMem[..^1];
|
|
|
|
|
} while (Encoding.UTF8.GetByteCount(strMem.Span) + ellipsis_length > 128);
|
2019-12-23 18:34:12 +08:00
|
|
|
|
|
2019-12-25 11:04:28 +08:00
|
|
|
|
return string.Create(strMem.Length + 1, strMem, (span, mem) =>
|
|
|
|
|
{
|
|
|
|
|
mem.Span.CopyTo(span);
|
|
|
|
|
span[^1] = '…';
|
|
|
|
|
});
|
2019-12-23 17:55:44 +08:00
|
|
|
|
}
|
2019-12-21 22:48:15 +08:00
|
|
|
|
|
2019-12-18 13:07:53 +08:00
|
|
|
|
private string getDetails(UserActivity activity)
|
|
|
|
|
{
|
|
|
|
|
switch (activity)
|
|
|
|
|
{
|
2021-08-16 06:32:33 +08:00
|
|
|
|
case UserActivity.InGame game:
|
|
|
|
|
return game.Beatmap.ToString();
|
2019-12-18 13:07:53 +08:00
|
|
|
|
|
|
|
|
|
case UserActivity.Editing edit:
|
|
|
|
|
return edit.Beatmap.ToString();
|
2020-11-09 01:42:24 +08:00
|
|
|
|
|
|
|
|
|
case UserActivity.InLobby lobby:
|
2021-01-06 23:05:12 +08:00
|
|
|
|
return privacyMode.Value == DiscordRichPresenceMode.Limited ? string.Empty : lobby.Room.Name.Value;
|
2019-12-18 13:07:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
client.Dispose();
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|