This repository was archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSisbaseBot.cs
196 lines (170 loc) · 4.94 KB
/
SisbaseBot.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
using DSharpPlus;
using DSharpPlus.CommandsNext;
using DSharpPlus.Entities;
using DSharpPlus.Interactivity;
using DSharpPlus.Interactivity.Enums;
using sisbase.Configuration;
using sisbase.Utils;
using System;
using System.IO;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
namespace sisbase
{
#pragma warning disable CS1591
/// <summary>
/// The class all sisbase bots derive from
/// </summary>
public class SisbaseBot : IDisposable
{
/// <summary>
/// The currently running Instance
/// </summary>
public static SisbaseBot Instance { get; private set; }
internal static CancellationTokenSource _cts;
/// <summary>
/// The configuration for the bot.
/// </summary>
public MainConfig SisbaseConfiguration { get; } = new MainConfig();
public SystemConfig SystemCfg { get; } = new SystemConfig();
/// <summary>
/// The DiscordClient
/// </summary>
public DiscordClient Client { get; private set; }
/// <summary>
/// The CommandsNextExtension for the <see cref="Client"/>
/// </summary>
public CommandsNextExtension CommandsNext { get; private set; }
/// <summary>
/// The InteractivityExtension for the <see cref="Client"/>
/// </summary>
public InteractivityExtension Interactivity { get; private set; }
/// <summary>
/// The System Managment Controller <br></br> Responsible for registry and unregistry of all Systems.
/// </summary>
public SMC Systems { get; private set; }
/// <summary>
/// Constructs a new <see cref="SisbaseBot"/> from a given configuration
/// </summary>
/// <param name="configDirectory">The directory used to store the configuration.</param>
public SisbaseBot(string configDirectory)
{
if (Instance != null)
throw new InvalidOperationException("Instance is already running");
Instance = this;
SisbaseConfiguration.Create(Directory.CreateDirectory(Directory.GetCurrentDirectory()));
CreateNewBot();
SystemCfg.Create(Directory.CreateDirectory(configDirectory));
}
public SisbaseBot()
{
if (Instance != null)
throw new InvalidOperationException("Instance is already running");
Instance = this;
SisbaseConfiguration.Create(Directory.CreateDirectory(Directory.GetCurrentDirectory()));
CreateNewBot();
SystemCfg.Create(Directory.CreateDirectory(Directory.GetCurrentDirectory()));
}
internal void CreateNewBot()
{
Client = new DiscordClient(
new DiscordConfiguration
{
AutoReconnect = true,
Token = SisbaseConfiguration.Data.Token,
UseInternalLogHandler = false
}
);
CommandsNext = Client.UseCommandsNext(
new CommandsNextConfiguration
{
EnableDefaultHelp = false,
PrefixResolver = RTPR
}
);
Interactivity = Client.UseInteractivity(
new InteractivityConfiguration
{
Timeout = TimeSpan.FromMinutes(15),
PaginationBehaviour = PaginationBehaviour.WrapAround,
PaginationDeletion = PaginationDeletion.DeleteEmojis,
PollBehaviour = PollBehaviour.DeleteEmojis
}
);
_cts = new CancellationTokenSource();
Systems = new SMC();
Systems.RegisterSystems(typeof(SisbaseBot).Assembly);
CommandsNext.RegisterCommands(typeof(SisbaseBot).Assembly);
}
/// <summary>
/// Real-Time Prefix Resolver
/// </summary>
#pragma warning disable CS1998
private async Task<int> RTPR(DiscordMessage msg)
{
switch (msg.GetMentionPrefixLength(Instance.Client.CurrentUser))
{
case -1:
int x;
foreach (string prefix in Instance.SisbaseConfiguration.Data.Prefixes)
{
x = msg.GetStringPrefixLength(prefix);
if (x != -1)
return x;
}
break;
default:
return msg.GetMentionPrefixLength(Instance.Client.CurrentUser);
}
return -1;
}
/// <summary>
/// Registers all systems and commands from a given assembly. The System and Command classes
/// need to be public for registration
/// </summary>
/// <param name="asm">The assembly</param>
public void RegisterBot(Assembly asm)
{ Systems.RegisterSystems(asm); CommandsNext.RegisterCommands(asm); }
#pragma warning restore CS1998
/// <summary>
/// Starts the bot instance
/// </summary>
/// <returns></returns>
public async Task Start()
{
Console.CancelKeyPress += (sender, e) =>
{
if (!_cts.IsCancellationRequested)
Stop();
e.Cancel = true;
};
await Connect();
Client.GuildDownloadCompleted += async (e) => { Logger.Log("DSharpPlus","The bot is ready for usage. [GuildDownloadCompleted]");};
await _cts.Token.WhenCanceled();
}
public void Stop() => _cts.Cancel();
internal Task Connect()
=> Client.ConnectAsync();
/// <summary>
/// Disconnects the bot
/// </summary>
/// <returns></returns>
public Task DisconnectAsync()
=> Client.DisconnectAsync();
~SisbaseBot() =>
Dispose(false);
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
Client.Dispose();
}
}
}
}