1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-09-30 05:59:46 +00:00
doukutsu-rs/src/npc/ai/last_cave.rs

110 lines
3.3 KiB
Rust
Raw Normal View History

2021-01-16 13:50:46 +00:00
use crate::common::Direction;
2021-02-10 20:14:09 +00:00
use crate::framework::error::GameResult;
2021-01-16 13:50:46 +00:00
use crate::npc::NPC;
use crate::player::Player;
use crate::shared_game_state::SharedGameState;
impl NPC {
2021-02-10 20:14:09 +00:00
pub(crate) fn tick_n241_critter_red(
&mut self,
state: &mut SharedGameState,
players: [&mut Player; 2],
) -> GameResult {
2021-01-16 13:50:46 +00:00
match self.action_num {
0 | 1 => {
if self.action_num == 0 {
2021-05-05 16:34:14 +00:00
self.y += 0x600;
2021-01-16 13:50:46 +00:00
self.action_num = 1;
self.anim_num = 0;
}
let player = self.get_closest_player_mut(players);
if self.x > player.x {
self.direction = Direction::Left;
} else {
self.direction = Direction::Right;
}
if self.target_x < 100 {
self.target_x += 1;
}
if self.action_counter >= 8
&& self.x - (144 * 0x200) < player.x
&& self.x + (144 * 0x200) > player.x
&& self.y - (96 * 0x200) < player.y
2021-02-10 20:14:09 +00:00
&& self.y + (96 * 0x200) > player.y
{
2021-01-16 13:50:46 +00:00
self.anim_num = 1;
} else {
if self.action_counter < 8 {
self.action_counter += 1;
}
self.anim_num = 0;
}
if self.shock > 0 {
self.action_num = 2;
self.action_counter = 0;
self.anim_num = 0;
}
if self.action_counter >= 8
&& self.target_x >= 100
&& self.x - (96 * 0x200) < player.x
&& self.x + (96 * 0x200) > player.x
&& self.y - (80 * 0x200) < player.y
2021-02-10 20:14:09 +00:00
&& self.y + (80 * 0x200) > player.y
{
2021-01-16 13:50:46 +00:00
self.action_num = 2;
self.action_counter = 0;
self.anim_num = 0;
}
}
2 => {
self.action_counter += 1;
if self.action_counter > 8 {
self.action_num = 3;
self.anim_num = 2;
self.vel_y = -0x5ff;
state.sound_manager.play_sfx(30);
if self.direction == Direction::Left {
self.vel_x = -0x200;
} else {
self.vel_x = 0x200;
}
}
}
3 => {
if self.flags.hit_bottom_wall() {
self.vel_x = 0;
self.action_counter = 0;
self.action_num = 1;
self.anim_num = 0;
state.sound_manager.play_sfx(23);
}
}
_ => {}
}
self.vel_y += 0x55;
if self.vel_y > 0x5ff {
self.vel_y = 0x5ff;
}
self.x += self.vel_x;
self.y += self.vel_y;
2021-03-15 21:11:40 +00:00
let dir_offset = if self.direction == Direction::Left { 0 } else { 3 };
2021-01-16 13:50:46 +00:00
self.anim_rect = state.constants.npc.n241_critter_red[self.anim_num as usize + dir_offset];
Ok(())
}
}