diff --git a/src/gamecore.rs b/src/gamecore.rs index db20954..19b9592 100644 --- a/src/gamecore.rs +++ b/src/gamecore.rs @@ -6,7 +6,11 @@ use raylib::{ 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 log::debug; @@ -34,7 +38,7 @@ pub struct GameProgress { pub coins: u32, pub max_depth: f32, pub fastest_time: Option, - pub inventory: Vec, + pub inventory: PlayerInventory, } impl GameProgress { @@ -43,7 +47,6 @@ impl GameProgress { ..Default::default() } } - pub fn from_file(file: String) -> Result { // Load the file diff --git a/src/items.rs b/src/items.rs index f1559bb..87d979e 100644 --- a/src/items.rs +++ b/src/items.rs @@ -1,10 +1,28 @@ 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)] -#[serde(tag = "t", content = "c")] -pub enum ShopItems { - StunGun, - AirBag, - Flashlight { power: u8 }, - Flippers { speed_increase: u8 }, +pub struct StunGun { + range: f32, + duration: f64 } + +#[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 +} \ No newline at end of file diff --git a/src/player.rs b/src/player.rs index e284f9e..afdd68c 100644 --- a/src/player.rs +++ b/src/player.rs @@ -1,8 +1,17 @@ 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, + air_bag: Option, + flashlight: Option, + flippers: Option +} #[derive(Debug, Default)] pub struct Player { @@ -15,7 +24,7 @@ pub struct Player { pub is_moving: bool, pub is_boosting: bool, pub is_boost_charging: bool, - pub inventory: Vec, + pub inventory: PlayerInventory, pub stun_timer: f64, pub attacking_timer: f64, } @@ -69,8 +78,8 @@ impl Player { /// Try to attack with the stun gun pub fn begin_attack(&mut self) { - if true || self.inventory.contains(&ShopItems::StunGun) && self.stun_timer == 0.0 { - self.stun_timer = 2.0; + if true || self.inventory.stun_gun.is_some() && self.stun_timer == 0.0 { + self.attacking_timer = STUN_ATTACK_TIME; } } @@ -97,7 +106,7 @@ impl Player { &mut self, context_2d: &mut RaylibMode2D, resources: &mut GlobalResources, - dt: f64 + dt: f64, ) { // Convert the player direction to a rotation let player_rotation = Vector2::zero().angle_to(self.direction); @@ -125,16 +134,18 @@ impl Player { ); // Calculate AOE ring - let aoe_ring = calculate_linear_slide(self.attacking_timer) as f32; - self.stun_timer = (self.stun_timer - dt).max(0.0); + if self.attacking_timer != 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 - context_2d.draw_circle_lines( - self.position.x as i32, - self.position.y as i32, - AOE_RING_MAX_RADIUS * aoe_ring, - TRANSLUCENT_WHITE_64, - ); + // Render attack AOE + context_2d.draw_circle_lines( + self.position.x as i32, + self.position.y as i32, + AOE_RING_MAX_RADIUS * aoe_ring, + TRANSLUCENT_WHITE_64, + ); + } // Render the player based on what is happening if self.is_boost_charging {