111 lines
2.4 KiB
GDScript
111 lines
2.4 KiB
GDScript
extends CharacterBody2D
|
|
|
|
@export_range(10, 1000, 10, "or_greater")
|
|
var speed = 300.0
|
|
@export_range(0, 0.2, 0.001, "or_greater")
|
|
var acceleration = 0.5
|
|
|
|
@export_group("Airborne")
|
|
@export_range(0, 1000, 10, "or_greater")
|
|
var jump_velocity = 400.0
|
|
@export_range(0, 10, 0.1, "or_greater")
|
|
var gravity_modifier = 1
|
|
|
|
@onready var damageable: Damageable = $Damageable
|
|
@onready var shield: AnimatedSprite2D = $Shield
|
|
@onready var base: AnimatedSprite2D = $Base
|
|
var current_sprite: AnimatedSprite2D
|
|
|
|
var is_in_cutscene = false # back to true on build
|
|
var current_animation = "idle"
|
|
|
|
var has_shield = false
|
|
var has_sword = false
|
|
var has_armor = false
|
|
|
|
func play_anim():
|
|
current_sprite.play(current_animation)
|
|
|
|
func play_anim_run():
|
|
current_animation = "run"
|
|
|
|
func play_anim_idle():
|
|
current_animation = "idle"
|
|
|
|
func play_anim_jump():
|
|
current_animation = "jump"
|
|
|
|
func play_anim_dance():
|
|
current_animation = "dance"
|
|
|
|
func set_in_cutscene():
|
|
is_in_cutscene = true
|
|
play_anim_idle()
|
|
|
|
func set_in_play():
|
|
is_in_cutscene = false
|
|
|
|
func look_left():
|
|
current_sprite.flip_h = true
|
|
|
|
func look_right():
|
|
current_sprite.flip_h = false
|
|
|
|
func _ready() -> void:
|
|
current_sprite = base
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
play_anim()
|
|
if is_in_cutscene:
|
|
velocity.x = move_toward(velocity.x, 0, speed)
|
|
move_and_slide()
|
|
return
|
|
|
|
|
|
if not is_on_floor():
|
|
velocity += get_gravity() * delta * gravity_modifier
|
|
|
|
var direction := Input.get_axis("move_left", "move_right")
|
|
|
|
damageable.set_active(has_shield and direction != 0)
|
|
if direction > 0 and is_on_floor():
|
|
look_right()
|
|
if direction < 0 and is_on_floor():
|
|
look_left()
|
|
|
|
if not is_on_floor():
|
|
current_animation = "got_hit"
|
|
else:
|
|
if velocity.x != 0:
|
|
play_anim_run()
|
|
else:
|
|
play_anim_idle()
|
|
|
|
if is_on_floor():
|
|
if direction:
|
|
var smoothed_speed = speed * smoothstep(0, 1, acceleration)
|
|
velocity.x += direction * smoothed_speed
|
|
velocity.x = clampf(velocity.x, -speed, speed)
|
|
else:
|
|
velocity.x = move_toward(velocity.x, 0, speed)
|
|
|
|
move_and_slide()
|
|
|
|
func _on_dialogue_manager_dialogue_ended() -> void:
|
|
set_in_play()
|
|
|
|
func _on_trigger_dialogue_body_entered(body: Node2D) -> void:
|
|
set_in_cutscene()
|
|
|
|
func _on_start_dancing() -> void:
|
|
play_anim_dance()
|
|
|
|
func _on_npc_shield_dialogue_dialogue_ended() -> void:
|
|
set_in_play()
|
|
current_sprite.visible = false
|
|
current_sprite = shield
|
|
shield.play("idle")
|
|
shield.visible = true
|
|
has_shield = true
|
|
|