2 Commits

4 changed files with 36 additions and 17 deletions

View File

@@ -17,6 +17,12 @@ var desired_rotation: float = 0
# Resources / money # Resources / money
var resources: int = 0 var resources: int = 0
# Health
var healthPoints: int = 100
var isAlive: bool = true
@onready var invulnerable_cooldown_timer: Timer = $InvulnerableCooldownTimer
var hasiframes: bool = false # only used for iframe after collision for now
func _ready() -> void: func _ready() -> void:
var screen_size = get_viewport_rect().size var screen_size = get_viewport_rect().size
GameManager.init_screen_size(screen_size.x, screen_size.y) GameManager.init_screen_size(screen_size.x, screen_size.y)
@@ -27,6 +33,8 @@ func _ready() -> void:
func _process(delta): func _process(delta):
# TODO: Connects this to some respawn screen
if isAlive:
velocity = Vector2.ZERO velocity = Vector2.ZERO
if Input.is_action_pressed("move_right"): if Input.is_action_pressed("move_right"):
velocity.x += 1 velocity.x += 1
@@ -66,7 +74,7 @@ func _on_attack_timeout() -> void:
sprite.play("default") sprite.play("default")
attack_cooldown_timer.start() attack_cooldown_timer.start()
func _on_cooldown_timeout() -> void: func _on_attack_cooldown_timeout() -> void:
can_attack = true can_attack = true
func _on_attack_hit(body: Node2D) -> void: func _on_attack_hit(body: Node2D) -> void:
@@ -82,9 +90,18 @@ func _on_attack_hit(body: Node2D) -> void:
sprite.play("default") sprite.play("default")
# TODO: resource handling logic # TODO: resource handling logic
func _on_invulnerable_cooldown_timeout() -> void:
hasiframes = false
func handle_damage(dmg: int, src: Node) -> void: func handle_damage(dmg: int, src: Node) -> void:
# TODO: damage logic # TODO: enhanced damage logic (src entity effects?)
pass if not hasiframes:
print("Player took %d damage." % dmg)
healthPoints -= dmg
hasiframes = true
invulnerable_cooldown_timer.start()
if healthPoints <= 0:
isAlive = false
func collect_resource(damnt: int) -> void: func collect_resource(damnt: int) -> void:
resources += damnt resources += damnt

View File

@@ -59,6 +59,10 @@ one_shot = true
[node name="AttackCooldownTimer" type="Timer" parent="." unique_id=1056439284] [node name="AttackCooldownTimer" type="Timer" parent="." unique_id=1056439284]
one_shot = true one_shot = true
[node name="InvulnerableCooldownTimer" type="Timer" parent="." unique_id=311411582]
one_shot = true
[connection signal="body_entered" from="AttackArea" to="." method="_on_attack_hit"] [connection signal="body_entered" from="AttackArea" to="." method="_on_attack_hit"]
[connection signal="timeout" from="AttackTimer" to="." method="_on_attack_timeout"] [connection signal="timeout" from="AttackTimer" to="." method="_on_attack_timeout"]
[connection signal="timeout" from="AttackCooldownTimer" to="." method="_on_cooldown_timeout"] [connection signal="timeout" from="AttackCooldownTimer" to="." method="_on_attack_cooldown_timeout"]
[connection signal="timeout" from="InvulnerableCooldownTimer" to="." method="_on_invulnerable_cooldown_timeout"]

View File

@@ -1,4 +1,3 @@
@abstract
extends CharacterBody2D extends CharacterBody2D
class_name NPC2D class_name NPC2D

View File

@@ -1,4 +1,3 @@
@abstract
extends NPC2D extends NPC2D
class_name AbstractPrey2D class_name AbstractPrey2D