1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/module/Vendor/SleepyDiscord
2021-01-28 04:58:28 +02:00
..
buildtools Initial preparations for CURL and Discord integration. 2021-01-27 07:27:48 +02:00
include/sleepy_discord Modify discord library to be able to customize request session. 2021-01-28 04:58:28 +02:00
sleepy_discord Modify discord library to be able to customize request session. 2021-01-28 04:58:28 +02:00
azure-pipelines.yml Initial preparations for CURL and Discord integration. 2021-01-27 07:27:48 +02:00
CMakeLists.txt Modify discord library to be able to customize request session. 2021-01-28 04:58:28 +02:00
LICENSE.md Initial preparations for CURL and Discord integration. 2021-01-27 07:27:48 +02:00
README.md Initial preparations for CURL and Discord integration. 2021-01-27 07:27:48 +02:00

Sleepy Discord

C++ library for Discord

Note: Sleepy Discord is pronounced as CP Discord, like the letters C and P. Actually, that's a joke. Sleepy should be pronounced the way you would normally pronounce sleepy.

Discord Server

Documentation

📝 Getting Started
📝 How to make a Basic Text Bot

If you like to edit them, please check out the docs branch or click on the 📝.

Build Status

OS Windows Ubuntu
Master Build Status Build Status
Develop Build Status Build Status

Why?

Just for the novelty of using a C++ library for Discord. I would also love for this thing to work on many things like consoles and maybe some microcontrollers.

Example

#include "sleepy_discord/sleepy_discord.h"

class MyClientClass : public SleepyDiscord::DiscordClient {
public:
	using SleepyDiscord::DiscordClient::DiscordClient;
	void onMessage(SleepyDiscord::Message message) override {
		if (message.startsWith("whcg hello"))
			sendMessage(message.channelID, "Hello " + message.author.username);
	}
};

int main() {
	myClientClass client("token", SleepyDiscord::USER_CONTROLED_THREADS);
	client.run();
}

Input: Message received

whcg hello

Possible Output: Message sent

Hello Sleepy Flower Girl

More complex examples:

Will Updating the library break my bot?

Yes, and for now I don't plan on making 0.0 versions backwards compatible with 1.0 versions or later.

Requirements

Sleepy Discord doesn't require you to use any libraries, so that you can use any library you wish or your own code. However, Sleepy Discord provides native support for a few libraries and it is recommend you use those instead of writing your own.

Develop Branch

For the cutting edge of Sleepy Discord, check out the develop branch. Please use the develop branch with caution because it may not even be able to compile or it is 100% not tested at all. Other then that, the branch is used for code that may not work. Also check to see if it's not behind the master branch, unless you want to use an older version of Sleepy Discord.