diff --git a/src/logic/ingame/playerlogic.rs b/src/logic/ingame/playerlogic.rs index 6446ec5..622c20f 100644 --- a/src/logic/ingame/playerlogic.rs +++ b/src/logic/ingame/playerlogic.rs @@ -5,13 +5,13 @@ use crate::{ pallette::{TRANSLUCENT_WHITE_128, TRANSLUCENT_WHITE_64, TRANSLUCENT_WHITE_96}, }; -const NORMAL_PLAYER_SPEED: i32 = 3; +const NORMAL_PLAYER_SPEED: i32 = 1; const BOOST_PLAYER_SPEED: i32 = NORMAL_PLAYER_SPEED * 2; const CAMERA_FOLLOW_SPEED: f32 = 0.7; const TURN_SPEED: f32 = 0.15; const BOOST_DECREASE_PER_SECOND: f32 = 0.65; const BOOST_REGEN_PER_SECOND: f32 = 0.25; -const BREATH_DECREASE_PER_SECOND: f32 = 0.01; +const BREATH_DECREASE_PER_SECOND: f32 = 0.02; pub fn update_player_movement( draw_handle: &mut RaylibDrawHandle, @@ -127,25 +127,36 @@ pub fn update_player_movement( (game_core.player.breath_percent - BREATH_DECREASE_PER_SECOND * dt as f32).clamp(0.0, 1.0); // Only do this if the mouse is far enough away - let player_real_movement = game_core.player.direction * speed_multiplier; + let mut player_real_movement = game_core.player.direction * speed_multiplier; if raw_movement_direction.distance_to(Vector2::zero()) > game_core.player.size.y / 2.0 { - game_core.player.is_moving = true; - game_core.player.position += player_real_movement; - // Check for any collisions - for collider in game_core.world.colliders.iter() { - if game_core.player.collides_with_rec(collider) { - game_core.player.is_moving = false; - break; + if game_core.player.is_moving { + // move in x + game_core.player.position.x += player_real_movement.x; + + // Check for any collisions + for collider in game_core.world.colliders.iter() { + if game_core.player.collides_with_rec(collider) { + + game_core.player.position.x -= player_real_movement.x; + player_real_movement.x = 0.0; + break; + } + } + + // move in y + game_core.player.position.y += player_real_movement.y; + + // Check for any collisions + for collider in game_core.world.colliders.iter() { + if game_core.player.collides_with_rec(collider) { + game_core.player.position.y -= player_real_movement.y; + player_real_movement.y = 0.0; + break; + } } } - - if !game_core.player.is_moving { - game_core.player.position -= player_real_movement; - } - } else { - game_core.player.is_moving = false; - } + } // Move the camera to follow the player let direction_from_cam_to_player = diff --git a/src/player.rs b/src/player.rs index 01c5343..707e677 100644 --- a/src/player.rs +++ b/src/player.rs @@ -7,6 +7,7 @@ pub struct Player { pub position: Vector2, pub direction: Vector2, pub size: Vector2, + pub radius: f32, pub coins: u32, pub boost_percent: f32, pub breath_percent: f32, @@ -21,6 +22,8 @@ impl Player { boost_percent: 1.0, size: Vector2 { x: 11.0, y: 21.0 }, breath_percent: 1.0, + is_moving: true, + radius: 4.5, position: spawn.clone(), ..Default::default() } @@ -54,6 +57,6 @@ impl Player { // || rectangle.check_collision_point_rec(top_right_corner) // || rectangle.check_collision_point_rec(bottom_left_corner); - return rectangle.check_collision_circle_rec(self.position, (self.size.y * 0.5) / 2.0); + return rectangle.check_collision_circle_rec(self.position, self.radius); } }