diff --git a/Cargo.toml b/Cargo.toml index 8dde388..21c1e56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,6 @@ [workspace] members = ["./game", "./wrapper"] + +[profile.release] +lto = true +codegen-units = 1 diff --git a/game/Cargo.toml b/game/Cargo.toml index d47f64a..ceb7d2c 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -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 diff --git a/game/src/lib.rs b/game/src/lib.rs index 0066170..b2384a4 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -112,7 +112,7 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box 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 diff --git a/game/src/scenes/fsm_error_screen.rs b/game/src/scenes/fsm_error_screen.rs index 0d7c819..9c379ba 100644 --- a/game/src/scenes/fsm_error_screen.rs +++ b/game/src/scenes/fsm_error_screen.rs @@ -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, - ) + ); } } diff --git a/game/src/scenes/loading_screen.rs b/game/src/scenes/loading_screen.rs index c89434a..b37711e 100644 --- a/game/src/scenes/loading_screen.rs +++ b/game/src/scenes/loading_screen.rs @@ -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, diff --git a/game/src/utilities/discord/rpc.rs b/game/src/utilities/discord/rpc.rs index 70a9304..9bc5401 100644 --- a/game/src/utilities/discord/rpc.rs +++ b/game/src/utilities/discord/rpc.rs @@ -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 { // 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, discord_sdk::Error> { puffin::profile_function!(); self.discord diff --git a/game/src/utilities/math.rs b/game/src/utilities/math.rs index 1767422..0eb61cf 100644 --- a/game/src/utilities/math.rs +++ b/game/src/utilities/math.rs @@ -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( value: T, input_range: Range, @@ -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(value: T, input_range: Range, output_range: Range, exp: T) -> T where T: Float,