Rewrite the inventory
This commit is contained in:
parent
ff930da034
commit
8c142d2711
@ -6,7 +6,11 @@ use raylib::{
|
|||||||
camera::Camera2D, math::Vector2, prelude::RaylibDrawHandle, RaylibHandle, RaylibThread,
|
camera::Camera2D, math::Vector2, prelude::RaylibDrawHandle, RaylibHandle, RaylibThread,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{items::ShopItems, player::Player, resources::GlobalResources, world::World};
|
use crate::{
|
||||||
|
player::{Player, PlayerInventory},
|
||||||
|
resources::GlobalResources,
|
||||||
|
world::World,
|
||||||
|
};
|
||||||
|
|
||||||
use failure::Error;
|
use failure::Error;
|
||||||
use log::debug;
|
use log::debug;
|
||||||
@ -34,7 +38,7 @@ pub struct GameProgress {
|
|||||||
pub coins: u32,
|
pub coins: u32,
|
||||||
pub max_depth: f32,
|
pub max_depth: f32,
|
||||||
pub fastest_time: Option<f64>,
|
pub fastest_time: Option<f64>,
|
||||||
pub inventory: Vec<ShopItems>,
|
pub inventory: PlayerInventory,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GameProgress {
|
impl GameProgress {
|
||||||
@ -43,7 +47,6 @@ impl GameProgress {
|
|||||||
..Default::default()
|
..Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub fn from_file(file: String) -> Result<Self, Error> {
|
pub fn from_file(file: String) -> Result<Self, Error> {
|
||||||
// Load the file
|
// Load the file
|
||||||
|
30
src/items.rs
30
src/items.rs
@ -1,10 +1,28 @@
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
// #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
|
// #[serde(tag = "t", content = "c")]
|
||||||
|
// pub enum ShopItems {
|
||||||
|
// StunGun,
|
||||||
|
// AirBag,
|
||||||
|
// Flashlight { power: u8 },
|
||||||
|
// Flippers { speed_increase: u8 },
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
#[serde(tag = "t", content = "c")]
|
pub struct StunGun {
|
||||||
pub enum ShopItems {
|
range: f32,
|
||||||
StunGun,
|
duration: f64
|
||||||
AirBag,
|
|
||||||
Flashlight { power: u8 },
|
|
||||||
Flippers { speed_increase: u8 },
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
|
pub struct AirBag;
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
|
pub struct Flashlight;
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
|
pub struct Flippers {
|
||||||
|
speed_increase: f32
|
||||||
|
}
|
@ -1,8 +1,17 @@
|
|||||||
use raylib::prelude::*;
|
use raylib::prelude::*;
|
||||||
|
use serde::{Serialize, Deserialize};
|
||||||
|
use crate::{gamecore::{GameCore, GameProgress}, items::{AirBag, Flashlight, Flippers, StunGun}, lib::utils::{calculate_linear_slide}, pallette::{TRANSLUCENT_WHITE_64, TRANSLUCENT_WHITE_96}, resources::GlobalResources, world::World};
|
||||||
|
|
||||||
use crate::{gamecore::{GameCore, GameProgress}, items::ShopItems, lib::utils::{calculate_linear_slide, triangles::rotate_vector}, pallette::{TRANSLUCENT_WHITE_64, TRANSLUCENT_WHITE_96}, resources::GlobalResources, world::World};
|
const AOE_RING_MAX_RADIUS: f32 = 60.0;
|
||||||
|
const STUN_ATTACK_TIME: f64 = 0.75;
|
||||||
|
|
||||||
const AOE_RING_MAX_RADIUS: f32 = 40.0;
|
#[derive(Debug, Serialize, Deserialize, Default, Clone)]
|
||||||
|
pub struct PlayerInventory {
|
||||||
|
stun_gun: Option<StunGun>,
|
||||||
|
air_bag: Option<AirBag>,
|
||||||
|
flashlight: Option<Flashlight>,
|
||||||
|
flippers: Option<Flippers>
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct Player {
|
pub struct Player {
|
||||||
@ -15,7 +24,7 @@ pub struct Player {
|
|||||||
pub is_moving: bool,
|
pub is_moving: bool,
|
||||||
pub is_boosting: bool,
|
pub is_boosting: bool,
|
||||||
pub is_boost_charging: bool,
|
pub is_boost_charging: bool,
|
||||||
pub inventory: Vec<ShopItems>,
|
pub inventory: PlayerInventory,
|
||||||
pub stun_timer: f64,
|
pub stun_timer: f64,
|
||||||
pub attacking_timer: f64,
|
pub attacking_timer: f64,
|
||||||
}
|
}
|
||||||
@ -69,8 +78,8 @@ impl Player {
|
|||||||
|
|
||||||
/// Try to attack with the stun gun
|
/// Try to attack with the stun gun
|
||||||
pub fn begin_attack(&mut self) {
|
pub fn begin_attack(&mut self) {
|
||||||
if true || self.inventory.contains(&ShopItems::StunGun) && self.stun_timer == 0.0 {
|
if true || self.inventory.stun_gun.is_some() && self.stun_timer == 0.0 {
|
||||||
self.stun_timer = 2.0;
|
self.attacking_timer = STUN_ATTACK_TIME;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,7 +106,7 @@ impl Player {
|
|||||||
&mut self,
|
&mut self,
|
||||||
context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
|
context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
|
||||||
resources: &mut GlobalResources,
|
resources: &mut GlobalResources,
|
||||||
dt: f64
|
dt: f64,
|
||||||
) {
|
) {
|
||||||
// Convert the player direction to a rotation
|
// Convert the player direction to a rotation
|
||||||
let player_rotation = Vector2::zero().angle_to(self.direction);
|
let player_rotation = Vector2::zero().angle_to(self.direction);
|
||||||
@ -125,16 +134,18 @@ impl Player {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Calculate AOE ring
|
// Calculate AOE ring
|
||||||
let aoe_ring = calculate_linear_slide(self.attacking_timer) as f32;
|
if self.attacking_timer != 0.0 {
|
||||||
self.stun_timer = (self.stun_timer - dt).max(0.0);
|
let aoe_ring = calculate_linear_slide( self.attacking_timer / STUN_ATTACK_TIME) as f32;
|
||||||
|
self.attacking_timer = (self.attacking_timer - dt).max(0.0);
|
||||||
|
|
||||||
// Render attack AOE
|
// Render attack AOE
|
||||||
context_2d.draw_circle_lines(
|
context_2d.draw_circle_lines(
|
||||||
self.position.x as i32,
|
self.position.x as i32,
|
||||||
self.position.y as i32,
|
self.position.y as i32,
|
||||||
AOE_RING_MAX_RADIUS * aoe_ring,
|
AOE_RING_MAX_RADIUS * aoe_ring,
|
||||||
TRANSLUCENT_WHITE_64,
|
TRANSLUCENT_WHITE_64,
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Render the player based on what is happening
|
// Render the player based on what is happening
|
||||||
if self.is_boost_charging {
|
if self.is_boost_charging {
|
||||||
|
Reference in New Issue
Block a user