2018-08-20 11:20:33 +02:00
|
|
|
// Copyright 2018 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
#include <string>
|
|
|
|
#include <discord_rpc.h>
|
|
|
|
#include "citra_qt/discord_impl.h"
|
2019-08-15 06:38:54 +02:00
|
|
|
#include "citra_qt/uisettings.h"
|
2018-08-20 11:20:33 +02:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/core.h"
|
2023-08-01 02:57:38 +02:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-20 11:20:33 +02:00
|
|
|
|
|
|
|
namespace DiscordRPC {
|
|
|
|
|
2023-08-01 02:57:38 +02:00
|
|
|
DiscordImpl::DiscordImpl(const Core::System& system_) : system{system_} {
|
2018-08-20 11:20:33 +02:00
|
|
|
DiscordEventHandlers handlers{};
|
|
|
|
|
|
|
|
// The number is the client ID for Citra, it's used for images and the
|
|
|
|
// application name
|
2020-07-08 23:45:54 +02:00
|
|
|
Discord_Initialize("719647875465871400", &handlers, 1, nullptr);
|
2018-08-20 11:20:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DiscordImpl::~DiscordImpl() {
|
|
|
|
Discord_ClearPresence();
|
|
|
|
Discord_Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiscordImpl::Pause() {
|
|
|
|
Discord_ClearPresence();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiscordImpl::Update() {
|
|
|
|
s64 start_time = std::chrono::duration_cast<std::chrono::seconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
.count();
|
|
|
|
std::string title;
|
2023-08-01 02:57:38 +02:00
|
|
|
const bool is_powered_on = system.IsPoweredOn();
|
|
|
|
if (is_powered_on) {
|
|
|
|
system.GetAppLoader().ReadTitle(title);
|
|
|
|
}
|
|
|
|
|
2018-08-20 11:20:33 +02:00
|
|
|
DiscordRichPresence presence{};
|
2020-07-08 23:45:54 +02:00
|
|
|
presence.largeImageKey = "citra";
|
2018-08-20 11:20:33 +02:00
|
|
|
presence.largeImageText = "Citra is an emulator for the Nintendo 3DS";
|
2023-08-01 02:57:38 +02:00
|
|
|
if (is_powered_on) {
|
2018-08-20 11:20:33 +02:00
|
|
|
presence.state = title.c_str();
|
|
|
|
presence.details = "Currently in game";
|
|
|
|
} else {
|
|
|
|
presence.details = "Not in game";
|
|
|
|
}
|
|
|
|
presence.startTimestamp = start_time;
|
|
|
|
Discord_UpdatePresence(&presence);
|
|
|
|
}
|
|
|
|
} // namespace DiscordRPC
|