2023-04-16 12:36:10 +00:00
|
|
|
extends CharacterBody2D
|
2023-04-08 15:00:54 +00:00
|
|
|
class_name Bunny
|
|
|
|
|
2023-04-10 19:45:25 +00:00
|
|
|
@export var animation_player : AnimationPlayer
|
2023-04-12 19:16:14 +00:00
|
|
|
@export var min_distance_to_player := 20.0
|
|
|
|
@export var max_distance_to_player := 500.0
|
2023-04-09 14:39:45 +00:00
|
|
|
@export var agent : NavigationAgent2D
|
2023-04-12 19:16:14 +00:00
|
|
|
@export var speed := 3.0
|
2023-04-16 20:55:23 +00:00
|
|
|
@export var damage_given : float = 4.0
|
2023-04-08 15:00:54 +00:00
|
|
|
|
2023-04-09 14:39:45 +00:00
|
|
|
var health : int
|
2023-04-08 15:00:54 +00:00
|
|
|
var team : int
|
2023-04-09 14:39:45 +00:00
|
|
|
var player : Node2D
|
2023-04-08 15:00:54 +00:00
|
|
|
|
|
|
|
var on_death_callbacks : Array
|
2023-04-12 19:16:14 +00:00
|
|
|
var move_velocity : Vector2
|
2023-04-08 15:00:54 +00:00
|
|
|
|
2023-04-12 19:16:14 +00:00
|
|
|
var next_location : Vector2
|
|
|
|
var randomized_next_location : Vector2
|
2023-04-09 14:39:45 +00:00
|
|
|
var dir : Vector2
|
2023-04-12 19:16:14 +00:00
|
|
|
|
|
|
|
var time_since_got_player := 100.0
|
|
|
|
var time_since_got_move_location := 100.0
|
|
|
|
var last_player_velocity := 0.0
|
|
|
|
var last_target_position : Vector2
|
|
|
|
|
|
|
|
var max_pos_check_time := 0.5
|
|
|
|
var max_pos_check_time_inactive_scalar := 10.0
|
|
|
|
var max_get_move_location_time := 0.125
|
|
|
|
|
|
|
|
var random_goal_spread_factor := 2.5
|
|
|
|
var random_move_location_spread_factor := 8.0
|
|
|
|
var random_angle_change := deg_to_rad(4.0)
|
2023-04-09 14:39:45 +00:00
|
|
|
|
2023-04-16 20:55:23 +00:00
|
|
|
@export var attack_delay : float = 6.0
|
|
|
|
var attack_cooldown_left : float = 0
|
|
|
|
var first_attack : bool = true
|
|
|
|
|
2023-04-09 14:39:45 +00:00
|
|
|
func _ready():
|
2023-04-12 19:16:14 +00:00
|
|
|
pass
|
2023-04-09 14:39:45 +00:00
|
|
|
|
|
|
|
func _physics_process(delta):
|
2023-04-12 19:16:14 +00:00
|
|
|
randomize()
|
2023-04-16 20:55:23 +00:00
|
|
|
attack_cooldown_left -= delta
|
2023-04-12 19:16:14 +00:00
|
|
|
|
|
|
|
if abs(player.velocity.length() - last_player_velocity) > 100.0:
|
|
|
|
time_since_got_player = max_pos_check_time
|
|
|
|
if time_since_got_player >= max_pos_check_time and player.velocity.length() > 0.1:
|
|
|
|
time_since_got_player = randf() * max_pos_check_time * 0.5
|
|
|
|
update_target_pos()
|
|
|
|
if time_since_got_player >= max_pos_check_time * max_pos_check_time_inactive_scalar and player.velocity.length() < 0.1:
|
|
|
|
time_since_got_player = -(randf() * max_pos_check_time * 0.5)
|
|
|
|
update_target_pos()
|
|
|
|
if self.global_position.distance_to(player.global_position) < max_distance_to_player and time_since_got_move_location > max_get_move_location_time:
|
|
|
|
time_since_got_move_location = 0
|
|
|
|
if agent.is_target_reachable():
|
|
|
|
next_location = agent.get_next_path_position()
|
|
|
|
randomized_next_location = next_location + Vector2(randf() - 0.5, randf() - 0.5 ) * 2 * random_move_location_spread_factor
|
|
|
|
dir = self.global_position.direction_to(randomized_next_location).normalized().rotated((randf() - 0.5) * 2 * random_angle_change)
|
|
|
|
if self.global_position.distance_to(player.global_position) >= min_distance_to_player:
|
|
|
|
move_velocity = dir * delta * 60 * speed
|
|
|
|
update_animation()
|
|
|
|
if self.global_position.distance_to(next_location) < move_velocity.length():
|
|
|
|
self.global_position = next_location
|
|
|
|
time_since_got_player = 10.0
|
|
|
|
time_since_got_move_location = 10.0
|
2023-04-10 21:47:14 +00:00
|
|
|
else:
|
2023-04-16 12:36:10 +00:00
|
|
|
move_and_collide(move_velocity)
|
2023-04-16 20:55:23 +00:00
|
|
|
elif attack_cooldown_left <= 0 and BunnyMaster.bunnies_attacking < BunnyMaster.max_bunnies_allowed_to_attack_at_once:
|
|
|
|
BunnyMaster.bunnies_attacking += 1
|
|
|
|
attack_cooldown_left = attack_delay
|
|
|
|
player.take_damage(damage_given)
|
|
|
|
get_tree().create_timer(3.0).connect("timeout",Callable(self, "reduce_attack_count"), 0)
|
|
|
|
|
2023-04-12 19:16:14 +00:00
|
|
|
else:
|
|
|
|
animation_player.stop()
|
|
|
|
time_since_got_player += delta
|
|
|
|
time_since_got_move_location += delta
|
|
|
|
last_player_velocity = player.velocity.length()
|
|
|
|
last_target_position = agent.target_position
|
2023-04-09 14:39:45 +00:00
|
|
|
pass
|
2023-04-16 20:55:23 +00:00
|
|
|
|
|
|
|
func reduce_attack_count():
|
|
|
|
BunnyMaster.bunnies_attacking -= 1
|
|
|
|
|
2023-04-12 19:16:14 +00:00
|
|
|
func update_target_pos():
|
|
|
|
agent.target_position = Vector2(player.global_position) + Vector2(randf() - 0.5 , randf() - 0.5) * 2 * random_goal_spread_factor
|
2023-04-09 14:39:45 +00:00
|
|
|
pass
|
|
|
|
|
2023-04-09 15:57:37 +00:00
|
|
|
func damage(damage_amount : int):
|
|
|
|
health -= damage_amount
|
2023-04-08 15:00:54 +00:00
|
|
|
if(health <= 0): on_death()
|
|
|
|
pass
|
|
|
|
|
2023-04-09 15:57:37 +00:00
|
|
|
func heal(health_amount : int):
|
|
|
|
self.health += health_amount
|
2023-04-08 15:00:54 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
func on_death():
|
|
|
|
for callback in on_death_callbacks:
|
|
|
|
callback.call(self)
|
2023-04-16 20:55:23 +00:00
|
|
|
BunnyMaster.bunnies_alive -= 1
|
|
|
|
if BunnyMaster.bunnies_alive <= 0:
|
|
|
|
player.end_screen_displayer.call("show_victory_screen")
|
|
|
|
get_tree().paused = true
|
2023-04-08 15:00:54 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
func sub_on_death(callback : Callable):
|
|
|
|
on_death_callbacks.push_front(callback)
|
|
|
|
pass
|
2023-04-09 14:39:45 +00:00
|
|
|
|
2023-04-10 19:45:25 +00:00
|
|
|
func update_animation():
|
2023-04-12 19:16:14 +00:00
|
|
|
match self.move_velocity:
|
2023-04-10 19:45:25 +00:00
|
|
|
Vector2.ZERO: animation_player.play("Idle")
|
2023-04-10 21:50:19 +00:00
|
|
|
_:
|
2023-04-12 19:16:14 +00:00
|
|
|
var left_dot = Vector2.LEFT.dot(self.move_velocity)
|
|
|
|
var right_dot = Vector2.RIGHT.dot(self.move_velocity)
|
|
|
|
var up_dot = Vector2.UP.dot(self.move_velocity)
|
|
|
|
var down_dot = Vector2.DOWN.dot(self.move_velocity)
|
2023-04-10 21:50:19 +00:00
|
|
|
|
|
|
|
var max_dot = maxf(left_dot, maxf(right_dot, maxf(up_dot, down_dot)))
|
|
|
|
match max_dot:
|
|
|
|
left_dot: animation_player.play("MoveLeft")
|
|
|
|
right_dot: animation_player.play("MoveRight")
|
|
|
|
up_dot: animation_player.play("MoveUp")
|
|
|
|
down_dot: animation_player.play("MoveDown")
|
2023-04-10 19:45:25 +00:00
|
|
|
pass
|