From d837745b11a3d87edaad78a6bcaf29341668bd66 Mon Sep 17 00:00:00 2001 From: Macintosh II <95250141+mctaylors@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:41:43 +0300 Subject: [PATCH] Add string interpolation for SongUpdateService (#139) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I added a string interpolation for SongUpdateService for better activity status configuration. So now you can add some characters if you want, or even swap the song title and author. Also songs are now displaying in Splatoon™ style. --------- Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com> --- src/Services/Update/SongUpdateService.cs | 33 ++++++++++++------------ 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/src/Services/Update/SongUpdateService.cs b/src/Services/Update/SongUpdateService.cs index c47055e..f1ef296 100644 --- a/src/Services/Update/SongUpdateService.cs +++ b/src/Services/Update/SongUpdateService.cs @@ -8,22 +8,22 @@ namespace Octobot.Services.Update; public sealed class SongUpdateService : BackgroundService { - private static readonly (string Name, TimeSpan Duration)[] SongList = + private static readonly (string Author, string Name, TimeSpan Duration)[] SongList = { - ("Yoko & the Gold Bazookas - Rockagilly Blues", new TimeSpan(0, 3, 37)), - ("Splatoon 3 - Seep and Destroy", new TimeSpan(0, 2, 42)), - ("Deep Cut - Big Betrayal", new TimeSpan(0, 1, 42)), - ("Squid Sisters - Tomorrow's Nostalgia Today", new TimeSpan(0, 2, 8)), - ("Deep Cut - Anarchy Rainbow", new TimeSpan(0, 1, 51)), - ("Squid Sisters feat. Ian BGM - Liquid Sunshine", new TimeSpan(0, 1, 32)), - ("Damp Socks feat. Off the Hook - Candy-Coated Rocks", new TimeSpan(0, 1, 11)), - ("H2Whoa - Aquasonic", new TimeSpan(0, 1, 1)), - ("Yoko & the Gold Bazookas - Ska-Blam!", new TimeSpan(0, 4, 4)), - ("Off the Hook - Muck Warfare", new TimeSpan(0, 3, 39)), - ("Off the Hook - Acid Hues", new TimeSpan(0, 3, 39)), - ("Off the Hook - Shark Bytes", new TimeSpan(0, 3, 48)), - ("DJ Octavio feat. Squid Sisters & Deep Cut - Calamari Inkantation", new TimeSpan(0, 7, 9)), - ("Splatoon - Ink Me Up", new TimeSpan(0, 2, 13)) + ("Yoko & the Gold Bazookas", "Rockagilly Blues", new TimeSpan(0, 3, 37)), + ("Splatoon 3", "Seep and Destroy", new TimeSpan(0, 2, 42)), + ("Deep Cut", "Big Betrayal", new TimeSpan(0, 1, 42)), + ("Squid Sisters", "Tomorrow's Nostalgia Today", new TimeSpan(0, 2, 8)), + ("Deep Cut", "Anarchy Rainbow", new TimeSpan(0, 1, 51)), + ("Squid Sisters feat. Ian BGM", "Liquid Sunshine", new TimeSpan(0, 1, 32)), + ("Damp Socks feat. Off the Hook", "Candy-Coated Rocks", new TimeSpan(0, 1, 11)), + ("H2Whoa", "Aquasonic", new TimeSpan(0, 1, 1)), + ("Yoko & the Gold Bazookas", "Ska-BLAM", new TimeSpan(0, 4, 4)), + ("Off the Hook", "Muck Warfare", new TimeSpan(0, 3, 39)), + ("Off the Hook", "Acid Hues", new TimeSpan(0, 3, 39)), + ("Off the Hook", "Shark Bytes", new TimeSpan(0, 3, 48)), + ("DJ Octavio feat. Squid Sisters & Deep Cut", "Calamari Inkantation 3MIX", new TimeSpan(0, 7, 9)), + ("Squid Sisters", "Ink Me Up", new TimeSpan(0, 2, 13)) }; private readonly List _activityList = new(1) @@ -52,7 +52,8 @@ public sealed class SongUpdateService : BackgroundService while (!ct.IsCancellationRequested) { var nextSong = SongList[_nextSongIndex]; - _activityList[0] = new Activity(nextSong.Name, ActivityType.Listening); + _activityList[0] = new Activity($"{nextSong.Name} / {nextSong.Author}", + ActivityType.Listening); _client.SubmitCommand( new UpdatePresence( UserStatus.Online, false, DateTimeOffset.UtcNow, _activityList));