From e22c731ae10c50a559da4e16bcd2edd0eaff05be Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Sun, 19 Jun 2016 23:17:28 +0200 Subject: [PATCH] !m ms added --- NadekoBot/Modules/Music/MusicModule.cs | 38 +++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/NadekoBot/Modules/Music/MusicModule.cs b/NadekoBot/Modules/Music/MusicModule.cs index 98f4fafe..1cf194e3 100644 --- a/NadekoBot/Modules/Music/MusicModule.cs +++ b/NadekoBot/Modules/Music/MusicModule.cs @@ -368,7 +368,8 @@ namespace NadekoBot.Modules.Music musicPlayer.MoveToVoiceChannel(voiceChannel); }); - cgb.CreateCommand("rm") + cgb.CreateCommand("remove") + .Alias("rm") .Description("Remove a song by its # in the queue, or 'all' to remove whole queue.\n**Usage**: `!m rm 5`") .Parameter("num", ParameterType.Required) .Do(async e => @@ -399,6 +400,41 @@ namespace NadekoBot.Modules.Music await e.Channel.SendMessage($"🎵**Track {song.PrettyName} at position `#{num}` has been removed.**").ConfigureAwait(false); }); + //var msRegex = new Regex(@"(?\d+)>(?\d+)", RegexOptions.Compiled); + cgb.CreateCommand("movesong") + .Alias("ms") + .Description($"Moves a song from one position to another.\n**Usage**: `{Prefix} ms` 5>3") + .Parameter("fromto") + .Do(async e => + { + MusicPlayer musicPlayer; + if (!MusicPlayers.TryGetValue(e.Server, out musicPlayer)) + { + return; + } + var fromto = e.GetArg("fromto").Trim(); + var fromtoArr = fromto.Split('>'); + + int n1; + int n2; + + var playlist = musicPlayer.Playlist as List ?? musicPlayer.Playlist.ToList(); + + if (fromtoArr.Length != 2 || !int.TryParse(fromtoArr[0], out n1) || + !int.TryParse(fromtoArr[1], out n2) || n1 < 1 || n2 < 1 || n1 == n2 || + n1 > playlist.Count || n2 > playlist.Count) + { + await e.Channel.SendMessage("`Invalid input.`"); + return; + } + + var s = playlist[n1 - 1]; + playlist.Insert(n2 - 1, s); + + await e.Channel.SendMessage($"🎵`Moved` {s.PrettyName} `from #{n1} to #{n2}`"); + + }); + cgb.CreateCommand("cleanup") .Description("Cleans up hanging voice connections. **Bot Owner Only!**\n**Usage**: `!m cleanup`") .AddCheck(SimpleCheckers.OwnerOnly())