DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
InputEvents.hpp
Go to the documentation of this file.
1/*
2 MIT License
3
4 DiscordCoreAPI, A bot library for Discord, written in C++, and featuring explicit multithreading through the usage of custom, asynchronous C++ CoRoutines.
5
6 Copyright 2022, 2023 Chris M. (RealTimeChris)
7
8 Permission is hereby granted, free of charge, to any person obtaining a copy
9 of this software and associated documentation files (the "Software"), to deal
10 in the Software without restriction, including without limitation the rights
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the Software is
13 furnished to do so, subject to the following conditions:
14
15 The above copyright notice and this permission notice shall be included in all
16 copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 SOFTWARE.
25*/
26/// InputEvents.hpp - Header for the input-event handler class.
27/// Aug 18, 2021
28/// https://discordcoreapi.com
29/// \file InputEvents.hpp
30#pragma once
31
35
36namespace discord_core_api {
37
38 /**
39 * \addtogroup main_endpoints
40 * @{
41 */
42 /// @brief For handling user_data input - messages or interactions.
43 class DiscordCoreAPI_Dll input_events {
44 public:
45 /// @brief Responds to one of a number of types of "input_events".
46 /// @param dataPackage a respond_to_input_event_data structure.
47 /// @return an unique_ptr containing an input_event_data structure.
48 static co_routine<input_event_data> respondToInputEventAsync(const respond_to_input_event_data dataPackage);
49
50 /// @brief Deletes a previously sent "input-event-response".
51 /// @param dataPackage a unique_ptr containing an input_event_data structure.
52 /// @param timeDelayNew an int32_t representing the desired delay until the message is deleted, in milliseconds.
53 /// @return a co_routine containing void.
54 static co_routine<void> deleteInputEventResponseAsync(const input_event_data dataPackage, uint32_t timeDelayNew = 0);
55
56 protected:
57 static input_event_data respondToInputEvent(create_ephemeral_interaction_response_data dataPackage);
58
59 static input_event_data respondToInputEvent(create_deferred_interaction_response_data dataPackage);
60
61 static input_event_data respondToInputEvent(create_ephemeral_follow_up_message_data dataPackage);
62
63 static input_event_data respondToInputEvent(create_interaction_response_data dataPackage);
64
65 static input_event_data respondToInputEvent(edit_interaction_response_data dataPackage);
66
67 static input_event_data respondToInputEvent(create_follow_up_message_data dataPackage);
68
69 static input_event_data respondToInputEvent(edit_follow_up_message_data dataPackage);
70
71 static input_event_data respondToInputEvent(create_message_data dataPackage);
72
73 static input_event_data respondToInputEvent(edit_message_data dataPackage);
74 };
75 /**@}*/
76}
A co_routine - representing a potentially asynchronous operation/function.
Definition: CoRoutine.hpp:83
For creating an ephemeral follow up message_data.
For creating an ephemeral interaction response.
For creating a follow up message_data.
For editing a follow up message_data.
Data representing an input-event, which is any message or interaction that is coming into the bot as ...
For handling user_data input - messages or interactions.
Definition: InputEvents.hpp:43
Data for responding to an input-event.
The main namespace for the forward-facing interfaces.