jelly animation

This commit is contained in:
Evan Pratten 2021-04-24 17:12:40 -04:00
parent c0d147681b
commit 0aef4804fd
4 changed files with 23 additions and 8 deletions

View File

@ -1,9 +1,9 @@
use raylib::prelude::*;
use crate::player::Player;
use crate::{player::Player, resources::GlobalResources};
pub trait EnemyBase {
fn render(&self, context_2d: &mut RaylibMode2D<RaylibDrawHandle>);
fn render(&self, context_2d: &mut RaylibMode2D<RaylibDrawHandle>, resources: &mut GlobalResources);
fn handle_logic(&mut self, player: &mut Player, dt: f64);
fn handle_getting_attacked(&mut self);
}

View File

@ -1,7 +1,7 @@
use super::base::EnemyBase;
use raylib::prelude::*;
use serde::{Deserialize, Serialize};
use crate::player::Player;
use crate::{player::Player, resources::GlobalResources};
#[derive(Debug, Serialize, Deserialize, Default, Clone)]
pub struct JellyFish {
@ -17,10 +17,13 @@ impl JellyFish {
}
impl EnemyBase for JellyFish {
fn render(&self, context_2d: &mut raylib::prelude::RaylibMode2D<raylib::prelude::RaylibDrawHandle>) {
fn render(&self, context_2d: &mut raylib::prelude::RaylibMode2D<raylib::prelude::RaylibDrawHandle>, resources: &mut GlobalResources) {
// TODO
context_2d.draw_circle_v(self.position, 5.0, Color::RED);
// Render the jellyfish
resources.jellyfish_animation_regular.draw(context_2d, self.position, 0.0);
// // TODO
// context_2d.draw_circle_v(self.position, 5.0, Color::RED);
}
fn handle_logic(&mut self, player: &mut Player, dt: f64) {

View File

@ -121,7 +121,7 @@ impl Screen for InGameScreen {
fish.render(&mut context_2d);
}
for jellyfish in game_core.world.jellyfish.iter() {
jellyfish.render(&mut context_2d);
jellyfish.render(&mut context_2d, &mut game_core.resources);
}
// Render Player

View File

@ -18,7 +18,10 @@ pub struct GlobalResources {
pub player_animation_boost: FrameAnimationWrapper,
// Cave
pub cave_mid_layer: Texture2D
pub cave_mid_layer: Texture2D,
// Enemies
pub jellyfish_animation_regular: FrameAnimationWrapper
}
impl GlobalResources {
@ -63,6 +66,15 @@ impl GlobalResources {
&thread,
&Image::load_image("./assets/img/map/cave.png")?,
)?,
jellyfish_animation_regular: FrameAnimationWrapper::new(
raylib.load_texture_from_image(
&thread,
&Image::load_image("./assets/img/enemies/jelly.png")?,
)?,
Vector2 { x: 10.0, y: 10.0 },
6,
4,
),
})
}
}