got rpc working

This commit is contained in:
Evan Pratten 2021-09-20 16:59:40 -04:00
parent 37eea6536d
commit 8e89927525
10 changed files with 104 additions and 9 deletions

View File

@ -8,12 +8,14 @@ edition = "2018"
[dependencies]
cgmath = "0.18"
discord-sdk = "0.1"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.0", features = ["macros"] }
tracing = { version = "0.1", features = ["log"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
thiserror = "1.0"
chrono = "0.4"
rust-embed = "6.2.0"
raylib = "3.5"
[profile.release]
lto = true

View File

@ -0,0 +1,3 @@
{
"app_id": 889531982978117633
}

View File

@ -1,7 +1,50 @@
use discord_sdk::activity::ActivityBuilder;
use tracing::error;
use utilities::{
datastore::StaticGameData,
discord::{DiscordConfig, DiscordRpcClient},
};
use raylib::prelude::*;
#[macro_use]
extern crate thiserror;
#[macro_use]
extern crate serde;
mod utilities;
/// The game entrypoint
pub fn game_begin() {}
pub async fn game_begin() {
// Attempt to connect to a locally running Discord instance for rich presence access
let discord_config = DiscordConfig::load(
StaticGameData::get("configs/discord.json").expect("Failed to load discord.json"),
)
.expect("Could not load Discord config data");
let discord_rpc =
match DiscordRpcClient::new(discord_config.app_id, discord_sdk::Subscriptions::ACTIVITY)
.await
{
Ok(client) => Some(client),
Err(err) => {
error!("Could not connect to or find a locally running Discord instance.");
error!("Discord connection error: {:?}", err);
None
}
};
if let Some(rpc) = discord_rpc {
rpc.set_rich_presence(ActivityBuilder::default().details("Testing...")).await.unwrap();
}
let (mut rl, thread) = raylib::init()
.size(640, 480)
.title("Hello, World")
.build();
while !rl.window_should_close() {
let mut d = rl.begin_drawing(&thread);
d.clear_background(Color::WHITE);
d.draw_text("Hello, world!", 12, 12, 20, Color::BLACK);
}
}

View File

@ -0,0 +1,3 @@
#[derive(rust_embed::RustEmbed)]
#[folder = "assets"]
pub struct StaticGameData;

View File

@ -0,0 +1,13 @@
use rust_embed::EmbeddedFile;
#[derive(Debug, Clone, Deserialize)]
pub struct DiscordConfig {
pub app_id: i64,
}
impl DiscordConfig {
/// Load from a file
pub fn load(file: EmbeddedFile) -> Result<Self, serde_json::Error> {
serde_json::from_slice(&file.data)
}
}

View File

@ -0,0 +1,4 @@
pub mod rpc;
pub use rpc::DiscordRpcClient;
pub mod config;
pub use config::DiscordConfig;

View File

@ -1,6 +1,11 @@
//! Discord Rich Presence utilities
use discord_sdk::{user::User, wheel::Wheel, Discord, DiscordApp, Subscriptions};
use discord_sdk::{
activity::{Activity, ActivityBuilder},
user::User,
wheel::Wheel,
Discord, DiscordApp, Subscriptions,
};
use tracing::info;
#[derive(Debug, Error)]
@ -9,8 +14,11 @@ pub enum DiscordError {
SdkError(#[from] discord_sdk::Error),
#[error(transparent)]
AwaitConnectionError(#[from] tokio::sync::watch::error::RecvError),
#[error("Could not connect")]
ConnectionError,
}
/// The client wrapper for Discord RPC
pub struct DiscordRpcClient {
pub discord: Discord,
pub user: User,
@ -18,6 +26,7 @@ pub struct DiscordRpcClient {
}
impl DiscordRpcClient {
/// Creates a new DiscordRpcClient
pub async fn new(app_id: i64, subscriptions: Subscriptions) -> Result<Self, DiscordError> {
// Create a new wheel
let (wheel, handler) = Wheel::new(Box::new(|err| {
@ -40,7 +49,7 @@ impl DiscordRpcClient {
// Fetch the final user object
let user = match &*user.0.borrow() {
discord_sdk::wheel::UserState::Connected(u) => Ok(u.clone()),
discord_sdk::wheel::UserState::Disconnected(err) => Err(err),
discord_sdk::wheel::UserState::Disconnected(_) => Err(DiscordError::ConnectionError),
}?;
Ok(Self {
@ -49,4 +58,19 @@ impl DiscordRpcClient {
wheel,
})
}
/// Clears the user rich presence
pub async fn clear_rich_presence(&self) -> Result<Option<Activity>, discord_sdk::Error> {
self.discord
.update_activity(ActivityBuilder::default())
.await
}
/// Sets the user rich presence
pub async fn set_rich_presence(
&self,
activity: ActivityBuilder,
) -> Result<Option<Activity>, discord_sdk::Error> {
self.discord.update_activity(activity).await
}
}

View File

@ -1 +1,2 @@
pub mod discord;
pub mod datastore;

View File

@ -9,3 +9,4 @@ edition = "2018"
[dependencies]
game = { version = "0.1", path = "../game"}
tracing-subscriber = "0.2"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }

View File

@ -1,9 +1,10 @@
use game::game_begin;
fn main() {
#[tokio::main]
async fn main() {
// Enable logging
tracing_subscriber::fmt::init();
// Start the game
game_begin();
game_begin().await;
}