less errors once again

This commit is contained in:
Evan Pratten 2021-09-30 09:24:07 -04:00
parent 1fb6a0ffc1
commit c96716d52e
7 changed files with 21 additions and 18 deletions

View File

@ -1,2 +1,6 @@
[workspace] [workspace]
members = ["./game", "./wrapper"] members = ["./game", "./wrapper"]
[profile.release]
lto = true
codegen-units = 1

View File

@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
cgmath = "0.18" 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"] } tokio = { version = "1.0", features = ["macros"] }
tracing = { version = "0.1", features = ["log"] } tracing = { version = "0.1", features = ["log"] }
serde = { version = "1.0.126", features = ["derive"] } serde = { version = "1.0.126", features = ["derive"] }
@ -24,8 +24,3 @@ sentry = "0.23"
[dev-dependencies] [dev-dependencies]
puffin_viewer = "0.6" puffin_viewer = "0.6"
[profile.release]
lto = true
codegen-units = 1

View File

@ -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 { let discord_rpc = match try_connect_to_local_discord(&discord_config).await {
Ok(client) => Some(client), Ok(client) => Some(client),
Err(err) => match err { Err(err) => match err {
utilities::discord::rpc::DiscordError::ConnectionTimeoutError(time) => { utilities::discord::rpc::DiscordError::ConnectionTimeout(time) => {
error!( error!(
"Could not find or connect to a local Discord instance after {} seconds", "Could not find or connect to a local Discord instance after {} seconds",
time time

View File

@ -15,7 +15,7 @@ use super::{Scenes, ScreenError};
pub struct FsmErrorScreen {} pub struct FsmErrorScreen {}
impl FsmErrorScreen { impl FsmErrorScreen {
/// Construct a new FsmErrorScreen /// Construct a new `FsmErrorScreen`
pub fn new() -> Self { pub fn new() -> Self {
Self {} Self {}
} }
@ -59,6 +59,6 @@ impl ScreenSpaceRender for FsmErrorScreen {
10, 10,
40, 40,
Color::WHITE, Color::WHITE,
) );
} }
} }

View File

@ -15,7 +15,7 @@ pub struct LoadingScreen {
} }
impl LoadingScreen { impl LoadingScreen {
/// Construct a new LoadingScreen /// Construct a new `LoadingScreen`
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {
start_timestamp: None, start_timestamp: None,

View File

@ -6,19 +6,19 @@ use discord_sdk::{
wheel::Wheel, wheel::Wheel,
Discord, DiscordApp, Subscriptions, Discord, DiscordApp, Subscriptions,
}; };
use tracing::info;
use tokio::time::error::Elapsed; use tokio::time::error::Elapsed;
use tracing::info;
#[derive(Debug, Error)] #[derive(Debug, Error)]
pub enum DiscordError { pub enum DiscordError {
#[error(transparent)] #[error(transparent)]
SdkError(#[from] discord_sdk::Error), Sdk(#[from] discord_sdk::Error),
#[error(transparent)] #[error(transparent)]
AwaitConnectionError(#[from] tokio::sync::watch::error::RecvError), AwaitConnection(#[from] tokio::sync::watch::error::RecvError),
#[error("Could not connect")] #[error("Could not connect")]
ConnectionError, Connection,
#[error(transparent)] #[error(transparent)]
ConnectionTimeoutError(#[from] Elapsed) ConnectionTimeout(#[from] Elapsed),
} }
/// The client wrapper for Discord RPC /// The client wrapper for Discord RPC
@ -29,7 +29,7 @@ pub struct DiscordRpcClient {
} }
impl DiscordRpcClient { impl DiscordRpcClient {
/// Creates a new DiscordRpcClient /// Creates a new `DiscordRpcClient`
pub async fn new(app_id: i64, subscriptions: Subscriptions) -> Result<Self, DiscordError> { pub async fn new(app_id: i64, subscriptions: Subscriptions) -> Result<Self, DiscordError> {
// Create a new wheel // Create a new wheel
let (wheel, handler) = Wheel::new(Box::new(|err| { let (wheel, handler) = Wheel::new(Box::new(|err| {
@ -52,7 +52,7 @@ impl DiscordRpcClient {
// Fetch the final user object // Fetch the final user object
let user = match &*user.0.borrow() { let user = match &*user.0.borrow() {
discord_sdk::wheel::UserState::Connected(u) => Ok(u.clone()), 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 { Ok(Self {
@ -63,6 +63,7 @@ impl DiscordRpcClient {
} }
/// Clears the user rich presence /// Clears the user rich presence
#[allow(dead_code)]
pub async fn clear_rich_presence(&self) -> Result<Option<Activity>, discord_sdk::Error> { pub async fn clear_rich_presence(&self) -> Result<Option<Activity>, discord_sdk::Error> {
puffin::profile_function!(); puffin::profile_function!();
self.discord self.discord

View File

@ -1,9 +1,10 @@
use std::ops::Range; use std::ops::Range;
use num_traits::{real::Real, Float}; use num_traits::{Float};
use raylib::math::Vector2; use raylib::math::Vector2;
/// Rotate a vector by an angle /// Rotate a vector by an angle
#[allow(dead_code)]
pub fn rotate_vector(vector: Vector2, angle_rad: f32) -> Vector2 { pub fn rotate_vector(vector: Vector2, angle_rad: f32) -> Vector2 {
Vector2 { Vector2 {
x: (vector.x * angle_rad.cos()) - (vector.y * angle_rad.sin()), 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** /// 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>( pub fn interpolate_exp_unchecked<T>(
value: T, value: T,
input_range: Range<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** /// 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 pub fn interpolate_exp<T>(value: T, input_range: Range<T>, output_range: Range<T>, exp: T) -> T
where where
T: Float, T: Float,