1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 10:21:31 +00:00

start registering the application so it can be started from discord

This commit is contained in:
radius 2018-10-13 21:09:19 -05:00
parent 32c346a3e7
commit bf7c3f17b3
2 changed files with 11 additions and 6 deletions
deps/discord-rpc/src
discord

@ -77,22 +77,22 @@ static void Discord_RegisterW(const wchar_t* applicationId, const wchar_t* comma
wchar_t openCommand[1024]; wchar_t openCommand[1024];
if (command && command[0]) { if (command && command[0]) {
StringCbPrintfW(openCommand, sizeof(openCommand), L"%s", command); StringCbPrintfW(openCommand, sizeof(openCommand), L"%S", command);
} }
else { else {
// StringCbCopyW(openCommand, sizeof(openCommand), exeFilePath); // StringCbCopyW(openCommand, sizeof(openCommand), exeFilePath);
StringCbPrintfW(openCommand, sizeof(openCommand), L"%s", exeFilePath); StringCbPrintfW(openCommand, sizeof(openCommand), L"%S", exeFilePath);
} }
wchar_t protocolName[64]; wchar_t protocolName[64];
StringCbPrintfW(protocolName, sizeof(protocolName), L"discord-%s", applicationId); StringCbPrintfW(protocolName, sizeof(protocolName), L"discord-%S", applicationId);
wchar_t protocolDescription[128]; wchar_t protocolDescription[128];
StringCbPrintfW( StringCbPrintfW(
protocolDescription, sizeof(protocolDescription), L"URL:Run game %s protocol", applicationId); protocolDescription, sizeof(protocolDescription), L"URL:Run game %S protocol", applicationId);
wchar_t urlProtocol = 0; wchar_t urlProtocol = 0;
wchar_t keyName[256]; wchar_t keyName[256];
StringCbPrintfW(keyName, sizeof(keyName), L"Software\\Classes\\%s", protocolName); StringCbPrintfW(keyName, sizeof(keyName), L"Software\\Classes\\%S", protocolName);
HKEY key; HKEY key;
auto status = auto status =
RegCreateKeyExW(HKEY_CURRENT_USER, keyName, 0, nullptr, 0, KEY_WRITE, nullptr, &key, nullptr); RegCreateKeyExW(HKEY_CURRENT_USER, keyName, 0, nullptr, 0, KEY_WRITE, nullptr, &key, nullptr);

@ -16,6 +16,7 @@
#include <file/file_path.h> #include <file/file_path.h>
#include "discord.h" #include "discord.h"
#include "discord_register.h"
#include "../retroarch.h" #include "../retroarch.h"
#include "../configuration.h" #include "../configuration.h"
@ -225,7 +226,11 @@ void discord_init(void)
handlers.spectateGame = handle_discord_spectate; handlers.spectateGame = handle_discord_spectate;
handlers.joinRequest = handle_discord_join_request; handlers.joinRequest = handle_discord_join_request;
Discord_Initialize(settings->arrays.discord_app_id, &handlers, 1, NULL); /* To-Do: Add the arguments RetroArch was started with to the register URI*/
const char command[256] = "retroarch";
Discord_Initialize(settings->arrays.discord_app_id, &handlers, 0, NULL);
Discord_Register(settings->arrays.discord_app_id, NULL);
discord_ready = true; discord_ready = true;
} }