DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
CommandController.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/// CommandController.hpp - wrangler header for the command controller.
27/// May 20, 2021
28/// https://discordcoreapi.com
29/// \file CommandController.hpp
30#pragma once
31
34
35namespace discord_core_api {
36
37 /// @brief A class for handling commands from user input.
38 class DiscordCoreAPI_Dll command_controller {
39 public:
40 /// @brief Registers a function to be called.
41 /// @param functionNames a vector of strings to be accepted as function names.
42 /// @param baseFunction a unique_ptr to the function to be called.
43 void registerFunction(const jsonifier::vector<jsonifier::string>& functionNames, unique_ptr<base_function> baseFunction);
44
45 /// @brief For returning the contained map of functions.
46 /// @return a map containing the function names as well as unique_ptrs to the functions.
47 unordered_map<jsonifier::vector<jsonifier::string>, unique_ptr<base_function>>& getFunctions();
48
49 co_routine<void> checkForAndRunCommand(command_data&& commandData);
50
51 protected:
52 unique_ptr<base_function> createFunction(jsonifier::string_view functionName);
53
54 unique_ptr<base_function> getCommand(jsonifier::string_view commandName);
55 };
56
57};
A co_routine - representing a potentially asynchronous operation/function.
Definition: CoRoutine.hpp:83
A class for handling commands from user input.
Command data, for functions executed by the command_controller.
A smart pointer class that provides unique ownership semantics.
Definition: UniquePtr.hpp:44
The main namespace for the forward-facing interfaces.