less errors once again
This commit is contained in:
parent
1fb6a0ffc1
commit
c96716d52e
@ -1,2 +1,6 @@
|
||||
[workspace]
|
||||
members = ["./game", "./wrapper"]
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[dependencies]
|
||||
cgmath = "0.18"
|
||||
discord-sdk = { version = "0.2.1", git = "https://github.com/EmbarkStudios/discord-sdk", branch = "main", commit = "3ed27a06c71d88269c7ac29cf5151cfb7f24f0ef" }
|
||||
discord-sdk = { version = "0.2.1", git = "https://github.com/EmbarkStudios/discord-sdk", rev = "2c56fe530120487d21bcd307bdf2e1055ce0ad48" }
|
||||
tokio = { version = "1.0", features = ["macros"] }
|
||||
tracing = { version = "0.1", features = ["log"] }
|
||||
serde = { version = "1.0.126", features = ["derive"] }
|
||||
@ -24,8 +24,3 @@ sentry = "0.23"
|
||||
|
||||
[dev-dependencies]
|
||||
puffin_viewer = "0.6"
|
||||
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
@ -112,7 +112,7 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box<dyn std::err
|
||||
let discord_rpc = match try_connect_to_local_discord(&discord_config).await {
|
||||
Ok(client) => Some(client),
|
||||
Err(err) => match err {
|
||||
utilities::discord::rpc::DiscordError::ConnectionTimeoutError(time) => {
|
||||
utilities::discord::rpc::DiscordError::ConnectionTimeout(time) => {
|
||||
error!(
|
||||
"Could not find or connect to a local Discord instance after {} seconds",
|
||||
time
|
||||
|
@ -15,7 +15,7 @@ use super::{Scenes, ScreenError};
|
||||
pub struct FsmErrorScreen {}
|
||||
|
||||
impl FsmErrorScreen {
|
||||
/// Construct a new FsmErrorScreen
|
||||
/// Construct a new `FsmErrorScreen`
|
||||
pub fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
@ -59,6 +59,6 @@ impl ScreenSpaceRender for FsmErrorScreen {
|
||||
10,
|
||||
40,
|
||||
Color::WHITE,
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ pub struct LoadingScreen {
|
||||
}
|
||||
|
||||
impl LoadingScreen {
|
||||
/// Construct a new LoadingScreen
|
||||
/// Construct a new `LoadingScreen`
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
start_timestamp: None,
|
||||
|
@ -6,19 +6,19 @@ use discord_sdk::{
|
||||
wheel::Wheel,
|
||||
Discord, DiscordApp, Subscriptions,
|
||||
};
|
||||
use tracing::info;
|
||||
use tokio::time::error::Elapsed;
|
||||
use tracing::info;
|
||||
|
||||
#[derive(Debug, Error)]
|
||||
pub enum DiscordError {
|
||||
#[error(transparent)]
|
||||
SdkError(#[from] discord_sdk::Error),
|
||||
Sdk(#[from] discord_sdk::Error),
|
||||
#[error(transparent)]
|
||||
AwaitConnectionError(#[from] tokio::sync::watch::error::RecvError),
|
||||
AwaitConnection(#[from] tokio::sync::watch::error::RecvError),
|
||||
#[error("Could not connect")]
|
||||
ConnectionError,
|
||||
Connection,
|
||||
#[error(transparent)]
|
||||
ConnectionTimeoutError(#[from] Elapsed)
|
||||
ConnectionTimeout(#[from] Elapsed),
|
||||
}
|
||||
|
||||
/// The client wrapper for Discord RPC
|
||||
@ -29,7 +29,7 @@ pub struct DiscordRpcClient {
|
||||
}
|
||||
|
||||
impl DiscordRpcClient {
|
||||
/// Creates a new 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| {
|
||||
@ -52,7 +52,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(DiscordError::ConnectionError),
|
||||
discord_sdk::wheel::UserState::Disconnected(_) => Err(DiscordError::Connection),
|
||||
}?;
|
||||
|
||||
Ok(Self {
|
||||
@ -63,6 +63,7 @@ impl DiscordRpcClient {
|
||||
}
|
||||
|
||||
/// Clears the user rich presence
|
||||
#[allow(dead_code)]
|
||||
pub async fn clear_rich_presence(&self) -> Result<Option<Activity>, discord_sdk::Error> {
|
||||
puffin::profile_function!();
|
||||
self.discord
|
||||
|
@ -1,9 +1,10 @@
|
||||
use std::ops::Range;
|
||||
|
||||
use num_traits::{real::Real, Float};
|
||||
use num_traits::{Float};
|
||||
use raylib::math::Vector2;
|
||||
|
||||
/// Rotate a vector by an angle
|
||||
#[allow(dead_code)]
|
||||
pub fn rotate_vector(vector: Vector2, angle_rad: f32) -> Vector2 {
|
||||
Vector2 {
|
||||
x: (vector.x * angle_rad.cos()) - (vector.y * angle_rad.sin()),
|
||||
@ -12,6 +13,7 @@ pub fn rotate_vector(vector: Vector2, angle_rad: f32) -> Vector2 {
|
||||
}
|
||||
|
||||
/// Interpolate a value from an input range to an output range while being modified by an exponential curve. **Input value is not checked**
|
||||
#[allow(dead_code)]
|
||||
pub fn interpolate_exp_unchecked<T>(
|
||||
value: T,
|
||||
input_range: Range<T>,
|
||||
@ -32,6 +34,7 @@ where
|
||||
}
|
||||
|
||||
/// Interpolate a value from an input range to an output range while being modified by an exponential curve. **Input value is clamped**
|
||||
#[allow(dead_code)]
|
||||
pub fn interpolate_exp<T>(value: T, input_range: Range<T>, output_range: Range<T>, exp: T) -> T
|
||||
where
|
||||
T: Float,
|
||||
|
Reference in New Issue
Block a user