-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.c
45 lines (38 loc) · 1.03 KB
/
commands.c
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
#include <concord/discord.h>
#include <concord/log.h>
#include <string.h>
#include "commands.h"
#include "data.h"
#include "utils.h"
void cmd_help(struct discord *client, const struct discord_message *event)
{
// get client data
data_t *data = discord_get_data(client);
char buff[strlen(data->config.bot.prefix) + 20];
snprintf(buff, sizeof(buff), "commands prefix is %s", data->config.bot.prefix);
// send the message
struct discord_create_message params = {
.content = buff,
};
discord_create_message(client, event->channel_id, ¶ms, 0);
}
static command commands[] = {
// help command
{.name = "help", .aliases = (const char *[]){"help_v2", 0}, .run = &cmd_help},
// end marker
{0, 0, 0},
};
// get command by name
const command *get_command(const char *name)
{
for (int i = 0; commands[i].name != 0; i++) {
if (starts_with(name, commands[i].name))
return &commands[i];
else
for (int j = 0; commands[i].aliases[j]; j++) {
if (starts_with(name, commands[i].aliases[j]))
return &commands[i];
}
}
return 0;
}