no more stuck

This commit is contained in:
rsninja722 2021-04-24 17:33:53 -04:00
parent eb3c508c68
commit e7ac70074c
2 changed files with 32 additions and 18 deletions

View File

@ -5,13 +5,13 @@ use crate::{
pallette::{TRANSLUCENT_WHITE_128, TRANSLUCENT_WHITE_64, TRANSLUCENT_WHITE_96}, 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 BOOST_PLAYER_SPEED: i32 = NORMAL_PLAYER_SPEED * 2;
const CAMERA_FOLLOW_SPEED: f32 = 0.7; const CAMERA_FOLLOW_SPEED: f32 = 0.7;
const TURN_SPEED: f32 = 0.15; const TURN_SPEED: f32 = 0.15;
const BOOST_DECREASE_PER_SECOND: f32 = 0.65; const BOOST_DECREASE_PER_SECOND: f32 = 0.65;
const BOOST_REGEN_PER_SECOND: f32 = 0.25; 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( pub fn update_player_movement(
draw_handle: &mut RaylibDrawHandle, 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); (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 // 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 { 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 if game_core.player.is_moving {
for collider in game_core.world.colliders.iter() { // move in x
if game_core.player.collides_with_rec(collider) { game_core.player.position.x += player_real_movement.x;
game_core.player.is_moving = false;
break; // 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 // Move the camera to follow the player
let direction_from_cam_to_player = let direction_from_cam_to_player =

View File

@ -7,6 +7,7 @@ pub struct Player {
pub position: Vector2, pub position: Vector2,
pub direction: Vector2, pub direction: Vector2,
pub size: Vector2, pub size: Vector2,
pub radius: f32,
pub coins: u32, pub coins: u32,
pub boost_percent: f32, pub boost_percent: f32,
pub breath_percent: f32, pub breath_percent: f32,
@ -21,6 +22,8 @@ impl Player {
boost_percent: 1.0, boost_percent: 1.0,
size: Vector2 { x: 11.0, y: 21.0 }, size: Vector2 { x: 11.0, y: 21.0 },
breath_percent: 1.0, breath_percent: 1.0,
is_moving: true,
radius: 4.5,
position: spawn.clone(), position: spawn.clone(),
..Default::default() ..Default::default()
} }
@ -54,6 +57,6 @@ impl Player {
// || rectangle.check_collision_point_rec(top_right_corner) // || rectangle.check_collision_point_rec(top_right_corner)
// || rectangle.check_collision_point_rec(bottom_left_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);
} }
} }