summaryrefslogtreecommitdiff
path: root/src/citron/discord_impl.h
blob: 738cb1f6190700d989688926286d7dd7fe3fd28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// SPDX-FileCopyrightText: 2018 Citra Emulator Project & 2025 Citron Homebrew Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "citron/discord.h"

namespace Core {
class System;
}

namespace DiscordRPC {

class DiscordImpl: public DiscordInterface {
public: DiscordImpl(Core::System & system_);
~DiscordImpl() override;

void Pause() override;
void Update() override;

private: void UpdateGameStatus(bool use_default);

std::string game_url {};
std::string game_title {};
std::string game_title_id {};
std::string cached_url;

Core::System & system;
u64 program_id = 0;
};

} // namespace DiscordRPC