mirror of
https://github.com/yuzu-emu/discord-rpc
synced 2024-11-22 22:13:55 +00:00
More complete presence data to test with.
This commit is contained in:
parent
98852fba82
commit
52bdc2714d
1 changed files with 12 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
static const char* APPLICATION_ID = "338030514596216832";
|
static const char* APPLICATION_ID = "338030514596216832";
|
||||||
static int FrustrationLevel = 0;
|
static int FrustrationLevel = 0;
|
||||||
|
static int64_t StartTime;
|
||||||
|
|
||||||
static void updateDiscordPresence()
|
static void updateDiscordPresence()
|
||||||
{
|
{
|
||||||
|
@ -22,6 +23,15 @@ static void updateDiscordPresence()
|
||||||
discordPresence.state = "West of House";
|
discordPresence.state = "West of House";
|
||||||
sprintf(buffer, "Frustration level: %d", FrustrationLevel);
|
sprintf(buffer, "Frustration level: %d", FrustrationLevel);
|
||||||
discordPresence.details = buffer;
|
discordPresence.details = buffer;
|
||||||
|
discordPresence.startTimestamp = StartTime;
|
||||||
|
discordPresence.endTimestamp = time(0) + 5 * 60;
|
||||||
|
discordPresence.partyId = "party1234";
|
||||||
|
discordPresence.partySize = 1;
|
||||||
|
discordPresence.partyMax = 6;
|
||||||
|
discordPresence.matchSecret = "xyzzy";
|
||||||
|
discordPresence.joinSecret = "join";
|
||||||
|
discordPresence.spectateSecret = "look";
|
||||||
|
discordPresence.instance = 0;
|
||||||
Discord_UpdatePresence(&discordPresence);
|
Discord_UpdatePresence(&discordPresence);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,6 +70,8 @@ static void gameLoop()
|
||||||
char line[512];
|
char line[512];
|
||||||
char* space;
|
char* space;
|
||||||
|
|
||||||
|
StartTime = time(0);
|
||||||
|
|
||||||
printf("You are standing in an open field west of a white house.\n");
|
printf("You are standing in an open field west of a white house.\n");
|
||||||
while (prompt(line, sizeof(line))) {
|
while (prompt(line, sizeof(line))) {
|
||||||
if (line[0]) {
|
if (line[0]) {
|
||||||
|
|
Loading…
Reference in a new issue