95 lines
2.7 KiB
Rust
95 lines
2.7 KiB
Rust
use super::base::EnemyBase;
|
|
use crate::{
|
|
lib::utils::calculate_linear_slide, pallette::TRANSLUCENT_RED_64, player::Player,
|
|
resources::GlobalResources,
|
|
};
|
|
use raylib::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
const JELLYFISH_STUN_DURATION: f64 = 1.5;
|
|
const JELLYFISH_STUN_REACH: f32 = 20.0;
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Default, Clone)]
|
|
pub struct JellyFish {
|
|
pub position: Vector2,
|
|
|
|
#[serde(skip)]
|
|
pub stunned_timer: f64,
|
|
#[serde(skip)]
|
|
pub max_stunned_time: f64,
|
|
|
|
#[serde(skip)]
|
|
pub do_stun_player: bool,
|
|
}
|
|
|
|
impl JellyFish {}
|
|
|
|
impl EnemyBase for JellyFish {
|
|
fn render(
|
|
&mut self,
|
|
context_2d: &mut raylib::prelude::RaylibMode2D<raylib::prelude::RaylibDrawHandle>,
|
|
_player: &mut Player,
|
|
resources: &mut GlobalResources,
|
|
dt: f64,
|
|
) {
|
|
let is_jelly_stunned = self.stunned_timer > 0.0;
|
|
|
|
// Simple sine position
|
|
let v_trans = if is_jelly_stunned {
|
|
0.0
|
|
} else {
|
|
context_2d.get_time().sin()
|
|
};
|
|
let trans_pose = Vector2 {
|
|
x: self.position.x,
|
|
y: self.position.y + (2.0 * v_trans as f32),
|
|
};
|
|
|
|
// Render the stun ring
|
|
if self.max_stunned_time > 0.0 && self.stunned_timer > 0.0 {
|
|
let stun_ring_alpha =
|
|
calculate_linear_slide(self.stunned_timer / self.max_stunned_time);
|
|
context_2d.draw_circle_v(
|
|
trans_pose,
|
|
JELLYFISH_STUN_REACH,
|
|
TRANSLUCENT_RED_64.fade(0.55 * stun_ring_alpha as f32),
|
|
);
|
|
self.stunned_timer -= dt;
|
|
}
|
|
|
|
// Render the jellyfish
|
|
resources
|
|
.jellyfish_animation_regular
|
|
.draw(context_2d, trans_pose, 0.0);
|
|
|
|
// Only do stun loop if not stunned
|
|
if !is_jelly_stunned {
|
|
resources
|
|
.jellyfish_animation_attack
|
|
.draw(context_2d, trans_pose, 0.0);
|
|
}
|
|
|
|
// Check if the jelly is in stun mode
|
|
self.do_stun_player = (resources
|
|
.jellyfish_animation_attack
|
|
.get_current_frame_id(context_2d)
|
|
== 13)
|
|
&& !is_jelly_stunned;
|
|
}
|
|
|
|
fn handle_logic(&mut self, player: &mut Player, _dt: f64) -> u8 {
|
|
// Handle stunning the player
|
|
if self.do_stun_player {
|
|
if self.position.distance_to(player.position).abs() <= JELLYFISH_STUN_REACH {
|
|
player.set_stun_seconds(JELLYFISH_STUN_DURATION);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
fn handle_getting_attacked(&mut self, stun_duration: f64, _current_time: f64) {
|
|
self.stunned_timer = stun_duration;
|
|
self.max_stunned_time = stun_duration;
|
|
}
|
|
}
|