mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
118 lines
2.4 KiB
C
118 lines
2.4 KiB
C
|
/************************************************************************************
|
||
|
*
|
||
|
* D++, A Lightweight C++ library for Discord
|
||
|
*
|
||
|
* Copyright 2021 Craig Edwards and D++ contributors
|
||
|
* (https://github.com/brainboxdotcc/DPP/graphs/contributors)
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*
|
||
|
************************************************************************************/
|
||
|
#pragma once
|
||
|
#include <dpp/export.h>
|
||
|
#include <dpp/discord.h>
|
||
|
#include <dpp/json_fwd.hpp>
|
||
|
|
||
|
namespace dpp {
|
||
|
|
||
|
/**
|
||
|
* @brief Flags related to a voice region
|
||
|
*/
|
||
|
enum voiceregion_flags {
|
||
|
v_optimal = 0x00000001,
|
||
|
v_deprecated = 0x00000010,
|
||
|
v_custom = 0x00000100,
|
||
|
v_vip = 0x00001000
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* @brief Represents a voice region on discord
|
||
|
*/
|
||
|
class CoreExport voiceregion {
|
||
|
public:
|
||
|
/**
|
||
|
* @brief Voice server ID
|
||
|
*/
|
||
|
std::string id;
|
||
|
|
||
|
/**
|
||
|
* @brief Voice server name
|
||
|
*/
|
||
|
std::string name;
|
||
|
|
||
|
/**
|
||
|
* @brief Flags bitmap
|
||
|
*/
|
||
|
uint8_t flags;
|
||
|
|
||
|
/**
|
||
|
* @brief Construct a new voiceregion object
|
||
|
*/
|
||
|
voiceregion();
|
||
|
|
||
|
/**
|
||
|
* @brief Destroy the voiceregion object
|
||
|
*/
|
||
|
~voiceregion();
|
||
|
|
||
|
/**
|
||
|
* @brief Fill object properties from JSON
|
||
|
*
|
||
|
* @param j JSON to fill from
|
||
|
* @return voiceregion& Reference to self
|
||
|
*/
|
||
|
voiceregion& fill_from_json(nlohmann::json* j);
|
||
|
|
||
|
/**
|
||
|
* @brief Build a json string for this object
|
||
|
*
|
||
|
* @return std::string JSON string
|
||
|
*/
|
||
|
std::string build_json() const;
|
||
|
|
||
|
/**
|
||
|
* @brief True if is the optimal voice server
|
||
|
*
|
||
|
* @return true if optimal
|
||
|
*/
|
||
|
bool is_optimal() const;
|
||
|
|
||
|
/**
|
||
|
* @brief True if is a deprecated voice server
|
||
|
*
|
||
|
* @return true if deprecated
|
||
|
*/
|
||
|
bool is_deprecated() const;
|
||
|
|
||
|
/**
|
||
|
* @brief True if is a custom voice server
|
||
|
*
|
||
|
* @return true if custom
|
||
|
*/
|
||
|
bool is_custom() const;
|
||
|
|
||
|
/**
|
||
|
* @brief True if is a VIP voice server
|
||
|
*
|
||
|
* @return true if VIP
|
||
|
*/
|
||
|
bool is_vip() const;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* @brief A group of voice regions
|
||
|
*/
|
||
|
typedef std::unordered_map<std::string, voiceregion> voiceregion_map;
|
||
|
|
||
|
};
|