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},
};
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,24 +127,35 @@ 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;
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.is_moving = false;
game_core.player.position.x -= player_real_movement.x;
player_real_movement.x = 0.0;
break;
}
}
if !game_core.player.is_moving {
game_core.player.position -= player_real_movement;
// 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;
}
}
}
} else {
game_core.player.is_moving = false;
}
// Move the camera to follow the player

View File

@ -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);
}
}