2018-05-29 04:43:30 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2018 - Andrés Suárez
|
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RARCH_DISCORD_H
|
|
|
|
#define __RARCH_DISCORD_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <boolean.h>
|
|
|
|
|
|
|
|
enum discord_presence
|
|
|
|
{
|
2018-09-09 21:41:50 +00:00
|
|
|
DISCORD_PRESENCE_NONE = 0,
|
|
|
|
DISCORD_PRESENCE_MENU,
|
2018-05-29 04:43:30 +00:00
|
|
|
DISCORD_PRESENCE_GAME,
|
2018-08-18 07:12:51 +00:00
|
|
|
DISCORD_PRESENCE_GAME_PAUSED,
|
2018-05-29 04:43:30 +00:00
|
|
|
DISCORD_PRESENCE_CHEEVO_UNLOCKED,
|
|
|
|
DISCORD_PRESENCE_NETPLAY_HOSTING,
|
2019-02-07 00:01:11 +00:00
|
|
|
DISCORD_PRESENCE_NETPLAY_CLIENT,
|
|
|
|
DISCORD_PRESENCE_NETPLAY_NETPLAY_STOPPED,
|
|
|
|
DISCORD_PRESENCE_SHUTDOWN
|
2018-05-29 04:43:30 +00:00
|
|
|
};
|
|
|
|
|
2018-05-29 10:41:13 +00:00
|
|
|
typedef struct discord_userdata
|
|
|
|
{
|
|
|
|
enum discord_presence status;
|
|
|
|
} discord_userdata_t;
|
|
|
|
|
2018-05-29 09:09:13 +00:00
|
|
|
void discord_init(void);
|
2018-05-29 04:43:30 +00:00
|
|
|
|
2018-05-29 09:09:13 +00:00
|
|
|
void discord_shutdown(void);
|
|
|
|
|
|
|
|
void discord_update(enum discord_presence presence);
|
2018-05-29 04:43:30 +00:00
|
|
|
|
2019-01-19 22:15:48 +00:00
|
|
|
void discord_run_callbacks(void);
|
2018-09-09 21:41:50 +00:00
|
|
|
|
2019-01-19 22:15:48 +00:00
|
|
|
bool discord_is_ready(void);
|
2018-12-24 19:28:36 +00:00
|
|
|
|
2018-12-24 20:06:21 +00:00
|
|
|
void discord_avatar_set_ready(bool ready);
|
|
|
|
|
2019-01-19 22:15:48 +00:00
|
|
|
bool discord_avatar_is_ready(void);
|
2018-12-24 20:06:21 +00:00
|
|
|
|
2018-12-24 19:28:36 +00:00
|
|
|
char* discord_get_own_username(void);
|
|
|
|
|
|
|
|
char* discord_get_own_avatar(void);
|
|
|
|
|
2018-05-29 04:43:30 +00:00
|
|
|
#endif /* __RARCH_DISCORD_H */
|