From 1fb6a0ffc1f6824ec63828c0aec1a5a3d53d7c96 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 30 Sep 2021 09:17:48 -0400 Subject: [PATCH] implement more clippy suggestions --- game/src/discord_rpc.rs | 2 +- game/src/scenes/fsm_error_screen.rs | 12 ++++++------ game/src/scenes/loading_screen.rs | 10 +++++----- game/src/utilities/math.rs | 4 ++-- game/src/utilities/non_ref_raylib.rs | 2 +- game/src/utilities/shaders/shader.rs | 2 +- .../utilities/shaders/util/dynamic_screen_texture.rs | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/game/src/discord_rpc.rs b/game/src/discord_rpc.rs index 824d29d..5580a92 100644 --- a/game/src/discord_rpc.rs +++ b/game/src/discord_rpc.rs @@ -1,7 +1,7 @@ use std::time::Duration; use discord_sdk::activity::ActivityBuilder; -use tracing::{error, log::info}; +use tracing::{log::info}; use crate::utilities::discord::{rpc::DiscordError, DiscordConfig, DiscordRpcClient}; diff --git a/game/src/scenes/fsm_error_screen.rs b/game/src/scenes/fsm_error_screen.rs index dc79b45..0d7c819 100644 --- a/game/src/scenes/fsm_error_screen.rs +++ b/game/src/scenes/fsm_error_screen.rs @@ -1,8 +1,8 @@ -use std::cell::{Cell, RefCell}; + use dirty_fsm::{Action, ActionFlag}; -use raylib::{color::Color, prelude::RaylibDraw, RaylibHandle}; -use tracing::{debug, error, info, trace}; +use raylib::{color::Color, prelude::RaylibDraw}; +use tracing::{debug, trace}; use crate::{ context::GameContext, @@ -27,14 +27,14 @@ impl Action for FsmErrorScreen { Ok(()) } - fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> { + fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { debug!("Running FsmErrorScreen for the first time"); Ok(()) } fn execute( &mut self, - delta: &chrono::Duration, + _delta: &chrono::Duration, context: &GameContext, ) -> Result, ScreenError> { trace!("execute() called on FsmErrorScreen"); @@ -42,7 +42,7 @@ impl Action for FsmErrorScreen { Ok(ActionFlag::Continue) } - fn on_finish(&mut self, interrupted: bool) -> Result<(), ScreenError> { + fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { debug!("Finished FsmErrorScreen"); Ok(()) } diff --git a/game/src/scenes/loading_screen.rs b/game/src/scenes/loading_screen.rs index fa29d3a..c89434a 100644 --- a/game/src/scenes/loading_screen.rs +++ b/game/src/scenes/loading_screen.rs @@ -4,7 +4,7 @@ use dirty_fsm::{Action, ActionFlag}; use crate::{context::GameContext, utilities::render_layer::ScreenSpaceRender}; use super::{Scenes, ScreenError}; -use tracing::{debug, error, info, trace}; +use tracing::{debug, info, trace}; /// Defines how long the loading screen should be displayed. const LOADING_SCREEN_DURATION_SECONDS: u8 = 3; @@ -29,7 +29,7 @@ impl Action for LoadingScreen { Ok(()) } - fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> { + fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { debug!("Running LoadingScreen for the first time"); // Keep track of when this screen is opened @@ -40,7 +40,7 @@ impl Action for LoadingScreen { fn execute( &mut self, - delta: &chrono::Duration, + _delta: &chrono::Duration, context: &GameContext, ) -> Result, ScreenError> { trace!("execute() called on LoadingScreen"); @@ -60,7 +60,7 @@ impl Action for LoadingScreen { } } - fn on_finish(&mut self, interrupted: bool) -> Result<(), ScreenError> { + fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { debug!("Finished LoadingScreen"); // Reset the start timestamp @@ -73,7 +73,7 @@ impl Action for LoadingScreen { impl ScreenSpaceRender for LoadingScreen { fn render_screen_space( &self, - raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle, + _raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle, ) { // Calculate the loading screen fade in/out value diff --git a/game/src/utilities/math.rs b/game/src/utilities/math.rs index dfda08d..1767422 100644 --- a/game/src/utilities/math.rs +++ b/game/src/utilities/math.rs @@ -5,10 +5,10 @@ use raylib::math::Vector2; /// Rotate a vector by an angle pub fn rotate_vector(vector: Vector2, angle_rad: f32) -> Vector2 { - return Vector2 { + Vector2 { x: (vector.x * angle_rad.cos()) - (vector.y * angle_rad.sin()), y: (vector.y * angle_rad.cos()) + (vector.x * angle_rad.sin()), - }; + } } /// Interpolate a value from an input range to an output range while being modified by an exponential curve. **Input value is not checked** diff --git a/game/src/utilities/non_ref_raylib.rs b/game/src/utilities/non_ref_raylib.rs index 483f8d8..9aea9b4 100644 --- a/game/src/utilities/non_ref_raylib.rs +++ b/game/src/utilities/non_ref_raylib.rs @@ -1,4 +1,4 @@ -use std::{borrow::Borrow, cell::{Cell, RefCell, RefMut}, ops::{Deref, DerefMut}, rc::Rc, sync::Arc}; +use std::{ops::{Deref, DerefMut}}; use raylib::{prelude::RaylibDraw, RaylibHandle}; diff --git a/game/src/utilities/shaders/shader.rs b/game/src/utilities/shaders/shader.rs index 4555702..12a84e2 100644 --- a/game/src/utilities/shaders/shader.rs +++ b/game/src/utilities/shaders/shader.rs @@ -49,7 +49,7 @@ impl ShaderWrapper { // Create shader let shader = load_shader_from_heap( raylib, - &thread, + thread, match vertex_shader_code { Some(result) => match result { Ok(code) => Some(code), diff --git a/game/src/utilities/shaders/util/dynamic_screen_texture.rs b/game/src/utilities/shaders/util/dynamic_screen_texture.rs index af87881..d55d4ac 100644 --- a/game/src/utilities/shaders/util/dynamic_screen_texture.rs +++ b/game/src/utilities/shaders/util/dynamic_screen_texture.rs @@ -15,7 +15,7 @@ impl DynScreenTexture { pub fn new(raylib: &mut RaylibHandle, thread: &RaylibThread) -> Result { Ok(Self { texture: raylib.load_render_texture( - &thread, + thread, raylib.get_screen_width() as u32, raylib.get_screen_height() as u32, )?, @@ -34,7 +34,7 @@ impl DynScreenTexture { || self.texture.height() != raylib.get_screen_height() { self.texture = raylib.load_render_texture( - &thread, + thread, raylib.get_screen_width() as u32, raylib.get_screen_height() as u32, )?;