forked from RPCS3/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTableFlipMonitor.cs
97 lines (85 loc) · 3.86 KB
/
TableFlipMonitor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CompatApiClient.Utils;
using CompatBot.Commands;
using CompatBot.Utils;
using DSharpPlus;
using DSharpPlus.Entities;
using DSharpPlus.EventArgs;
using Microsoft.Extensions.Caching.Memory;
namespace CompatBot.EventHandlers;
internal static partial class TableFlipMonitor
{
[GeneratedRegex(@"(🎲|\s)+")]
private static partial Regex DiceRoll();
private static readonly char[] OpenParen = ['(', '(', 'ʕ'];
public static async Task OnMessageCreated(DiscordClient _, MessageCreateEventArgs args)
{
if (DefaultHandlerFilter.IsFluff(args.Message))
return;
/*
* (╯°□°)╯︵ ┻━┻
* (ノ ゜Д゜)ノ ︵ ┻━┻
* (ノಠ益ಠ)ノ彡┻━┻
* (ノಥ益ಥ)ノ ┻━┻
* (ノಥДಥ)ノ︵┻━┻・/
* (ノ^_^)ノ┻━┻
* (/¯◡ ‿ ◡)/¯ ~ ┻━┻
*
* this might look the same, but only because of the font choice
*
* ┻━┻
* ┻━┻
*/
try
{
var content = args.Message.Content;
if (content.Contains("🎲") && DiceRoll().IsMatch(content))
{
var count = 1;
var idx = content.IndexOf("🎲");
while (idx < content.Length && (idx = content.IndexOf("🎲", idx + 1)) > 0)
count++;
EmpathySimulationHandler.Throttling.Set(args.Channel.Id, new List<DiscordMessage> {args.Message}, EmpathySimulationHandler.ThrottleDuration);
await Misc.RollImpl(args.Message, $"{count}d6").ConfigureAwait(false);
return;
}
if (content.Trim() == "🥠")
{
EmpathySimulationHandler.Throttling.Set(args.Channel.Id, new List<DiscordMessage> {args.Message}, EmpathySimulationHandler.ThrottleDuration);
await Fortune.ShowFortune(args.Message, args.Author).ConfigureAwait(false);
return;
}
if (!(content.Contains("┻━┻") ||
content.Contains("┻━┻")))
return;
var tableIdx = content.IndexOf("┻━┻", StringComparison.Ordinal);
if (tableIdx < 0)
tableIdx = content.IndexOf("┻━┻", StringComparison.Ordinal);
var faceIdx = content[..tableIdx].LastIndexOfAny(OpenParen);
var face = content[faceIdx..tableIdx];
if (face.Length > 30)
return;
var reverseFace = face
.Replace("(╯", "╯(").Replace("(ノ", "ノ(").Replace("(ノ", "ノ(").Replace("(/¯", @"\_/(")
.Replace(")╯", "╯)").Replace(")ノ", "ノ)").Replace(")ノ", "ノ)").Replace(")/¯", @"\_/)")
.Replace("(╯", "╯(").Replace("(ノ", "ノ(").Replace("(ノ", "ノ(").Replace("(/¯", @"\_/(")
.Replace(")╯", "╯)").Replace(")ノ", "ノ)").Replace(")ノ", "ノ)").Replace(")/¯", @"\_/)")
.Replace("ʕ╯", "╯ʕ").Replace("ʕノ", "ノʕ").Replace("ʕノ", "ノʕ").Replace("ʕ/¯", @"\_/ʕ")
.Replace("ʔ╯", "╯ʔ").Replace("ʔノ", "ノʔ").Replace("ʔノ", "ノʔ").Replace("ʔ/¯", @"\_/ʔ")
.TrimEnd('︵', '彡', ' ', ' ', '~', '~');
if (reverseFace == face)
return;
var faceLength = reverseFace.Length;
if (faceLength > 5 + 4)
reverseFace = $"{reverseFace[..2]}ಠ益ಠ{reverseFace[^2..]}";
await args.Channel.SendMessageAsync("┬─┬ " + reverseFace.Sanitize()).ConfigureAwait(false);
}
catch (Exception e)
{
Config.Log.Warn(e);
}
}
}