dolphin/Source/Core/UICommon/DiscordPresence.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.7 KiB
C
Raw Normal View History

2018-05-27 04:24:13 +00:00
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-05-27 04:24:13 +00:00
#pragma once
2018-07-03 21:50:08 +00:00
#include <functional>
2018-08-06 21:56:40 +00:00
#include <string>
2018-07-03 21:50:08 +00:00
2018-05-27 04:24:13 +00:00
namespace Discord
{
// The number is the client ID for Dolphin, it's used for images and the application name
const std::string DEFAULT_CLIENT_ID = "455712169795780630";
class Handler
{
public:
virtual ~Handler();
virtual void DiscordJoin() = 0;
virtual void DiscordJoinRequest(const char* id, const std::string& discord_tag,
const char* avatar) = 0;
};
enum class SecretType
2018-07-03 21:50:08 +00:00
{
Empty,
IPAddress,
RoomID,
};
static bool s_using_custom_client = false;
2018-05-27 04:24:13 +00:00
void Init();
void InitNetPlayFunctionality(Handler& handler);
2018-07-03 21:50:08 +00:00
void CallPendingCallbacks();
void UpdateClientID(const std::string& new_client = {});
bool UpdateDiscordPresenceRaw(const std::string& details = {}, const std::string& state = {},
const std::string& large_image_key = {},
const std::string& large_image_text = {},
const std::string& small_image_key = {},
const std::string& small_image_text = {},
const int64_t start_timestamp = 0, const int64_t end_timestamp = 0,
const int party_size = 0, const int party_max = 0);
2018-07-03 21:50:08 +00:00
void UpdateDiscordPresence(int party_size = 0, SecretType type = SecretType::Empty,
const std::string& secret = {}, const std::string& current_game = {});
std::string CreateSecretFromIPAddress(const std::string& ip_address, int port);
2018-05-27 04:24:13 +00:00
void Shutdown();
void SetDiscordPresenceEnabled(bool enabled);
2018-05-27 04:24:13 +00:00
} // namespace Discord